Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] mako: update to 1.5
@ 2021-05-04 12:09 itsanubhavkini
  2021-05-04 12:12 ` [PR REVIEW] " ericonr
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 12:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1629 bytes --]

There is a new pull request by itsanubhavkini against master on the void-packages repository

https://github.com/itsanubhavkini/void-packages mako
https://github.com/void-linux/void-packages/pull/30672

mako: update to 1.5
<!-- Mark items with [x] where applicable -->
Requires new package  `basu`: #30428 
#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/30672.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mako-30672.patch --]
[-- Type: text/x-diff, Size: 3180 bytes --]

From 932d503f1dfadb7fe2040aa132d32eabebe882c4 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Tue, 4 May 2021 17:31:55 +0530
Subject: [PATCH 1/2] New package: basu-0.2.0

---
 common/shlibs         |  1 +
 srcpkgs/basu-devel    |  1 +
 srcpkgs/basu/template | 23 +++++++++++++++++++++++
 3 files changed, 25 insertions(+)
 create mode 120000 srcpkgs/basu-devel
 create mode 100644 srcpkgs/basu/template

diff --git a/common/shlibs b/common/shlibs
index 1b284ac33ef2..c332b814a8b8 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3929,3 +3929,4 @@ libgumbo.so.1 gumbo-parser-0.10.1_2
 libmariadb.so.3 libmariadbclient-10.5.9_1
 libmariadbd.so.19 libmariadbclient-10.5.9_1
 libinstpatch-1.0.so.2 libinstpatch-1.1.6_1
+libbasu.so.0 basu-0.2.0_1
diff --git a/srcpkgs/basu-devel b/srcpkgs/basu-devel
new file mode 120000
index 000000000000..a25387954cc6
--- /dev/null
+++ b/srcpkgs/basu-devel
@@ -0,0 +1 @@
+basu
\ No newline at end of file
diff --git a/srcpkgs/basu/template b/srcpkgs/basu/template
new file mode 100644
index 000000000000..de2ffdfecccb
--- /dev/null
+++ b/srcpkgs/basu/template
@@ -0,0 +1,23 @@
+# Template file for 'basu'
+pkgname=basu
+version=0.2.0
+revision=1
+build_style=meson
+configure_args="-Dwerror=false"
+hostmakedepends="gperf"
+short_desc="Library for sd-bus extracted from systemd"
+maintainer="Anubhav Kini <anubhavkini@gmail.com>"
+license="LGPL-2.1-or-later"
+homepage="https://github.com/emersion/basu"
+distfiles="${homepage}/releases/download/v${version}/${pkgname}-${version}.tar.gz"
+checksum=e2fda9b69fc6c4530173fcf8db94c29aa5f3ed932d948cc6a31892623cde5e4b
+
+basu-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.so"
+	}
+}

From 86b092c6b565cf358e9cb1822eceae461e5a2d3b Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Tue, 4 May 2021 17:32:34 +0530
Subject: [PATCH 2/2] mako: update to 1.5

---
 srcpkgs/mako/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mako/template b/srcpkgs/mako/template
index 18c18def196d..a14c612078cf 100644
--- a/srcpkgs/mako/template
+++ b/srcpkgs/mako/template
@@ -1,18 +1,19 @@
 # Template file for 'mako'
 pkgname=mako
-version=1.4.1
+version=1.5
 revision=1
 build_style=meson
-configure_args="-Dzsh-completions=true -Dapparmor=true -Dwerror=false"
+configure_args="-Dzsh-completions=true -Dwerror=false"
 hostmakedepends="pkg-config scdoc wayland-devel wayland-protocols"
 makedepends="wayland-devel wayland-protocols pango-devel cairo-devel
- elogind-devel gdk-pixbuf-devel"
+ basu basu-devel gdk-pixbuf-devel"
+depends="basu"
 short_desc="Lightweight Wayland notification daemon"
 maintainer="Emerson Ferreira <me@skrps.me>"
 license="MIT"
 homepage="https://mako-project.org/"
 distfiles="https://github.com/emersion/${pkgname}/archive/v${version}.tar.gz"
-checksum=27ab63264a74389de2119393fe64fd578a4c1d04c8409990ef7cfbb6eb9309bb
+checksum=d79998aa4c68de82155080a58ad5783b40d81f50553a0a5d633553ece4f7439d
 
 conf_files="/etc/apparmor.d/local/fr.emersion.Mako"
 

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2021-05-09  4:08 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
2021-05-04 12:12 ` [PR REVIEW] " ericonr
2021-05-04 12:12 ` ericonr
2021-05-04 12:18 ` itsanubhavkini
2021-05-04 12:20 ` itsanubhavkini
2021-05-04 12:23 ` ericonr
2021-05-04 13:02 ` [PR PATCH] [Updated] " itsanubhavkini
2021-05-04 13:07 ` FollieHiyuki
2021-05-04 13:17 ` [PR PATCH] [Updated] " itsanubhavkini
2021-05-04 13:22 ` itsanubhavkini
2021-05-04 13:25 ` Duncaen
2021-05-04 13:26 ` [PR REVIEW] " Duncaen
2021-05-04 14:03 ` ericonr
2021-05-04 14:06 ` Duncaen
2021-05-04 14:09 ` itsanubhavkini
2021-05-04 14:20 ` ericonr
2021-05-04 14:21 ` ericonr
2021-05-05  9:01 ` [PR PATCH] [Updated] " itsanubhavkini
2021-05-05  9:09 ` itsanubhavkini
2021-05-05  9:10 ` itsanubhavkini
2021-05-05 14:23 ` [PR REVIEW] " ericonr
2021-05-05 17:05 ` [PR PATCH] [Updated] " itsanubhavkini
2021-05-09  4:08 ` [PR PATCH] [Merged]: " ericonr

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).