public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2022-12-05  9:20 Viorel Munteanu
  0 siblings, 0 replies; 7+ messages in thread
From: Viorel Munteanu @ 2022-12-05  9:20 UTC (permalink / raw
  To: gentoo-commits

commit:     4cdd2ac2077db5b65bb271f8c2731133a044bae0
Author:     Leonardo Hernández Hernández <leohdz172 <AT> outlook <DOT> com>
AuthorDate: Fri Dec  2 18:15:35 2022 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Fri Dec  2 18:15:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cdd2ac2

gui-apps/wbg: add 1.1.0

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> outlook.com>

 gui-apps/wbg/Manifest         |  1 +
 gui-apps/wbg/wbg-1.1.0.ebuild | 46 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/gui-apps/wbg/Manifest b/gui-apps/wbg/Manifest
index 20ad1d224..86afbd964 100644
--- a/gui-apps/wbg/Manifest
+++ b/gui-apps/wbg/Manifest
@@ -1 +1,2 @@
 DIST wbg-1.0.2.tar.gz 15693 BLAKE2B a0757021cdec9f6851cc0fabb4126aa0875352ea33db6dc5b504fd7f4e58e225fc7e97d59489b0fc1385a5ff2696aa5b1b9282a71d2fc4c0d9596b17088f386b SHA512 4f8b80f69996a726eaeaed2974bac6fbda061f0f188442edf1e3ee933d5fcd2f0db3d6db31f538d9dae4de05f63d36f5c2df2ec7ddfa75d7634c521daae62996
+DIST wbg-1.1.0.tar.gz 17852 BLAKE2B 074436cf93fdfc32ec1ceede84870958ab2c64a56259646d0eb9a0d59dae261676581ee8b85279be2175b47d67981cf6e650bf8a70cacf311a82ad3754b24c0c SHA512 78384b85074cb1803b47ec16e843c5de4b17a824a3826398902d18dcdd50d5b678cad8eba599e6e17a8ab60f795993c0f2bf2a4fa275f2a90effdfc0d1685175

diff --git a/gui-apps/wbg/wbg-1.1.0.ebuild b/gui-apps/wbg/wbg-1.1.0.ebuild
new file mode 100644
index 000000000..0999491ab
--- /dev/null
+++ b/gui-apps/wbg/wbg-1.1.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Super simple wallpaper application"
+HOMEPAGE="https://codeberg.org/dnkl/wbg"
+SRC_URI="https://codeberg.org/dnkl/wbg/archive/${PV}.tar.gz  -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="png jpeg webp"
+
+S="${WORKDIR}/${PN}"
+
+REQUIRED_USE="|| ( png jpeg webp )"
+
+DEPEND="
+	x11-libs/pixman
+	dev-libs/wayland
+"
+RDEPEND="
+	${DEPEND}
+	png? ( media-libs/libpng:= )
+	jpeg? ( media-libs/libjpeg-turbo:= )
+	webp? ( media-libs/libwebp:= )
+"
+BDEPEND="
+	dev-libs/tllist
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature png)
+		$(meson_feature jpeg)
+		$(meson_feature webp)
+	)
+
+	meson_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2023-07-31 14:53 David Roman
  0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2023-07-31 14:53 UTC (permalink / raw
  To: gentoo-commits

commit:     a9cb9985f827e2bd470738a76d290e17635366a3
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Sun Jul 30 20:16:31 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jul 30 20:16:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a9cb9985

gui-apps/wbg: add 9999

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 gui-apps/wbg/wbg-9999.ebuild | 51 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/gui-apps/wbg/wbg-9999.ebuild b/gui-apps/wbg/wbg-9999.ebuild
new file mode 100644
index 0000000000..ad79bd0c9f
--- /dev/null
+++ b/gui-apps/wbg/wbg-9999.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+if [[ ${PV} == *9999* ]]; then
+	EGIT_REPO_URI="https://codeberg.org/dnkl/wbg.git"
+	inherit git-r3
+else
+	SRC_URI="https://codeberg.org/dnkl/wbg/archive/${PV}.tar.gz  -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${PN}"
+fi
+
+DESCRIPTION="Super simple wallpaper application"
+HOMEPAGE="https://codeberg.org/dnkl/wbg"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="png jpeg webp"
+
+REQUIRED_USE="|| ( png jpeg webp )"
+
+DEPEND="
+	x11-libs/pixman
+	dev-libs/wayland
+"
+RDEPEND="
+	${DEPEND}
+	png? ( media-libs/libpng:= )
+	jpeg? ( media-libs/libjpeg-turbo:= )
+	webp? ( media-libs/libwebp:= )
+"
+BDEPEND="
+	dev-libs/tllist
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature png)
+		$(meson_feature jpeg)
+		$(meson_feature webp)
+	)
+
+	meson_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2023-11-18  9:53 Andrew Ammerlaan
  0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2023-11-18  9:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9c8432ad3524c575d16d8101c3c31ab831b8278f
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Thu Nov 16 22:11:59 2023 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Nov 16 22:12:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c8432ad

gui-apps/wbg: update Manifest

Closes: https://bugs.gentoo.org/916345
Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 gui-apps/wbg/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wbg/Manifest b/gui-apps/wbg/Manifest
index 86afbd9646..d369e841b9 100644
--- a/gui-apps/wbg/Manifest
+++ b/gui-apps/wbg/Manifest
@@ -1,2 +1,2 @@
 DIST wbg-1.0.2.tar.gz 15693 BLAKE2B a0757021cdec9f6851cc0fabb4126aa0875352ea33db6dc5b504fd7f4e58e225fc7e97d59489b0fc1385a5ff2696aa5b1b9282a71d2fc4c0d9596b17088f386b SHA512 4f8b80f69996a726eaeaed2974bac6fbda061f0f188442edf1e3ee933d5fcd2f0db3d6db31f538d9dae4de05f63d36f5c2df2ec7ddfa75d7634c521daae62996
-DIST wbg-1.1.0.tar.gz 17852 BLAKE2B 074436cf93fdfc32ec1ceede84870958ab2c64a56259646d0eb9a0d59dae261676581ee8b85279be2175b47d67981cf6e650bf8a70cacf311a82ad3754b24c0c SHA512 78384b85074cb1803b47ec16e843c5de4b17a824a3826398902d18dcdd50d5b678cad8eba599e6e17a8ab60f795993c0f2bf2a4fa275f2a90effdfc0d1685175
+DIST wbg-1.1.0.tar.gz 17918 BLAKE2B d2753649cbf87b3f17fedb7c03d010cc10cb4ddcba08832cc6beda5ade5b5b44ed13426e9f368fafaa8b15ad2d3947c1c52a56d86a5af7ad59260be89e975d10 SHA512 7bcb84bef0478913864d257f77fd54665a05ec0382a030067768b1db9dce5e08f4b382e276caa75ac4fd01ab9955ce9f5604a9d00aaf215671a8cd0dffb132e1


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

* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2024-01-04 13:07 David Roman
  0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-01-04 13:07 UTC (permalink / raw
  To: gentoo-commits

commit:     e9af3bd3d1738573bcd11aa7395fa75f13e23171
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Wed Jan  3 19:52:27 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Jan  3 19:52:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e9af3bd3

gui-apps/wbg: add codeberg upstream metadata

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

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

diff --git a/gui-apps/wbg/metadata.xml b/gui-apps/wbg/metadata.xml
index e8807b1057..62f781961d 100644
--- a/gui-apps/wbg/metadata.xml
+++ b/gui-apps/wbg/metadata.xml
@@ -13,5 +13,6 @@
 	<upstream>
 		<bugs-to>https://codeberg.org/dnkl/wbg/issues</bugs-to>
 		<doc>https://codeberg.org/dnkl/wbg/src/branch/master/README.md</doc>
+		<remote-id type="codeberg">dnkl/wbg</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2024-01-04 13:07 David Roman
  0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2024-01-04 13:07 UTC (permalink / raw
  To: gentoo-commits

commit:     74828867aa2663519d6cd3b2821366bd53764fa1
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Wed Jan  3 19:51:12 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Jan  3 19:51:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=74828867

gui-apps/wbg: sync live

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 gui-apps/wbg/wbg-9999.ebuild | 27 ++++++++++++++++-----------
 1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/gui-apps/wbg/wbg-9999.ebuild b/gui-apps/wbg/wbg-9999.ebuild
index ad79bd0c9f..581321b89a 100644
--- a/gui-apps/wbg/wbg-9999.ebuild
+++ b/gui-apps/wbg/wbg-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -17,24 +17,23 @@ fi
 DESCRIPTION="Super simple wallpaper application"
 HOMEPAGE="https://codeberg.org/dnkl/wbg"
 
-LICENSE="MIT"
+# ZLIB for nanosvg
+LICENSE="MIT ZLIB"
 SLOT="0"
 IUSE="png jpeg webp"
 
-REQUIRED_USE="|| ( png jpeg webp )"
-
-DEPEND="
-	x11-libs/pixman
-	dev-libs/wayland
-"
 RDEPEND="
-	${DEPEND}
-	png? ( media-libs/libpng:= )
+	dev-libs/wayland
+	x11-libs/pixman
 	jpeg? ( media-libs/libjpeg-turbo:= )
+	png? ( media-libs/libpng:= )
 	webp? ( media-libs/libwebp:= )
 "
-BDEPEND="
+DEPEND="
+	${RDEPEND}
 	dev-libs/tllist
+"
+BDEPEND="
 	dev-libs/wayland-protocols
 	dev-util/wayland-scanner
 	virtual/pkgconfig
@@ -45,7 +44,13 @@ src_configure() {
 		$(meson_feature png)
 		$(meson_feature jpeg)
 		$(meson_feature webp)
+		-Dsvg=true
 	)
 
 	meson_src_configure
 }
+
+src_install() {
+	meson_src_install
+	dodoc README.md CHANGELOG.md
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2024-06-12 21:51 Haelwenn Monnier
  0 siblings, 0 replies; 7+ messages in thread
From: Haelwenn Monnier @ 2024-06-12 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     07956f7169636b321240dbe0c82d9971f26bce21
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Wed Jun 12 19:58:35 2024 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jun 12 19:59:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=07956f71

gui-apps/wbg: sync live ebuild

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 gui-apps/wbg/wbg-9999.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gui-apps/wbg/wbg-9999.ebuild b/gui-apps/wbg/wbg-9999.ebuild
index 581321b89..fbc96827e 100644
--- a/gui-apps/wbg/wbg-9999.ebuild
+++ b/gui-apps/wbg/wbg-9999.ebuild
@@ -20,12 +20,13 @@ HOMEPAGE="https://codeberg.org/dnkl/wbg"
 # ZLIB for nanosvg
 LICENSE="MIT ZLIB"
 SLOT="0"
-IUSE="png jpeg webp"
+IUSE="jpeg jpegxl png webp"
 
 RDEPEND="
 	dev-libs/wayland
 	x11-libs/pixman
 	jpeg? ( media-libs/libjpeg-turbo:= )
+	jpegxl? ( media-libs/libjxl:= )
 	png? ( media-libs/libpng:= )
 	webp? ( media-libs/libwebp:= )
 "
@@ -41,8 +42,9 @@ BDEPEND="
 
 src_configure() {
 	local emesonargs=(
-		$(meson_feature png)
 		$(meson_feature jpeg)
+		$(meson_feature jpegxl jxl)
+		$(meson_feature png)
 		$(meson_feature webp)
 		-Dsvg=true
 	)


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

* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/
@ 2024-06-12 21:51 Haelwenn Monnier
  0 siblings, 0 replies; 7+ messages in thread
From: Haelwenn Monnier @ 2024-06-12 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     2428fb58cb9476105ca48592d834f2a3e6814b04
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Wed Jun 12 19:57:25 2024 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jun 12 19:57:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2428fb58

gui-apps/wbg: add 1.2.0

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>

 gui-apps/wbg/Manifest         |  1 +
 gui-apps/wbg/wbg-1.2.0.ebuild | 56 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/gui-apps/wbg/Manifest b/gui-apps/wbg/Manifest
index 86afbd964..b5eb5d87a 100644
--- a/gui-apps/wbg/Manifest
+++ b/gui-apps/wbg/Manifest
@@ -1,2 +1,3 @@
 DIST wbg-1.0.2.tar.gz 15693 BLAKE2B a0757021cdec9f6851cc0fabb4126aa0875352ea33db6dc5b504fd7f4e58e225fc7e97d59489b0fc1385a5ff2696aa5b1b9282a71d2fc4c0d9596b17088f386b SHA512 4f8b80f69996a726eaeaed2974bac6fbda061f0f188442edf1e3ee933d5fcd2f0db3d6db31f538d9dae4de05f63d36f5c2df2ec7ddfa75d7634c521daae62996
 DIST wbg-1.1.0.tar.gz 17852 BLAKE2B 074436cf93fdfc32ec1ceede84870958ab2c64a56259646d0eb9a0d59dae261676581ee8b85279be2175b47d67981cf6e650bf8a70cacf311a82ad3754b24c0c SHA512 78384b85074cb1803b47ec16e843c5de4b17a824a3826398902d18dcdd50d5b678cad8eba599e6e17a8ab60f795993c0f2bf2a4fa275f2a90effdfc0d1685175
+DIST wbg-1.2.0.tar.gz 316322 BLAKE2B cbea1ce450b445acb591896ff487b633d60eeee1c9605fc8b2ff68e083ec2580b27e2118c2bfffe039e1e6f9ca4a9865a5223b49bcd69b0a055e6f5bb47d8976 SHA512 56e05815203ba42f84f770e61a326a2c408867c41e48a185768147d52685d64b225435cd1b751fd4dfed8b1d2abd412af898fb1b4ea167368703a7fa25213bd4

diff --git a/gui-apps/wbg/wbg-1.2.0.ebuild b/gui-apps/wbg/wbg-1.2.0.ebuild
new file mode 100644
index 000000000..581321b89
--- /dev/null
+++ b/gui-apps/wbg/wbg-1.2.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+if [[ ${PV} == *9999* ]]; then
+	EGIT_REPO_URI="https://codeberg.org/dnkl/wbg.git"
+	inherit git-r3
+else
+	SRC_URI="https://codeberg.org/dnkl/wbg/archive/${PV}.tar.gz  -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${PN}"
+fi
+
+DESCRIPTION="Super simple wallpaper application"
+HOMEPAGE="https://codeberg.org/dnkl/wbg"
+
+# ZLIB for nanosvg
+LICENSE="MIT ZLIB"
+SLOT="0"
+IUSE="png jpeg webp"
+
+RDEPEND="
+	dev-libs/wayland
+	x11-libs/pixman
+	jpeg? ( media-libs/libjpeg-turbo:= )
+	png? ( media-libs/libpng:= )
+	webp? ( media-libs/libwebp:= )
+"
+DEPEND="
+	${RDEPEND}
+	dev-libs/tllist
+"
+BDEPEND="
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature png)
+		$(meson_feature jpeg)
+		$(meson_feature webp)
+		-Dsvg=true
+	)
+
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+	dodoc README.md CHANGELOG.md
+}


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

end of thread, other threads:[~2024-06-12 21:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-05  9:20 [gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/ Viorel Munteanu
  -- strict thread matches above, loose matches on Subject: below --
2023-07-31 14:53 David Roman
2023-11-18  9:53 Andrew Ammerlaan
2024-01-04 13:07 David Roman
2024-01-04 13:07 David Roman
2024-06-12 21:51 Haelwenn Monnier
2024-06-12 21:51 Haelwenn Monnier

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