* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2023-08-10 8:14 Viorel Munteanu
0 siblings, 0 replies; 8+ messages in thread
From: Viorel Munteanu @ 2023-08-10 8:14 UTC (permalink / raw
To: gentoo-commits
commit: 54c7e0b394427afe1bccc9bb8a129d8eb47ed36b
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Tue Aug 8 20:24:19 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Tue Aug 8 20:24:19 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=54c7e0b3
gui-apps/nwg-icon-picker: new package, add 0.1.0
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
gui-apps/nwg-icon-picker/Manifest | 1 +
gui-apps/nwg-icon-picker/metadata.xml | 16 ++++++++++++
.../nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild | 29 ++++++++++++++++++++++
3 files changed, 46 insertions(+)
diff --git a/gui-apps/nwg-icon-picker/Manifest b/gui-apps/nwg-icon-picker/Manifest
new file mode 100644
index 0000000000..c59f042fb8
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/Manifest
@@ -0,0 +1 @@
+DIST nwg-icon-picker-0.1.0.tar.gz 5616 BLAKE2B e725947cb524ebb74259d99ea46a432773ac25fb7ad4e14fc022c9be0e5a3b138f179943adc85cecd8fcb287ca817fd302b0b155ae6e23caef291d36020db9e5 SHA512 5192e8b06340b2ecf6ab5d1a343440f398299451362d63bb75eabd574c44c9c5c08f76122d38c426594bedd24443944b86ceeb9e779a9db2a4610d36b0aff1bb
diff --git a/gui-apps/nwg-icon-picker/metadata.xml b/gui-apps/nwg-icon-picker/metadata.xml
new file mode 100644
index 0000000000..0b0e3f5d04
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>pascal.jaeger@leimstift.de</email>
+ <name>Pascal Jaeger</name>
+ </maintainer>
+ <upstream>
+ <maintainer>
+ <name>Piotr Miller</name>
+ <email>nwg.piotr@gmail.com</email>
+ </maintainer>
+ <bugs-to>https://github.com/nwg-piotr/nwg-icon-picker/issues</bugs-to>
+ <remote-id type="github">nwg-piotr/nwg-picker</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild
new file mode 100644
index 0000000000..f3d39faa31
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+if [[ "${PV}" == 9999 ]]
+then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="GTK icon chooser with a text search option"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ x11-libs/gtk+:3
+ dev-python/pygobject[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2023-08-12 16:31 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2023-08-12 16:31 UTC (permalink / raw
To: gentoo-commits
commit: 2c0fcb9bf28aea19dcb9b3a3f2a2ce8f27f72919
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Thu Aug 10 21:41:34 2023 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Aug 10 21:41:34 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2c0fcb9b
gui-apps/nwg-icon-picker: revbump, install desktop files and icons
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
.../nwg-icon-picker-0.1.0-r1.ebuild | 43 ++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0-r1.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0-r1.ebuild
new file mode 100644
index 0000000000..5c03275485
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 xdg-utils
+
+if [[ "${PV}" == 9999 ]]
+then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="GTK icon chooser with a text search option"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ x11-libs/gtk+:3
+ dev-python/pygobject[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-icon-picker.desktop
+ doicon nwg-icon-picker.svg
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2023-08-12 16:31 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2023-08-12 16:31 UTC (permalink / raw
To: gentoo-commits
commit: 02f6087e50b4dd5b985da5a4a4b2fa4a94a71d75
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Thu Aug 10 21:43:05 2023 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Aug 10 21:43:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02f6087e
gui-apps/nwg-icon-picker: add 9999
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
.../nwg-icon-picker/nwg-icon-picker-9999.ebuild | 43 ++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild
new file mode 100644
index 0000000000..5c03275485
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 xdg-utils
+
+if [[ "${PV}" == 9999 ]]
+then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="GTK icon chooser with a text search option"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ x11-libs/gtk+:3
+ dev-python/pygobject[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-icon-picker.desktop
+ doicon nwg-icon-picker.svg
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2024-01-28 23:02 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-01-28 23:02 UTC (permalink / raw
To: gentoo-commits
commit: 1b787d4734a0daa6665768cc9f565204fea19d5e
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sun Jan 28 19:00:43 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jan 28 19:00:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1b787d47
gui-apps/nwg-icon-picker: drop 0.1.0
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
.../nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild | 29 ----------------------
1 file changed, 29 deletions(-)
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild
deleted file mode 100644
index f3d39faa31..0000000000
--- a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-if [[ "${PV}" == 9999 ]]
-then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git"
-else
- SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="GTK icon chooser with a text search option"
-HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker"
-LICENSE="MIT"
-
-SLOT="0"
-
-RDEPEND="
- x11-libs/gtk+:3
- dev-python/pygobject[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2024-01-28 23:02 David Roman
0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2024-01-28 23:02 UTC (permalink / raw
To: gentoo-commits
commit: ab510e2c16d54d79096401f7b1b873b357978827
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sun Jan 28 19:00:30 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jan 28 19:00:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab510e2c
gui-apps/nwg-icon-picker: add 0.1.1
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
gui-apps/nwg-icon-picker/Manifest | 1 +
.../nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild | 43 ++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/gui-apps/nwg-icon-picker/Manifest b/gui-apps/nwg-icon-picker/Manifest
index c59f042fb8..f667098a44 100644
--- a/gui-apps/nwg-icon-picker/Manifest
+++ b/gui-apps/nwg-icon-picker/Manifest
@@ -1 +1,2 @@
DIST nwg-icon-picker-0.1.0.tar.gz 5616 BLAKE2B e725947cb524ebb74259d99ea46a432773ac25fb7ad4e14fc022c9be0e5a3b138f179943adc85cecd8fcb287ca817fd302b0b155ae6e23caef291d36020db9e5 SHA512 5192e8b06340b2ecf6ab5d1a343440f398299451362d63bb75eabd574c44c9c5c08f76122d38c426594bedd24443944b86ceeb9e779a9db2a4610d36b0aff1bb
+DIST nwg-icon-picker-0.1.1.tar.gz 5807 BLAKE2B 7a11a9231246841d8453f5336108264387ed3216e1cba542f7c58efeec691783cfb7faff4c579a88e7f709c99600cdacd7a1c799b8243a5e009f0be32503da70 SHA512 acad6452dc7e6313a0c16519eabd8d1cb719044443bdda361fc9fc35352f49207cfa5c838e28e34587492068d8f97491cf436b1a8208c0cf177556a3d82e8d93
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
new file mode 100644
index 0000000000..992d7ee1da
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 xdg-utils
+
+if [[ "${PV}" == 9999 ]]
+then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="GTK icon chooser with a text search option"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ x11-libs/gtk+:3
+ dev-python/pygobject[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-icon-picker.desktop
+ doicon nwg-icon-picker.svg
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2024-05-16 16:27 Julien Roy
0 siblings, 0 replies; 8+ messages in thread
From: Julien Roy @ 2024-05-16 16:27 UTC (permalink / raw
To: gentoo-commits
commit: c8564d0c60dea9d21b615161283c93fecccedfc0
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed May 15 19:17:45 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 19:17:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c8564d0c
gui-apps/nwg-icon-picker: enable py3.12
Closes: https://bugs.gentoo.org/931455
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
gui-apps/nwg-icon-picker/Manifest | 1 -
gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild | 2 +-
gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild | 4 ++--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/gui-apps/nwg-icon-picker/Manifest b/gui-apps/nwg-icon-picker/Manifest
index f667098a44..aed4955168 100644
--- a/gui-apps/nwg-icon-picker/Manifest
+++ b/gui-apps/nwg-icon-picker/Manifest
@@ -1,2 +1 @@
-DIST nwg-icon-picker-0.1.0.tar.gz 5616 BLAKE2B e725947cb524ebb74259d99ea46a432773ac25fb7ad4e14fc022c9be0e5a3b138f179943adc85cecd8fcb287ca817fd302b0b155ae6e23caef291d36020db9e5 SHA512 5192e8b06340b2ecf6ab5d1a343440f398299451362d63bb75eabd574c44c9c5c08f76122d38c426594bedd24443944b86ceeb9e779a9db2a4610d36b0aff1bb
DIST nwg-icon-picker-0.1.1.tar.gz 5807 BLAKE2B 7a11a9231246841d8453f5336108264387ed3216e1cba542f7c58efeec691783cfb7faff4c579a88e7f709c99600cdacd7a1c799b8243a5e009f0be32503da70 SHA512 acad6452dc7e6313a0c16519eabd8d1cb719044443bdda361fc9fc35352f49207cfa5c838e28e34587492068d8f97491cf436b1a8208c0cf177556a3d82e8d93
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
index 992d7ee1da..a23bdb42bf 100644
--- a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit desktop distutils-r1 xdg-utils
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild
index 5c03275485..a23bdb42bf 100644
--- a/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit desktop distutils-r1 xdg-utils
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2024-05-16 16:27 Julien Roy
0 siblings, 0 replies; 8+ messages in thread
From: Julien Roy @ 2024-05-16 16:27 UTC (permalink / raw
To: gentoo-commits
commit: 6f122f32b212e70c18dfeea830a843b87d458913
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed May 15 19:18:02 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 19:18:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f122f32
gui-apps/nwg-icon-picker: drop 0.1.0-r1
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
.../nwg-icon-picker-0.1.0-r1.ebuild | 43 ----------------------
1 file changed, 43 deletions(-)
diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0-r1.ebuild b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0-r1.ebuild
deleted file mode 100644
index 5c03275485..0000000000
--- a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.0-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit desktop distutils-r1 xdg-utils
-
-if [[ "${PV}" == 9999 ]]
-then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git"
-else
- SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="GTK icon chooser with a text search option"
-HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker"
-LICENSE="MIT"
-
-SLOT="0"
-
-RDEPEND="
- x11-libs/gtk+:3
- dev-python/pygobject[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-python_install_all() {
- distutils-r1_python_install_all
- domenu nwg-icon-picker.desktop
- doicon nwg-icon-picker.svg
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/
@ 2024-05-16 16:27 Julien Roy
0 siblings, 0 replies; 8+ messages in thread
From: Julien Roy @ 2024-05-16 16:27 UTC (permalink / raw
To: gentoo-commits
commit: 416f42e3ee1c0ffcdbc6e42dea664d513db4cfa1
Author: Quincy Fleming <quincyf467 <AT> protonmail <DOT> com>
AuthorDate: Wed May 15 21:29:27 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 21:29:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=416f42e3
gui-apps/nwg-icon-picker: update upstream metadata
Signed-off-by: Quincy Fleming <quincyf467 <AT> protonmail.com>
gui-apps/nwg-icon-picker/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/nwg-icon-picker/metadata.xml b/gui-apps/nwg-icon-picker/metadata.xml
index 0b0e3f5d04..e84c906bef 100644
--- a/gui-apps/nwg-icon-picker/metadata.xml
+++ b/gui-apps/nwg-icon-picker/metadata.xml
@@ -11,6 +11,6 @@
<email>nwg.piotr@gmail.com</email>
</maintainer>
<bugs-to>https://github.com/nwg-piotr/nwg-icon-picker/issues</bugs-to>
- <remote-id type="github">nwg-piotr/nwg-picker</remote-id>
+ <remote-id type="github">nwg-piotr/nwg-icon-picker</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-05-16 16:27 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-10 8:14 [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-icon-picker/ Viorel Munteanu
-- strict thread matches above, loose matches on Subject: below --
2023-08-12 16:31 David Roman
2023-08-12 16:31 David Roman
2024-01-28 23:02 David Roman
2024-01-28 23:02 David Roman
2024-05-16 16:27 Julien Roy
2024-05-16 16:27 Julien Roy
2024-05-16 16:27 Julien Roy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox