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

* Re: [PR REVIEW] mako: update to 1.5
  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
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-04 12:12 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r625728152

Comment:
```suggestion
 basu-devel gdk-pixbuf-devel"
```

devel package already pulls in the normal one, and the dependency on `basu` should be detected automatically.

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

* Re: [PR REVIEW] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
@ 2021-05-04 12:12 ` ericonr
  2021-05-04 12:12 ` ericonr
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-04 12:12 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r625727520

Comment:
Why remove apparmor?

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

* Re: [PR REVIEW] mako: update to 1.5
  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
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 12:18 UTC (permalink / raw)
  To: ml

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

New review comment by itsanubhavkini on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r625732178

Comment:
Looks like they dropped it
https://github.com/emersion/mako/pull/338

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

* Re: [PR REVIEW] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (2 preceding siblings ...)
  2021-05-04 12:18 ` itsanubhavkini
@ 2021-05-04 12:20 ` itsanubhavkini
  2021-05-04 12:23 ` ericonr
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 12:20 UTC (permalink / raw)
  To: ml

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

New review comment by itsanubhavkini on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r625732917

Comment:
Thanks for the tip

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

* Re: [PR REVIEW] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (3 preceding siblings ...)
  2021-05-04 12:20 ` itsanubhavkini
@ 2021-05-04 12:23 ` ericonr
  2021-05-04 13:02 ` [PR PATCH] [Updated] " itsanubhavkini
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-04 12:23 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r625734779

Comment:
Please install the file manually in `post_install` now, please.

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

* Re: [PR PATCH] [Updated] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (4 preceding siblings ...)
  2021-05-04 12:23 ` ericonr
@ 2021-05-04 13:02 ` itsanubhavkini
  2021-05-04 13:07 ` FollieHiyuki
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 13:02 UTC (permalink / raw)
  To: ml

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

There is an updated 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: 3362 bytes --]

From aa96e357fa22e383321df56ba2c1f0dc1d578898 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Tue, 4 May 2021 18:29:04 +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 8d7164f3a5a4e53dca2af86277d2443206b9e51c Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Tue, 4 May 2021 18:31:20 +0530
Subject: [PATCH 2/2] mako: update to 1.5

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

diff --git a/srcpkgs/mako/template b/srcpkgs/mako/template
index 18c18def196d..e0da6e87b19b 100644
--- a/srcpkgs/mako/template
+++ b/srcpkgs/mako/template
@@ -1,24 +1,22 @@
 # 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-devel gdk-pixbuf-devel"
 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"
 
 post_install() {
 	vlicense LICENSE
-
-	vmkdir etc/apparmor.d/local
-	touch ${DESTDIR}/etc/apparmor.d/local/fr.emersion.Mako
+	vinstall contrib/apparmor/fr.emersion.Mako 644 etc/apparmor.d/local
 }

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (5 preceding siblings ...)
  2021-05-04 13:02 ` [PR PATCH] [Updated] " itsanubhavkini
@ 2021-05-04 13:07 ` FollieHiyuki
  2021-05-04 13:17 ` [PR PATCH] [Updated] " itsanubhavkini
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: FollieHiyuki @ 2021-05-04 13:07 UTC (permalink / raw)
  To: ml

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

New comment by FollieHiyuki on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831927281

Comment:
The apparmor file should be in `/etc/apparmor.d/`.
The file in `/local/` should not be deleted (it's for user's custom rules)

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

* Re: [PR PATCH] [Updated] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (6 preceding siblings ...)
  2021-05-04 13:07 ` FollieHiyuki
@ 2021-05-04 13:17 ` itsanubhavkini
  2021-05-04 13:22 ` itsanubhavkini
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 13:17 UTC (permalink / raw)
  To: ml

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

There is an updated 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: 3354 bytes --]

From aa96e357fa22e383321df56ba2c1f0dc1d578898 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Tue, 4 May 2021 18:29:04 +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 543c02be9d55a97408611d2060b9007a0c6e3170 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Tue, 4 May 2021 18:47:08 +0530
Subject: [PATCH 2/2] mako: update to 1.5

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

diff --git a/srcpkgs/mako/template b/srcpkgs/mako/template
index 18c18def196d..49a40cf8f9ea 100644
--- a/srcpkgs/mako/template
+++ b/srcpkgs/mako/template
@@ -1,24 +1,24 @@
 # 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-devel gdk-pixbuf-devel"
 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"
 
 post_install() {
 	vlicense LICENSE
-
+	vinstall contrib/apparmor/fr.emersion.Mako 644 etc/apparmor.d
 	vmkdir etc/apparmor.d/local
 	touch ${DESTDIR}/etc/apparmor.d/local/fr.emersion.Mako
 }

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (7 preceding siblings ...)
  2021-05-04 13:17 ` [PR PATCH] [Updated] " itsanubhavkini
@ 2021-05-04 13:22 ` itsanubhavkini
  2021-05-04 13:25 ` Duncaen
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 13:22 UTC (permalink / raw)
  To: ml

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

New comment by itsanubhavkini on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831937305

Comment:
> The apparmor file should be in `/etc/apparmor.d/`.
> The file in `/local/` should not be deleted (it's for user's custom rules)

Fixed it. Thanks.

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (8 preceding siblings ...)
  2021-05-04 13:22 ` itsanubhavkini
@ 2021-05-04 13:25 ` Duncaen
  2021-05-04 13:26 ` [PR REVIEW] " Duncaen
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Duncaen @ 2021-05-04 13:25 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831939147

Comment:
Basu needs to be patched for nobodys uid not being 65534.
https://github.com/emersion/basu/blob/928a746f7ebd83812ddb152a5c0fb11a0a294c93/src/basic/user-util.h#L20
https://github.com/emersion/basu/blob/928a746f7ebd83812ddb152a5c0fb11a0a294c93/meson.build#L191-L210

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

* Re: [PR REVIEW] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (9 preceding siblings ...)
  2021-05-04 13:25 ` Duncaen
@ 2021-05-04 13:26 ` Duncaen
  2021-05-04 14:03 ` ericonr
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Duncaen @ 2021-05-04 13:26 UTC (permalink / raw)
  To: ml

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

New review comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r625779489

Comment:
The "Library for" does not make sense.

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (10 preceding siblings ...)
  2021-05-04 13:26 ` [PR REVIEW] " Duncaen
@ 2021-05-04 14:03 ` ericonr
  2021-05-04 14:06 ` Duncaen
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-04 14:03 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831967352

Comment:
@Duncaen does the UID for nobody matter for basu? We don't patch elogind and things still work...

If we patch it here, elogind should also be fixed.

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (11 preceding siblings ...)
  2021-05-04 14:03 ` ericonr
@ 2021-05-04 14:06 ` Duncaen
  2021-05-04 14:09 ` itsanubhavkini
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: Duncaen @ 2021-05-04 14:06 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831970068

Comment:
Not really, in basu its just one place where its used as fastpath to get the username from a uid.
But without patching this, a user with this UID would result in being shown as nobody.

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (12 preceding siblings ...)
  2021-05-04 14:06 ` Duncaen
@ 2021-05-04 14:09 ` itsanubhavkini
  2021-05-04 14:20 ` ericonr
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-04 14:09 UTC (permalink / raw)
  To: ml

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

New comment by itsanubhavkini on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831971905

Comment:
> Basu needs to be patched for nobodys uid not being 65534.
> https://github.com/emersion/basu/blob/928a746f7ebd83812ddb152a5c0fb11a0a294c93/src/basic/user-util.h#L20
> https://github.com/emersion/basu/blob/928a746f7ebd83812ddb152a5c0fb11a0a294c93/meson.build#L191-L210

Patch it to 99, right?

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (13 preceding siblings ...)
  2021-05-04 14:09 ` itsanubhavkini
@ 2021-05-04 14:20 ` ericonr
  2021-05-04 14:21 ` ericonr
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-04 14:20 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831980252

Comment:
@itsanubhavkini would you mind also patching `elogind` in a different PR?

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (14 preceding siblings ...)
  2021-05-04 14:20 ` ericonr
@ 2021-05-04 14:21 ` ericonr
  2021-05-05  9:01 ` [PR PATCH] [Updated] " itsanubhavkini
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-04 14:21 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-831980252

Comment:
@itsanubhavkini would you mind also patching `elogind` in a different PR? And yes, 99


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

* Re: [PR PATCH] [Updated] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (15 preceding siblings ...)
  2021-05-04 14:21 ` ericonr
@ 2021-05-05  9:01 ` itsanubhavkini
  2021-05-05  9:09 ` itsanubhavkini
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-05  9:01 UTC (permalink / raw)
  To: ml

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

There is an updated 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: 5788 bytes --]

