* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2020-05-17 15:55 Aaron Bauman
0 siblings, 0 replies; 25+ messages in thread
From: Aaron Bauman @ 2020-05-17 15:55 UTC (permalink / raw
To: gentoo-commits
commit: 5087a0903a02c31782f6070a24b876fc0b065f39
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri May 15 15:56:23 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 17 15:54:36 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5087a090
gui-apps/wf-shell: basic desktop shell for wayfire
Closes: https://bugs.gentoo.org/713880
a simple shell which showcases the capabilities of
the wayfire window manager
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/15050
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
gui-apps/wf-shell/metadata.xml | 18 ++++++++++++
gui-apps/wf-shell/wf-shell-0.4.0.ebuild | 49 +++++++++++++++++++++++++++++++++
gui-apps/wf-shell/wf-shell-9999.ebuild | 49 +++++++++++++++++++++++++++++++++
4 files changed, 117 insertions(+)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
new file mode 100644
index 00000000000..e210eeae0b9
--- /dev/null
+++ b/gui-apps/wf-shell/Manifest
@@ -0,0 +1 @@
+DIST wf-shell-0.4.0.tar.xz 8996656 BLAKE2B 609668bcf00fcc7a0b8142d84a7101f07578c2d6a88616da286a615076372e5a356387cf5e3fdee9b4aba6f027d8d081a5cce32f7f00682a756d4ee9bc46916d SHA512 1b293ce3fc2b12acbadb75e0de28217ed24f733e26d7ad12ada9a5f0673df911e75eea5af6841c466f031151f881a8e36dda229ea4dc2f91825e2e6df42d4903
diff --git a/gui-apps/wf-shell/metadata.xml b/gui-apps/wf-shell/metadata.xml
new file mode 100644
index 00000000000..1f968932aa5
--- /dev/null
+++ b/gui-apps/wf-shell/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <longdescription>
+ Basic desktop environment for use with wayfire
+ which showcases all its plugins and desktop
+ effects. Integrates with other wayland
+ applications to provide a full desktop environment
+ </longdescription>
+ <maintainer type="person">
+ <email>gentoo@aisha.cc</email>
+ <name>Aisha Tammy</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/gui-apps/wf-shell/wf-shell-0.4.0.ebuild b/gui-apps/wf-shell/wf-shell-0.4.0.ebuild
new file mode 100644
index 00000000000..9167682d0b6
--- /dev/null
+++ b/gui-apps/wf-shell/wf-shell-0.4.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A compiz like 3D wayland compositor"
+HOMEPAGE="https://github.com/WayfireWM/wf-shell"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+ SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+pulseaudio debug"
+
+DEPEND="
+ dev-cpp/gtkmm:3.0=[wayland]
+ dev-libs/gobject-introspection
+ ~gui-wm/wayfire-${PV}
+ >=gui-libs/gtk-layer-shell-0.1
+ pulseaudio? ( media-sound/pulseaudio )
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+ ${DEPEND}
+ dev-libs/wayland-protocols
+ virtual/pkgconfig
+"
+
+src_compile () {
+ local emesonargs=(
+ "$(meson_feature pulseaudio pulse)"
+ )
+ if use debug; then
+ emesonargs+=(
+ "-Db_sanitize=address,undefined"
+ )
+ fi
+ meson_src_compile
+}
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
new file mode 100644
index 00000000000..9167682d0b6
--- /dev/null
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A compiz like 3D wayland compositor"
+HOMEPAGE="https://github.com/WayfireWM/wf-shell"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+ SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+pulseaudio debug"
+
+DEPEND="
+ dev-cpp/gtkmm:3.0=[wayland]
+ dev-libs/gobject-introspection
+ ~gui-wm/wayfire-${PV}
+ >=gui-libs/gtk-layer-shell-0.1
+ pulseaudio? ( media-sound/pulseaudio )
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+ ${DEPEND}
+ dev-libs/wayland-protocols
+ virtual/pkgconfig
+"
+
+src_compile () {
+ local emesonargs=(
+ "$(meson_feature pulseaudio pulse)"
+ )
+ if use debug; then
+ emesonargs+=(
+ "-Db_sanitize=address,undefined"
+ )
+ fi
+ meson_src_compile
+}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2020-06-07 0:12 Aaron Bauman
0 siblings, 0 replies; 25+ messages in thread
From: Aaron Bauman @ 2020-06-07 0:12 UTC (permalink / raw
To: gentoo-commits
commit: 69f10f6bc72eb560a8aa7c3fc880eb2e785c1401
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jun 6 20:03:48 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Jun 7 00:12:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69f10f6b
gui-apps/wf-shell: remove debug symbols
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/16090
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
.../wf-shell/{wf-shell-0.4.0.ebuild => wf-shell-0.4.0-r1.ebuild} | 9 ++-------
gui-apps/wf-shell/wf-shell-9999.ebuild | 9 ++-------
2 files changed, 4 insertions(+), 14 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.4.0.ebuild b/gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild
similarity index 85%
rename from gui-apps/wf-shell/wf-shell-0.4.0.ebuild
rename to gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild
index ab448db2642..21fc54e4ef7 100644
--- a/gui-apps/wf-shell/wf-shell-0.4.0.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild
@@ -18,12 +18,12 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="+pulseaudio debug"
+IUSE="+pulseaudio"
DEPEND="
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
- ~gui-wm/wayfire-${PV}[debug=]
+ ~gui-wm/wayfire-${PV}
>=gui-libs/gtk-layer-shell-0.1
pulseaudio? ( media-sound/pulseaudio )
"
@@ -40,10 +40,5 @@ src_configure () {
local emesonargs=(
"$(meson_feature pulseaudio pulse)"
)
- if use debug; then
- emesonargs+=(
- "-Db_sanitize=address,undefined"
- )
- fi
meson_src_configure
}
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index ab448db2642..21fc54e4ef7 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -18,12 +18,12 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="+pulseaudio debug"
+IUSE="+pulseaudio"
DEPEND="
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
- ~gui-wm/wayfire-${PV}[debug=]
+ ~gui-wm/wayfire-${PV}
>=gui-libs/gtk-layer-shell-0.1
pulseaudio? ( media-sound/pulseaudio )
"
@@ -40,10 +40,5 @@ src_configure () {
local emesonargs=(
"$(meson_feature pulseaudio pulse)"
)
- if use debug; then
- emesonargs+=(
- "-Db_sanitize=address,undefined"
- )
- fi
meson_src_configure
}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2020-08-17 1:36 Aaron Bauman
0 siblings, 0 replies; 25+ messages in thread
From: Aaron Bauman @ 2020-08-17 1:36 UTC (permalink / raw
To: gentoo-commits
commit: 9629c01213f8ab2139278c67800c0345f7923534
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Wed Aug 5 11:19:50 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Aug 17 01:36:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9629c012
gui-apps/wf-shell: version bump to 0.5.0
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
gui-apps/wf-shell/{wf-shell-9999.ebuild => wf-shell-0.5.0.ebuild} | 3 +--
gui-apps/wf-shell/wf-shell-9999.ebuild | 3 +--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index e210eeae0b9..1df1fef29e6 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1 +1,2 @@
DIST wf-shell-0.4.0.tar.xz 8996656 BLAKE2B 609668bcf00fcc7a0b8142d84a7101f07578c2d6a88616da286a615076372e5a356387cf5e3fdee9b4aba6f027d8d081a5cce32f7f00682a756d4ee9bc46916d SHA512 1b293ce3fc2b12acbadb75e0de28217ed24f733e26d7ad12ada9a5f0673df911e75eea5af6841c466f031151f881a8e36dda229ea4dc2f91825e2e6df42d4903
+DIST wf-shell-0.5.0.tar.xz 8998296 BLAKE2B c32232fc08292b15a0048d11d0f179a82fd21b3179223d898057ac95b42ac35ec063467f67c0f1261857c3b643edc4367112a05bb63f002788b64ed86559addd SHA512 d0029746ea10625bb47381a7ed74aadb8aa3823f83f751b539eefd49da5aa1643a2d16c55fe23d30bd71528ad5c1ea8d389909fe8cc1026746b3b76aa5dabd2b
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-0.5.0.ebuild
similarity index 96%
copy from gui-apps/wf-shell/wf-shell-9999.ebuild
copy to gui-apps/wf-shell/wf-shell-0.5.0.ebuild
index 21fc54e4ef7..94c26507f32 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.5.0.ebuild
@@ -23,15 +23,14 @@ IUSE="+pulseaudio"
DEPEND="
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
- ~gui-wm/wayfire-${PV}
>=gui-libs/gtk-layer-shell-0.1
+ >=gui-wm/wayfire-${PV}
pulseaudio? ( media-sound/pulseaudio )
"
RDEPEND="${DEPEND}"
BDEPEND="
- ${DEPEND}
dev-libs/wayland-protocols
virtual/pkgconfig
"
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 21fc54e4ef7..94c26507f32 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -23,15 +23,14 @@ IUSE="+pulseaudio"
DEPEND="
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
- ~gui-wm/wayfire-${PV}
>=gui-libs/gtk-layer-shell-0.1
+ >=gui-wm/wayfire-${PV}
pulseaudio? ( media-sound/pulseaudio )
"
RDEPEND="${DEPEND}"
BDEPEND="
- ${DEPEND}
dev-libs/wayland-protocols
virtual/pkgconfig
"
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2020-11-09 18:05 Aaron Bauman
0 siblings, 0 replies; 25+ messages in thread
From: Aaron Bauman @ 2020-11-09 18:05 UTC (permalink / raw
To: gentoo-commits
commit: 1d11a9db07079082570b939910867beb29906147
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 9 18:04:59 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Nov 9 18:05:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d11a9db
gui-apps/wf-shell: drop old 0.4.x
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 -
gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild | 44 ------------------------------
2 files changed, 45 deletions(-)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index 1df1fef29e6..acc3e68fe84 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1,2 +1 @@
-DIST wf-shell-0.4.0.tar.xz 8996656 BLAKE2B 609668bcf00fcc7a0b8142d84a7101f07578c2d6a88616da286a615076372e5a356387cf5e3fdee9b4aba6f027d8d081a5cce32f7f00682a756d4ee9bc46916d SHA512 1b293ce3fc2b12acbadb75e0de28217ed24f733e26d7ad12ada9a5f0673df911e75eea5af6841c466f031151f881a8e36dda229ea4dc2f91825e2e6df42d4903
DIST wf-shell-0.5.0.tar.xz 8998296 BLAKE2B c32232fc08292b15a0048d11d0f179a82fd21b3179223d898057ac95b42ac35ec063467f67c0f1261857c3b643edc4367112a05bb63f002788b64ed86559addd SHA512 d0029746ea10625bb47381a7ed74aadb8aa3823f83f751b539eefd49da5aa1643a2d16c55fe23d30bd71528ad5c1ea8d389909fe8cc1026746b3b76aa5dabd2b
diff --git a/gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild b/gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild
deleted file mode 100644
index 21fc54e4ef7..00000000000
--- a/gui-apps/wf-shell/wf-shell-0.4.0-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="A compiz like 3D wayland compositor"
-HOMEPAGE="https://github.com/WayfireWM/wf-shell"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
-else
- SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+pulseaudio"
-
-DEPEND="
- dev-cpp/gtkmm:3.0=[wayland]
- dev-libs/gobject-introspection
- ~gui-wm/wayfire-${PV}
- >=gui-libs/gtk-layer-shell-0.1
- pulseaudio? ( media-sound/pulseaudio )
-"
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="
- ${DEPEND}
- dev-libs/wayland-protocols
- virtual/pkgconfig
-"
-
-src_configure () {
- local emesonargs=(
- "$(meson_feature pulseaudio pulse)"
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2020-11-13 21:04 Aaron Bauman
0 siblings, 0 replies; 25+ messages in thread
From: Aaron Bauman @ 2020-11-13 21:04 UTC (permalink / raw
To: gentoo-commits
commit: 9896adeb3d635f5c4817e4ab309a7d2281ca3dbf
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Wed Nov 11 20:09:47 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Nov 13 21:04:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9896adeb
gui-apps/wf-shell: version bump to 0.6.1
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/18218
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
.../{wf-shell-9999.ebuild => wf-shell-0.6.1.ebuild} | 13 +++++++------
gui-apps/wf-shell/wf-shell-9999.ebuild | 13 +++++++------
3 files changed, 15 insertions(+), 12 deletions(-)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index acc3e68fe84..5af436f3cf2 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1 +1,2 @@
DIST wf-shell-0.5.0.tar.xz 8998296 BLAKE2B c32232fc08292b15a0048d11d0f179a82fd21b3179223d898057ac95b42ac35ec063467f67c0f1261857c3b643edc4367112a05bb63f002788b64ed86559addd SHA512 d0029746ea10625bb47381a7ed74aadb8aa3823f83f751b539eefd49da5aa1643a2d16c55fe23d30bd71528ad5c1ea8d389909fe8cc1026746b3b76aa5dabd2b
+DIST wf-shell-0.6.1.tar.xz 9014596 BLAKE2B 5256ceb8dc2b3dd4cf5d4503595c46b72bcde1dd4804a5871e225cee5b028ac69b02618d9c348fca4e21f2fd81b2be51fb0122126dd200dcdaeac894ec902c21 SHA512 d710cf703f5671bba01d056c7733724f90e6510a50e45a1a30cacde33a689c065335d802a3fd556cf9f8f0f420266ed2a8616706ecf5a68dcdf45a79876a4bcf
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-0.6.1.ebuild
similarity index 76%
copy from gui-apps/wf-shell/wf-shell-9999.ebuild
copy to gui-apps/wf-shell/wf-shell-0.6.1.ebuild
index 94c26507f32..08f4995b15b 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.6.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
else
- SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+ SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
@@ -23,13 +23,13 @@ IUSE="+pulseaudio"
DEPEND="
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
- >=gui-libs/gtk-layer-shell-0.1
- >=gui-wm/wayfire-${PV}
+ gui-libs/gtk-layer-shell
+ >=gui-wm/wayfire-${PV%.*}
pulseaudio? ( media-sound/pulseaudio )
"
-
-RDEPEND="${DEPEND}"
-
+RDEPEND="${DEPEND}
+ gui-apps/wayland-logout
+"
BDEPEND="
dev-libs/wayland-protocols
virtual/pkgconfig
@@ -38,6 +38,7 @@ BDEPEND="
src_configure () {
local emesonargs=(
"$(meson_feature pulseaudio pulse)"
+ -Dwayland-logout=false
)
meson_src_configure
}
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 94c26507f32..08f4995b15b 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
else
- SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+ SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
@@ -23,13 +23,13 @@ IUSE="+pulseaudio"
DEPEND="
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
- >=gui-libs/gtk-layer-shell-0.1
- >=gui-wm/wayfire-${PV}
+ gui-libs/gtk-layer-shell
+ >=gui-wm/wayfire-${PV%.*}
pulseaudio? ( media-sound/pulseaudio )
"
-
-RDEPEND="${DEPEND}"
-
+RDEPEND="${DEPEND}
+ gui-apps/wayland-logout
+"
BDEPEND="
dev-libs/wayland-protocols
virtual/pkgconfig
@@ -38,6 +38,7 @@ BDEPEND="
src_configure () {
local emesonargs=(
"$(meson_feature pulseaudio pulse)"
+ -Dwayland-logout=false
)
meson_src_configure
}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2020-11-18 16:25 Sam James
0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2020-11-18 16:25 UTC (permalink / raw
To: gentoo-commits
commit: bbf6d38bbdfe8f8da4be7641a44747a3dd2bf550
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 18 16:25:11 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 18 16:25:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf6d38b
gui-apps/wf-shell: Stabilize 0.5.0 amd64, #752024
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.5.0.ebuild b/gui-apps/wf-shell/wf-shell-0.5.0.ebuild
index 94c26507f32..f4c6ec5dafe 100644
--- a/gui-apps/wf-shell/wf-shell-0.5.0.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.5.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
else
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2021-02-10 13:36 Joonas Niilola
0 siblings, 0 replies; 25+ messages in thread
From: Joonas Niilola @ 2021-02-10 13:36 UTC (permalink / raw
To: gentoo-commits
commit: 5cbfdb87cda11c938e27db60ae7ebfb0b122786a
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jan 30 03:13:15 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 13:36:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cbfdb87
gui-apps/wf-shell: version bump to 0.7.0
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
gui-apps/wf-shell/wf-shell-0.7.0.ebuild | 44 +++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index 5af436f3cf2..f47c542ed58 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1,2 +1,3 @@
DIST wf-shell-0.5.0.tar.xz 8998296 BLAKE2B c32232fc08292b15a0048d11d0f179a82fd21b3179223d898057ac95b42ac35ec063467f67c0f1261857c3b643edc4367112a05bb63f002788b64ed86559addd SHA512 d0029746ea10625bb47381a7ed74aadb8aa3823f83f751b539eefd49da5aa1643a2d16c55fe23d30bd71528ad5c1ea8d389909fe8cc1026746b3b76aa5dabd2b
DIST wf-shell-0.6.1.tar.xz 9014596 BLAKE2B 5256ceb8dc2b3dd4cf5d4503595c46b72bcde1dd4804a5871e225cee5b028ac69b02618d9c348fca4e21f2fd81b2be51fb0122126dd200dcdaeac894ec902c21 SHA512 d710cf703f5671bba01d056c7733724f90e6510a50e45a1a30cacde33a689c065335d802a3fd556cf9f8f0f420266ed2a8616706ecf5a68dcdf45a79876a4bcf
+DIST wf-shell-0.7.0.tar.xz 9014840 BLAKE2B f2e1ffb76de79db580227ddefc10c9f3431c92f77e6519da1102e7c4456bb30c4f25c82570a5b2796985dac00be65f9428ac6682e80920ed22359f63e3e6a84d SHA512 3d72c5d399280ee9da841a417faf696f8baa40edc1040bc1f354f113a8e431dbab428c93928b1d3faa520e35211345cabb5c70f55e10cfb7a4c321a6db19df90
diff --git a/gui-apps/wf-shell/wf-shell-0.7.0.ebuild b/gui-apps/wf-shell/wf-shell-0.7.0.ebuild
new file mode 100644
index 00000000000..11f54e22dac
--- /dev/null
+++ b/gui-apps/wf-shell/wf-shell-0.7.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="A compiz like 3D wayland compositor"
+HOMEPAGE="https://github.com/WayfireWM/wf-shell"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+ SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+pulseaudio"
+
+DEPEND="
+ dev-cpp/gtkmm:3.0=[wayland]
+ dev-libs/gobject-introspection
+ gui-libs/gtk-layer-shell
+ >=gui-wm/wayfire-${PV%.*}
+ pulseaudio? ( media-sound/pulseaudio )
+"
+RDEPEND="${DEPEND}
+ gui-apps/wayland-logout
+"
+BDEPEND="
+ dev-libs/wayland-protocols
+ virtual/pkgconfig
+"
+
+src_configure () {
+ local emesonargs=(
+ "$(meson_feature pulseaudio pulse)"
+ -Dwayland-logout=false
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2021-06-18 6:27 Agostino Sarubbo
0 siblings, 0 replies; 25+ messages in thread
From: Agostino Sarubbo @ 2021-06-18 6:27 UTC (permalink / raw
To: gentoo-commits
commit: 54b5367f6534375a1df2e1ecac5b4449d9bad709
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 06:26:14 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 06:26:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54b5367f
gui-apps/wf-shell: amd64 stable wrt bug #771246
Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.7.0.ebuild b/gui-apps/wf-shell/wf-shell-0.7.0.ebuild
index 11f54e22dac..34f21083a08 100644
--- a/gui-apps/wf-shell/wf-shell-0.7.0.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.7.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
else
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2023-05-29 12:23 Andreas Sturmlechner
0 siblings, 0 replies; 25+ messages in thread
From: Andreas Sturmlechner @ 2023-05-29 12:23 UTC (permalink / raw
To: gentoo-commits
commit: 1172ab9350bc87adce211fb565c5b872787b8834
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 09:27:46 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon May 29 12:20:24 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1172ab93
gui-apps/wf-shell: EAPI 8 bump,switch to media-libs/libpulse
add missing dev-util/wayland-scanner
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-9999.ebuild | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 08f4995b15b2..0734bbb0cb13 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -1,11 +1,11 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit meson
-DESCRIPTION="A compiz like 3D wayland compositor"
+DESCRIPTION="Compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
@@ -25,13 +25,14 @@ DEPEND="
dev-libs/gobject-introspection
gui-libs/gtk-layer-shell
>=gui-wm/wayfire-${PV%.*}
- pulseaudio? ( media-sound/pulseaudio )
+ pulseaudio? ( media-libs/libpulse )
"
RDEPEND="${DEPEND}
gui-apps/wayland-logout
"
BDEPEND="
dev-libs/wayland-protocols
+ dev-util/wayland-scanner
virtual/pkgconfig
"
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2023-05-29 12:23 Andreas Sturmlechner
0 siblings, 0 replies; 25+ messages in thread
From: Andreas Sturmlechner @ 2023-05-29 12:23 UTC (permalink / raw
To: gentoo-commits
commit: 997ca972039d97e16955ce139424158fa5fa926f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 11:08:53 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon May 29 12:21:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=997ca972
gui-apps/wf-shell: 0.7.0: EAPI 8 bump, switch to media-libs/libpulse
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../wf-shell/{wf-shell-0.7.0.ebuild => wf-shell-0.7.0-r1.ebuild} | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.7.0.ebuild b/gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild
similarity index 83%
rename from gui-apps/wf-shell/wf-shell-0.7.0.ebuild
rename to gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild
index 34f21083a082..c96b88373728 100644
--- a/gui-apps/wf-shell/wf-shell-0.7.0.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit meson
-DESCRIPTION="A compiz like 3D wayland compositor"
+DESCRIPTION="Compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
@@ -25,13 +25,14 @@ DEPEND="
dev-libs/gobject-introspection
gui-libs/gtk-layer-shell
>=gui-wm/wayfire-${PV%.*}
- pulseaudio? ( media-sound/pulseaudio )
+ pulseaudio? ( media-libs/libpulse )
"
RDEPEND="${DEPEND}
gui-apps/wayland-logout
"
BDEPEND="
dev-libs/wayland-protocols
+ dev-util/wayland-scanner
virtual/pkgconfig
"
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2023-12-17 19:55 Arthur Zamarin
0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2023-12-17 19:55 UTC (permalink / raw
To: gentoo-commits
commit: e22100de6bd58974d68871de90860b78ec23931f
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sat Nov 25 23:56:25 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 17 19:55:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e22100de
gui-apps/wf-shell: add 0.8.0
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33990
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
.../{wf-shell-9999.ebuild => wf-shell-0.8.0.ebuild} | 15 +++++++++++----
gui-apps/wf-shell/wf-shell-9999.ebuild | 15 +++++++++++----
3 files changed, 23 insertions(+), 8 deletions(-)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index 50a3e27f9293..b85a8c694114 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1 +1,2 @@
DIST wf-shell-0.7.0.tar.xz 9014840 BLAKE2B f2e1ffb76de79db580227ddefc10c9f3431c92f77e6519da1102e7c4456bb30c4f25c82570a5b2796985dac00be65f9428ac6682e80920ed22359f63e3e6a84d SHA512 3d72c5d399280ee9da841a417faf696f8baa40edc1040bc1f354f113a8e431dbab428c93928b1d3faa520e35211345cabb5c70f55e10cfb7a4c321a6db19df90
+DIST wf-shell-0.8.0.tar.xz 9100508 BLAKE2B 0867f9968fca25d183fb912e01afc55ae6c9e3a0645eb63b2622ed53bb5d6538827a8e1bb6c68be4885f0c1513e76f0fd8f580402885bfa49dcbc7a0b8b02b49 SHA512 cdaebb4aabcfcb4a4d2ef0f7845348892e5731cc44417861b958d3f067f19b6bab002845d7663ef50f57e462664ff1ca0cdab74257109211db8fa20a47ef53ae
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-0.8.0.ebuild
similarity index 78%
copy from gui-apps/wf-shell/wf-shell-9999.ebuild
copy to gui-apps/wf-shell/wf-shell-0.8.0.ebuild
index 0734bbb0cb13..1cfcb8cbb345 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.0.ebuild
@@ -11,20 +11,27 @@ HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+ SLOT="0/9999"
else
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64 ~x86"
+ SLOT="0/$(ver_cut 1-2)"
fi
LICENSE="MIT"
-SLOT="0"
IUSE="+pulseaudio"
+# no tests
+RESTRICT="test"
+
DEPEND="
- dev-cpp/gtkmm:3.0=[wayland]
+ dev-cpp/gtkmm:3.0[wayland]
dev-libs/gobject-introspection
- gui-libs/gtk-layer-shell
- >=gui-wm/wayfire-${PV%.*}
+ dev-libs/libdbusmenu
+ >=gui-libs/gtk-layer-shell-0.6
+ dev-libs/wayland
+ gui-libs/wf-config:${SLOT}
+ gui-wm/wayfire:${SLOT}
pulseaudio? ( media-libs/libpulse )
"
RDEPEND="${DEPEND}
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 0734bbb0cb13..1cfcb8cbb345 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -11,20 +11,27 @@ HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+ SLOT="0/9999"
else
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64 ~x86"
+ SLOT="0/$(ver_cut 1-2)"
fi
LICENSE="MIT"
-SLOT="0"
IUSE="+pulseaudio"
+# no tests
+RESTRICT="test"
+
DEPEND="
- dev-cpp/gtkmm:3.0=[wayland]
+ dev-cpp/gtkmm:3.0[wayland]
dev-libs/gobject-introspection
- gui-libs/gtk-layer-shell
- >=gui-wm/wayfire-${PV%.*}
+ dev-libs/libdbusmenu
+ >=gui-libs/gtk-layer-shell-0.6
+ dev-libs/wayland
+ gui-libs/wf-config:${SLOT}
+ gui-wm/wayfire:${SLOT}
pulseaudio? ( media-libs/libpulse )
"
RDEPEND="${DEPEND}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-01-19 13:55 Ben Kohler
0 siblings, 0 replies; 25+ messages in thread
From: Ben Kohler @ 2024-01-19 13:55 UTC (permalink / raw
To: gentoo-commits
commit: 087b596e59c746c9f6d98284ba1ba43f1e138fce
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sun Dec 31 13:17:40 2023 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:55:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=087b596e
gui-apps/wf-shell: require gtk3 use flag to be enabled in libdbusmenu
Closes: https://bugs.gentoo.org/921102
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34390
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
gui-apps/wf-shell/{wf-shell-0.8.0.ebuild => wf-shell-0.8.0-r1.ebuild} | 2 +-
gui-apps/wf-shell/wf-shell-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.8.0.ebuild b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
similarity index 97%
rename from gui-apps/wf-shell/wf-shell-0.8.0.ebuild
rename to gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
index 1cfcb8cbb345..76d207ac4e25 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.0.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
@@ -27,7 +27,7 @@ RESTRICT="test"
DEPEND="
dev-cpp/gtkmm:3.0[wayland]
dev-libs/gobject-introspection
- dev-libs/libdbusmenu
+ dev-libs/libdbusmenu[gtk3]
>=gui-libs/gtk-layer-shell-0.6
dev-libs/wayland
gui-libs/wf-config:${SLOT}
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 1cfcb8cbb345..76d207ac4e25 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -27,7 +27,7 @@ RESTRICT="test"
DEPEND="
dev-cpp/gtkmm:3.0[wayland]
dev-libs/gobject-introspection
- dev-libs/libdbusmenu
+ dev-libs/libdbusmenu[gtk3]
>=gui-libs/gtk-layer-shell-0.6
dev-libs/wayland
gui-libs/wf-config:${SLOT}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-01-19 13:58 Ben Kohler
0 siblings, 0 replies; 25+ messages in thread
From: Ben Kohler @ 2024-01-19 13:58 UTC (permalink / raw
To: gentoo-commits
commit: 0c4a894c53a789f10322b7b96f278b145063f97d
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 13:57:15 2024 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:57:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c4a894c
gui-apps/wf-shell: copyright fix
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild | 2 +-
gui-apps/wf-shell/wf-shell-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
index 76d207ac4e25..fb42dad6fb61 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 76d207ac4e25..fb42dad6fb61 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-01-21 5:04 Sam James
0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2024-01-21 5:04 UTC (permalink / raw
To: gentoo-commits
commit: 1a202973a8d6147ccf18fe0b854c4bf1d5b11d0d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 05:04:27 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 05:04:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a202973
gui-apps/wf-shell: Stabilize 0.8.0-r1 amd64, #922537
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
index fb42dad6fb61..3848acf28b87 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
SLOT="0/9999"
else
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64 ~x86"
SLOT="0/$(ver_cut 1-2)"
fi
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-03-16 19:24 Arthur Zamarin
0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2024-03-16 19:24 UTC (permalink / raw
To: gentoo-commits
commit: 2c73b05b79a373ac28c0882fbd88ff7c5404059c
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:43:52 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c73b05b
gui-apps/wf-shell: add 0.8.1
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
gui-apps/wf-shell/wf-shell-0.8.1.ebuild | 52 +++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index b85a8c694114..68143c24636f 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1,2 +1,3 @@
DIST wf-shell-0.7.0.tar.xz 9014840 BLAKE2B f2e1ffb76de79db580227ddefc10c9f3431c92f77e6519da1102e7c4456bb30c4f25c82570a5b2796985dac00be65f9428ac6682e80920ed22359f63e3e6a84d SHA512 3d72c5d399280ee9da841a417faf696f8baa40edc1040bc1f354f113a8e431dbab428c93928b1d3faa520e35211345cabb5c70f55e10cfb7a4c321a6db19df90
DIST wf-shell-0.8.0.tar.xz 9100508 BLAKE2B 0867f9968fca25d183fb912e01afc55ae6c9e3a0645eb63b2622ed53bb5d6538827a8e1bb6c68be4885f0c1513e76f0fd8f580402885bfa49dcbc7a0b8b02b49 SHA512 cdaebb4aabcfcb4a4d2ef0f7845348892e5731cc44417861b958d3f067f19b6bab002845d7663ef50f57e462664ff1ca0cdab74257109211db8fa20a47ef53ae
+DIST wf-shell-0.8.1.tar.xz 9161772 BLAKE2B d778b2ed214dbb1b072400a85021d3ef4e590bc707417cf2de486c9211fdf3d1fa1c14d786363bc7dd4daeeb39406d6aa2e2c3c0b607cb9b6c87151d330a3983 SHA512 b0d283dee712ed01bdabb373f8144e6c231aa68669be8851e6603678972d9f2bdcadda773df49510c902f8e8845fdb767f9da65356640fe37843dd92d0c240f2
diff --git a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
new file mode 100644
index 000000000000..dfc67326dbca
--- /dev/null
+++ b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Compiz like 3D wayland compositor"
+HOMEPAGE="https://github.com/WayfireWM/wf-shell"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
+ SLOT="0/0.8"
+else
+ SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm64 ~x86"
+ SLOT="0/$(ver_cut 1-2)"
+fi
+
+LICENSE="MIT"
+IUSE="+pulseaudio"
+
+# no tests
+RESTRICT="test"
+
+DEPEND="
+ dev-cpp/gtkmm:3.0[wayland]
+ dev-libs/gobject-introspection
+ dev-libs/libdbusmenu[gtk3]
+ >=gui-libs/gtk-layer-shell-0.6
+ dev-libs/wayland
+ >=gui-libs/wf-config-0.8.0
+ gui-wm/wayfire
+ pulseaudio? ( media-libs/libpulse )
+"
+RDEPEND="${DEPEND}
+ gui-apps/wayland-logout
+"
+BDEPEND="
+ dev-libs/wayland-protocols
+ dev-util/wayland-scanner
+ virtual/pkgconfig
+"
+
+src_configure () {
+ local emesonargs=(
+ "$(meson_feature pulseaudio pulse)"
+ -Dwayland-logout=false
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-03-16 19:24 Arthur Zamarin
0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2024-03-16 19:24 UTC (permalink / raw
To: gentoo-commits
commit: 94685761b3c93b2dfd40a8f90fe68b19ebefdf3b
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:47:12 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94685761
gui-apps/wf-shell: drop 0.7.0-r1
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 -
gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild | 45 ------------------------------
2 files changed, 46 deletions(-)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index 68143c24636f..f3a2a29bed5a 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1,3 +1,2 @@
-DIST wf-shell-0.7.0.tar.xz 9014840 BLAKE2B f2e1ffb76de79db580227ddefc10c9f3431c92f77e6519da1102e7c4456bb30c4f25c82570a5b2796985dac00be65f9428ac6682e80920ed22359f63e3e6a84d SHA512 3d72c5d399280ee9da841a417faf696f8baa40edc1040bc1f354f113a8e431dbab428c93928b1d3faa520e35211345cabb5c70f55e10cfb7a4c321a6db19df90
DIST wf-shell-0.8.0.tar.xz 9100508 BLAKE2B 0867f9968fca25d183fb912e01afc55ae6c9e3a0645eb63b2622ed53bb5d6538827a8e1bb6c68be4885f0c1513e76f0fd8f580402885bfa49dcbc7a0b8b02b49 SHA512 cdaebb4aabcfcb4a4d2ef0f7845348892e5731cc44417861b958d3f067f19b6bab002845d7663ef50f57e462664ff1ca0cdab74257109211db8fa20a47ef53ae
DIST wf-shell-0.8.1.tar.xz 9161772 BLAKE2B d778b2ed214dbb1b072400a85021d3ef4e590bc707417cf2de486c9211fdf3d1fa1c14d786363bc7dd4daeeb39406d6aa2e2c3c0b607cb9b6c87151d330a3983 SHA512 b0d283dee712ed01bdabb373f8144e6c231aa68669be8851e6603678972d9f2bdcadda773df49510c902f8e8845fdb767f9da65356640fe37843dd92d0c240f2
diff --git a/gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild b/gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild
deleted file mode 100644
index c96b88373728..000000000000
--- a/gui-apps/wf-shell/wf-shell-0.7.0-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Compiz like 3D wayland compositor"
-HOMEPAGE="https://github.com/WayfireWM/wf-shell"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
-else
- SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+pulseaudio"
-
-DEPEND="
- dev-cpp/gtkmm:3.0=[wayland]
- dev-libs/gobject-introspection
- gui-libs/gtk-layer-shell
- >=gui-wm/wayfire-${PV%.*}
- pulseaudio? ( media-libs/libpulse )
-"
-RDEPEND="${DEPEND}
- gui-apps/wayland-logout
-"
-BDEPEND="
- dev-libs/wayland-protocols
- dev-util/wayland-scanner
- virtual/pkgconfig
-"
-
-src_configure () {
- local emesonargs=(
- "$(meson_feature pulseaudio pulse)"
- -Dwayland-logout=false
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-03-16 19:24 Arthur Zamarin
0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2024-03-16 19:24 UTC (permalink / raw
To: gentoo-commits
commit: 09aa05a51c3cab2b20c0eadebccae850368218a1
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:44:41 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09aa05a5
gui-apps/wf-shell: update live ebuild
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-9999.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index fb42dad6fb61..66866e0f3420 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -10,10 +10,10 @@ HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
- EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
- SLOT="0/9999"
+ EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
+ SLOT="0/0.8"
else
- SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
+ SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64 ~x86"
SLOT="0/$(ver_cut 1-2)"
fi
@@ -30,8 +30,8 @@ DEPEND="
dev-libs/libdbusmenu[gtk3]
>=gui-libs/gtk-layer-shell-0.6
dev-libs/wayland
- gui-libs/wf-config:${SLOT}
- gui-wm/wayfire:${SLOT}
+ >=gui-libs/wf-config-0.7.0
+ gui-wm/wayfire
pulseaudio? ( media-libs/libpulse )
"
RDEPEND="${DEPEND}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-03-17 9:15 Arthur Zamarin
0 siblings, 0 replies; 25+ messages in thread
From: Arthur Zamarin @ 2024-03-17 9:15 UTC (permalink / raw
To: gentoo-commits
commit: a9e9d869d143733b8cc21cffda11c00b82961318
Author: Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sun Mar 17 08:01:51 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 17 09:15:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9e9d869
gui-apps/wf-shell: inherit xdg eclass to update icon cache
Closes: https://bugs.gentoo.org/927164
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35797
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.8.1.ebuild | 2 +-
gui-apps/wf-shell/wf-shell-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
index dfc67326dbca..f2973774fd55 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit meson
+inherit meson xdg
DESCRIPTION="Compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 66866e0f3420..134b2da87270 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit meson
+inherit meson xdg
DESCRIPTION="Compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-04-24 14:41 Sam James
0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2024-04-24 14:41 UTC (permalink / raw
To: gentoo-commits
commit: d6515c22cb9c3a44ab8499e9ad8eabbd3ea6fe72
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 24 14:41:15 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 14:41:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6515c22
gui-apps/wf-shell: Stabilize 0.8.1 amd64, #930588
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.8.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
index f2973774fd55..5714b6ad5e53 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
SLOT="0/0.8"
else
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64 ~x86"
SLOT="0/$(ver_cut 1-2)"
fi
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-05-23 16:10 Matt Turner
0 siblings, 0 replies; 25+ messages in thread
From: Matt Turner @ 2024-05-23 16:10 UTC (permalink / raw
To: gentoo-commits
commit: 2aa9db9936ff592b0eaa86597e2b401e578ccb90
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 16:04:40 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu May 23 16:09:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa9db99
gui-apps/wf-shell: Drop x86 keyword
Commit e312ad721e81 ("gui-wm/wayfire: add 0.8.1") dropped x86 keywords
from the new version.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild | 2 +-
gui-apps/wf-shell/wf-shell-0.8.1.ebuild | 2 +-
gui-apps/wf-shell/wf-shell-9999.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
index 3848acf28b87..32e702833393 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
SLOT="0/9999"
else
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64"
SLOT="0/$(ver_cut 1-2)"
fi
diff --git a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
index 5714b6ad5e53..17d95bd11175 100644
--- a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
SLOT="0/0.8"
else
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64"
SLOT="0/$(ver_cut 1-2)"
fi
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 134b2da87270..11f4142ea117 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
SLOT="0/0.8"
else
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="~amd64 ~arm64"
SLOT="0/$(ver_cut 1-2)"
fi
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-08-24 17:06 Viorel Munteanu
0 siblings, 0 replies; 25+ messages in thread
From: Viorel Munteanu @ 2024-08-24 17:06 UTC (permalink / raw
To: gentoo-commits
commit: 70d0f793e5b5351f048f99f78f7414a28cc8cd08
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:36:52 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 17:06:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70d0f793
gui-apps/wf-shell: add 0.9.0
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 1 +
gui-apps/wf-shell/wf-shell-0.9.0.ebuild | 60 +++++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index f3a2a29bed5a..0509691cac8b 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1,2 +1,3 @@
DIST wf-shell-0.8.0.tar.xz 9100508 BLAKE2B 0867f9968fca25d183fb912e01afc55ae6c9e3a0645eb63b2622ed53bb5d6538827a8e1bb6c68be4885f0c1513e76f0fd8f580402885bfa49dcbc7a0b8b02b49 SHA512 cdaebb4aabcfcb4a4d2ef0f7845348892e5731cc44417861b958d3f067f19b6bab002845d7663ef50f57e462664ff1ca0cdab74257109211db8fa20a47ef53ae
DIST wf-shell-0.8.1.tar.xz 9161772 BLAKE2B d778b2ed214dbb1b072400a85021d3ef4e590bc707417cf2de486c9211fdf3d1fa1c14d786363bc7dd4daeeb39406d6aa2e2c3c0b607cb9b6c87151d330a3983 SHA512 b0d283dee712ed01bdabb373f8144e6c231aa68669be8851e6603678972d9f2bdcadda773df49510c902f8e8845fdb767f9da65356640fe37843dd92d0c240f2
+DIST wf-shell-0.9.0.tar.xz 9167256 BLAKE2B ea68e110381fa76590f193e6d9035e2ce1ce1a998a4c476785912d5666f42f9976b89ef78511b6d17e36f3dfb7022ed460b8b29a379445c5d41392ec7bb3ad3f SHA512 dceb0234302ceb51ac23576752d65cf122755bd044bc98e4ca92e0b8e6715063cdebdf35e82e5dc033effc288228622886e1a0e25b4bd788f6d32f8b189c1cfe
diff --git a/gui-apps/wf-shell/wf-shell-0.9.0.ebuild b/gui-apps/wf-shell/wf-shell-0.9.0.ebuild
new file mode 100644
index 000000000000..1be6243f8563
--- /dev/null
+++ b/gui-apps/wf-shell/wf-shell-0.9.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="Compiz like 3D wayland compositor"
+HOMEPAGE="https://github.com/WayfireWM/wf-shell"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
+ SLOT="0/0.10"
+else
+ SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm64"
+ SLOT="0/$(ver_cut 1-2)"
+fi
+
+LICENSE="MIT"
+IUSE="+pulseaudio"
+
+# no tests
+RESTRICT="test"
+
+DEPEND="
+ dev-cpp/glibmm:2
+ dev-cpp/gtkmm:3.0[wayland]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libsigc++:2
+ dev-libs/libdbusmenu[gtk3]
+ >=gui-libs/gtk-layer-shell-0.6
+ dev-libs/wayland
+ >=gui-libs/wf-config-0.7.0:=
+ gui-wm/wayfire
+ x11-libs/cairo
+ x11-libs/gtk+:3
+ pulseaudio? (
+ media-libs/alsa-lib
+ media-libs/libpulse
+ )
+"
+RDEPEND="${DEPEND}
+ gui-apps/wayland-logout
+"
+BDEPEND="
+ dev-libs/wayland-protocols
+ dev-util/wayland-scanner
+ virtual/pkgconfig
+"
+
+src_configure () {
+ local emesonargs=(
+ "$(meson_feature pulseaudio pulse)"
+ -Dwayland-logout=false
+ )
+ meson_src_configure
+}
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-08-24 17:06 Viorel Munteanu
0 siblings, 0 replies; 25+ messages in thread
From: Viorel Munteanu @ 2024-08-24 17:06 UTC (permalink / raw
To: gentoo-commits
commit: bc6fc53d39027fd86994de8fcc08d491b5a4148b
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:36:59 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 17:06:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6fc53d
gui-apps/wf-shell: add myself as a maintainer
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
gui-apps/wf-shell/metadata.xml | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/gui-apps/wf-shell/metadata.xml b/gui-apps/wf-shell/metadata.xml
index c7d4ebcbf6fa..a94610d7cfac 100644
--- a/gui-apps/wf-shell/metadata.xml
+++ b/gui-apps/wf-shell/metadata.xml
@@ -1,14 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- Basic desktop environment for use with wayfire
- which showcases all its plugins and desktop
- effects. Integrates with other wayland
- applications to provide a full desktop environment
- </longdescription>
- <upstream>
- <remote-id type="github">WayfireWM/wf-shell</remote-id>
- </upstream>
+ <maintainer type="person">
+ <email>ceamac@gentoo.org</email>
+ <name>Viorel Munteanu</name>
+ </maintainer>
+ <longdescription>
+ Basic desktop environment for use with wayfire
+ which showcases all its plugins and desktop
+ effects. Integrates with other wayland
+ applications to provide a full desktop environment
+ </longdescription>
+ <upstream>
+ <remote-id type="github">WayfireWM/wf-shell</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-08-24 17:06 Viorel Munteanu
0 siblings, 0 replies; 25+ messages in thread
From: Viorel Munteanu @ 2024-08-24 17:06 UTC (permalink / raw
To: gentoo-commits
commit: caac0e63f98d13f48ba4e303a1934c60f93b9617
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:52:54 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 17:06:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caac0e63
gui-apps/wf-shell: sync live ebuild
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-9999.ebuild | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/gui-apps/wf-shell/wf-shell-9999.ebuild b/gui-apps/wf-shell/wf-shell-9999.ebuild
index 11f4142ea117..1be6243f8563 100644
--- a/gui-apps/wf-shell/wf-shell-9999.ebuild
+++ b/gui-apps/wf-shell/wf-shell-9999.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
- SLOT="0/0.8"
+ SLOT="0/0.10"
else
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm64"
@@ -25,14 +25,22 @@ IUSE="+pulseaudio"
RESTRICT="test"
DEPEND="
+ dev-cpp/glibmm:2
dev-cpp/gtkmm:3.0[wayland]
+ dev-libs/glib:2
dev-libs/gobject-introspection
+ dev-libs/libsigc++:2
dev-libs/libdbusmenu[gtk3]
>=gui-libs/gtk-layer-shell-0.6
dev-libs/wayland
- >=gui-libs/wf-config-0.7.0
+ >=gui-libs/wf-config-0.7.0:=
gui-wm/wayfire
- pulseaudio? ( media-libs/libpulse )
+ x11-libs/cairo
+ x11-libs/gtk+:3
+ pulseaudio? (
+ media-libs/alsa-lib
+ media-libs/libpulse
+ )
"
RDEPEND="${DEPEND}
gui-apps/wayland-logout
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-10-24 10:23 Sam James
0 siblings, 0 replies; 25+ messages in thread
From: Sam James @ 2024-10-24 10:23 UTC (permalink / raw
To: gentoo-commits
commit: 83312bef35476e66506a16e2c0643af487802d43
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 24 10:22:48 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 24 10:22:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83312bef
gui-apps/wf-shell: Stabilize 0.9.0 amd64, #942047
Signed-off-by: Sam James <sam <AT> gentoo.org>
gui-apps/wf-shell/wf-shell-0.9.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/wf-shell/wf-shell-0.9.0.ebuild b/gui-apps/wf-shell/wf-shell-0.9.0.ebuild
index 1be6243f8563..938ecba6102f 100644
--- a/gui-apps/wf-shell/wf-shell-0.9.0.ebuild
+++ b/gui-apps/wf-shell/wf-shell-0.9.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
SLOT="0/0.10"
else
SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm64"
+ KEYWORDS="amd64 ~arm64"
SLOT="0/$(ver_cut 1-2)"
fi
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/
@ 2024-11-01 9:45 Viorel Munteanu
0 siblings, 0 replies; 25+ messages in thread
From: Viorel Munteanu @ 2024-11-01 9:45 UTC (permalink / raw
To: gentoo-commits
commit: 65e9b0058e464f0f09f235a460256afb5530c4f7
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 1 09:39:23 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Nov 1 09:45:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e9b005
gui-apps/wf-shell: drop 0.8.0-r1, 0.8.1
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
gui-apps/wf-shell/Manifest | 2 --
gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild | 52 ------------------------------
gui-apps/wf-shell/wf-shell-0.8.1.ebuild | 52 ------------------------------
3 files changed, 106 deletions(-)
diff --git a/gui-apps/wf-shell/Manifest b/gui-apps/wf-shell/Manifest
index 0509691cac8b..f80a1eb7f08b 100644
--- a/gui-apps/wf-shell/Manifest
+++ b/gui-apps/wf-shell/Manifest
@@ -1,3 +1 @@
-DIST wf-shell-0.8.0.tar.xz 9100508 BLAKE2B 0867f9968fca25d183fb912e01afc55ae6c9e3a0645eb63b2622ed53bb5d6538827a8e1bb6c68be4885f0c1513e76f0fd8f580402885bfa49dcbc7a0b8b02b49 SHA512 cdaebb4aabcfcb4a4d2ef0f7845348892e5731cc44417861b958d3f067f19b6bab002845d7663ef50f57e462664ff1ca0cdab74257109211db8fa20a47ef53ae
-DIST wf-shell-0.8.1.tar.xz 9161772 BLAKE2B d778b2ed214dbb1b072400a85021d3ef4e590bc707417cf2de486c9211fdf3d1fa1c14d786363bc7dd4daeeb39406d6aa2e2c3c0b607cb9b6c87151d330a3983 SHA512 b0d283dee712ed01bdabb373f8144e6c231aa68669be8851e6603678972d9f2bdcadda773df49510c902f8e8845fdb767f9da65356640fe37843dd92d0c240f2
DIST wf-shell-0.9.0.tar.xz 9167256 BLAKE2B ea68e110381fa76590f193e6d9035e2ce1ce1a998a4c476785912d5666f42f9976b89ef78511b6d17e36f3dfb7022ed460b8b29a379445c5d41392ec7bb3ad3f SHA512 dceb0234302ceb51ac23576752d65cf122755bd044bc98e4ca92e0b8e6715063cdebdf35e82e5dc033effc288228622886e1a0e25b4bd788f6d32f8b189c1cfe
diff --git a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
deleted file mode 100644
index 32e702833393..000000000000
--- a/gui-apps/wf-shell/wf-shell-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2019-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Compiz like 3D wayland compositor"
-HOMEPAGE="https://github.com/WayfireWM/wf-shell"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
- SLOT="0/9999"
-else
- SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="amd64 ~arm64"
- SLOT="0/$(ver_cut 1-2)"
-fi
-
-LICENSE="MIT"
-IUSE="+pulseaudio"
-
-# no tests
-RESTRICT="test"
-
-DEPEND="
- dev-cpp/gtkmm:3.0[wayland]
- dev-libs/gobject-introspection
- dev-libs/libdbusmenu[gtk3]
- >=gui-libs/gtk-layer-shell-0.6
- dev-libs/wayland
- gui-libs/wf-config:${SLOT}
- gui-wm/wayfire:${SLOT}
- pulseaudio? ( media-libs/libpulse )
-"
-RDEPEND="${DEPEND}
- gui-apps/wayland-logout
-"
-BDEPEND="
- dev-libs/wayland-protocols
- dev-util/wayland-scanner
- virtual/pkgconfig
-"
-
-src_configure () {
- local emesonargs=(
- "$(meson_feature pulseaudio pulse)"
- -Dwayland-logout=false
- )
- meson_src_configure
-}
diff --git a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild b/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
deleted file mode 100644
index 17d95bd11175..000000000000
--- a/gui-apps/wf-shell/wf-shell-0.8.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2019-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson xdg
-
-DESCRIPTION="Compiz like 3D wayland compositor"
-HOMEPAGE="https://github.com/WayfireWM/wf-shell"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/WayfireWM/wf-shell.git"
- SLOT="0/0.8"
-else
- SRC_URI="https://github.com/WayfireWM/wf-shell/releases/download/v${PV}/${P}.tar.xz"
- KEYWORDS="amd64 ~arm64"
- SLOT="0/$(ver_cut 1-2)"
-fi
-
-LICENSE="MIT"
-IUSE="+pulseaudio"
-
-# no tests
-RESTRICT="test"
-
-DEPEND="
- dev-cpp/gtkmm:3.0[wayland]
- dev-libs/gobject-introspection
- dev-libs/libdbusmenu[gtk3]
- >=gui-libs/gtk-layer-shell-0.6
- dev-libs/wayland
- >=gui-libs/wf-config-0.8.0
- gui-wm/wayfire
- pulseaudio? ( media-libs/libpulse )
-"
-RDEPEND="${DEPEND}
- gui-apps/wayland-logout
-"
-BDEPEND="
- dev-libs/wayland-protocols
- dev-util/wayland-scanner
- virtual/pkgconfig
-"
-
-src_configure () {
- local emesonargs=(
- "$(meson_feature pulseaudio pulse)"
- -Dwayland-logout=false
- )
- meson_src_configure
-}
^ permalink raw reply related [flat|nested] 25+ messages in thread
end of thread, other threads:[~2024-11-01 9:45 UTC | newest]
Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-10 13:36 [gentoo-commits] repo/gentoo:master commit in: gui-apps/wf-shell/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2024-11-01 9:45 Viorel Munteanu
2024-10-24 10:23 Sam James
2024-08-24 17:06 Viorel Munteanu
2024-08-24 17:06 Viorel Munteanu
2024-08-24 17:06 Viorel Munteanu
2024-05-23 16:10 Matt Turner
2024-04-24 14:41 Sam James
2024-03-17 9:15 Arthur Zamarin
2024-03-16 19:24 Arthur Zamarin
2024-03-16 19:24 Arthur Zamarin
2024-03-16 19:24 Arthur Zamarin
2024-01-21 5:04 Sam James
2024-01-19 13:58 Ben Kohler
2024-01-19 13:55 Ben Kohler
2023-12-17 19:55 Arthur Zamarin
2023-05-29 12:23 Andreas Sturmlechner
2023-05-29 12:23 Andreas Sturmlechner
2021-06-18 6:27 Agostino Sarubbo
2020-11-18 16:25 Sam James
2020-11-13 21:04 Aaron Bauman
2020-11-09 18:05 Aaron Bauman
2020-08-17 1:36 Aaron Bauman
2020-06-07 0:12 Aaron Bauman
2020-05-17 15:55 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox