[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

2024-06-12 Thread Haelwenn Monnier
commit: 07956f7169636b321240dbe0c82d9971f26bce21
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Wed Jun 12 19:58:35 2024 +
Commit: Haelwenn Monnier  hacktivis  me>
CommitDate: Wed Jun 12 19:59:14 2024 +
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  proton.me>

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

diff --git a/gui-apps/wbg/wbg-.ebuild b/gui-apps/wbg/wbg-.ebuild
index 581321b89..fbc96827e 100644
--- a/gui-apps/wbg/wbg-.ebuild
+++ b/gui-apps/wbg/wbg-.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
)



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

2024-06-12 Thread Haelwenn Monnier
commit: 2428fb58cb9476105ca48592d834f2a3e6814b04
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Wed Jun 12 19:57:25 2024 +
Commit: Haelwenn Monnier  hacktivis  me>
CommitDate: Wed Jun 12 19:57:25 2024 +
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  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 
cbea1ce450b445acb591896ff487b633d601c9605fc8b2ff68e083ec2580b27e2118c2bfffe039e1e6f9ca4a9865a5223b49bcd69b0a055e6f5bb47d8976
 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 0..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} == ** ]]; 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
+}



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

2024-01-04 Thread David Roman
commit: 74828867aa2663519d6cd3b2821366bd53764fa1
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Wed Jan  3 19:51:12 2024 +
Commit: David Roman  gmail  com>
CommitDate: Wed Jan  3 19:51:23 2024 +
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  proton.me>

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

diff --git a/gui-apps/wbg/wbg-.ebuild b/gui-apps/wbg/wbg-.ebuild
index ad79bd0c9f..581321b89a 100644
--- a/gui-apps/wbg/wbg-.ebuild
+++ b/gui-apps/wbg/wbg-.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
+}



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

2024-01-04 Thread David Roman
commit: e9af3bd3d1738573bcd11aa7395fa75f13e23171
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Wed Jan  3 19:52:27 2024 +
Commit: David Roman  gmail  com>
CommitDate: Wed Jan  3 19:52:27 2024 +
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  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 @@

https://codeberg.org/dnkl/wbg/issues

https://codeberg.org/dnkl/wbg/src/branch/master/README.md
+   dnkl/wbg

 



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

2023-11-18 Thread Andrew Ammerlaan
commit: 9c8432ad3524c575d16d8101c3c31ab831b8278f
Author: Leonardo Hernández Hernández  proton  me>
AuthorDate: Thu Nov 16 22:11:59 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Nov 16 22:12:35 2023 +
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  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



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

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

gui-apps/wbg: add 

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

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

diff --git a/gui-apps/wbg/wbg-.ebuild b/gui-apps/wbg/wbg-.ebuild
new file mode 100644
index 00..ad79bd0c9f
--- /dev/null
+++ b/gui-apps/wbg/wbg-.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} == ** ]]; 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
+}



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/wbg/

2022-12-05 Thread Viorel Munteanu
commit: 4cdd2ac2077db5b65bb271f8c2731133a044bae0
Author: Leonardo Hernández Hernández  outlook  com>
AuthorDate: Fri Dec  2 18:15:35 2022 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Fri Dec  2 18:15:35 2022 +
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  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 0..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
+}