From 4eaabd9e38a80650e45957e638dd4ca86f66cd35 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Wed, 5 May 2021 14:27:09 +0530
Subject: [PATCH 1/2] New package: basu-0.2.0

---
 common/shlibs                         |  1 +
 srcpkgs/basu-devel                    |  1 +
 srcpkgs/basu/patches/uid-nobody.patch | 39 +++++++++++++++++++++++++++
 srcpkgs/basu/template                 | 23 ++++++++++++++++
 4 files changed, 64 insertions(+)
 create mode 120000 srcpkgs/basu-devel
 create mode 100644 srcpkgs/basu/patches/uid-nobody.patch
 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/patches/uid-nobody.patch b/srcpkgs/basu/patches/uid-nobody.patch
new file mode 100644
index 000000000000..9937bcc5bedc
--- /dev/null
+++ b/srcpkgs/basu/patches/uid-nobody.patch
@@ -0,0 +1,39 @@
+--- meson.build
++++ meson.build
+@@ -189,21 +189,21 @@ conf.set('GPERF_LEN_TYPE', gperf_len_type,
+ nobody_user = get_option('nobody-user')
+ 
+ if not meson.is_cross_build()
+-        getent_result = run_command('getent', 'passwd', '65534')
++        getent_result = run_command('getent', 'passwd', '99')
+         if getent_result.returncode() == 0
+                 name = getent_result.stdout().split(':')[0]
+                 if name != nobody_user
+                         warning('\n' +
+-                                'The local user with the UID 65534 does not match the configured user name "@0@" of the nobody user (its name is @1@).\n'.format(nobody_user, name) +
++                                'The local user with the UID 99 does not match the configured user name "@0@" of the nobody user (its name is @1@).\n'.format(nobody_user, name) +
+                                 'Your build will result in an user table setup that is incompatible with the local system.')
+                 endif
+         endif
+         id_result = run_command('id', '-u', nobody_user)
+         if id_result.returncode() == 0
+                 id = id_result.stdout().to_int()
+-                if id != 65534
++                if id != 99
+                         warning('\n' +
+-                                'The local user with the configured user name "@0@" of the nobody user does not have UID 65534 (it has @1@).\n'.format(nobody_user, id) +
++                                'The local user with the configured user name "@0@" of the nobody user does not have UID 99 (it has @1@).\n'.format(nobody_user, id) +
+                                 'Your build will result in an user table setup that is incompatible with the local system.')
+                 endif
+         endif
+--- src/basic/user-util.h
++++ src/basic/user-util.h
+@@ -17,7 +17,7 @@ char* uid_to_name(uid_t uid);
+ 
+ #define UID_INVALID ((uid_t) -1)
+ 
+-#define UID_NOBODY ((uid_t) 65534U)
++#define UID_NOBODY ((uid_t) 99U)
+ 
+ bool synthesize_nobody(void);
+ 
diff --git a/srcpkgs/basu/template b/srcpkgs/basu/template
new file mode 100644
index 000000000000..1a3614b781c3
--- /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="SD-Bus library 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 8c6fb35431472f387787ac9490cd552daa07be81 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Wed, 5 May 2021 14:28:07 +0530
Subject: [PATCH 2/2] mako: update to 1.5

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

diff --git a/srcpkgs/mako/template b/srcpkgs/mako/template
index 18c18def196d..49a40cf8f9ea 100644
--- a/srcpkgs/mako/template
+++ b/srcpkgs/mako/template
@@ -1,24 +1,24 @@
 # 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-devel gdk-pixbuf-devel"
 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"
 
 post_install() {
 	vlicense LICENSE
-
+	vinstall contrib/apparmor/fr.emersion.Mako 644 etc/apparmor.d
 	vmkdir etc/apparmor.d/local
 	touch ${DESTDIR}/etc/apparmor.d/local/fr.emersion.Mako
 }

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (16 preceding siblings ...)
  2021-05-05  9:01 ` [PR PATCH] [Updated] " itsanubhavkini
@ 2021-05-05  9:09 ` itsanubhavkini
  2021-05-05  9:10 ` itsanubhavkini
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-05  9:09 UTC (permalink / raw)
  To: ml

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

New comment by itsanubhavkini on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-832537017

Comment:
> @itsanubhavkini would you mind also patching `elogind` in a different PR? And yes, 99

@ericonr If this is correct, then sure

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

* Re: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (17 preceding siblings ...)
  2021-05-05  9:09 ` itsanubhavkini
@ 2021-05-05  9:10 ` itsanubhavkini
  2021-05-05 14:23 ` [PR REVIEW] " ericonr
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-05  9:10 UTC (permalink / raw)
  To: ml

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

New comment by itsanubhavkini on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#issuecomment-832537017

Comment:
> @itsanubhavkini would you mind also patching `elogind` in a different PR?

@ericonr If this is correct, then sure

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

* Re: [PR REVIEW] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (18 preceding siblings ...)
  2021-05-05  9:10 ` itsanubhavkini
@ 2021-05-05 14:23 ` ericonr
  2021-05-05 17:05 ` [PR PATCH] [Updated] " itsanubhavkini
  2021-05-09  4:08 ` [PR PATCH] [Merged]: " ericonr
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-05 14:23 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30672#discussion_r626612993

Comment:
Not sure this part of the patch is necessary, I'd be okay with still printing the warning, since otherwise it's more stuff to rebase if they change the build system.

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

* Re: [PR PATCH] [Updated] mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (19 preceding siblings ...)
  2021-05-05 14:23 ` [PR REVIEW] " ericonr
@ 2021-05-05 17:05 ` itsanubhavkini
  2021-05-09  4:08 ` [PR PATCH] [Merged]: " ericonr
  21 siblings, 0 replies; 23+ messages in thread
From: itsanubhavkini @ 2021-05-05 17:05 UTC (permalink / raw)
  To: ml

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

There is an updated 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: 3987 bytes --]

From 7a9755f52ce65e946029d194fb9f32a73c62eebb Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Wed, 5 May 2021 22:34:05 +0530
Subject: [PATCH 1/2] New package: basu-0.2.0

---
 common/shlibs                         |  1 +
 srcpkgs/basu-devel                    |  1 +
 srcpkgs/basu/patches/uid-nobody.patch | 11 +++++++++++
 srcpkgs/basu/template                 | 23 +++++++++++++++++++++++
 4 files changed, 36 insertions(+)
 create mode 120000 srcpkgs/basu-devel
 create mode 100644 srcpkgs/basu/patches/uid-nobody.patch
 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/patches/uid-nobody.patch b/srcpkgs/basu/patches/uid-nobody.patch
new file mode 100644
index 000000000000..27524c0f474d
--- /dev/null
+++ b/srcpkgs/basu/patches/uid-nobody.patch
@@ -0,0 +1,11 @@
+--- src/basic/user-util.h
++++ src/basic/user-util.h
+@@ -17,7 +17,7 @@ char* uid_to_name(uid_t uid);
+ 
+ #define UID_INVALID ((uid_t) -1)
+ 
+-#define UID_NOBODY ((uid_t) 65534U)
++#define UID_NOBODY ((uid_t) 99U)
+ 
+ bool synthesize_nobody(void);
+ 
diff --git a/srcpkgs/basu/template b/srcpkgs/basu/template
new file mode 100644
index 000000000000..1a3614b781c3
--- /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="SD-Bus library 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 35a8fdfb728ebe3075b4442df65b5e45443672b5 Mon Sep 17 00:00:00 2001
From: Anubhav Kini <anubhavkini@gmail.com>
Date: Wed, 5 May 2021 22:34:33 +0530
Subject: [PATCH 2/2] mako: update to 1.5

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

diff --git a/srcpkgs/mako/template b/srcpkgs/mako/template
index 18c18def196d..49a40cf8f9ea 100644
--- a/srcpkgs/mako/template
+++ b/srcpkgs/mako/template
@@ -1,24 +1,24 @@
 # 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-devel gdk-pixbuf-devel"
 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"
 
 post_install() {
 	vlicense LICENSE
-
+	vinstall contrib/apparmor/fr.emersion.Mako 644 etc/apparmor.d
 	vmkdir etc/apparmor.d/local
 	touch ${DESTDIR}/etc/apparmor.d/local/fr.emersion.Mako
 }

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

* Re: [PR PATCH] [Merged]: mako: update to 1.5
  2021-05-04 12:09 [PR PATCH] mako: update to 1.5 itsanubhavkini
                   ` (20 preceding siblings ...)
  2021-05-05 17:05 ` [PR PATCH] [Updated] " itsanubhavkini
@ 2021-05-09  4:08 ` ericonr
  21 siblings, 0 replies; 23+ messages in thread
From: ericonr @ 2021-05-09  4:08 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

mako: update to 1.5
https://github.com/void-linux/void-packages/pull/30672

Description:
<!-- 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
-->


^ 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).