public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-04-05 22:58 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2019-04-05 22:58 UTC (permalink / raw
  To: gentoo-commits

commit:     e56e758cf7fff5f509f14b2eb1c3fc4d90fc7076
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  5 22:57:09 2019 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Apr  5 22:57:26 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56e758c

gui-apps/mako: initial add of gui-apps/mako

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest         |  1 +
 gui-apps/mako/mako-1.2.ebuild  | 46 +++++++++++++++++++++++++++++++++++++
 gui-apps/mako/mako-9999.ebuild | 51 ++++++++++++++++++++++++++++++++++++++++++
 gui-apps/mako/metadata.xml     | 19 ++++++++++++++++
 4 files changed, 117 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
new file mode 100644
index 00000000000..d7813318587
--- /dev/null
+++ b/gui-apps/mako/Manifest
@@ -0,0 +1 @@
+DIST mako-1.2.tar.gz 34443 BLAKE2B d505cbc7d25755ef3880adceaf8e33c277a90583c37ebd2691cd3d8d142f19f7eedca2ad167c0174723706c6f0a9b0688ddb34ed824e8231330265f1b5e3d645 SHA512 2552590f690a9749e9ef897052ca6aecf70eb01d77b1afe21335c84e257c6c8347abbd7f33150d561e8f52a9ae3a91c7a199a93cecf64a305934886522fc1454

diff --git a/gui-apps/mako/mako-1.2.ebuild b/gui-apps/mako/mako-1.2.ebuild
new file mode 100644
index 00000000000..597b35d6e7d
--- /dev/null
+++ b/gui-apps/mako/mako-1.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		sys-apps/systemd
+		sys-auth/elogind
+	)
+	sys-apps/dbus[user-session]
+"
+RDEPEND="
+	${DEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		"-Dwerror=false"
+	)
+	meson_src_configure
+}

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
new file mode 100644
index 00000000000..8f1e8cc64cb
--- /dev/null
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+icons"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		sys-apps/systemd
+		sys-auth/elogind
+	)
+	sys-apps/dbus[user-session]
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		"-Dwerror=false"
+	)
+	meson_src_configure
+}

diff --git a/gui-apps/mako/metadata.xml b/gui-apps/mako/metadata.xml
new file mode 100644
index 00000000000..f4af030a3ec
--- /dev/null
+++ b/gui-apps/mako/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>prometheanfire@gentoo.org</email>
+		<name>Matthew Thode</name>
+	</maintainer>
+	<longdescription lang="en">
+		A lightweight notification daemon for Wayland. Works on Sway.
+	</longdescription>
+	<use>
+		<flag name="icons">Enable support for icons</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">emmersion/mako</remote-id>
+		<bugs-to>https://github.com/emersion/mako/issues</bugs-to>
+		<changelog>https://github.com/emersion/mako/releases</changelog>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-04-10  3:01 Aaron Bauman
  0 siblings, 0 replies; 42+ messages in thread
From: Aaron Bauman @ 2019-04-10  3:01 UTC (permalink / raw
  To: gentoo-commits

commit:     6b8d1aa7ba3a54222ae7555b4b68f78ee7092c21
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 02:58:23 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 02:58:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b8d1aa7

gui-apps/mako: amd64 stable wrt bug #682942

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 gui-apps/mako/mako-1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.2.ebuild b/gui-apps/mako/mako-1.2.ebuild
index 597b35d6e7d..f1a68a54eea 100644
--- a/gui-apps/mako/mako-1.2.ebuild
+++ b/gui-apps/mako/mako-1.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-04-10  5:03 Aaron Bauman
  0 siblings, 0 replies; 42+ messages in thread
From: Aaron Bauman @ 2019-04-10  5:03 UTC (permalink / raw
  To: gentoo-commits

commit:     75fa28dc792a7025fcab2b21282db549056514ee
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 05:00:19 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 05:00:19 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75fa28dc

gui-apps/mako: arm64 keyworded (bug #682992)

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 gui-apps/mako/mako-1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.2.ebuild b/gui-apps/mako/mako-1.2.ebuild
index f1a68a54eea..a7253f5f66a 100644
--- a/gui-apps/mako/mako-1.2.ebuild
+++ b/gui-apps/mako/mako-1.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-04-19 19:47 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2019-04-19 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     1df95c202df2f39c879924fefe9d492a6308d0e9
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 19:47:27 2019 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 19:47:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df95c20

gui-apps/mako: 1.3 bump

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest                              | 1 +
 gui-apps/mako/{mako-9999.ebuild => mako-1.3.ebuild} | 2 +-
 gui-apps/mako/mako-9999.ebuild                      | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index d7813318587..cea20ea3071 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.2.tar.gz 34443 BLAKE2B d505cbc7d25755ef3880adceaf8e33c277a90583c37ebd2691cd3d8d142f19f7eedca2ad167c0174723706c6f0a9b0688ddb34ed824e8231330265f1b5e3d645 SHA512 2552590f690a9749e9ef897052ca6aecf70eb01d77b1afe21335c84e257c6c8347abbd7f33150d561e8f52a9ae3a91c7a199a93cecf64a305934886522fc1454
+DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-1.3.ebuild
similarity index 96%
copy from gui-apps/mako/mako-9999.ebuild
copy to gui-apps/mako/mako-1.3.ebuild
index 8f1e8cc64cb..60eca46bf3e 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-1.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 8f1e8cc64cb..60eca46bf3e 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-04-24 23:11 Thomas Deutschmann
  0 siblings, 0 replies; 42+ messages in thread
From: Thomas Deutschmann @ 2019-04-24 23:11 UTC (permalink / raw
  To: gentoo-commits

commit:     d0d84c6cb745ff3db34bc414fea8180818bf07e5
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 23:00:41 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 23:00:41 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d84c6c

gui-apps/mako: x86 stable (bug #682942)

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 gui-apps/mako/mako-1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.2.ebuild b/gui-apps/mako/mako-1.2.ebuild
index a7253f5f66a..edbba54c323 100644
--- a/gui-apps/mako/mako-1.2.ebuild
+++ b/gui-apps/mako/mako-1.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-05-15 20:19 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2019-05-15 20:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8e5fcfc9c8a0e3c0c816140637705edf761c4b12
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 20:19:31 2019 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed May 15 20:19:31 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5fcfc9

gui-apps/mako: 1.3 stable amd64/x86

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest        |  1 -
 gui-apps/mako/mako-1.2.ebuild | 46 -------------------------------------------
 gui-apps/mako/mako-1.3.ebuild |  2 +-
 3 files changed, 1 insertion(+), 48 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index cea20ea3071..be62f810982 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1 @@
-DIST mako-1.2.tar.gz 34443 BLAKE2B d505cbc7d25755ef3880adceaf8e33c277a90583c37ebd2691cd3d8d142f19f7eedca2ad167c0174723706c6f0a9b0688ddb34ed824e8231330265f1b5e3d645 SHA512 2552590f690a9749e9ef897052ca6aecf70eb01d77b1afe21335c84e257c6c8347abbd7f33150d561e8f52a9ae3a91c7a199a93cecf64a305934886522fc1454
 DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259

diff --git a/gui-apps/mako/mako-1.2.ebuild b/gui-apps/mako/mako-1.2.ebuild
deleted file mode 100644
index edbba54c323..00000000000
--- a/gui-apps/mako/mako-1.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		sys-apps/systemd
-		sys-auth/elogind
-	)
-	sys-apps/dbus[user-session]
-"
-RDEPEND="
-	${DEPEND}
-"
-BDEPEND="
-	virtual/pkgconfig
-	app-text/scdoc
-"
-
-src_configure() {
-	local emesonargs=(
-		"-Dwerror=false"
-	)
-	meson_src_configure
-}

diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild
index 60eca46bf3e..510e14df0ac 100644
--- a/gui-apps/mako/mako-1.3.ebuild
+++ b/gui-apps/mako/mako-1.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-05-29 20:45 Aaron Bauman
  0 siblings, 0 replies; 42+ messages in thread
From: Aaron Bauman @ 2019-05-29 20:45 UTC (permalink / raw
  To: gentoo-commits

commit:     b5d99293cf0f918ccaa8ddcb521ed7cd259b27cc
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 20:45:03 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed May 29 20:45:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d99293

gui-apps/mako: arm64 stable

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.67, Repoman-2.3.13
RepoMan-Options: --include-arches="arm64"

 gui-apps/mako/mako-1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild
index 510e14df0ac..3b9ffdde213 100644
--- a/gui-apps/mako/mako-1.3.ebuild
+++ b/gui-apps/mako/mako-1.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 x86"
+	KEYWORDS="amd64 arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-07-19 19:22 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2019-07-19 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f5b932720d76ccfb817e61ae65f2412e15b2be10
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 19 19:22:33 2019 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Jul 19 19:22:33 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5b93272

gui-apps/mako: 1.4 bump

Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest        |  1 +
 gui-apps/mako/mako-1.4.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index be62f810982..60f90c1b04b 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259
+DIST mako-1.4.tar.gz 48418 BLAKE2B ebd3c2f6fb7d51df826cab469c3e12477ec4503e3dfdfb4e9700393c0d994f6d7fcce6f3471d5faf90c5eb4bfa766941b97b0c8a8a556b5639ad5f3612df3082 SHA512 6059103e3a0c0cca5b0f717fbd7522f9a13f3dd3d65fe674e65cc175122a3372041bee2050d253ccb47a2adaa1dfa3180a19276bcdcb20c1e00813d75e1b3683

diff --git a/gui-apps/mako/mako-1.4.ebuild b/gui-apps/mako/mako-1.4.ebuild
new file mode 100644
index 00000000000..60eca46bf3e
--- /dev/null
+++ b/gui-apps/mako/mako-1.4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+icons"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		sys-apps/systemd
+		sys-auth/elogind
+	)
+	sys-apps/dbus[user-session]
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		"-Dwerror=false"
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2019-08-19 15:32 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2019-08-19 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     f22f4c55f42831be9b97373bb99339f78d879d90
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 15:31:58 2019 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 15:31:58 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22f4c55

gui-apps/mako: 1.4 stable

Package-Manager: Portage-2.3.69, Repoman-2.3.17
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.4.ebuild b/gui-apps/mako/mako-1.4.ebuild
index 60eca46bf3e..3b9ffdde213 100644
--- a/gui-apps/mako/mako-1.4.ebuild
+++ b/gui-apps/mako/mako-1.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2020-01-13  5:24 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2020-01-13  5:24 UTC (permalink / raw
  To: gentoo-commits

commit:     58b2f1a205b17140667011cb4e867c53daae981a
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 13 05:24:00 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Jan 13 05:24:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b2f1a2

gui-apps/mako: 1.4.1 bump

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest          |  1 +
 gui-apps/mako/mako-1.4.1.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 60f90c1b04b..3b0ccd86566 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1,3 @@
 DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259
+DIST mako-1.4.1.tar.gz 49442 BLAKE2B aa242d905d33dcfd2e30317a65d3826ba43ad344e93d1f41ed8b28f75310f724ed0eb5ae163f97a441ae07a4bb3465aa01f974cd95f97ba981a907fb761ad3d4 SHA512 25b0f59645c1815d8bdba42cedd6f56163ff663cd801a534c4c725c99e9a8cc28aef1d2c899d30cca06f0c6ddfa4a8e6efa01e5e98091347bcfc80d596f16d43
 DIST mako-1.4.tar.gz 48418 BLAKE2B ebd3c2f6fb7d51df826cab469c3e12477ec4503e3dfdfb4e9700393c0d994f6d7fcce6f3471d5faf90c5eb4bfa766941b97b0c8a8a556b5639ad5f3612df3082 SHA512 6059103e3a0c0cca5b0f717fbd7522f9a13f3dd3d65fe674e65cc175122a3372041bee2050d253ccb47a2adaa1dfa3180a19276bcdcb20c1e00813d75e1b3683

diff --git a/gui-apps/mako/mako-1.4.1.ebuild b/gui-apps/mako/mako-1.4.1.ebuild
new file mode 100644
index 00000000000..d77f7073b6a
--- /dev/null
+++ b/gui-apps/mako/mako-1.4.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+icons"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		sys-apps/systemd
+		sys-auth/elogind
+	)
+	sys-apps/dbus[user-session]
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		"-Dwerror=false"
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2020-02-13 22:54 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2020-02-13 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     e14baf8544c352fc972ea0527c10084bb12b381a
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 13 22:46:46 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 22:54:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e14baf85

gui-apps/mako: 1.4.1 stable amd64 arm64 x86

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.4.1.ebuild b/gui-apps/mako/mako-1.4.1.ebuild
index d77f7073b6a..81f1f8cad45 100644
--- a/gui-apps/mako/mako-1.4.1.ebuild
+++ b/gui-apps/mako/mako-1.4.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2020-02-13 22:54 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2020-02-13 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f3febd6fc5f2f37750c37eaafaa4bfbf8c3be124
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 13 22:47:16 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 22:54:19 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3febd6f

gui-apps/mako: cleanup

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest        |  2 --
 gui-apps/mako/mako-1.3.ebuild | 51 -------------------------------------------
 gui-apps/mako/mako-1.4.ebuild | 51 -------------------------------------------
 3 files changed, 104 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 3b0ccd86566..63735b84117 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,3 +1 @@
-DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259
 DIST mako-1.4.1.tar.gz 49442 BLAKE2B aa242d905d33dcfd2e30317a65d3826ba43ad344e93d1f41ed8b28f75310f724ed0eb5ae163f97a441ae07a4bb3465aa01f974cd95f97ba981a907fb761ad3d4 SHA512 25b0f59645c1815d8bdba42cedd6f56163ff663cd801a534c4c725c99e9a8cc28aef1d2c899d30cca06f0c6ddfa4a8e6efa01e5e98091347bcfc80d596f16d43
-DIST mako-1.4.tar.gz 48418 BLAKE2B ebd3c2f6fb7d51df826cab469c3e12477ec4503e3dfdfb4e9700393c0d994f6d7fcce6f3471d5faf90c5eb4bfa766941b97b0c8a8a556b5639ad5f3612df3082 SHA512 6059103e3a0c0cca5b0f717fbd7522f9a13f3dd3d65fe674e65cc175122a3372041bee2050d253ccb47a2adaa1dfa3180a19276bcdcb20c1e00813d75e1b3683

diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild
deleted file mode 100644
index 3b9ffdde213..00000000000
--- a/gui-apps/mako/mako-1.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+icons"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		sys-apps/systemd
-		sys-auth/elogind
-	)
-	sys-apps/dbus[user-session]
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-RDEPEND="
-	${DEPEND}
-"
-BDEPEND="
-	virtual/pkgconfig
-	app-text/scdoc
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-		"-Dwerror=false"
-	)
-	meson_src_configure
-}

diff --git a/gui-apps/mako/mako-1.4.ebuild b/gui-apps/mako/mako-1.4.ebuild
deleted file mode 100644
index 3b9ffdde213..00000000000
--- a/gui-apps/mako/mako-1.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+icons"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		sys-apps/systemd
-		sys-auth/elogind
-	)
-	sys-apps/dbus[user-session]
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-RDEPEND="
-	${DEPEND}
-"
-BDEPEND="
-	virtual/pkgconfig
-	app-text/scdoc
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-		"-Dwerror=false"
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2020-02-14 16:57 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2020-02-14 16:57 UTC (permalink / raw
  To: gentoo-commits

commit:     30ff73858ebd96db77859039145b00655f4837cb
Author:     Benjamin Neff <benjamin <AT> coding4coffee <DOT> ch>
AuthorDate: Fri Feb 14 10:36:26 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Feb 14 16:56:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ff7385

gui-apps/mako: needs scdoc >=1.9.7 to build

Signed-off-by: Benjamin Neff <benjamin <AT> coding4coffee.ch>
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.4.1.ebuild b/gui-apps/mako/mako-1.4.1.ebuild
index 81f1f8cad45..3596f2bb146 100644
--- a/gui-apps/mako/mako-1.4.1.ebuild
+++ b/gui-apps/mako/mako-1.4.1.ebuild
@@ -39,7 +39,7 @@ RDEPEND="
 "
 BDEPEND="
 	virtual/pkgconfig
-	app-text/scdoc
+	>=app-text/scdoc-1.9.7
 "
 
 src_configure() {


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2020-02-21  1:09 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2020-02-21  1:09 UTC (permalink / raw
  To: gentoo-commits

commit:     e94f40bb02351a2bf76793fbef28cc83966c1b5a
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 21 01:09:09 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Feb 21 01:09:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94f40bb

gui-apps/mako: fix build error on missing dep

Closes: https://bugs.gentoo.org/710328
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.4.1.ebuild | 1 +
 gui-apps/mako/mako-9999.ebuild  | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.4.1.ebuild b/gui-apps/mako/mako-1.4.1.ebuild
index 3596f2bb146..7595ec3b37e 100644
--- a/gui-apps/mako/mako-1.4.1.ebuild
+++ b/gui-apps/mako/mako-1.4.1.ebuild
@@ -36,6 +36,7 @@ DEPEND="
 "
 RDEPEND="
 	${DEPEND}
+	dev-libs/wayland-protocols
 "
 BDEPEND="
 	virtual/pkgconfig

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 60eca46bf3e..b615074bfcd 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -36,6 +36,7 @@ DEPEND="
 "
 RDEPEND="
 	${DEPEND}
+	dev-libs/wayland-protocols
 "
 BDEPEND="
 	virtual/pkgconfig


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-05-04 21:13 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2021-05-04 21:13 UTC (permalink / raw
  To: gentoo-commits

commit:     b6d6756c698175c19fd9f98fca0f9eb12adb4ed8
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue May  4 21:12:41 2021 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue May  4 21:13:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6d6756c

gui-apps/mako: 1.5 bump

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest        |  1 +
 gui-apps/mako/mako-1.5.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 63735b84117..0873ba74cd8 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.4.1.tar.gz 49442 BLAKE2B aa242d905d33dcfd2e30317a65d3826ba43ad344e93d1f41ed8b28f75310f724ed0eb5ae163f97a441ae07a4bb3465aa01f974cd95f97ba981a907fb761ad3d4 SHA512 25b0f59645c1815d8bdba42cedd6f56163ff663cd801a534c4c725c99e9a8cc28aef1d2c899d30cca06f0c6ddfa4a8e6efa01e5e98091347bcfc80d596f16d43
+DIST mako-1.5.tar.gz 57077 BLAKE2B 0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269 SHA512 64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47

diff --git a/gui-apps/mako/mako-1.5.ebuild b/gui-apps/mako/mako-1.5.ebuild
new file mode 100644
index 00000000000..ce59067b037
--- /dev/null
+++ b/gui-apps/mako/mako-1.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+icons"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		sys-apps/systemd
+		sys-auth/elogind
+	)
+	sys-apps/dbus[user-session]
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+	dev-libs/wayland-protocols
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		"-Dwerror=false"
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-05-09  4:42 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2021-05-09  4:42 UTC (permalink / raw
  To: gentoo-commits

commit:     6a886c3189bcb006106ac1712edd961bc58e7679
Author:     Tobias Jakobi <tjakobi <AT> math <DOT> uni-bielefeld <DOT> de>
AuthorDate: Thu May  6 18:30:13 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May  9 04:42:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a886c31

gui-apps/mako: metadata: fix typo in remote-id

- emmersion --> emersion

Signed-off-by: Tobias Jakobi <tjakobi <AT> math.uni-bielefeld.de>
Closes: https://github.com/gentoo/gentoo/pull/20705
Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/mako/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/metadata.xml b/gui-apps/mako/metadata.xml
index 5154a274028..1bbd9a0711f 100644
--- a/gui-apps/mako/metadata.xml
+++ b/gui-apps/mako/metadata.xml
@@ -9,7 +9,7 @@
 		<flag name="icons">Enable support for icons</flag>
 	</use>
 	<upstream>
-		<remote-id type="github">emmersion/mako</remote-id>
+		<remote-id type="github">emersion/mako</remote-id>
 		<bugs-to>https://github.com/emersion/mako/issues</bugs-to>
 		<changelog>https://github.com/emersion/mako/releases</changelog>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-06-06  3:49 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2021-06-06  3:49 UTC (permalink / raw
  To: gentoo-commits

commit:     f26d40c2c2d3db2efda197aeabd730518b61e981
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  6 03:20:22 2021 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Jun  6 03:20:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26d40c2

gui-apps/mako: 1.5 stable amd64/arm64/x86

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.5.ebuild b/gui-apps/mako/mako-1.5.ebuild
index ce59067b037..81df72cd957 100644
--- a/gui-apps/mako/mako-1.5.ebuild
+++ b/gui-apps/mako/mako-1.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-07-05 20:02 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2021-07-05 20:02 UTC (permalink / raw
  To: gentoo-commits

commit:     29158e040b032e4b7a3d606c02698d6c0507140c
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  5 19:59:05 2021 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Jul  5 20:01:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29158e04

gui-apps/mako: 1.4.1 removal

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest          |  1 -
 gui-apps/mako/mako-1.4.1.ebuild | 52 -----------------------------------------
 2 files changed, 53 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 0873ba74cd8..b52304f50a6 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1 @@
-DIST mako-1.4.1.tar.gz 49442 BLAKE2B aa242d905d33dcfd2e30317a65d3826ba43ad344e93d1f41ed8b28f75310f724ed0eb5ae163f97a441ae07a4bb3465aa01f974cd95f97ba981a907fb761ad3d4 SHA512 25b0f59645c1815d8bdba42cedd6f56163ff663cd801a534c4c725c99e9a8cc28aef1d2c899d30cca06f0c6ddfa4a8e6efa01e5e98091347bcfc80d596f16d43
 DIST mako-1.5.tar.gz 57077 BLAKE2B 0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269 SHA512 64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47

diff --git a/gui-apps/mako/mako-1.4.1.ebuild b/gui-apps/mako/mako-1.4.1.ebuild
deleted file mode 100644
index 7595ec3b37e..00000000000
--- a/gui-apps/mako/mako-1.4.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+icons"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		sys-apps/systemd
-		sys-auth/elogind
-	)
-	sys-apps/dbus[user-session]
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-RDEPEND="
-	${DEPEND}
-	dev-libs/wayland-protocols
-"
-BDEPEND="
-	virtual/pkgconfig
-	>=app-text/scdoc-1.9.7
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-		"-Dwerror=false"
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-07-12  3:00 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2021-07-12  3:00 UTC (permalink / raw
  To: gentoo-commits

commit:     f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 12 02:54:18 2021 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Jul 12 02:59:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b0ed2a

gui-apps/mako: 1.6 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest        |  1 +
 gui-apps/mako/mako-1.6.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index b52304f50a6..6f776759d1a 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.5.tar.gz 57077 BLAKE2B 0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269 SHA512 64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47
+DIST mako-1.6.tar.gz 60468 BLAKE2B 77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13 SHA512 1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf

diff --git a/gui-apps/mako/mako-1.6.ebuild b/gui-apps/mako/mako-1.6.ebuild
new file mode 100644
index 00000000000..3387b2f9bc1
--- /dev/null
+++ b/gui-apps/mako/mako-1.6.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+icons"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		sys-apps/systemd
+		sys-auth/elogind
+	)
+	sys-apps/dbus[user-session]
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+	>=dev-libs/wayland-protocols-1.21
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		"-Dwerror=false"
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-08-11 14:35 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2021-08-11 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     9117eed2a374440bee23f2e37a5c9035789d0f6f
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 11 14:30:16 2021 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 14:35:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9117eed2

gui-apps/mako: 1.6 stable amd64 arm64 x86

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.6.ebuild b/gui-apps/mako/mako-1.6.ebuild
index 3387b2f9bc1..322e6c5a088 100644
--- a/gui-apps/mako/mako-1.6.ebuild
+++ b/gui-apps/mako/mako-1.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-09-24  2:25 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2021-09-24  2:25 UTC (permalink / raw
  To: gentoo-commits

commit:     e31c95ca28aa4938668aaee0a1394a8e5648be5b
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 24 02:22:11 2021 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Sep 24 02:25:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31c95ca

gui-apps/mako: 1.5 cleanup

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest        |  1 -
 gui-apps/mako/mako-1.5.ebuild | 52 -------------------------------------------
 2 files changed, 53 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 6f776759d1a..cef4811e171 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1 @@
-DIST mako-1.5.tar.gz 57077 BLAKE2B 0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269 SHA512 64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47
 DIST mako-1.6.tar.gz 60468 BLAKE2B 77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13 SHA512 1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf

diff --git a/gui-apps/mako/mako-1.5.ebuild b/gui-apps/mako/mako-1.5.ebuild
deleted file mode 100644
index 81df72cd957..00000000000
--- a/gui-apps/mako/mako-1.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+icons"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		sys-apps/systemd
-		sys-auth/elogind
-	)
-	sys-apps/dbus[user-session]
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-RDEPEND="
-	${DEPEND}
-	dev-libs/wayland-protocols
-"
-BDEPEND="
-	virtual/pkgconfig
-	app-text/scdoc
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-		"-Dwerror=false"
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-11-14 16:38 Mike Gilbert
  0 siblings, 0 replies; 42+ messages in thread
From: Mike Gilbert @ 2021-11-14 16:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e008a2049285c029105bd1fbe7b7a04da08782ce
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 13 23:20:35 2021 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 16:37:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e008a204

gui-apps/mako: drop user-session USE flag reference

Bug: https://bugs.gentoo.org/823647
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 gui-apps/mako/{mako-1.6.ebuild => mako-1.6-r1.ebuild} | 2 +-
 gui-apps/mako/mako-9999.ebuild                        | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gui-apps/mako/mako-1.6.ebuild b/gui-apps/mako/mako-1.6-r1.ebuild
similarity index 96%
rename from gui-apps/mako/mako-1.6.ebuild
rename to gui-apps/mako/mako-1.6-r1.ebuild
index 322e6c5a0882..04524a673446 100644
--- a/gui-apps/mako/mako-1.6.ebuild
+++ b/gui-apps/mako/mako-1.6-r1.ebuild
@@ -28,7 +28,7 @@ DEPEND="
 		sys-apps/systemd
 		sys-auth/elogind
 	)
-	sys-apps/dbus[user-session]
+	sys-apps/dbus
 	icons? (
 		x11-libs/gtk+:3
 		x11-libs/gdk-pixbuf

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index b615074bfcda..03bb69943550 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -28,7 +28,7 @@ DEPEND="
 		sys-apps/systemd
 		sys-auth/elogind
 	)
-	sys-apps/dbus[user-session]
+	sys-apps/dbus
 	icons? (
 		x11-libs/gtk+:3
 		x11-libs/gdk-pixbuf


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-12-24  4:47 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2021-12-24  4:47 UTC (permalink / raw
  To: gentoo-commits

commit:     8f162d2e7717b30d130925a72129d56a4fbd4daa
Author:     Michael Kupfer <mkupfer99 <AT> gmail <DOT> com>
AuthorDate: Wed Dec 15 11:15:12 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 24 04:47:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f162d2e

gui-apps/mako: Add sys-libs/basu sd-bus-provider

Add sys-libs/basu as alternative sd-bus-provider besides elogind and
systemd

Bug: https://bugs.gentoo.org/783156
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Michael Kupfer <mkupfer99 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23314
Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/mako/{mako-1.6-r1.ebuild => mako-1.6-r2.ebuild} | 1 +
 gui-apps/mako/mako-9999.ebuild                           | 1 +
 2 files changed, 2 insertions(+)

diff --git a/gui-apps/mako/mako-1.6-r1.ebuild b/gui-apps/mako/mako-1.6-r2.ebuild
similarity index 98%
rename from gui-apps/mako/mako-1.6-r1.ebuild
rename to gui-apps/mako/mako-1.6-r2.ebuild
index 04524a673446..89b09c2d756e 100644
--- a/gui-apps/mako/mako-1.6-r1.ebuild
+++ b/gui-apps/mako/mako-1.6-r2.ebuild
@@ -27,6 +27,7 @@ DEPEND="
 	|| (
 		sys-apps/systemd
 		sys-auth/elogind
+		sys-libs/basu
 	)
 	sys-apps/dbus
 	icons? (

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 03bb69943550..920feefafb99 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -27,6 +27,7 @@ DEPEND="
 	|| (
 		sys-apps/systemd
 		sys-auth/elogind
+		sys-libs/basu
 	)
 	sys-apps/dbus
 	icons? (


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2021-12-25 22:10 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2021-12-25 22:10 UTC (permalink / raw
  To: gentoo-commits

commit:     97985fb97c421b1301b70c750f90051fbcf70bae
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 25 22:08:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 25 22:09:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97985fb9

gui-apps/mako: fix automagic basu usage

Not sure how I missed that before!

Fixes: 8f162d2e7717b30d130925a72129d56a4fbd4daa
Closes: https://bugs.gentoo.org/783156
Reported-by: Arsen Arsenovic <arsen <AT> aarsen.me>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../mako/{mako-1.6-r2.ebuild => mako-1.6-r3.ebuild}     | 17 +++++++++++++----
 gui-apps/mako/mako-9999.ebuild                          | 17 +++++++++++++----
 2 files changed, 26 insertions(+), 8 deletions(-)

diff --git a/gui-apps/mako/mako-1.6-r2.ebuild b/gui-apps/mako/mako-1.6-r3.ebuild
similarity index 72%
rename from gui-apps/mako/mako-1.6-r2.ebuild
rename to gui-apps/mako/mako-1.6-r3.ebuild
index 89b09c2d756e..dc520d5f6127 100644
--- a/gui-apps/mako/mako-1.6-r2.ebuild
+++ b/gui-apps/mako/mako-1.6-r3.ebuild
@@ -13,20 +13,20 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm64 x86"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="+icons"
+IUSE="elogind +icons systemd"
 
 DEPEND="
 	dev-libs/wayland
 	x11-libs/pango
 	x11-libs/cairo
 	|| (
-		sys-apps/systemd
-		sys-auth/elogind
+		systemd? ( sys-apps/systemd )
+		elogind? ( sys-auth/elogind )
 		sys-libs/basu
 	)
 	sys-apps/dbus
@@ -49,5 +49,14 @@ src_configure() {
 		-Dicons=$(usex icons enabled disabled)
 		"-Dwerror=false"
 	)
+
+	if use systemd ; then
+		emesonargs+=( -Dsd-bus-provider=libsystemd )
+	elif use elogind ; then
+		emesonargs+=( -Dsd-bus-provider=libelogind )
+	else
+		emesonargs+=( -Dsd-bus-provider=basu )
+	fi
+
 	meson_src_configure
 }

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 920feefafb99..dc520d5f6127 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -18,15 +18,15 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="+icons"
+IUSE="elogind +icons systemd"
 
 DEPEND="
 	dev-libs/wayland
 	x11-libs/pango
 	x11-libs/cairo
 	|| (
-		sys-apps/systemd
-		sys-auth/elogind
+		systemd? ( sys-apps/systemd )
+		elogind? ( sys-auth/elogind )
 		sys-libs/basu
 	)
 	sys-apps/dbus
@@ -37,7 +37,7 @@ DEPEND="
 "
 RDEPEND="
 	${DEPEND}
-	dev-libs/wayland-protocols
+	>=dev-libs/wayland-protocols-1.21
 "
 BDEPEND="
 	virtual/pkgconfig
@@ -49,5 +49,14 @@ src_configure() {
 		-Dicons=$(usex icons enabled disabled)
 		"-Dwerror=false"
 	)
+
+	if use systemd ; then
+		emesonargs+=( -Dsd-bus-provider=libsystemd )
+	elif use elogind ; then
+		emesonargs+=( -Dsd-bus-provider=libelogind )
+	else
+		emesonargs+=( -Dsd-bus-provider=basu )
+	fi
+
 	meson_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-01-31 20:11 Jakov Smolić
  0 siblings, 0 replies; 42+ messages in thread
From: Jakov Smolić @ 2022-01-31 20:11 UTC (permalink / raw
  To: gentoo-commits

commit:     937c11e97eda8b898ee656d72a04a6f8e372d293
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 31 20:11:14 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Jan 31 20:11:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937c11e9

gui-apps/mako: Stabilize 1.6-r3 amd64, #832096

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 gui-apps/mako/mako-1.6-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/mako/mako-1.6-r3.ebuild b/gui-apps/mako/mako-1.6-r3.ebuild
index e3550881594a..219a0b276032 100644
--- a/gui-apps/mako/mako-1.6-r3.ebuild
+++ b/gui-apps/mako/mako-1.6-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-05-17  5:59 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2022-05-17  5:59 UTC (permalink / raw
  To: gentoo-commits

commit:     2dc144322fbc3d17a0e667926f3f5d00ec84838a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 17 05:53:29 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 17 05:53:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc14432

gui-apps/mako: [QA] drop implicit -Dwerror=false for meson ebuilds

Since f7408ada0c4655827e7bea46c57d7af1b9004433, it's

always set for Meson builds, so we don't need to

repeat it in ebuilds.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/mako/mako-1.6-r3.ebuild | 1 -
 gui-apps/mako/mako-9999.ebuild   | 3 +--
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/gui-apps/mako/mako-1.6-r3.ebuild b/gui-apps/mako/mako-1.6-r3.ebuild
index 219a0b276032..a5b496449431 100644
--- a/gui-apps/mako/mako-1.6-r3.ebuild
+++ b/gui-apps/mako/mako-1.6-r3.ebuild
@@ -47,7 +47,6 @@ BDEPEND="
 src_configure() {
 	local emesonargs=(
 		-Dicons=$(usex icons enabled disabled)
-		"-Dwerror=false"
 	)
 
 	if use systemd ; then

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index e3550881594a..597e5e7acd03 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -47,7 +47,6 @@ BDEPEND="
 src_configure() {
 	local emesonargs=(
 		-Dicons=$(usex icons enabled disabled)
-		"-Dwerror=false"
 	)
 
 	if use systemd ; then


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-07-07 16:10 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2022-07-07 16:10 UTC (permalink / raw
  To: gentoo-commits

commit:     17259f5db338335f177cc6c3277e6885a427b404
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  7 16:00:02 2022 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jul  7 16:10:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17259f5d

gui-apps/mako: 1.7.1 bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest          |  1 +
 gui-apps/mako/mako-1.7.1.ebuild | 61 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index cef4811e1719..9d60d69ce201 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.6.tar.gz 60468 BLAKE2B 77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13 SHA512 1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf
+DIST mako-1.7.1.tar.gz 62511 BLAKE2B 2556e0be7181999624cfa09898649c61a18691559c9693660db0ff79966bead32c327f217ecc66110526f5dfe02154083334ae8fa82f110869a59f29fa9bc5ae SHA512 a6066327fe6f19eb2717773dca0ea52eb1ad5c402780d12aa07b184f8a11c27a7c77e5c037cd9ff618bce35caa740da1af6ad3b41509e80e75ab5c0efb032588

diff --git a/gui-apps/mako/mako-1.7.1.ebuild b/gui-apps/mako/mako-1.7.1.ebuild
new file mode 100644
index 000000000000..043c21616341
--- /dev/null
+++ b/gui-apps/mako/mako-1.7.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="elogind +icons systemd"
+
+DEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		systemd? ( sys-apps/systemd )
+		elogind? ( sys-auth/elogind )
+		sys-libs/basu
+	)
+	sys-apps/dbus
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+	>=dev-libs/wayland-protocols-1.21
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+	)
+
+	if use systemd ; then
+		emesonargs+=( -Dsd-bus-provider=libsystemd )
+	elif use elogind ; then
+		emesonargs+=( -Dsd-bus-provider=libelogind )
+	else
+		emesonargs+=( -Dsd-bus-provider=basu )
+	fi
+
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-07-07 20:51 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2022-07-07 20:51 UTC (permalink / raw
  To: gentoo-commits

commit:     b9f608ac5af85058cdf603c897e919e694844b2b
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  7 20:51:00 2022 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Jul  7 20:51:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9f608ac

gui-apps/mako: add missing wayland-scanner dep

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.7.1.ebuild | 1 +
 gui-apps/mako/mako-9999.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/gui-apps/mako/mako-1.7.1.ebuild b/gui-apps/mako/mako-1.7.1.ebuild
index 043c21616341..fdd5238afe72 100644
--- a/gui-apps/mako/mako-1.7.1.ebuild
+++ b/gui-apps/mako/mako-1.7.1.ebuild
@@ -22,6 +22,7 @@ IUSE="elogind +icons systemd"
 
 DEPEND="
 	dev-libs/wayland
+	dev-util/wayland-scanner
 	x11-libs/pango
 	x11-libs/cairo
 	|| (

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 597e5e7acd03..a92179a0efdb 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -22,6 +22,7 @@ IUSE="elogind +icons systemd"
 
 DEPEND="
 	dev-libs/wayland
+	dev-util/wayland-scanner
 	x11-libs/pango
 	x11-libs/cairo
 	|| (


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-08-09  1:09 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2022-08-09  1:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a4b721272baae16c34d75a6f28347602bcd9af85
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  9 01:07:58 2022 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Aug  9 01:08:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b72127

gui-apps/mako: stabilize 1.7.1 for amd64, x86

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.7.1.ebuild b/gui-apps/mako/mako-1.7.1.ebuild
index fdd5238afe72..925e99a9c3eb 100644
--- a/gui-apps/mako/mako-1.7.1.ebuild
+++ b/gui-apps/mako/mako-1.7.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-08-15  2:40 John Helmert III
  0 siblings, 0 replies; 42+ messages in thread
From: John Helmert III @ 2022-08-15  2:40 UTC (permalink / raw
  To: gentoo-commits

commit:     4e4773b156dee91fd662dab42a1bdda0a6044d17
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 19:36:24 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 02:40:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e4773b1

gui-apps/mako: install systemd user unit and completions

Closes: https://github.com/gentoo/gentoo/pull/26572
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 gui-apps/mako/mako-1.7.1-r1.ebuild | 71 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 71 insertions(+)

diff --git a/gui-apps/mako/mako-1.7.1-r1.ebuild b/gui-apps/mako/mako-1.7.1-r1.ebuild
new file mode 100644
index 000000000000..6ffde2623461
--- /dev/null
+++ b/gui-apps/mako/mako-1.7.1-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson systemd
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="elogind +icons systemd"
+
+DEPEND="
+	dev-libs/wayland
+	dev-util/wayland-scanner
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		systemd? ( sys-apps/systemd )
+		elogind? ( sys-auth/elogind )
+		sys-libs/basu
+	)
+	sys-apps/dbus
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+RDEPEND="
+	${DEPEND}
+	>=dev-libs/wayland-protocols-1.21
+"
+BDEPEND="
+	virtual/pkgconfig
+	app-text/scdoc
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		-Dzsh-completions=true
+		-Dfish-completions=true
+		-Dbash-completions=true
+	)
+
+	if use systemd ; then
+		emesonargs+=( -Dsd-bus-provider=libsystemd )
+	elif use elogind ; then
+		emesonargs+=( -Dsd-bus-provider=libelogind )
+	else
+		emesonargs+=( -Dsd-bus-provider=basu )
+	fi
+
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+
+	systemd_douserunit contrib/systemd/mako.service
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2022-09-09  4:48 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2022-09-09  4:48 UTC (permalink / raw
  To: gentoo-commits

commit:     43e7496de6b5c456694a2e1ddb20011f50f938dc
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  9 04:46:19 2022 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Sep  9 04:48:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e7496d

gui-apps/mako: drop 1.6-r3

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest           |  1 -
 gui-apps/mako/mako-1.6-r3.ebuild | 61 ----------------------------------------
 2 files changed, 62 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 9d60d69ce201..43829ed23d19 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1 @@
-DIST mako-1.6.tar.gz 60468 BLAKE2B 77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13 SHA512 1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf
 DIST mako-1.7.1.tar.gz 62511 BLAKE2B 2556e0be7181999624cfa09898649c61a18691559c9693660db0ff79966bead32c327f217ecc66110526f5dfe02154083334ae8fa82f110869a59f29fa9bc5ae SHA512 a6066327fe6f19eb2717773dca0ea52eb1ad5c402780d12aa07b184f8a11c27a7c77e5c037cd9ff618bce35caa740da1af6ad3b41509e80e75ab5c0efb032588

diff --git a/gui-apps/mako/mako-1.6-r3.ebuild b/gui-apps/mako/mako-1.6-r3.ebuild
deleted file mode 100644
index a5b496449431..000000000000
--- a/gui-apps/mako/mako-1.6-r3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="elogind +icons systemd"
-
-DEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		systemd? ( sys-apps/systemd )
-		elogind? ( sys-auth/elogind )
-		sys-libs/basu
-	)
-	sys-apps/dbus
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-RDEPEND="
-	${DEPEND}
-	>=dev-libs/wayland-protocols-1.21
-"
-BDEPEND="
-	virtual/pkgconfig
-	app-text/scdoc
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-	)
-
-	if use systemd ; then
-		emesonargs+=( -Dsd-bus-provider=libsystemd )
-	elif use elogind ; then
-		emesonargs+=( -Dsd-bus-provider=libelogind )
-	else
-		emesonargs+=( -Dsd-bus-provider=basu )
-	fi
-
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2023-03-11 17:04 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2023-03-11 17:04 UTC (permalink / raw
  To: gentoo-commits

commit:     1639fd9e5b6f15fc4a4f77be5f4044a48e34e1f4
Author:     Aisha Tammy <aisha <AT> bsd <DOT> ac>
AuthorDate: Fri Feb 24 21:38:13 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 17:04:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1639fd9e

gui-apps/mako: wayland-scanner/protocol BDEPEND/DEPEND fixes

Signed-off-by: Aisha Tammy <aisha <AT> bsd.ac>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/mako/mako-1.7.1-r1.ebuild | 12 ++++++------
 gui-apps/mako/mako-9999.ebuild     | 25 +++++++++++++++++--------
 2 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/gui-apps/mako/mako-1.7.1-r1.ebuild b/gui-apps/mako/mako-1.7.1-r1.ebuild
index 6ffde2623461..13a9eb711c00 100644
--- a/gui-apps/mako/mako-1.7.1-r1.ebuild
+++ b/gui-apps/mako/mako-1.7.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,9 +20,8 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="elogind +icons systemd"
 
-DEPEND="
+RDEPEND="
 	dev-libs/wayland
-	dev-util/wayland-scanner
 	x11-libs/pango
 	x11-libs/cairo
 	|| (
@@ -36,13 +35,14 @@ DEPEND="
 		x11-libs/gdk-pixbuf
 	)
 "
-RDEPEND="
-	${DEPEND}
+DEPEND="
+	${RDEPEND}
 	>=dev-libs/wayland-protocols-1.21
 "
 BDEPEND="
-	virtual/pkgconfig
 	app-text/scdoc
+	dev-util/wayland-scanner
+	virtual/pkgconfig
 "
 
 src_configure() {

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index a92179a0efdb..13a9eb711c00 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-inherit meson
+inherit meson systemd
 
 DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
 HOMEPAGE="https://github.com/emersion/mako"
@@ -20,9 +20,8 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="elogind +icons systemd"
 
-DEPEND="
+RDEPEND="
 	dev-libs/wayland
-	dev-util/wayland-scanner
 	x11-libs/pango
 	x11-libs/cairo
 	|| (
@@ -36,18 +35,22 @@ DEPEND="
 		x11-libs/gdk-pixbuf
 	)
 "
-RDEPEND="
-	${DEPEND}
+DEPEND="
+	${RDEPEND}
 	>=dev-libs/wayland-protocols-1.21
 "
 BDEPEND="
-	virtual/pkgconfig
 	app-text/scdoc
+	dev-util/wayland-scanner
+	virtual/pkgconfig
 "
 
 src_configure() {
 	local emesonargs=(
 		-Dicons=$(usex icons enabled disabled)
+		-Dzsh-completions=true
+		-Dfish-completions=true
+		-Dbash-completions=true
 	)
 
 	if use systemd ; then
@@ -60,3 +63,9 @@ src_configure() {
 
 	meson_src_configure
 }
+
+src_install() {
+	meson_src_install
+
+	systemd_douserunit contrib/systemd/mako.service
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2023-06-02  0:13 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2023-06-02  0:13 UTC (permalink / raw
  To: gentoo-commits

commit:     3483d7c3de4048ef4acdac4546b2be43cee5eccd
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  2 00:13:51 2023 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Jun  2 00:13:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3483d7c3

gui-apps/mako: add 1.8.0

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest          |  1 +
 gui-apps/mako/mako-1.8.0.ebuild | 71 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 43829ed23d19..b904781a33e2 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.7.1.tar.gz 62511 BLAKE2B 2556e0be7181999624cfa09898649c61a18691559c9693660db0ff79966bead32c327f217ecc66110526f5dfe02154083334ae8fa82f110869a59f29fa9bc5ae SHA512 a6066327fe6f19eb2717773dca0ea52eb1ad5c402780d12aa07b184f8a11c27a7c77e5c037cd9ff618bce35caa740da1af6ad3b41509e80e75ab5c0efb032588
+DIST mako-1.8.0.tar.gz 63143 BLAKE2B da39c1d2a1748649432d2760831cee7c9b135114b8e36c48a87900d9a3610fc5103c15f2ed511344d84a3142aa76ddd3680177318d0e096ad0574952632dc0b7 SHA512 d187c00296f3c3d4fb2c5964a95e1ac6ab74deb7dc27633d8e8301d60d90e4dc92b0ee66953670c42a3c08160536a4126ee747214c4ea05a30a80fd5e2004ad0

diff --git a/gui-apps/mako/mako-1.8.0.ebuild b/gui-apps/mako/mako-1.8.0.ebuild
new file mode 100644
index 000000000000..13a9eb711c00
--- /dev/null
+++ b/gui-apps/mako/mako-1.8.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson systemd
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="elogind +icons systemd"
+
+RDEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		systemd? ( sys-apps/systemd )
+		elogind? ( sys-auth/elogind )
+		sys-libs/basu
+	)
+	sys-apps/dbus
+	icons? (
+		x11-libs/gtk+:3
+		x11-libs/gdk-pixbuf
+	)
+"
+DEPEND="
+	${RDEPEND}
+	>=dev-libs/wayland-protocols-1.21
+"
+BDEPEND="
+	app-text/scdoc
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		-Dzsh-completions=true
+		-Dfish-completions=true
+		-Dbash-completions=true
+	)
+
+	if use systemd ; then
+		emesonargs+=( -Dsd-bus-provider=libsystemd )
+	elif use elogind ; then
+		emesonargs+=( -Dsd-bus-provider=libelogind )
+	else
+		emesonargs+=( -Dsd-bus-provider=basu )
+	fi
+
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+
+	systemd_douserunit contrib/systemd/mako.service
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2023-07-02  1:46 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2023-07-02  1:46 UTC (permalink / raw
  To: gentoo-commits

commit:     7e20372372500cc386675d7a55c26329124b2e6b
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  2 01:45:34 2023 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Jul  2 01:46:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e203723

gui-apps/mako: stabilize 1.8.0 for amd64, x86

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/mako-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.8.0.ebuild b/gui-apps/mako/mako-1.8.0.ebuild
index 13a9eb711c00..4361439a58d3 100644
--- a/gui-apps/mako/mako-1.8.0.ebuild
+++ b/gui-apps/mako/mako-1.8.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2023-08-01 21:26 Matthew Thode
  0 siblings, 0 replies; 42+ messages in thread
From: Matthew Thode @ 2023-08-01 21:26 UTC (permalink / raw
  To: gentoo-commits

commit:     0cc3d85aa427a4d841346dbb8ba3a4c23804c8dd
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 21:26:27 2023 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 21:26:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cc3d85a

gui-apps/mako: drop 1.7.1, 1.7.1-r1

Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 gui-apps/mako/Manifest             |  1 -
 gui-apps/mako/mako-1.7.1-r1.ebuild | 71 --------------------------------------
 gui-apps/mako/mako-1.7.1.ebuild    | 62 ---------------------------------
 3 files changed, 134 deletions(-)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index b904781a33e2..47e3b7079483 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1,2 +1 @@
-DIST mako-1.7.1.tar.gz 62511 BLAKE2B 2556e0be7181999624cfa09898649c61a18691559c9693660db0ff79966bead32c327f217ecc66110526f5dfe02154083334ae8fa82f110869a59f29fa9bc5ae SHA512 a6066327fe6f19eb2717773dca0ea52eb1ad5c402780d12aa07b184f8a11c27a7c77e5c037cd9ff618bce35caa740da1af6ad3b41509e80e75ab5c0efb032588
 DIST mako-1.8.0.tar.gz 63143 BLAKE2B da39c1d2a1748649432d2760831cee7c9b135114b8e36c48a87900d9a3610fc5103c15f2ed511344d84a3142aa76ddd3680177318d0e096ad0574952632dc0b7 SHA512 d187c00296f3c3d4fb2c5964a95e1ac6ab74deb7dc27633d8e8301d60d90e4dc92b0ee66953670c42a3c08160536a4126ee747214c4ea05a30a80fd5e2004ad0

diff --git a/gui-apps/mako/mako-1.7.1-r1.ebuild b/gui-apps/mako/mako-1.7.1-r1.ebuild
deleted file mode 100644
index 13a9eb711c00..000000000000
--- a/gui-apps/mako/mako-1.7.1-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson systemd
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="elogind +icons systemd"
-
-RDEPEND="
-	dev-libs/wayland
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		systemd? ( sys-apps/systemd )
-		elogind? ( sys-auth/elogind )
-		sys-libs/basu
-	)
-	sys-apps/dbus
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-DEPEND="
-	${RDEPEND}
-	>=dev-libs/wayland-protocols-1.21
-"
-BDEPEND="
-	app-text/scdoc
-	dev-util/wayland-scanner
-	virtual/pkgconfig
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-		-Dzsh-completions=true
-		-Dfish-completions=true
-		-Dbash-completions=true
-	)
-
-	if use systemd ; then
-		emesonargs+=( -Dsd-bus-provider=libsystemd )
-	elif use elogind ; then
-		emesonargs+=( -Dsd-bus-provider=libelogind )
-	else
-		emesonargs+=( -Dsd-bus-provider=basu )
-	fi
-
-	meson_src_configure
-}
-
-src_install() {
-	meson_src_install
-
-	systemd_douserunit contrib/systemd/mako.service
-}

diff --git a/gui-apps/mako/mako-1.7.1.ebuild b/gui-apps/mako/mako-1.7.1.ebuild
deleted file mode 100644
index 925e99a9c3eb..000000000000
--- a/gui-apps/mako/mako-1.7.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
-HOMEPAGE="https://github.com/emersion/mako"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
-else
-	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="elogind +icons systemd"
-
-DEPEND="
-	dev-libs/wayland
-	dev-util/wayland-scanner
-	x11-libs/pango
-	x11-libs/cairo
-	|| (
-		systemd? ( sys-apps/systemd )
-		elogind? ( sys-auth/elogind )
-		sys-libs/basu
-	)
-	sys-apps/dbus
-	icons? (
-		x11-libs/gtk+:3
-		x11-libs/gdk-pixbuf
-	)
-"
-RDEPEND="
-	${DEPEND}
-	>=dev-libs/wayland-protocols-1.21
-"
-BDEPEND="
-	virtual/pkgconfig
-	app-text/scdoc
-"
-
-src_configure() {
-	local emesonargs=(
-		-Dicons=$(usex icons enabled disabled)
-	)
-
-	if use systemd ; then
-		emesonargs+=( -Dsd-bus-provider=libsystemd )
-	elif use elogind ; then
-		emesonargs+=( -Dsd-bus-provider=libelogind )
-	else
-		emesonargs+=( -Dsd-bus-provider=basu )
-	fi
-
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-01-29 11:33 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2024-01-29 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     96064ce3d91811084f7fecbeaa89c386a2f2ba85
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 29 11:33:32 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 29 11:33:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96064ce3

gui-apps/mako: Stabilize 1.8.0 arm64, #923249

Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/mako/mako-1.8.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/mako/mako-1.8.0.ebuild b/gui-apps/mako/mako-1.8.0.ebuild
index 4361439a58d3..70f06935c454 100644
--- a/gui-apps/mako/mako-1.8.0.ebuild
+++ b/gui-apps/mako/mako-1.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 x86"
+	KEYWORDS="amd64 arm64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-04-04 16:23 Arthur Zamarin
  0 siblings, 0 replies; 42+ messages in thread
From: Arthur Zamarin @ 2024-04-04 16:23 UTC (permalink / raw
  To: gentoo-commits

commit:     9d17bf28a9366d8c07848c028b722027da11e24b
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Wed Apr  3 02:19:39 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr  4 16:22:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d17bf28

gui-apps/mako: Keyword 1.8.0 ppc64, #927219

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/mako/mako-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.8.0.ebuild b/gui-apps/mako/mako-1.8.0.ebuild
index 70f06935c454..4e9d35e0d3de 100644
--- a/gui-apps/mako/mako-1.8.0.ebuild
+++ b/gui-apps/mako/mako-1.8.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm64 x86"
+	KEYWORDS="amd64 arm64 ~ppc64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-05-26 17:12 Arthur Zamarin
  0 siblings, 0 replies; 42+ messages in thread
From: Arthur Zamarin @ 2024-05-26 17:12 UTC (permalink / raw
  To: gentoo-commits

commit:     e93a0e1ff1c362945aa8463ff8bb349aa045c2c7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 17:08:16 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 26 17:12:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e93a0e1f

gui-apps/mako: sync live ebuild

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/mako/mako-9999.ebuild | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild
index 13a9eb711c00..29e50118f3ba 100644
--- a/gui-apps/mako/mako-9999.ebuild
+++ b/gui-apps/mako/mako-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"
@@ -31,13 +31,12 @@ RDEPEND="
 	)
 	sys-apps/dbus
 	icons? (
-		x11-libs/gtk+:3
 		x11-libs/gdk-pixbuf
 	)
 "
 DEPEND="
 	${RDEPEND}
-	>=dev-libs/wayland-protocols-1.21
+	>=dev-libs/wayland-protocols-1.32
 "
 BDEPEND="
 	app-text/scdoc


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-05-26 17:12 Arthur Zamarin
  0 siblings, 0 replies; 42+ messages in thread
From: Arthur Zamarin @ 2024-05-26 17:12 UTC (permalink / raw
  To: gentoo-commits

commit:     42c78621cb0db28ec47fe2701ce100e62354f126
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 17:07:54 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 26 17:12:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c78621

gui-apps/mako: add 1.9.0

Closes: https://bugs.gentoo.org/920102
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/mako/Manifest          |  1 +
 gui-apps/mako/mako-1.9.0.ebuild | 70 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
index 47e3b7079483..2255028c5408 100644
--- a/gui-apps/mako/Manifest
+++ b/gui-apps/mako/Manifest
@@ -1 +1,2 @@
 DIST mako-1.8.0.tar.gz 63143 BLAKE2B da39c1d2a1748649432d2760831cee7c9b135114b8e36c48a87900d9a3610fc5103c15f2ed511344d84a3142aa76ddd3680177318d0e096ad0574952632dc0b7 SHA512 d187c00296f3c3d4fb2c5964a95e1ac6ab74deb7dc27633d8e8301d60d90e4dc92b0ee66953670c42a3c08160536a4126ee747214c4ea05a30a80fd5e2004ad0
+DIST mako-1.9.0.tar.gz 63415 BLAKE2B 932f045cede44f79e4039a40118cdd4283413f86524d74703e84a3bf999af58d9ee605054480d369a33f81c7fcaed60415cb203fd32a22333adc1e88876f6a33 SHA512 da9c89dc698e44100960c9911c9da59e6f3dd5e95c8c0fbc489c9597dd614bb46074170b9621eba6ff692eff140f7be11ecc9da1a285b8e5c0975b7b53daabee

diff --git a/gui-apps/mako/mako-1.9.0.ebuild b/gui-apps/mako/mako-1.9.0.ebuild
new file mode 100644
index 000000000000..29e50118f3ba
--- /dev/null
+++ b/gui-apps/mako/mako-1.9.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson systemd
+
+DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway"
+HOMEPAGE="https://github.com/emersion/mako"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
+else
+	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="elogind +icons systemd"
+
+RDEPEND="
+	dev-libs/wayland
+	x11-libs/pango
+	x11-libs/cairo
+	|| (
+		systemd? ( sys-apps/systemd )
+		elogind? ( sys-auth/elogind )
+		sys-libs/basu
+	)
+	sys-apps/dbus
+	icons? (
+		x11-libs/gdk-pixbuf
+	)
+"
+DEPEND="
+	${RDEPEND}
+	>=dev-libs/wayland-protocols-1.32
+"
+BDEPEND="
+	app-text/scdoc
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dicons=$(usex icons enabled disabled)
+		-Dzsh-completions=true
+		-Dfish-completions=true
+		-Dbash-completions=true
+	)
+
+	if use systemd ; then
+		emesonargs+=( -Dsd-bus-provider=libsystemd )
+	elif use elogind ; then
+		emesonargs+=( -Dsd-bus-provider=libelogind )
+	else
+		emesonargs+=( -Dsd-bus-provider=basu )
+	fi
+
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+
+	systemd_douserunit contrib/systemd/mako.service
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-08-26 13:03 Arthur Zamarin
  0 siblings, 0 replies; 42+ messages in thread
From: Arthur Zamarin @ 2024-08-26 13:03 UTC (permalink / raw
  To: gentoo-commits

commit:     f8c6a9d96cdf296fa11de0263edd72ca727d6b4b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 13:02:54 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 13:02:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c6a9d9

gui-apps/mako: Stabilize 1.9.0 x86, #938524

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/mako/mako-1.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.9.0.ebuild b/gui-apps/mako/mako-1.9.0.ebuild
index d5ec9e9efddf..2b71d43aeb1d 100644
--- a/gui-apps/mako/mako-1.9.0.ebuild
+++ b/gui-apps/mako/mako-1.9.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-08-26 13:03 Arthur Zamarin
  0 siblings, 0 replies; 42+ messages in thread
From: Arthur Zamarin @ 2024-08-26 13:03 UTC (permalink / raw
  To: gentoo-commits

commit:     fcd886b0dfefe33b074028157b5d5fe328cf571a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 13:02:51 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 13:02:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcd886b0

gui-apps/mako: Stabilize 1.9.0 amd64, #938524

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/mako/mako-1.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.9.0.ebuild b/gui-apps/mako/mako-1.9.0.ebuild
index 29e50118f3ba..d5ec9e9efddf 100644
--- a/gui-apps/mako/mako-1.9.0.ebuild
+++ b/gui-apps/mako/mako-1.9.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
@ 2024-08-26 16:34 Sam James
  0 siblings, 0 replies; 42+ messages in thread
From: Sam James @ 2024-08-26 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     8e9cfa7f2c57f4c110ab72561914beda851da9cc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 16:34:42 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 16:34:42 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9cfa7f

gui-apps/mako: Stabilize 1.9.0 arm64, #938524

Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/mako/mako-1.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/mako/mako-1.9.0.ebuild b/gui-apps/mako/mako-1.9.0.ebuild
index 2b71d43aeb1d..adea0bc11373 100644
--- a/gui-apps/mako/mako-1.9.0.ebuild
+++ b/gui-apps/mako/mako-1.9.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
 else
 	SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+	KEYWORDS="amd64 arm64 ~ppc64 x86"
 fi
 
 LICENSE="MIT"


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

end of thread, other threads:[~2024-08-26 16:34 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-13  5:24 [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/ Matthew Thode
  -- strict thread matches above, loose matches on Subject: below --
2024-08-26 16:34 Sam James
2024-08-26 13:03 Arthur Zamarin
2024-08-26 13:03 Arthur Zamarin
2024-05-26 17:12 Arthur Zamarin
2024-05-26 17:12 Arthur Zamarin
2024-04-04 16:23 Arthur Zamarin
2024-01-29 11:33 Sam James
2023-08-01 21:26 Matthew Thode
2023-07-02  1:46 Matthew Thode
2023-06-02  0:13 Matthew Thode
2023-03-11 17:04 Sam James
2022-09-09  4:48 Matthew Thode
2022-08-15  2:40 John Helmert III
2022-08-09  1:09 Matthew Thode
2022-07-07 20:51 Matthew Thode
2022-07-07 16:10 Matthew Thode
2022-05-17  5:59 Sam James
2022-01-31 20:11 Jakov Smolić
2021-12-25 22:10 Sam James
2021-12-24  4:47 Sam James
2021-11-14 16:38 Mike Gilbert
2021-09-24  2:25 Matthew Thode
2021-08-11 14:35 Matthew Thode
2021-07-12  3:00 Matthew Thode
2021-07-05 20:02 Matthew Thode
2021-06-06  3:49 Matthew Thode
2021-05-09  4:42 Sam James
2021-05-04 21:13 Matthew Thode
2020-02-21  1:09 Matthew Thode
2020-02-14 16:57 Matthew Thode
2020-02-13 22:54 Matthew Thode
2020-02-13 22:54 Matthew Thode
2019-08-19 15:32 Matthew Thode
2019-07-19 19:22 Matthew Thode
2019-05-29 20:45 Aaron Bauman
2019-05-15 20:19 Matthew Thode
2019-04-24 23:11 Thomas Deutschmann
2019-04-19 19:47 Matthew Thode
2019-04-10  5:03 Aaron Bauman
2019-04-10  3:01 Aaron Bauman
2019-04-05 22:58 Matthew Thode

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox