* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-21 5:33 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-02-21 5:33 UTC (permalink / raw
To: gentoo-commits
commit: 963682efb607ce819c8ce462abdb170db230186f
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Feb 21 05:33:27 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Feb 21 05:33:27 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=963682ef
gui-apps/swaync: Initial commit
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/Manifest | 1 +
gui-apps/swaync/metadata.xml | 23 ++++++++++++++++++++
gui-apps/swaync/swaync-0.4.ebuild | 44 +++++++++++++++++++++++++++++++++++++++
3 files changed, 68 insertions(+)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
new file mode 100644
index 000000000..d404c3ee6
--- /dev/null
+++ b/gui-apps/swaync/Manifest
@@ -0,0 +1 @@
+DIST swaync-0.4.tar.gz 3131182 BLAKE2B 22c1fcca55247fc1fe242c798e3c8cd6ad9af8be716f2849237c3ed14f1a9b68550cca6c3a34b5ab4e92e19afaf48c648d28f46c0b535dbb9def98a79b524dbe SHA512 e3394c913e0f06ad47c6062dbc60e885860bfaf2c095bb7c7f2011884f73b4c7308d5dc09969cf2570daca35950c378d6fdfdeb23b715a6115c2a44a97f437e0
diff --git a/gui-apps/swaync/metadata.xml b/gui-apps/swaync/metadata.xml
new file mode 100644
index 000000000..14d598f67
--- /dev/null
+++ b/gui-apps/swaync/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <name>Jonas Frei</name>
+ <email>freijon@pm.me</email>
+ </maintainer>
+ <longdescription lang="en">
+ A simple notification daemon with a GTK gui for notifications
+ and the control center
+ </longdescription>
+ <upstream>
+ <remote-id type="github">ErikReider/SwayNotificationCenter</remote-id>
+ <bugs-to>https://github.com/ErikReider/SwayNotificationCenter/issues</bugs-to>
+ </upstream>
+ <use>
+ <flag name="bash-completion">Install bash completions</flag>
+ <flag name="fish-completion">Install fish completions</flag>
+ <flag name="systemd">Install systemd .service file</flag>
+ <flag name="scripting">Enable scripting feature</flag>
+ <flag name="zsh-completion">Install zsh completions</flag>
+ </use>
+</pkgmetadata>
diff --git a/gui-apps/swaync/swaync-0.4.ebuild b/gui-apps/swaync/swaync-0.4.ebuild
new file mode 100644
index 000000000..5adf03b79
--- /dev/null
+++ b/gui-apps/swaync/swaync-0.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A simple notification daemon with a GTK gui for notifications and control center"
+HOMEPAGE="https://github.com/ErikReider/SwayNotificationCenter"
+SRC_URI="https://github.com/ErikReider/SwayNotificationCenter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/SwayNotificationCenter-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="bash-completion fish-completion scripting systemd zsh-completion"
+
+DEPEND="
+ dev-libs/glib
+ dev-libs/gobject-introspection
+ dev-libs/json-glib
+ dev-libs/libgee
+ dev-libs/wayland
+ gui-libs/gtk-layer-shell
+ gui-libs/libhandy
+ sys-apps/dbus
+ x11-libs/gtk+
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ dev-lang/vala
+ dev-util/meson
+"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_use bash-completion bash-completions)
+ $(meson_use fish-completion fish-completions)
+ $(meson_use scripting)
+ $(meson_use systemd systemd-service)
+ $(meson_use zsh-completion zsh-completions)
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-21 6:03 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-02-21 6:03 UTC (permalink / raw
To: gentoo-commits
commit: fe1c4a94c4e3e0fbaaf127fecaa4722276a62205
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Feb 21 06:03:17 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Feb 21 06:03:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fe1c4a94
gui-apps/swaync: Used upstream USE flag descriptions
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/metadata.xml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gui-apps/swaync/metadata.xml b/gui-apps/swaync/metadata.xml
index 14d598f67..562db1bd0 100644
--- a/gui-apps/swaync/metadata.xml
+++ b/gui-apps/swaync/metadata.xml
@@ -14,10 +14,10 @@
<bugs-to>https://github.com/ErikReider/SwayNotificationCenter/issues</bugs-to>
</upstream>
<use>
- <flag name="bash-completion">Install bash completions</flag>
- <flag name="fish-completion">Install fish completions</flag>
- <flag name="systemd">Install systemd .service file</flag>
- <flag name="scripting">Enable scripting feature</flag>
- <flag name="zsh-completion">Install zsh completions</flag>
+ <flag name="bash-completion">Install bash shell completions</flag>
+ <flag name="fish-completion">Install fish shell completions.</flag>
+ <flag name="systemd">Install systemd user service unit</flag>
+ <flag name="scripting">Enable notification scripting</flag>
+ <flag name="zsh-completion">Install bash shell completions.</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-21 8:25 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-02-21 8:25 UTC (permalink / raw
To: gentoo-commits
commit: bdd586fa7eb420a5379c2bdb3813c8e30f07d5ea
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Feb 21 06:07:34 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Feb 21 06:07:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bdd586fa
gui-apps/swaync: Removed punctuation
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/swaync/metadata.xml b/gui-apps/swaync/metadata.xml
index 562db1bd0..325f2c8a0 100644
--- a/gui-apps/swaync/metadata.xml
+++ b/gui-apps/swaync/metadata.xml
@@ -15,9 +15,9 @@
</upstream>
<use>
<flag name="bash-completion">Install bash shell completions</flag>
- <flag name="fish-completion">Install fish shell completions.</flag>
+ <flag name="fish-completion">Install fish shell completions</flag>
<flag name="systemd">Install systemd user service unit</flag>
<flag name="scripting">Enable notification scripting</flag>
- <flag name="zsh-completion">Install bash shell completions.</flag>
+ <flag name="zsh-completion">Install bash shell completions</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-21 10:54 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-02-21 10:54 UTC (permalink / raw
To: gentoo-commits
commit: ad9b18686dff9d1ac69142eb1622acaaaaef77d8
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Feb 21 10:53:57 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Feb 21 10:53:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad9b1868
gui-apps/swaync: Added SLOT for gtk+ dependency
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/swaync-0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/swaync-0.4.ebuild b/gui-apps/swaync/swaync-0.4.ebuild
index 5adf03b79..33def7742 100644
--- a/gui-apps/swaync/swaync-0.4.ebuild
+++ b/gui-apps/swaync/swaync-0.4.ebuild
@@ -24,7 +24,7 @@ DEPEND="
gui-libs/gtk-layer-shell
gui-libs/libhandy
sys-apps/dbus
- x11-libs/gtk+
+ x11-libs/gtk+:3
"
RDEPEND="${DEPEND}"
BDEPEND="
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-21 11:09 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-02-21 11:09 UTC (permalink / raw
To: gentoo-commits
commit: 93d92555e9c21e2946ede4fcb4acc2e30315b654
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Feb 21 11:09:40 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Feb 21 11:09:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=93d92555
gui-apps/swaync: Added version to gtk-layer-shell dependency
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/swaync-0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/swaync-0.4.ebuild b/gui-apps/swaync/swaync-0.4.ebuild
index 33def7742..3bcbd9875 100644
--- a/gui-apps/swaync/swaync-0.4.ebuild
+++ b/gui-apps/swaync/swaync-0.4.ebuild
@@ -21,7 +21,7 @@ DEPEND="
dev-libs/json-glib
dev-libs/libgee
dev-libs/wayland
- gui-libs/gtk-layer-shell
+ >=gui-libs/gtk-layer-shell-0.6.0
gui-libs/libhandy
sys-apps/dbus
x11-libs/gtk+:3
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-23 4:55 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-02-23 4:55 UTC (permalink / raw
To: gentoo-commits
commit: d976b8fed0d1467e4a582ac16f8b148746de095b
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Feb 23 04:54:41 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Feb 23 04:54:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d976b8fe
gui-apps/swaync: Fixing bug https://bugs.gentoo.org/833925
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/metadata.xml | 4 ----
gui-apps/swaync/swaync-0.4.ebuild | 6 +-----
2 files changed, 1 insertion(+), 9 deletions(-)
diff --git a/gui-apps/swaync/metadata.xml b/gui-apps/swaync/metadata.xml
index 325f2c8a0..8a1d06e20 100644
--- a/gui-apps/swaync/metadata.xml
+++ b/gui-apps/swaync/metadata.xml
@@ -14,10 +14,6 @@
<bugs-to>https://github.com/ErikReider/SwayNotificationCenter/issues</bugs-to>
</upstream>
<use>
- <flag name="bash-completion">Install bash shell completions</flag>
- <flag name="fish-completion">Install fish shell completions</flag>
- <flag name="systemd">Install systemd user service unit</flag>
<flag name="scripting">Enable notification scripting</flag>
- <flag name="zsh-completion">Install bash shell completions</flag>
</use>
</pkgmetadata>
diff --git a/gui-apps/swaync/swaync-0.4.ebuild b/gui-apps/swaync/swaync-0.4.ebuild
index 3bcbd9875..814af4afb 100644
--- a/gui-apps/swaync/swaync-0.4.ebuild
+++ b/gui-apps/swaync/swaync-0.4.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/SwayNotificationCenter-${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="bash-completion fish-completion scripting systemd zsh-completion"
+IUSE="scripting"
DEPEND="
dev-libs/glib
@@ -34,11 +34,7 @@ BDEPEND="
src_configure() {
local emesonargs=(
- $(meson_use bash-completion bash-completions)
- $(meson_use fish-completion fish-completions)
$(meson_use scripting)
- $(meson_use systemd systemd-service)
- $(meson_use zsh-completion zsh-completions)
)
meson_src_configure
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-02-23 13:44 Anna Vyalkova
0 siblings, 0 replies; 19+ messages in thread
From: Anna Vyalkova @ 2022-02-23 13:44 UTC (permalink / raw
To: gentoo-commits
commit: f2bcc87665237ab1b3f4f9fef8a45343fadc65d3
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Feb 21 18:35:43 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Feb 23 13:29:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2bcc876
gui-apps/swaync: fix deps
Use vala eclass.
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
.../{swaync-0.4.ebuild => swaync-0.4-r1.ebuild} | 24 +++++++++++++---------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/gui-apps/swaync/swaync-0.4.ebuild b/gui-apps/swaync/swaync-0.4-r1.ebuild
similarity index 65%
rename from gui-apps/swaync/swaync-0.4.ebuild
rename to gui-apps/swaync/swaync-0.4-r1.ebuild
index 814af4afb..4878af1c0 100644
--- a/gui-apps/swaync/swaync-0.4.ebuild
+++ b/gui-apps/swaync/swaync-0.4-r1.ebuild
@@ -3,12 +3,13 @@
EAPI=8
-inherit meson
+inherit meson vala
+MY_PN="SwayNotificationCenter"
DESCRIPTION="A simple notification daemon with a GTK gui for notifications and control center"
HOMEPAGE="https://github.com/ErikReider/SwayNotificationCenter"
-SRC_URI="https://github.com/ErikReider/SwayNotificationCenter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/SwayNotificationCenter-${PV}"
+SRC_URI="https://github.com/ErikReider/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-3"
SLOT="0"
@@ -16,21 +17,24 @@ KEYWORDS="~amd64 ~x86"
IUSE="scripting"
DEPEND="
- dev-libs/glib
+ dev-libs/glib:2
dev-libs/gobject-introspection
dev-libs/json-glib
- dev-libs/libgee
+ dev-libs/libgee:=
dev-libs/wayland
>=gui-libs/gtk-layer-shell-0.6.0
- gui-libs/libhandy
+ gui-libs/libhandy:1
sys-apps/dbus
+ x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
"
RDEPEND="${DEPEND}"
-BDEPEND="
- dev-lang/vala
- dev-util/meson
-"
+BDEPEND="$(vala_depend)"
+
+src_prepare() {
+ default
+ vala_setup
+}
src_configure() {
local emesonargs=(
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-03-08 13:37 Andrew Ammerlaan
0 siblings, 0 replies; 19+ messages in thread
From: Andrew Ammerlaan @ 2022-03-08 13:37 UTC (permalink / raw
To: gentoo-commits
commit: a934d15d63cd101e87de2df28010214dc5f5c2c7
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 8 13:34:50 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Mar 8 13:34:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a934d15d
gui-apps/swaync: drop RedundantLongDescription
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
gui-apps/swaync/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/gui-apps/swaync/metadata.xml b/gui-apps/swaync/metadata.xml
index 8a1d06e20..e529667b6 100644
--- a/gui-apps/swaync/metadata.xml
+++ b/gui-apps/swaync/metadata.xml
@@ -5,10 +5,6 @@
<name>Jonas Frei</name>
<email>freijon@pm.me</email>
</maintainer>
- <longdescription lang="en">
- A simple notification daemon with a GTK gui for notifications
- and the control center
- </longdescription>
<upstream>
<remote-id type="github">ErikReider/SwayNotificationCenter</remote-id>
<bugs-to>https://github.com/ErikReider/SwayNotificationCenter/issues</bugs-to>
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-04-04 4:39 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-04-04 4:39 UTC (permalink / raw
To: gentoo-commits
commit: f9d5df11f82bab543720866df924195db7325a7e
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Apr 4 04:38:50 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Apr 4 04:38:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f9d5df11
gui-apps/swaync: Bump to 0.5
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.4-r1.ebuild => swaync-0.5.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index d404c3ee6..e493a3527 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1 +1 @@
-DIST swaync-0.4.tar.gz 3131182 BLAKE2B 22c1fcca55247fc1fe242c798e3c8cd6ad9af8be716f2849237c3ed14f1a9b68550cca6c3a34b5ab4e92e19afaf48c648d28f46c0b535dbb9def98a79b524dbe SHA512 e3394c913e0f06ad47c6062dbc60e885860bfaf2c095bb7c7f2011884f73b4c7308d5dc09969cf2570daca35950c378d6fdfdeb23b715a6115c2a44a97f437e0
+DIST swaync-0.5.tar.gz 3135287 BLAKE2B a9cd7eb2cc233b20c79bd03cb41876a8435f29b014196475992dfe2623fe12f16d45edeabfa3b31631cf5c1835a14869ddaaa4c0602c745fc73fc9d515b9357c SHA512 4952470c0745e44800b241ac67d39a1d417c8dda550227e9f93e4e81709960616dc5bcf406543ad14aba357c2191fd6a7bf02dffaa170351a3232f9a3612dc8a
diff --git a/gui-apps/swaync/swaync-0.4-r1.ebuild b/gui-apps/swaync/swaync-0.5.ebuild
similarity index 100%
rename from gui-apps/swaync/swaync-0.4-r1.ebuild
rename to gui-apps/swaync/swaync-0.5.ebuild
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-05-14 13:17 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-05-14 13:17 UTC (permalink / raw
To: gentoo-commits
commit: 76c6113cfb5000e08f5281a65af97255a28bfc27
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Sat May 14 13:17:33 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Sat May 14 13:17:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=76c6113c
gui-apps/swaync: add 0.6.1, drop 0.6
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.6.ebuild => swaync-0.6.1.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index 75cdbcfd2..09acf4972 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1 +1 @@
-DIST swaync-0.6.tar.gz 3138783 BLAKE2B 878fc65947b3b33acbbd7486aa5bba4768696d48a3ea012550f23479732e345893c7be7f05369e0b4e5290d7c9d1c3c6e9dc086586ff38e25c3a1cbf5835c01d SHA512 8ec84ec2ec336e8302c5761c564f9e2a08ea8e6c94c436886c698a1254af36a77eb63fe51dc365edb9cdfec5491cc447b6c4731c7d7cb81dda211181b783ef27
+DIST swaync-0.6.1.tar.gz 3138806 BLAKE2B 84959d5e12448780ffbfa068799793a373ba70bb4bb3249ac2a7db786dee9eb1031dde068e9c052910e88b61f06e6860b17dd3f0c91192997cee6b0fde14da67 SHA512 68a72a84114f9d6620e3f80218ee5f3142526d2d377de7277fdd005e2523dc7a221910fd6609a1ec6e664bd2fd5692fecdf8fe27fa0614eeaf99836f2373ddd1
diff --git a/gui-apps/swaync/swaync-0.6.ebuild b/gui-apps/swaync/swaync-0.6.1.ebuild
similarity index 100%
rename from gui-apps/swaync/swaync-0.6.ebuild
rename to gui-apps/swaync/swaync-0.6.1.ebuild
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-06-27 10:43 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-06-27 10:43 UTC (permalink / raw
To: gentoo-commits
commit: dc1a42790a8e384191dbd455a002d210bd9d7f5f
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Jun 27 10:43:56 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Jun 27 10:43:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc1a4279
gui-apps/swaync: add 0.6.3, drop 0.6.1
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.6.1.ebuild => swaync-0.6.3.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index 09acf4972..d60c977cf 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1 +1 @@
-DIST swaync-0.6.1.tar.gz 3138806 BLAKE2B 84959d5e12448780ffbfa068799793a373ba70bb4bb3249ac2a7db786dee9eb1031dde068e9c052910e88b61f06e6860b17dd3f0c91192997cee6b0fde14da67 SHA512 68a72a84114f9d6620e3f80218ee5f3142526d2d377de7277fdd005e2523dc7a221910fd6609a1ec6e664bd2fd5692fecdf8fe27fa0614eeaf99836f2373ddd1
+DIST swaync-0.6.3.tar.gz 3141358 BLAKE2B ceedaa93ad84e87c23f6998e9c4b8f172290b4005b3ea816b54230e3720a1f3e58c7f5c28cd2e38051630a362eee5cc55aef86a5f3bc74cfdd395e57591b4246 SHA512 b0e9703ba74395e6c6b88417e9b92351c18d3adb5fe80e18e1514c5b08b4131bfd5b72e1424667b7c78fc08ec3003d57d87d128bccc7f0b043443db829391493
diff --git a/gui-apps/swaync/swaync-0.6.1.ebuild b/gui-apps/swaync/swaync-0.6.3.ebuild
similarity index 100%
rename from gui-apps/swaync/swaync-0.6.1.ebuild
rename to gui-apps/swaync/swaync-0.6.3.ebuild
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-06-29 20:45 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-06-29 20:45 UTC (permalink / raw
To: gentoo-commits
commit: 2cb08a32f206e226b19691ff3f64a7a64bb614ca
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Jun 29 20:44:28 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Jun 29 20:45:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2cb08a32
gui-apps/swaync: Added gnome2-utils eclass to update GSettings
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
.../swaync/{swaync-0.6.3.ebuild => swaync-0.6.3-r1.ebuild} | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gui-apps/swaync/swaync-0.6.3.ebuild b/gui-apps/swaync/swaync-0.6.3-r1.ebuild
similarity index 89%
rename from gui-apps/swaync/swaync-0.6.3.ebuild
rename to gui-apps/swaync/swaync-0.6.3-r1.ebuild
index b9f015b2d..403c1b610 100644
--- a/gui-apps/swaync/swaync-0.6.3.ebuild
+++ b/gui-apps/swaync/swaync-0.6.3-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit meson vala
+inherit meson vala gnome2-utils
MY_PN="SwayNotificationCenter"
DESCRIPTION="A simple notification daemon with a GTK gui for notifications and control center"
@@ -46,3 +46,11 @@ src_configure() {
)
meson_src_configure
}
+
+pkg_postinst() {
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-09-19 12:39 Anthony Ruhier
0 siblings, 0 replies; 19+ messages in thread
From: Anthony Ruhier @ 2022-09-19 12:39 UTC (permalink / raw
To: gentoo-commits
commit: 3c689f567ff2293dfd16b6c7e5acbd9b3d4521c6
Author: Anthony Ruhier <aruhier <AT> mailbox <DOT> org>
AuthorDate: Mon Sep 19 12:38:07 2022 +0000
Commit: Anthony Ruhier <aruhier <AT> mailbox <DOT> org>
CommitDate: Mon Sep 19 12:38:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c689f56
gui-apps/swaync: add 0.7.1, drop 0.6.3-r1
Signed-off-by: Anthony Ruhier <aruhier <AT> mailbox.org>
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.6.3-r1.ebuild => swaync-0.7.1.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index d60c977cf..5cbf01106 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1 +1 @@
-DIST swaync-0.6.3.tar.gz 3141358 BLAKE2B ceedaa93ad84e87c23f6998e9c4b8f172290b4005b3ea816b54230e3720a1f3e58c7f5c28cd2e38051630a362eee5cc55aef86a5f3bc74cfdd395e57591b4246 SHA512 b0e9703ba74395e6c6b88417e9b92351c18d3adb5fe80e18e1514c5b08b4131bfd5b72e1424667b7c78fc08ec3003d57d87d128bccc7f0b043443db829391493
+DIST swaync-0.7.1.tar.gz 3152621 BLAKE2B d3e0939054c62a5a0853d567bac4835904ecbfcf1bb250c940c94eddcf1eb565d18bff01a46d4b5d98b5fa933c0934768b19c675d1cac5b12428dd72958e0e7d SHA512 02f655f2faa7055332b44a8d7113c7019f280a0dcd1aedcba6e2dbf15a1661fd6b71b8307e3874e2909437b678cc8c7a3fc5fc3f18c8b43210078fc46ccd98c8
diff --git a/gui-apps/swaync/swaync-0.6.3-r1.ebuild b/gui-apps/swaync/swaync-0.7.1.ebuild
similarity index 95%
rename from gui-apps/swaync/swaync-0.6.3-r1.ebuild
rename to gui-apps/swaync/swaync-0.7.1.ebuild
index 403c1b610..f4fe19e9b 100644
--- a/gui-apps/swaync/swaync-0.6.3-r1.ebuild
+++ b/gui-apps/swaync/swaync-0.7.1.ebuild
@@ -22,7 +22,7 @@ DEPEND="
dev-libs/json-glib
dev-libs/libgee:=
dev-libs/wayland
- >=gui-libs/gtk-layer-shell-0.6.0
+ >=gui-libs/gtk-layer-shell-0.7.0[introspection]
gui-libs/libhandy:1
sys-apps/dbus
x11-libs/gdk-pixbuf:2
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-09-23 0:05 Anthony Ruhier
0 siblings, 0 replies; 19+ messages in thread
From: Anthony Ruhier @ 2022-09-23 0:05 UTC (permalink / raw
To: gentoo-commits
commit: bc19d08e7c27dca83acd3e67b265de4fc355c179
Author: Anthony Ruhier <aruhier <AT> mailbox <DOT> org>
AuthorDate: Fri Sep 23 00:03:58 2022 +0000
Commit: Anthony Ruhier <aruhier <AT> mailbox <DOT> org>
CommitDate: Fri Sep 23 00:04:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc19d08e
gui-apps/swaync: add 0.7.2, drop 0.7.1
Signed-off-by: Anthony Ruhier <aruhier <AT> mailbox.org>
v0.7.2 fixes crashes with glib 2.74
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.7.1.ebuild => swaync-0.7.2.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index 5cbf01106..0450cc679 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1 +1 @@
-DIST swaync-0.7.1.tar.gz 3152621 BLAKE2B d3e0939054c62a5a0853d567bac4835904ecbfcf1bb250c940c94eddcf1eb565d18bff01a46d4b5d98b5fa933c0934768b19c675d1cac5b12428dd72958e0e7d SHA512 02f655f2faa7055332b44a8d7113c7019f280a0dcd1aedcba6e2dbf15a1661fd6b71b8307e3874e2909437b678cc8c7a3fc5fc3f18c8b43210078fc46ccd98c8
+DIST swaync-0.7.2.tar.gz 3153294 BLAKE2B 0c53a2e3dbecb60ee85a04fbbc3010c473a827842c2e144deca017b4f910924bce14b1332c4c3de77d39d798c25901717f2568511cfe9708724985d95b29e2a5 SHA512 be4ac254755959aa20d70526aa78cc00e88df19efe4b6380efedc7d0eda6f792631ddd33cc460c1f295efcbe8dd7913a928acf8e4a18f60fb8132451b2dab374
diff --git a/gui-apps/swaync/swaync-0.7.1.ebuild b/gui-apps/swaync/swaync-0.7.2.ebuild
similarity index 100%
rename from gui-apps/swaync/swaync-0.7.1.ebuild
rename to gui-apps/swaync/swaync-0.7.2.ebuild
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2022-11-29 4:36 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2022-11-29 4:36 UTC (permalink / raw
To: gentoo-commits
commit: f2d9b5832c2af35d8a1fc312a130d6f65b293f5a
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue Nov 29 04:35:34 2022 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Tue Nov 29 04:35:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2d9b583
gui-apps/swaync: add 0.7.3, drop 0.7.2
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.7.2.ebuild => swaync-0.7.3.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index 0450cc679..cd310e629 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1 +1 @@
-DIST swaync-0.7.2.tar.gz 3153294 BLAKE2B 0c53a2e3dbecb60ee85a04fbbc3010c473a827842c2e144deca017b4f910924bce14b1332c4c3de77d39d798c25901717f2568511cfe9708724985d95b29e2a5 SHA512 be4ac254755959aa20d70526aa78cc00e88df19efe4b6380efedc7d0eda6f792631ddd33cc460c1f295efcbe8dd7913a928acf8e4a18f60fb8132451b2dab374
+DIST swaync-0.7.3.tar.gz 3155355 BLAKE2B d976d908c12eef9a0fe71e269fd4dd1bca44cb7a389ea3b6fbcf7ef0a7cfd17623e4fa03fb61cb7d5a26837deafd0b3f8197774fe1ce17c47d512632d5aedc81 SHA512 fe049fae8ece0e54badd44ea6d04f7fa0a09c7cb258612897dbcb4b7b60ef28fc19113ec4b84520ac8226901b9d5a0b9cd11c3b071d9e90e840ac7e4595a51fc
diff --git a/gui-apps/swaync/swaync-0.7.2.ebuild b/gui-apps/swaync/swaync-0.7.3.ebuild
similarity index 100%
rename from gui-apps/swaync/swaync-0.7.2.ebuild
rename to gui-apps/swaync/swaync-0.7.3.ebuild
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2023-05-29 19:34 Jonas Frei
0 siblings, 0 replies; 19+ messages in thread
From: Jonas Frei @ 2023-05-29 19:34 UTC (permalink / raw
To: gentoo-commits
commit: 6abe1e58b6506795e5197ac63c7ddb2bb92d1810
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon May 29 19:23:31 2023 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon May 29 19:33:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6abe1e58
gui-apps/swaync: drop 0.7.3
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
gui-apps/swaync/Manifest | 1 -
gui-apps/swaync/metadata.xml | 4 ---
gui-apps/swaync/swaync-0.7.3.ebuild | 56 -------------------------------------
3 files changed, 61 deletions(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index 15b729c6d..97719be51 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1,3 +1,2 @@
-DIST swaync-0.7.3.tar.gz 3155355 BLAKE2B d976d908c12eef9a0fe71e269fd4dd1bca44cb7a389ea3b6fbcf7ef0a7cfd17623e4fa03fb61cb7d5a26837deafd0b3f8197774fe1ce17c47d512632d5aedc81 SHA512 fe049fae8ece0e54badd44ea6d04f7fa0a09c7cb258612897dbcb4b7b60ef28fc19113ec4b84520ac8226901b9d5a0b9cd11c3b071d9e90e840ac7e4595a51fc
DIST swaync-0.8.0.tar.gz 3170861 BLAKE2B a43fd4d095b3bb1b39ff914cf3f09f9d97807d95365839a30c46c607c601c8e557e4365e3c23cbf650dca7b5a51523e4fbc8ecf49d7863b717b04e0c90e04f46 SHA512 c1ee542fff2b6b06cd0def99c96bede5cb3dc576ab4e0498bd110f1b6e3df2786526d5ec58dbfc7f5c488afc2c1c85541e878c76118486530b8937a5e13a0799
DIST swaync-0.9.0.tar.gz 3178186 BLAKE2B 09c92e094da8c97384c78ac0afffc8caa968c78cad298056a99377da6a06e4cc496e0fbf469f0096d0378a7f78e0717e816dd8f43ef6a45270bd7b13f8f90d42 SHA512 1c9bb7908d74752cdb03b11d15794a18ca6360aec1a0d00897e252954544179885841905d0ba7464da8e29d0cdc8dc6b33b65296a7e61478ed160980b6f26b32
diff --git a/gui-apps/swaync/metadata.xml b/gui-apps/swaync/metadata.xml
index 82d0a9847..99b25824c 100644
--- a/gui-apps/swaync/metadata.xml
+++ b/gui-apps/swaync/metadata.xml
@@ -9,8 +9,4 @@
<remote-id type="github">ErikReider/SwayNotificationCenter</remote-id>
<bugs-to>https://github.com/ErikReider/SwayNotificationCenter/issues</bugs-to>
</upstream>
- <use>
- <flag name="man">Build and install man pages</flag>
- <flag name="scripting">Enable notification scripting</flag>
- </use>
</pkgmetadata>
diff --git a/gui-apps/swaync/swaync-0.7.3.ebuild b/gui-apps/swaync/swaync-0.7.3.ebuild
deleted file mode 100644
index f4fe19e9b..000000000
--- a/gui-apps/swaync/swaync-0.7.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson vala gnome2-utils
-
-MY_PN="SwayNotificationCenter"
-DESCRIPTION="A simple notification daemon with a GTK gui for notifications and control center"
-HOMEPAGE="https://github.com/ErikReider/SwayNotificationCenter"
-SRC_URI="https://github.com/ErikReider/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+man scripting"
-
-DEPEND="
- dev-libs/glib:2
- dev-libs/gobject-introspection
- dev-libs/json-glib
- dev-libs/libgee:=
- dev-libs/wayland
- >=gui-libs/gtk-layer-shell-0.7.0[introspection]
- gui-libs/libhandy:1
- sys-apps/dbus
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- $(vala_depend)
- man? ( app-text/scdoc )
-"
-
-src_prepare() {
- default
- vala_setup
-}
-
-src_configure() {
- local emesonargs=(
- $(meson_use man man-pages)
- $(meson_use scripting)
- )
- meson_src_configure
-}
-
-pkg_postinst() {
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- gnome2_schemas_update
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2024-03-17 14:08 Shaoyu Tseng
0 siblings, 0 replies; 19+ messages in thread
From: Shaoyu Tseng @ 2024-03-17 14:08 UTC (permalink / raw
To: gentoo-commits
commit: 8b2fdc1439b22ddce8690402f131a1ce45af0ca0
Author: Shaoyu Tseng <dev <AT> notyourcomputer <DOT> net>
AuthorDate: Sun Mar 17 14:05:34 2024 +0000
Commit: Shaoyu Tseng <shaoyu0209 <AT> tuta <DOT> io>
CommitDate: Sun Mar 17 14:08:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b2fdc14
gui-apps/swaync: add 0.10.1, drop 0.10.0
Signed-off-by: Shaoyu Tseng <dev <AT> notyourcomputer.net>
gui-apps/swaync/Manifest | 2 +-
gui-apps/swaync/{swaync-0.10.0.ebuild => swaync-0.10.1.ebuild} | 4 +---
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/gui-apps/swaync/Manifest b/gui-apps/swaync/Manifest
index 476a9a4962..13275d6d52 100644
--- a/gui-apps/swaync/Manifest
+++ b/gui-apps/swaync/Manifest
@@ -1,2 +1,2 @@
-DIST swaync-0.10.0.tar.gz 1709477 BLAKE2B 179e27632a95d1bab687011479db4d534eebe9f104f388c51782a6f2bc7dc02acc8b4ca5c3aa80c00418da72c7e51f9f9c12f58c181eec0a4a17cb3333141480 SHA512 5c91f369a6ec24e8d52135b731fe396ca11f0bc44a5d42534a7a92656d68f8e4654c3d37b8817a7f4f707e83ae76db68535004f5aa3b527b13ce5a6165863bc5
+DIST swaync-0.10.1.tar.gz 1709580 BLAKE2B 58a202cde4c93bad288b513cf8735da2a4939fa0fe9268d8abf7b0827e332a324d8ba2d6bb19718d86942364314827f4ad092040d82fd87d5097893fcdf030d5 SHA512 fa753ee60ab180186d852f69c0ecf22d64b8c3aba280dce7c53f86c04a694abdb9570546fab46d4a32cade3a6eed5599ae2794afc56d5b141d4ea5fde976b49a
DIST swaync-0.9.0.tar.gz 3178186 BLAKE2B 09c92e094da8c97384c78ac0afffc8caa968c78cad298056a99377da6a06e4cc496e0fbf469f0096d0378a7f78e0717e816dd8f43ef6a45270bd7b13f8f90d42 SHA512 1c9bb7908d74752cdb03b11d15794a18ca6360aec1a0d00897e252954544179885841905d0ba7464da8e29d0cdc8dc6b33b65296a7e61478ed160980b6f26b32
diff --git a/gui-apps/swaync/swaync-0.10.0.ebuild b/gui-apps/swaync/swaync-0.10.1.ebuild
similarity index 93%
rename from gui-apps/swaync/swaync-0.10.0.ebuild
rename to gui-apps/swaync/swaync-0.10.1.ebuild
index bc7a7d08e5..3cbf84f02c 100644
--- a/gui-apps/swaync/swaync-0.10.0.ebuild
+++ b/gui-apps/swaync/swaync-0.10.1.ebuild
@@ -40,9 +40,7 @@ BDEPEND="
"
src_configure() {
- local emesonargs=(
- $(meson_use pulseaudio pulse-audio)
- )
+ local emesonargs=($(meson_use pulseaudio pulse-audio))
meson_src_configure
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2024-03-18 11:40 Takuya Wakazono
0 siblings, 0 replies; 19+ messages in thread
From: Takuya Wakazono @ 2024-03-18 11:40 UTC (permalink / raw
To: gentoo-commits
commit: b3bf1ae0a3dd7b2be70738c5cdb7876e90862dc2
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Mon Mar 18 11:33:25 2024 +0000
Commit: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Mon Mar 18 11:38:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3bf1ae0
gui-apps/swaync: inherit python-any-r1
Closes: https://bugs.gentoo.org/872464
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
.../{swaync-0.10.1.ebuild => swaync-0.10.1-r1.ebuild} | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gui-apps/swaync/swaync-0.10.1.ebuild b/gui-apps/swaync/swaync-0.10.1-r1.ebuild
similarity index 77%
rename from gui-apps/swaync/swaync-0.10.1.ebuild
rename to gui-apps/swaync/swaync-0.10.1-r1.ebuild
index 3cbf84f02c..0fe4dc0a20 100644
--- a/gui-apps/swaync/swaync-0.10.1.ebuild
+++ b/gui-apps/swaync/swaync-0.10.1-r1.ebuild
@@ -1,9 +1,10 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-inherit meson vala gnome2-utils
+PYTHON_COMPAT=( python3_{10..12} )
+inherit meson vala gnome2-utils python-any-r1
MY_PN="SwayNotificationCenter"
DESCRIPTION="A simple notification daemon with a GTK gui for notifications and control center"
@@ -18,23 +19,22 @@ IUSE="pulseaudio"
DEPEND="
dev-lang/sassc
- dev-libs/granite
- dev-libs/libgee
dev-libs/glib:2
dev-libs/gobject-introspection
+ dev-libs/granite:=
dev-libs/json-glib
- pulseaudio? (
- media-libs/libpulse
- )
+ dev-libs/libgee:0.8=
dev-libs/wayland
- >=gui-libs/gtk-layer-shell-0.7.0[introspection,vala]
+ >=gui-libs/gtk-layer-shell-0.8.0[introspection,vala]
gui-libs/libhandy:1
sys-apps/dbus
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
+ pulseaudio? ( media-libs/libpulse )
"
RDEPEND="${DEPEND}"
BDEPEND="
+ ${PYTHON_DEPS}
$(vala_depend)
app-text/scdoc
"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/
@ 2024-05-25 12:20 Joe Kappus
0 siblings, 0 replies; 19+ messages in thread
From: Joe Kappus @ 2024-05-25 12:20 UTC (permalink / raw
To: gentoo-commits
commit: 187e150d28b2cd0c958a80f5f822e7c77ba9bf11
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Sat May 25 12:20:08 2024 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Sat May 25 12:20:08 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=187e150d
gui-apps/swaync: add pango/cairo to RDEPEND
Closes: https://bugs.gentoo.org/932622
Signed-off-by: Joe Kappus <joe <AT> wt.gd>
gui-apps/swaync/swaync-0.10.1-r1.ebuild | 7 ++++++-
gui-apps/swaync/swaync-0.9.0.ebuild | 8 ++++++--
2 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/gui-apps/swaync/swaync-0.10.1-r1.ebuild b/gui-apps/swaync/swaync-0.10.1-r1.ebuild
index 0fe4dc0a2..91d166979 100644
--- a/gui-apps/swaync/swaync-0.10.1-r1.ebuild
+++ b/gui-apps/swaync/swaync-0.10.1-r1.ebuild
@@ -32,7 +32,12 @@ DEPEND="
x11-libs/gtk+:3
pulseaudio? ( media-libs/libpulse )
"
-RDEPEND="${DEPEND}"
+RDEPEND="
+ ${DEPEND}
+ x11-libs/cairo
+ x11-libs/pango
+"
+
BDEPEND="
${PYTHON_DEPS}
$(vala_depend)
diff --git a/gui-apps/swaync/swaync-0.9.0.ebuild b/gui-apps/swaync/swaync-0.9.0.ebuild
index 55a4e04c2..51983c997 100644
--- a/gui-apps/swaync/swaync-0.9.0.ebuild
+++ b/gui-apps/swaync/swaync-0.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -31,7 +31,11 @@ DEPEND="
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
"
-RDEPEND="${DEPEND}"
+RDEPEND="
+ ${DEPEND}
+ x11-libs/cairo
+ x11-libs/pango
+"
BDEPEND="
$(vala_depend)
app-text/scdoc
^ permalink raw reply related [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-05-25 12:20 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-14 13:17 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swaync/ Jonas Frei
-- strict thread matches above, loose matches on Subject: below --
2024-05-25 12:20 Joe Kappus
2024-03-18 11:40 Takuya Wakazono
2024-03-17 14:08 Shaoyu Tseng
2023-05-29 19:34 Jonas Frei
2022-11-29 4:36 Jonas Frei
2022-09-23 0:05 Anthony Ruhier
2022-09-19 12:39 Anthony Ruhier
2022-06-29 20:45 Jonas Frei
2022-06-27 10:43 Jonas Frei
2022-04-04 4:39 Jonas Frei
2022-03-08 13:37 Andrew Ammerlaan
2022-02-23 13:44 Anna Vyalkova
2022-02-23 4:55 Jonas Frei
2022-02-21 11:09 Jonas Frei
2022-02-21 10:54 Jonas Frei
2022-02-21 8:25 Jonas Frei
2022-02-21 6:03 Jonas Frei
2022-02-21 5:33 Jonas Frei
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox