* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-04-17 9:22 Florian Schmaus
0 siblings, 0 replies; 17+ messages in thread
From: Florian Schmaus @ 2023-04-17 9:22 UTC (permalink / raw
To: gentoo-commits
commit: ef1844b107c366eaa8871a9eceb30a0296f3dc5e
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sun Apr 16 08:48:16 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 08:48:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ef1844b1
gui-wm/swayfx: add 0.2
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/Manifest | 1 +
gui-wm/swayfx/swayfx-0.2.ebuild | 101 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 102 insertions(+)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index e93c3f34d..46085d9f6 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1 +1,2 @@
DIST 0.1.tar.gz 5514855 BLAKE2B 57be3ab5b66cb71a826ed6d7cd2dc70cc415f0f207420aa2b545f63ccfca5f7504d6a44554ff7e8000b35797540e52043902a5d6264cf1f8290a34e9876ef372 SHA512 9dd17d3628d59c2d2de521c26a3d49780fb95acd18b886dd7f515e210c0f876b51b37e83119ed082aa1fc28ae4631ae794cd81d20516ba77566639b2ba49e9fb
+DIST 0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
diff --git a/gui-wm/swayfx/swayfx-0.2.ebuild b/gui-wm/swayfx/swayfx-0.2.ebuild
new file mode 100644
index 000000000..ac081a87a
--- /dev/null
+++ b/gui-wm/swayfx/swayfx-0.2.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson optfeature
+
+DESCRIPTION="i3-compatible Wayland window manager"
+HOMEPAGE="https://swaywm.org"
+
+MY_PV=${PV/_rc/-rc}
+SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz"
+KEYWORDS="~amd64"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
+
+DEPEND="
+ >=dev-libs/json-c-0.13:0=
+ >=dev-libs/libinput-1.6.0:0=
+ sys-auth/seatd:=
+ dev-libs/libpcre
+ >=dev-libs/wayland-1.20.0
+ x11-libs/cairo
+ x11-libs/libxkbcommon
+ x11-libs/pango
+ x11-libs/pixman
+ media-libs/mesa[gles2,libglvnd(+)]
+ swaybar? ( x11-libs/gdk-pixbuf:2 )
+ tray? ( || (
+ sys-apps/systemd
+ sys-auth/elogind
+ sys-libs/basu
+ ) )
+ wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
+ X? ( x11-libs/libxcb:0= )
+"
+DEPEND+="
+ >=gui-libs/wlroots-0.15:=[X?]
+ <gui-libs/wlroots-0.16:=[X?]
+"
+RDEPEND="
+ x11-misc/xkeyboard-config
+ grimshot? (
+ app-misc/jq
+ gui-apps/grim
+ gui-apps/slurp
+ gui-apps/wl-clipboard
+ x11-libs/libnotify
+ )
+ !!gui-wm/sway
+ ${DEPEND}
+"
+BDEPEND="
+ >=dev-libs/wayland-protocols-1.24
+ >=dev-util/meson-0.60.0
+ virtual/pkgconfig
+"
+BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+REQUIRED_USE="tray? ( swaybar )"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ $(meson_feature tray)
+ $(meson_feature X xwayland)
+ $(meson_feature swaybar gdk-pixbuf)
+ $(meson_use swaynag)
+ $(meson_use swaybar)
+ $(meson_use wallpapers default-wallpaper)
+ -Dfish-completions=true
+ -Dzsh-completions=true
+ -Dbash-completions=true
+ )
+
+ meson_src_configure
+}
+
+src_install() {
+ meson_src_install
+
+ if use grimshot; then
+ doman contrib/grimshot.1
+ dobin contrib/grimshot
+ fi
+}
+
+pkg_postinst() {
+ optfeature_header "There are several packages that may be useful with swayfx:"
+ optfeature "wallpaper utility" gui-apps/swaybg
+ optfeature "idle management utility" gui-apps/swayidle
+ optfeature "simple screen locker" gui-apps/swaylock
+ optfeature "lightweight notification daemon" gui-apps/mako
+ echo
+ einfo "For a list of additional addons and tools usable with sway please"
+ einfo "visit the offical wiki at:"
+ einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
+ einfo "Please note that some of them might not (yet) available on gentoo"
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-04-17 9:22 Florian Schmaus
0 siblings, 0 replies; 17+ messages in thread
From: Florian Schmaus @ 2023-04-17 9:22 UTC (permalink / raw
To: gentoo-commits
commit: 9e4e821e42864098d824a729174d4bbc4c4381f3
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sun Apr 16 08:54:19 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 08:54:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9e4e821e
gui-wm/swayfx: add github upstream metadata
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/metadata.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gui-wm/swayfx/metadata.xml b/gui-wm/swayfx/metadata.xml
index 9e9a0ec7e..2d648c8b9 100644
--- a/gui-wm/swayfx/metadata.xml
+++ b/gui-wm/swayfx/metadata.xml
@@ -29,4 +29,12 @@
<flag name="wallpapers">Install sway's default wallpaper image</flag>
<flag name="X">Enable support for X11 applications (XWayland)</flag>
</use>
+ <upstream>
+ <remote-id type="github">WillPower3309/swayfx</remote-id>
+ <maintainer status="active">
+ <name>William McKinnon</name>
+ </maintainer>
+ <bugs-to>https://github.com/WillPower3309/swayfx/issues</bugs-to>
+ <changelog>https://github.com/WillPower3309/swayfx/releases</changelog>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-04-19 7:32 Florian Schmaus
0 siblings, 0 replies; 17+ messages in thread
From: Florian Schmaus @ 2023-04-19 7:32 UTC (permalink / raw
To: gentoo-commits
commit: fe6d05e14c502a32e435a5bb923e5f19f47c9fe9
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Mon Apr 17 22:11:43 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Apr 17 22:16:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fe6d05e1
gui-wm/swayfx: fix 0.2 ebuild deps
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/swayfx-0.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-wm/swayfx/swayfx-0.2.ebuild b/gui-wm/swayfx/swayfx-0.2.ebuild
index ac081a87a..35d2bcf8e 100644
--- a/gui-wm/swayfx/swayfx-0.2.ebuild
+++ b/gui-wm/swayfx/swayfx-0.2.ebuild
@@ -38,8 +38,8 @@ DEPEND="
X? ( x11-libs/libxcb:0= )
"
DEPEND+="
- >=gui-libs/wlroots-0.15:=[X?]
- <gui-libs/wlroots-0.16:=[X?]
+ >=gui-libs/wlroots-0.16:=[X?]
+ <gui-libs/wlroots-0.17:=[X?]
"
RDEPEND="
x11-misc/xkeyboard-config
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-05-27 6:10 Viorel Munteanu
0 siblings, 0 replies; 17+ messages in thread
From: Viorel Munteanu @ 2023-05-27 6:10 UTC (permalink / raw
To: gentoo-commits
commit: 5777162501be23a0c6210fec2abe00e4d8f80592
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 02:00:05 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 02:00:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57771625
gui-wm/swayfx: add 0.3
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/Manifest | 1 +
gui-wm/swayfx/metadata.xml | 12 ++---
gui-wm/swayfx/swayfx-0.3.ebuild | 101 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 108 insertions(+), 6 deletions(-)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index 46085d9f6..1d06f5501 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1,2 +1,3 @@
DIST 0.1.tar.gz 5514855 BLAKE2B 57be3ab5b66cb71a826ed6d7cd2dc70cc415f0f207420aa2b545f63ccfca5f7504d6a44554ff7e8000b35797540e52043902a5d6264cf1f8290a34e9876ef372 SHA512 9dd17d3628d59c2d2de521c26a3d49780fb95acd18b886dd7f515e210c0f876b51b37e83119ed082aa1fc28ae4631ae794cd81d20516ba77566639b2ba49e9fb
DIST 0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
+DIST 0.3.tar.gz 5746551 BLAKE2B 6455416f54d9e36d33f2f17146c3f2c41ff77a154fcb49f12906c5ba5b2ced3eecb9f052423ad5916885a9e6602160a404bd9fe351272c34cc5b375656b75604 SHA512 a6054d167c9d41a6e3fe9247683267c40ac55637a565649724fad0d7caf340d8aa51ab65767a7f8becc0480eced1eb42a5c851dfc5d815a73c3ae99eb1c39572
diff --git a/gui-wm/swayfx/metadata.xml b/gui-wm/swayfx/metadata.xml
index 2d648c8b9..9fcd742b9 100644
--- a/gui-wm/swayfx/metadata.xml
+++ b/gui-wm/swayfx/metadata.xml
@@ -31,10 +31,10 @@
</use>
<upstream>
<remote-id type="github">WillPower3309/swayfx</remote-id>
- <maintainer status="active">
- <name>William McKinnon</name>
- </maintainer>
- <bugs-to>https://github.com/WillPower3309/swayfx/issues</bugs-to>
- <changelog>https://github.com/WillPower3309/swayfx/releases</changelog>
- </upstream>
+ <maintainer status="active">
+ <name>William McKinnon</name>
+ </maintainer>
+ <bugs-to>https://github.com/WillPower3309/swayfx/issues</bugs-to>
+ <changelog>https://github.com/WillPower3309/swayfx/releases</changelog>
+ </upstream>
</pkgmetadata>
diff --git a/gui-wm/swayfx/swayfx-0.3.ebuild b/gui-wm/swayfx/swayfx-0.3.ebuild
new file mode 100644
index 000000000..422be6474
--- /dev/null
+++ b/gui-wm/swayfx/swayfx-0.3.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson optfeature
+
+DESCRIPTION="i3-compatible Wayland window manager"
+HOMEPAGE="https://swaywm.org"
+
+MY_PV=${PV/_rc/-rc}
+SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz"
+KEYWORDS="~amd64"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
+
+DEPEND="
+ >=dev-libs/json-c-0.13:0=
+ >=dev-libs/libinput-1.21.0:0=
+ sys-auth/seatd:=
+ dev-libs/libpcre
+ >=dev-libs/wayland-1.20.0
+ x11-libs/cairo
+ x11-libs/libxkbcommon
+ x11-libs/pango
+ x11-libs/pixman
+ media-libs/mesa[gles2,libglvnd(+)]
+ swaybar? ( x11-libs/gdk-pixbuf:2 )
+ tray? ( || (
+ sys-apps/systemd
+ sys-auth/elogind
+ sys-libs/basu
+ ) )
+ wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
+ X? ( x11-libs/libxcb:0= )
+"
+DEPEND+="
+ >=gui-libs/wlroots-0.16:=[X?]
+ <gui-libs/wlroots-0.17:=[X?]
+"
+RDEPEND="
+ x11-misc/xkeyboard-config
+ grimshot? (
+ app-misc/jq
+ gui-apps/grim
+ gui-apps/slurp
+ gui-apps/wl-clipboard
+ x11-libs/libnotify
+ )
+ !!gui-wm/sway
+ ${DEPEND}
+"
+BDEPEND="
+ >=dev-libs/wayland-protocols-1.24
+ >=dev-util/meson-0.60.0
+ virtual/pkgconfig
+"
+BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+REQUIRED_USE="tray? ( swaybar )"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ $(meson_feature tray)
+ $(meson_feature X xwayland)
+ $(meson_feature swaybar gdk-pixbuf)
+ $(meson_use swaynag)
+ $(meson_use swaybar)
+ $(meson_use wallpapers default-wallpaper)
+ -Dfish-completions=true
+ -Dzsh-completions=true
+ -Dbash-completions=true
+ )
+
+ meson_src_configure
+}
+
+src_install() {
+ meson_src_install
+
+ if use grimshot; then
+ doman contrib/grimshot.1
+ dobin contrib/grimshot
+ fi
+}
+
+pkg_postinst() {
+ optfeature_header "There are several packages that may be useful with swayfx:"
+ optfeature "wallpaper utility" gui-apps/swaybg
+ optfeature "idle management utility" gui-apps/swayidle
+ optfeature "simple screen locker" gui-apps/swaylock
+ optfeature "lightweight notification daemon" gui-apps/mako
+ echo
+ einfo "For a list of additional addons and tools usable with sway please"
+ einfo "visit the offical wiki at:"
+ einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
+ einfo "Please note that some of them might not (yet) available on gentoo"
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-05-27 6:10 Viorel Munteanu
0 siblings, 0 replies; 17+ messages in thread
From: Viorel Munteanu @ 2023-05-27 6:10 UTC (permalink / raw
To: gentoo-commits
commit: ac620bab323ec0139b7b862638ae37f82c498542
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 02:06:53 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 02:06:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac620bab
gui-wm/swayfx: drop 0.1, update 0.2
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/Manifest | 3 +-
gui-wm/swayfx/swayfx-0.1.ebuild | 101 ----------------------------------------
gui-wm/swayfx/swayfx-0.2.ebuild | 8 ++--
3 files changed, 4 insertions(+), 108 deletions(-)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index fd45304a2..3ce8ce494 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1,3 +1,2 @@
-DIST 0.1.tar.gz 5514855 BLAKE2B 57be3ab5b66cb71a826ed6d7cd2dc70cc415f0f207420aa2b545f63ccfca5f7504d6a44554ff7e8000b35797540e52043902a5d6264cf1f8290a34e9876ef372 SHA512 9dd17d3628d59c2d2de521c26a3d49780fb95acd18b886dd7f515e210c0f876b51b37e83119ed082aa1fc28ae4631ae794cd81d20516ba77566639b2ba49e9fb
-DIST 0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
+DIST swayfx-0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
DIST swayfx-0.3.tar.gz 5746551 BLAKE2B 6455416f54d9e36d33f2f17146c3f2c41ff77a154fcb49f12906c5ba5b2ced3eecb9f052423ad5916885a9e6602160a404bd9fe351272c34cc5b375656b75604 SHA512 a6054d167c9d41a6e3fe9247683267c40ac55637a565649724fad0d7caf340d8aa51ab65767a7f8becc0480eced1eb42a5c851dfc5d815a73c3ae99eb1c39572
diff --git a/gui-wm/swayfx/swayfx-0.1.ebuild b/gui-wm/swayfx/swayfx-0.1.ebuild
deleted file mode 100644
index ac081a87a..000000000
--- a/gui-wm/swayfx/swayfx-0.1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson optfeature
-
-DESCRIPTION="i3-compatible Wayland window manager"
-HOMEPAGE="https://swaywm.org"
-
-MY_PV=${PV/_rc/-rc}
-SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz"
-KEYWORDS="~amd64"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
-
-DEPEND="
- >=dev-libs/json-c-0.13:0=
- >=dev-libs/libinput-1.6.0:0=
- sys-auth/seatd:=
- dev-libs/libpcre
- >=dev-libs/wayland-1.20.0
- x11-libs/cairo
- x11-libs/libxkbcommon
- x11-libs/pango
- x11-libs/pixman
- media-libs/mesa[gles2,libglvnd(+)]
- swaybar? ( x11-libs/gdk-pixbuf:2 )
- tray? ( || (
- sys-apps/systemd
- sys-auth/elogind
- sys-libs/basu
- ) )
- wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
- X? ( x11-libs/libxcb:0= )
-"
-DEPEND+="
- >=gui-libs/wlroots-0.15:=[X?]
- <gui-libs/wlroots-0.16:=[X?]
-"
-RDEPEND="
- x11-misc/xkeyboard-config
- grimshot? (
- app-misc/jq
- gui-apps/grim
- gui-apps/slurp
- gui-apps/wl-clipboard
- x11-libs/libnotify
- )
- !!gui-wm/sway
- ${DEPEND}
-"
-BDEPEND="
- >=dev-libs/wayland-protocols-1.24
- >=dev-util/meson-0.60.0
- virtual/pkgconfig
-"
-BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
-REQUIRED_USE="tray? ( swaybar )"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- $(meson_feature tray)
- $(meson_feature X xwayland)
- $(meson_feature swaybar gdk-pixbuf)
- $(meson_use swaynag)
- $(meson_use swaybar)
- $(meson_use wallpapers default-wallpaper)
- -Dfish-completions=true
- -Dzsh-completions=true
- -Dbash-completions=true
- )
-
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
-
- if use grimshot; then
- doman contrib/grimshot.1
- dobin contrib/grimshot
- fi
-}
-
-pkg_postinst() {
- optfeature_header "There are several packages that may be useful with swayfx:"
- optfeature "wallpaper utility" gui-apps/swaybg
- optfeature "idle management utility" gui-apps/swayidle
- optfeature "simple screen locker" gui-apps/swaylock
- optfeature "lightweight notification daemon" gui-apps/mako
- echo
- einfo "For a list of additional addons and tools usable with sway please"
- einfo "visit the offical wiki at:"
- einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
- einfo "Please note that some of them might not (yet) available on gentoo"
-}
diff --git a/gui-wm/swayfx/swayfx-0.2.ebuild b/gui-wm/swayfx/swayfx-0.2.ebuild
index 35d2bcf8e..d6a85d917 100644
--- a/gui-wm/swayfx/swayfx-0.2.ebuild
+++ b/gui-wm/swayfx/swayfx-0.2.ebuild
@@ -5,13 +5,11 @@ EAPI=8
inherit meson optfeature
-DESCRIPTION="i3-compatible Wayland window manager"
-HOMEPAGE="https://swaywm.org"
+DESCRIPTION="SwayFX: Sway, but with eye candy!"
+HOMEPAGE="https://github.com/WillPower3309/swayfx"
-MY_PV=${PV/_rc/-rc}
-SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz"
+SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
-S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-05-27 6:10 Viorel Munteanu
0 siblings, 0 replies; 17+ messages in thread
From: Viorel Munteanu @ 2023-05-27 6:10 UTC (permalink / raw
To: gentoo-commits
commit: 7cb779eefcd23d02971f4efad9f398910e561f64
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 02:04:10 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 02:04:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7cb779ee
gui-wm/swayfx: update DESCRIPTION, HOMEPAGE, SRC_URI
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/Manifest | 2 +-
gui-wm/swayfx/swayfx-0.3.ebuild | 8 +++-----
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index 1d06f5501..fd45304a2 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1,3 +1,3 @@
DIST 0.1.tar.gz 5514855 BLAKE2B 57be3ab5b66cb71a826ed6d7cd2dc70cc415f0f207420aa2b545f63ccfca5f7504d6a44554ff7e8000b35797540e52043902a5d6264cf1f8290a34e9876ef372 SHA512 9dd17d3628d59c2d2de521c26a3d49780fb95acd18b886dd7f515e210c0f876b51b37e83119ed082aa1fc28ae4631ae794cd81d20516ba77566639b2ba49e9fb
DIST 0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
-DIST 0.3.tar.gz 5746551 BLAKE2B 6455416f54d9e36d33f2f17146c3f2c41ff77a154fcb49f12906c5ba5b2ced3eecb9f052423ad5916885a9e6602160a404bd9fe351272c34cc5b375656b75604 SHA512 a6054d167c9d41a6e3fe9247683267c40ac55637a565649724fad0d7caf340d8aa51ab65767a7f8becc0480eced1eb42a5c851dfc5d815a73c3ae99eb1c39572
+DIST swayfx-0.3.tar.gz 5746551 BLAKE2B 6455416f54d9e36d33f2f17146c3f2c41ff77a154fcb49f12906c5ba5b2ced3eecb9f052423ad5916885a9e6602160a404bd9fe351272c34cc5b375656b75604 SHA512 a6054d167c9d41a6e3fe9247683267c40ac55637a565649724fad0d7caf340d8aa51ab65767a7f8becc0480eced1eb42a5c851dfc5d815a73c3ae99eb1c39572
diff --git a/gui-wm/swayfx/swayfx-0.3.ebuild b/gui-wm/swayfx/swayfx-0.3.ebuild
index 422be6474..b0bd4e92a 100644
--- a/gui-wm/swayfx/swayfx-0.3.ebuild
+++ b/gui-wm/swayfx/swayfx-0.3.ebuild
@@ -5,13 +5,11 @@ EAPI=8
inherit meson optfeature
-DESCRIPTION="i3-compatible Wayland window manager"
-HOMEPAGE="https://swaywm.org"
+DESCRIPTION="SwayFX: Sway, but with eye candy!"
+HOMEPAGE="https://github.com/WillPower3309/swayfx"
-MY_PV=${PV/_rc/-rc}
-SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz"
+SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
-S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2023-05-27 6:10 Viorel Munteanu
0 siblings, 0 replies; 17+ messages in thread
From: Viorel Munteanu @ 2023-05-27 6:10 UTC (permalink / raw
To: gentoo-commits
commit: dee60c27f57c48761dc74f63236ca070a096df82
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 02:23:50 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 02:23:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dee60c27
gui-wm/swayfx: remove unused use flags
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
gui-wm/swayfx/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/gui-wm/swayfx/metadata.xml b/gui-wm/swayfx/metadata.xml
index 9fcd742b9..c8faabfab 100644
--- a/gui-wm/swayfx/metadata.xml
+++ b/gui-wm/swayfx/metadata.xml
@@ -20,10 +20,6 @@
<use>
<flag name="grimshot">Install 'grimshot': script for taking screenshots</flag>
<flag name="swaybar">Install 'swaybar': sway's status bar component</flag>
- <flag name="swaybg">Install 'swaybg': allows to set a desktop background image</flag>
- <flag name="swayidle">Install 'swayidle': idle manager to run commands when user is inactive</flag>
- <flag name="swaylock">Install 'swaylock': sway's screen locker</flag>
- <flag name="swaymsg">Install 'swaymsg': tool for communicating with a running sway instance</flag>
<flag name="swaynag">Install 'swaynag': shows a message with buttons</flag>
<flag name="tray">Enable support for StatusNotifierItem tray specification</flag>
<flag name="wallpapers">Install sway's default wallpaper image</flag>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-04-21 14:11 Haelwenn Monnier
0 siblings, 0 replies; 17+ messages in thread
From: Haelwenn Monnier @ 2024-04-21 14:11 UTC (permalink / raw
To: gentoo-commits
commit: 63829035d6c55c66317ea5aa33fe7b46d4b3b637
Author: Joshua Clifton <ayohss <AT> proton <DOT> me>
AuthorDate: Sun Apr 21 03:47:38 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Sun Apr 21 03:47:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=63829035
gui-wm/swayfx: adopts new maintainer, as the current maintainer has not updated since 2023/05
Signed-off-by: Joshua Clifton <ayohss <AT> proton.me>
gui-wm/swayfx/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-wm/swayfx/metadata.xml b/gui-wm/swayfx/metadata.xml
index c8faabfab9..af28f9a6f9 100644
--- a/gui-wm/swayfx/metadata.xml
+++ b/gui-wm/swayfx/metadata.xml
@@ -2,8 +2,8 @@
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>rahul@sandhuservices.dev</email>
- <name>Rahul Sandhu</name>
+ <email>ayohss@proton.me</email>
+ <name>Joshua Clifton (ayohs)</name>
</maintainer>
<longdescription lang="en">
"SirCmpwn's Wayland window manager" is an i3-compatible window manager
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-04-21 21:03 Julien Roy
0 siblings, 0 replies; 17+ messages in thread
From: Julien Roy @ 2024-04-21 21:03 UTC (permalink / raw
To: gentoo-commits
commit: e21751bcc2dd676062bb11d3bd9a73f08c774f9b
Author: Joshua Clifton <ayohss <AT> proton <DOT> me>
AuthorDate: Sun Apr 21 16:55:48 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Apr 21 16:55:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e21751bc
gui-wm/swayfx: version bump ebuild to 0.3.2
Signed-off-by: Joshua Clifton <ayohss <AT> proton.me>
gui-wm/swayfx/swayfx-0.3.2.ebuild | 102 ++++++++++++++++++++++++++++++++++++++
1 file changed, 102 insertions(+)
diff --git a/gui-wm/swayfx/swayfx-0.3.2.ebuild b/gui-wm/swayfx/swayfx-0.3.2.ebuild
new file mode 100644
index 0000000000..7f2e37cb98
--- /dev/null
+++ b/gui-wm/swayfx/swayfx-0.3.2.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU Public License v2
+
+EAPI=8
+
+inherit meson optfeature
+
+DESCRIPTION="SwayFX: Sway, but with eye candy!"
+HOMEPAGE="https://github.com/WillPower3309/swayfx"
+
+SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
+
+DEPEND="
+ >=dev-libs/json-c-0.13:0=
+ >=dev-libs/libinput-1.21.0:0=
+ sys-auth/seatd:=
+ dev-libs/libpcre2
+ >=dev-libs/wayland-1.20.0
+ x11-libs/cairo
+ x11-libs/libxkbcommon
+ x11-libs/pango
+ x11-libs/pixman
+ media-libs/mesa[gles2,libglvnd(+)]
+ swaybar? ( x11-libs/gdk-pixbuf:2 )
+ tray? ( || (
+ sys-apps/systemd
+ sys-auth/elogind
+ sys-libs/basu
+ ) )
+ wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
+ X? ( x11-libs/libxcb:0=
+ x11-libs/xcb-util-wm
+ )
+"
+DEPEND+="
+ >=gui-libs/wlroots-0.16:=[X?]
+ <gui-libs/wlroots-0.17:=[X?]
+"
+
+RDEPEND="
+ x11-misc/xkeyboard-config
+ grimshot? (
+ app-misc/jq
+ gui-apps/grim
+ gui-apps/slurp
+ gui-apps/wl-clipboard
+ x11-libs/libnotify
+ )
+ ${DEPEND}
+"
+BDEPEND="
+ >=dev-libs/wayland-protocols-1.24
+ >=dev-build/meson-0.60.0
+ virtual/pkgconfig
+"
+BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+REQUIRED_USE="tray? ( swaybar )"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature man man-pages)
+ $(meson_feature tray)
+ $(meson_feature X xwayland)
+ $(meson_feature swaybar gdk-pixbuf)
+ $(meson_use swaynag)
+ $(meson_use swaybar)
+ $(meson_use wallpapers default-wallpaper)
+ -Dfish-completions=true
+ -Dzsh-completions=true
+ -Dbash-completions=true
+ )
+
+ meson_src_configure
+}
+
+src_install() {
+ meson_src_install
+
+ if use grimshot; then
+ doman contrib/grimshot.1
+ dobin contrib/grimshot
+ fi
+}
+
+pkg_postinst() {
+ optfeature_header "There are several packages that may be useful with swayfx:"
+ optfeature "wallpaper utility" gui-apps/swaybg
+ optfeature "idle management utility" gui-apps/swayidle
+ optfeature "simple screen locker" gui-apps/swaylock
+ optfeature "lightweight notification daemon" gui-apps/mako
+ echo
+ einfo "For a list of additional addons and tools usable with sway please"
+ einfo "visit the offical wiki at:"
+ einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
+ einfo "Please note that some of them might not (yet) available on gentoo"
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-04-21 21:03 Julien Roy
0 siblings, 0 replies; 17+ messages in thread
From: Julien Roy @ 2024-04-21 21:03 UTC (permalink / raw
To: gentoo-commits
commit: a4917ad965ad5bffe994da7316151a74e8ab04e6
Author: Joshua Clifton <ayohss <AT> proton <DOT> me>
AuthorDate: Sun Apr 21 16:55:23 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Apr 21 16:55:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4917ad9
gui-wm/swayfx: update manifest/version bump to 0.3.2
Signed-off-by: Joshua Clifton <ayohss <AT> proton.me>
gui-wm/swayfx/Manifest | 1 +
1 file changed, 1 insertion(+)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index 3ce8ce4946..f48afef3e0 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1,2 +1,3 @@
DIST swayfx-0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
+DIST swayfx-0.3.2.tar.gz 5684837 BLAKE2B ffe2a5d4a756f30007fb65824471196b6c51034a4e205558a82f547211714be8b0ae03763f32203c9d99fab4d3d69320f2244975a7c279d813091b8629d0c20a SHA512 0cffa25fc4b4d40621b14d9dc430f1aa9956ad935124cfda7dd1a63cbf997f0d506922b1168c7ad13250fa909cc1328526818f75ec936aa8d6cc40152dfbb358
DIST swayfx-0.3.tar.gz 5746551 BLAKE2B 6455416f54d9e36d33f2f17146c3f2c41ff77a154fcb49f12906c5ba5b2ced3eecb9f052423ad5916885a9e6602160a404bd9fe351272c34cc5b375656b75604 SHA512 a6054d167c9d41a6e3fe9247683267c40ac55637a565649724fad0d7caf340d8aa51ab65767a7f8becc0480eced1eb42a5c851dfc5d815a73c3ae99eb1c39572
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/swayfx/
@ 2024-05-05 19:03 Julien Roy
2024-05-05 19:04 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
0 siblings, 1 reply; 17+ messages in thread
From: Julien Roy @ 2024-05-05 19:03 UTC (permalink / raw
To: gentoo-commits
commit: f72b554103dd36b3f3fb04b26dddb57c6ba63397
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun May 5 18:59:40 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun May 5 18:59:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f72b5541
gui-wm/swayfx: gui-wm/scenefx -> gui-libs/scenefx
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-wm/swayfx/swayfx-0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-wm/swayfx/swayfx-0.4.ebuild b/gui-wm/swayfx/swayfx-0.4.ebuild
index 19fd36a726..8c71f91b0b 100644
--- a/gui-wm/swayfx/swayfx-0.4.ebuild
+++ b/gui-wm/swayfx/swayfx-0.4.ebuild
@@ -26,7 +26,7 @@ DEPEND="
>=x11-libs/libxkbcommon-1.5.0
x11-libs/pango
x11-libs/pixman
- gui-wm/scenefx
+ gui-libs/scenefx
media-libs/mesa[gles2,libglvnd(+)]
swaybar? ( x11-libs/gdk-pixbuf:2 )
tray? ( || (
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
2024-05-05 19:03 [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/swayfx/ Julien Roy
@ 2024-05-05 19:04 ` Julien Roy
0 siblings, 0 replies; 17+ messages in thread
From: Julien Roy @ 2024-05-05 19:04 UTC (permalink / raw
To: gentoo-commits
commit: f72b554103dd36b3f3fb04b26dddb57c6ba63397
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun May 5 18:59:40 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun May 5 18:59:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f72b5541
gui-wm/swayfx: gui-wm/scenefx -> gui-libs/scenefx
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-wm/swayfx/swayfx-0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-wm/swayfx/swayfx-0.4.ebuild b/gui-wm/swayfx/swayfx-0.4.ebuild
index 19fd36a726..8c71f91b0b 100644
--- a/gui-wm/swayfx/swayfx-0.4.ebuild
+++ b/gui-wm/swayfx/swayfx-0.4.ebuild
@@ -26,7 +26,7 @@ DEPEND="
>=x11-libs/libxkbcommon-1.5.0
x11-libs/pango
x11-libs/pixman
- gui-wm/scenefx
+ gui-libs/scenefx
media-libs/mesa[gles2,libglvnd(+)]
swaybar? ( x11-libs/gdk-pixbuf:2 )
tray? ( || (
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-05-06 9:38 Florian Schmaus
0 siblings, 0 replies; 17+ messages in thread
From: Florian Schmaus @ 2024-05-06 9:38 UTC (permalink / raw
To: gentoo-commits
commit: 99f2f25aff907b524259b22f9b18fc421aba3747
Author: Joshua Clifton <ayohss <AT> proton <DOT> me>
AuthorDate: Sun May 5 21:55:51 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun May 5 21:55:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=99f2f25a
gui-wm/swayfx: drop 0.3
Signed-off-by: Joshua Clifton <ayohss <AT> proton.me>
gui-wm/swayfx/Manifest | 1 -
gui-wm/swayfx/swayfx-0.3.ebuild | 99 -----------------------------------------
2 files changed, 100 deletions(-)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index c3c1fd0744..04ce973043 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1,4 +1,3 @@
DIST swayfx-0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
DIST swayfx-0.3.2.tar.gz 5684837 BLAKE2B ffe2a5d4a756f30007fb65824471196b6c51034a4e205558a82f547211714be8b0ae03763f32203c9d99fab4d3d69320f2244975a7c279d813091b8629d0c20a SHA512 0cffa25fc4b4d40621b14d9dc430f1aa9956ad935124cfda7dd1a63cbf997f0d506922b1168c7ad13250fa909cc1328526818f75ec936aa8d6cc40152dfbb358
-DIST swayfx-0.3.tar.gz 5746551 BLAKE2B 6455416f54d9e36d33f2f17146c3f2c41ff77a154fcb49f12906c5ba5b2ced3eecb9f052423ad5916885a9e6602160a404bd9fe351272c34cc5b375656b75604 SHA512 a6054d167c9d41a6e3fe9247683267c40ac55637a565649724fad0d7caf340d8aa51ab65767a7f8becc0480eced1eb42a5c851dfc5d815a73c3ae99eb1c39572
DIST swayfx-0.4.tar.gz 17603249 BLAKE2B eda975a0598ba9363066f015d0f5e1a5574775b5cb75a9cf9e7020d04ab16c236b5472b726c40ccd765bf743b6cd659323334915064ac887164b07b798cd58c5 SHA512 a6b30d5b466eb20ca1090daf442377f4f911a97e3089e2966420352c98a8e5b3384abb128118889b9b214f50e6bd65bb744ad941acb05ae105331e60a5e67293
diff --git a/gui-wm/swayfx/swayfx-0.3.ebuild b/gui-wm/swayfx/swayfx-0.3.ebuild
deleted file mode 100644
index aecc9fedbe..0000000000
--- a/gui-wm/swayfx/swayfx-0.3.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson optfeature
-
-DESCRIPTION="SwayFX: Sway, but with eye candy!"
-HOMEPAGE="https://github.com/WillPower3309/swayfx"
-
-SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
-
-DEPEND="
- >=dev-libs/json-c-0.13:0=
- >=dev-libs/libinput-1.21.0:0=
- sys-auth/seatd:=
- dev-libs/libpcre
- >=dev-libs/wayland-1.20.0
- x11-libs/cairo
- x11-libs/libxkbcommon
- x11-libs/pango
- x11-libs/pixman
- media-libs/mesa[gles2,libglvnd(+)]
- swaybar? ( x11-libs/gdk-pixbuf:2 )
- tray? ( || (
- sys-apps/systemd
- sys-auth/elogind
- sys-libs/basu
- ) )
- wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
- X? ( x11-libs/libxcb:0= )
-"
-DEPEND+="
- >=gui-libs/wlroots-0.16:=[X?]
- <gui-libs/wlroots-0.17:=[X?]
-"
-RDEPEND="
- x11-misc/xkeyboard-config
- grimshot? (
- app-misc/jq
- gui-apps/grim
- gui-apps/slurp
- gui-apps/wl-clipboard
- x11-libs/libnotify
- )
- !!gui-wm/sway
- ${DEPEND}
-"
-BDEPEND="
- >=dev-libs/wayland-protocols-1.24
- >=dev-build/meson-0.60.0
- virtual/pkgconfig
-"
-BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
-REQUIRED_USE="tray? ( swaybar )"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- $(meson_feature tray)
- $(meson_feature X xwayland)
- $(meson_feature swaybar gdk-pixbuf)
- $(meson_use swaynag)
- $(meson_use swaybar)
- $(meson_use wallpapers default-wallpaper)
- -Dfish-completions=true
- -Dzsh-completions=true
- -Dbash-completions=true
- )
-
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
-
- if use grimshot; then
- doman contrib/grimshot.1
- dobin contrib/grimshot
- fi
-}
-
-pkg_postinst() {
- optfeature_header "There are several packages that may be useful with swayfx:"
- optfeature "wallpaper utility" gui-apps/swaybg
- optfeature "idle management utility" gui-apps/swayidle
- optfeature "simple screen locker" gui-apps/swaylock
- optfeature "lightweight notification daemon" gui-apps/mako
- echo
- einfo "For a list of additional addons and tools usable with sway please"
- einfo "visit the offical wiki at:"
- einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
- einfo "Please note that some of them might not (yet) available on gentoo"
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-05-06 9:38 Florian Schmaus
0 siblings, 0 replies; 17+ messages in thread
From: Florian Schmaus @ 2024-05-06 9:38 UTC (permalink / raw
To: gentoo-commits
commit: 9404a35136aa0719fa0eaa3bf80b3be5ffd3c69b
Author: Joshua Clifton <ayohss <AT> proton <DOT> me>
AuthorDate: Sun May 5 21:54:14 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun May 5 21:54:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9404a351
gui-wm/swayfx:
Adds fcaps and fixes missing dep. ty theo.
Signed-off-by: Joshua Clifton <ayohss <AT> proton.me>
gui-wm/swayfx/swayfx-0.4.ebuild | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gui-wm/swayfx/swayfx-0.4.ebuild b/gui-wm/swayfx/swayfx-0.4.ebuild
index 8c71f91b0b..b5d1f2593d 100644
--- a/gui-wm/swayfx/swayfx-0.4.ebuild
+++ b/gui-wm/swayfx/swayfx-0.4.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit meson optfeature
+inherit fcaps meson optfeature
DESCRIPTION="SwayFX: Sway, but with eye candy!"
HOMEPAGE="https://github.com/WillPower3309/swayfx"
@@ -15,10 +15,12 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="+man +swaybar +swaynag tray wallpapers X"
+REQUIRED_USE="tray? ( swaybar )"
DEPEND="
>=dev-libs/json-c-0.13:0=
>=dev-libs/libinput-1.21.0:0=
+ virtual/libudev
sys-auth/seatd:=
dev-libs/libpcre2
>=dev-libs/wayland-1.21.0
@@ -54,7 +56,10 @@ BDEPEND="
virtual/pkgconfig
"
BDEPEND+="man? ( >=app-text/scdoc-1.9.2 )"
-REQUIRED_USE="tray? ( swaybar )"
+
+FILECAPS=(
+ cap_sys_nice usr/bin/sway # reflect "gui-wm/sway-1.9"
+)
src_configure() {
local emesonargs=(
@@ -80,6 +85,8 @@ src_install() {
}
pkg_postinst() {
+ fcaps_pkg_postinst
+
optfeature_header "There are several packages that may be useful with swayfx:"
optfeature "wallpaper utility" gui-apps/swaybg
optfeature "idle management utility" gui-apps/swayidle
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-05-25 20:22 Julien Roy
0 siblings, 0 replies; 17+ messages in thread
From: Julien Roy @ 2024-05-25 20:22 UTC (permalink / raw
To: gentoo-commits
commit: b34038766fe4587de4307329cf099ffd45175fde
Author: Joshua Clifton <ayohss <AT> proton <DOT> me>
AuthorDate: Sat May 25 19:55:32 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat May 25 19:55:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3403876
gui-wm/swayfx: fixes rdeps & formatting issues
Closes: https://bugs.gentoo.org/932655
Signed-off-by: Joshua Clifton <ayohss <AT> proton.me>
gui-wm/swayfx/swayfx-0.4.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gui-wm/swayfx/swayfx-0.4.ebuild b/gui-wm/swayfx/swayfx-0.4.ebuild
index b5d1f2593..04ab7456d 100644
--- a/gui-wm/swayfx/swayfx-0.4.ebuild
+++ b/gui-wm/swayfx/swayfx-0.4.ebuild
@@ -7,7 +7,6 @@ inherit fcaps meson optfeature
DESCRIPTION="SwayFX: Sway, but with eye candy!"
HOMEPAGE="https://github.com/WillPower3309/swayfx"
-
SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${PV}"
@@ -47,6 +46,8 @@ DEPEND+="
"
RDEPEND="
+ dev-libs/glib
+ dev-libs/libevdev
x11-misc/xkeyboard-config
${DEPEND}
"
@@ -58,7 +59,7 @@ BDEPEND="
BDEPEND+="man? ( >=app-text/scdoc-1.9.2 )"
FILECAPS=(
- cap_sys_nice usr/bin/sway # reflect "gui-wm/sway-1.9"
+ cap_sys_nice usr/bin/sway # reflect ">=gui-wm/sway-1.9"
)
src_configure() {
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-08-17 10:16 David Roman
0 siblings, 0 replies; 17+ messages in thread
From: David Roman @ 2024-08-17 10:16 UTC (permalink / raw
To: gentoo-commits
commit: e18de53415d484caad0ae53d5860db4937d3ef12
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat Aug 17 06:37:40 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Aug 17 06:42:41 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e18de534
gui-wm/swayfx: drop 0.2, 0.3.2
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
gui-wm/swayfx/Manifest | 2 -
gui-wm/swayfx/swayfx-0.2.ebuild | 96 ----------------------------------
gui-wm/swayfx/swayfx-0.3.2.ebuild | 106 --------------------------------------
3 files changed, 204 deletions(-)
diff --git a/gui-wm/swayfx/Manifest b/gui-wm/swayfx/Manifest
index 04ce97304..8a313360c 100644
--- a/gui-wm/swayfx/Manifest
+++ b/gui-wm/swayfx/Manifest
@@ -1,3 +1 @@
-DIST swayfx-0.2.tar.gz 5534158 BLAKE2B e01ac28ea24743d5fe937d953114c8316f3de27b7813f83cce0f6f76bf524f079357be810845791c4431db7e315f096411e6d7a0e2174673e4247d16e3e44bc1 SHA512 0884513a0851b19546f2cc647d8590c7d82494604028ed71b2e6fefbac7f3fff141be26e783ccc504b8da84bbed6c1e12a2194f0713c920e1cc34a6360ac318c
-DIST swayfx-0.3.2.tar.gz 5684837 BLAKE2B ffe2a5d4a756f30007fb65824471196b6c51034a4e205558a82f547211714be8b0ae03763f32203c9d99fab4d3d69320f2244975a7c279d813091b8629d0c20a SHA512 0cffa25fc4b4d40621b14d9dc430f1aa9956ad935124cfda7dd1a63cbf997f0d506922b1168c7ad13250fa909cc1328526818f75ec936aa8d6cc40152dfbb358
DIST swayfx-0.4.tar.gz 17603249 BLAKE2B eda975a0598ba9363066f015d0f5e1a5574775b5cb75a9cf9e7020d04ab16c236b5472b726c40ccd765bf743b6cd659323334915064ac887164b07b798cd58c5 SHA512 a6b30d5b466eb20ca1090daf442377f4f911a97e3089e2966420352c98a8e5b3384abb128118889b9b214f50e6bd65bb744ad941acb05ae105331e60a5e67293
diff --git a/gui-wm/swayfx/swayfx-0.2.ebuild b/gui-wm/swayfx/swayfx-0.2.ebuild
deleted file mode 100644
index 2daeb19e1..000000000
--- a/gui-wm/swayfx/swayfx-0.2.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson optfeature
-
-DESCRIPTION="SwayFX: Sway, but with eye candy!"
-HOMEPAGE="https://github.com/WillPower3309/swayfx"
-SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
-REQUIRED_USE="tray? ( swaybar )"
-
-DEPEND="
- >=dev-libs/json-c-0.13:0=
- >=dev-libs/libinput-1.6.0:0=
- sys-auth/seatd:=
- dev-libs/libpcre
- >=dev-libs/wayland-1.20.0
- >=gui-libs/wlroots-0.16:=[X?]
- <gui-libs/wlroots-0.17:=[X?]
- x11-libs/cairo
- x11-libs/libxkbcommon
- x11-libs/pango
- x11-libs/pixman
- media-libs/mesa[gles2,libglvnd(+)]
- swaybar? ( x11-libs/gdk-pixbuf:2 )
- tray? ( || (
- sys-apps/systemd
- sys-auth/elogind
- sys-libs/basu
- ) )
- wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
- X? ( x11-libs/libxcb:0= )
-"
-RDEPEND="
- x11-misc/xkeyboard-config
- grimshot? (
- app-misc/jq
- gui-apps/grim
- gui-apps/slurp
- gui-apps/wl-clipboard
- x11-libs/libnotify
- )
- !!gui-wm/sway
- ${DEPEND}
-"
-BDEPEND="
- >=dev-libs/wayland-protocols-1.24
- >=dev-build/meson-0.60.0
- virtual/pkgconfig
- man? ( >=app-text/scdoc-1.9.3 )"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- $(meson_feature tray)
- $(meson_feature X xwayland)
- $(meson_feature swaybar gdk-pixbuf)
- $(meson_use swaynag)
- $(meson_use swaybar)
- $(meson_use wallpapers default-wallpaper)
- -Dfish-completions=true
- -Dzsh-completions=true
- -Dbash-completions=true
- )
-
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
-
- if use grimshot; then
- doman contrib/grimshot.1
- dobin contrib/grimshot
- fi
-}
-
-pkg_postinst() {
- optfeature_header "There are several packages that may be useful with swayfx:"
- optfeature "wallpaper utility" gui-apps/swaybg
- optfeature "idle management utility" gui-apps/swayidle
- optfeature "simple screen locker" gui-apps/swaylock
- optfeature "lightweight notification daemon" gui-apps/mako
- echo
- einfo "For a list of additional addons and tools usable with sway please"
- einfo "visit the offical wiki at:"
- einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
- einfo "Please note that some of them might not (yet) available on gentoo"
-}
diff --git a/gui-wm/swayfx/swayfx-0.3.2.ebuild b/gui-wm/swayfx/swayfx-0.3.2.ebuild
deleted file mode 100644
index 4f68c2681..000000000
--- a/gui-wm/swayfx/swayfx-0.3.2.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU Public License v2
-
-EAPI=8
-
-inherit meson optfeature
-
-DESCRIPTION="SwayFX: Sway, but with eye candy!"
-HOMEPAGE="https://github.com/WillPower3309/swayfx"
-
-SRC_URI="https://github.com/WillPower3309/swayfx/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="grimshot +man +swaybar +swaynag tray wallpapers X"
-
-DEPEND="
- >=dev-libs/json-c-0.13:0=
- >=dev-libs/libinput-1.21.0:0=
- sys-auth/seatd:=
- dev-libs/libpcre2
- >=dev-libs/wayland-1.20.0
- x11-libs/cairo
- x11-libs/libxkbcommon
- x11-libs/pango
- x11-libs/pixman
- media-libs/mesa[gles2,libglvnd(+)]
- swaybar? ( x11-libs/gdk-pixbuf:2 )
- tray? ( || (
- sys-apps/systemd
- sys-auth/elogind
- sys-libs/basu
- ) )
- wallpapers? ( gui-apps/swaybg[gdk-pixbuf(+)] )
- X? ( x11-libs/libxcb:0=
- x11-libs/xcb-util-wm
- )
-"
-DEPEND+="
- >=gui-libs/wlroots-0.16:=[X?]
- <gui-libs/wlroots-0.17:=[X?]
-"
-
-RDEPEND="
- x11-misc/xkeyboard-config
- grimshot? (
- app-misc/jq
- gui-apps/grim
- gui-apps/slurp
- gui-apps/wl-clipboard
- x11-libs/libnotify
- )
- ${DEPEND}
-"
-BDEPEND="
- >=dev-libs/wayland-protocols-1.24
- >=dev-build/meson-0.60.0
- virtual/pkgconfig
-"
-BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
-REQUIRED_USE="tray? ( swaybar )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.3.2-fix-not-being-able-to-build-without-xwayland-support.patch"
- )
-
-src_configure() {
- local emesonargs=(
- $(meson_feature man man-pages)
- $(meson_feature tray)
- $(meson_feature X xwayland)
- $(meson_feature swaybar gdk-pixbuf)
- $(meson_use swaynag)
- $(meson_use swaybar)
- $(meson_use wallpapers default-wallpaper)
- -Dfish-completions=true
- -Dzsh-completions=true
- -Dbash-completions=true
- )
-
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
-
- if use grimshot; then
- doman contrib/grimshot.1
- dobin contrib/grimshot
- fi
-}
-
-pkg_postinst() {
- optfeature_header "There are several packages that may be useful with swayfx:"
- optfeature "wallpaper utility" gui-apps/swaybg
- optfeature "idle management utility" gui-apps/swayidle
- optfeature "simple screen locker" gui-apps/swaylock
- optfeature "lightweight notification daemon" gui-apps/mako
- echo
- einfo "For a list of additional addons and tools usable with sway please"
- einfo "visit the offical wiki at:"
- einfo "https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway"
- einfo "Please note that some of them might not (yet) available on gentoo"
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-wm/swayfx/
@ 2024-08-31 21:35 David Roman
0 siblings, 0 replies; 17+ messages in thread
From: David Roman @ 2024-08-31 21:35 UTC (permalink / raw
To: gentoo-commits
commit: 44d749f8f1fdb99d92eff57427ea614fdb298539
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat Aug 31 14:09:24 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Aug 31 14:09:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44d749f8
gui-wm/swayfx: conflict with gui-wm/sway
Closes: https://bugs.gentoo.org/938615
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
gui-wm/swayfx/swayfx-0.4-r1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/gui-wm/swayfx/swayfx-0.4-r1.ebuild b/gui-wm/swayfx/swayfx-0.4-r1.ebuild
index 0516529da..a035679e4 100644
--- a/gui-wm/swayfx/swayfx-0.4-r1.ebuild
+++ b/gui-wm/swayfx/swayfx-0.4-r1.ebuild
@@ -49,6 +49,7 @@ RDEPEND="
dev-libs/glib
dev-libs/libevdev
x11-misc/xkeyboard-config
+ !!gui-wm/sway
${DEPEND}
"
BDEPEND="
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-08-31 21:35 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-05 19:03 [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/swayfx/ Julien Roy
2024-05-05 19:04 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
-- strict thread matches above, loose matches on Subject: below --
2024-08-31 21:35 David Roman
2024-08-17 10:16 David Roman
2024-05-25 20:22 Julien Roy
2024-05-06 9:38 Florian Schmaus
2024-05-06 9:38 Florian Schmaus
2024-04-21 21:03 Julien Roy
2024-04-21 21:03 Julien Roy
2024-04-21 14:11 Haelwenn Monnier
2023-05-27 6:10 Viorel Munteanu
2023-05-27 6:10 Viorel Munteanu
2023-05-27 6:10 Viorel Munteanu
2023-05-27 6:10 Viorel Munteanu
2023-04-19 7:32 Florian Schmaus
2023-04-17 9:22 Florian Schmaus
2023-04-17 9:22 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox