* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/gradience/
@ 2022-10-08 10:38 Pascal Jäger
0 siblings, 0 replies; 4+ messages in thread
From: Pascal Jäger @ 2022-10-08 10:38 UTC (permalink / raw
To: gentoo-commits
commit: d6f41fda68997b815d8b794c24c6bb881c996de9
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sat Oct 8 10:09:57 2022 +0000
Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
CommitDate: Sat Oct 8 10:09:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6f41fda
gui-apps/gradience: new package, v. 0.3.0
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
gui-apps/gradience/Manifest | 1 +
gui-apps/gradience/gradience-0.3.0.ebuild | 64 +++++++++++++++++++++++++++++++
gui-apps/gradience/metadata.xml | 8 ++++
3 files changed, 73 insertions(+)
diff --git a/gui-apps/gradience/Manifest b/gui-apps/gradience/Manifest
new file mode 100644
index 000000000..4a28d0bbe
--- /dev/null
+++ b/gui-apps/gradience/Manifest
@@ -0,0 +1 @@
+DIST gradience-0.3.0.tar.gz 311883 BLAKE2B 87a353097bdde029e75c54f6e73a937c0246a07756a1681772abd68bd9cd05756673ce279e1c6b87a549232d6f1dad76557ce2f13805ea243bb99e3554c02dca SHA512 fc7b90504d8b74cc87ef0e2b002e75b9d41deefeeb9e5d971529b0d66e8b1d73f9d21f471ad6b94174f9f2cd11d1366c0bbaf08ef4b265efbe922b91db766892
diff --git a/gui-apps/gradience/gradience-0.3.0.ebuild b/gui-apps/gradience/gradience-0.3.0.ebuild
new file mode 100644
index 000000000..c92cb40a3
--- /dev/null
+++ b/gui-apps/gradience/gradience-0.3.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit meson xdg python-single-r1
+
+DESCRIPTION="GNOME's main interface to configure various aspects of the desktop"
+HOMEPAGE="https://github.com/GradienceTeam/Gradience"
+SRC_URI+="https://dev.gentoo.org/~mattst88/distfiles/${PN}-42.0-patchset.tar.xz"
+SRC_URI="https://github.com/GradienceTeam/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+ ${PYTHON_DEPS}
+ dev-libs/glib:2
+ >=net-libs/libsoup-3.2.0:3
+ dev-libs/gobject-introspection
+ dev-util/blueprint-compiler
+ dev-lang/sassc
+"
+
+DEPEND="
+ ${PYTHON_DEPS}
+ x11-themes/hicolor-icon-theme
+ >=gui-libs/gtk-4.5.0:4
+ >=gui-libs/libadwaita-1.2:1=
+ >=dev-python/pygobject-3.42.2:3
+ >=dev-python/anyascii-0.3
+ dev-python/material-color-utilities
+ dev-python/svglib
+ dev-python/yapsy
+ dev-python/cssutils
+ dev-python/jinja
+ dev-python/aiohttp
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/Gradience-${PV}
+
+src_prepare() {
+ default
+ xdg_environment_reset
+}
+
+src_install() {
+ meson_src_install
+ python_optimize
+ mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+}
diff --git a/gui-apps/gradience/metadata.xml b/gui-apps/gradience/metadata.xml
new file mode 100644
index 000000000..3771874aa
--- /dev/null
+++ b/gui-apps/gradience/metadata.xml
@@ -0,0 +1,8 @@
+<?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>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/gradience/
@ 2022-10-10 19:28 Arthur Zamarin
0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2022-10-10 19:28 UTC (permalink / raw
To: gentoo-commits
commit: 4ba3bac584078884a2ec724e90fe876b7f1cb2be
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 10 19:28:09 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 10 19:28:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ba3bac5
gui-apps/gradience: fix slot dep for libsoup
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.../gradience/{gradience-0.3.0.ebuild => gradience-0.3.0-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/gradience/gradience-0.3.0.ebuild b/gui-apps/gradience/gradience-0.3.0-r1.ebuild
similarity index 97%
rename from gui-apps/gradience/gradience-0.3.0.ebuild
rename to gui-apps/gradience/gradience-0.3.0-r1.ebuild
index c92cb40a3..5932f240c 100644
--- a/gui-apps/gradience/gradience-0.3.0.ebuild
+++ b/gui-apps/gradience/gradience-0.3.0-r1.ebuild
@@ -20,7 +20,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
BDEPEND="
${PYTHON_DEPS}
dev-libs/glib:2
- >=net-libs/libsoup-3.2.0:3
+ >=net-libs/libsoup-3.2.0:3.0
dev-libs/gobject-introspection
dev-util/blueprint-compiler
dev-lang/sassc
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/gradience/
@ 2024-05-01 13:40 Lucio Sauer
0 siblings, 0 replies; 4+ messages in thread
From: Lucio Sauer @ 2024-05-01 13:40 UTC (permalink / raw
To: gentoo-commits
commit: 44756a3b6ec94c0d83f6bc560ebed2ef1c17a408
Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Wed May 1 13:34:05 2024 +0000
Commit: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Wed May 1 13:34:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44756a3b
gui-apps/gradience: simplify misleading SRC_URI
> SRC_URI+=".."
> SRC_URI=".."
The second line overwrites the first one, thus, the patchset is never
included. Since it isn't available online either, I contacted Matt to
find out if they happen to have it elsewhere.
The package needs a version bump, so it might not be relevant after all.
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>
gui-apps/gradience/gradience-0.3.0-r1.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gui-apps/gradience/gradience-0.3.0-r1.ebuild b/gui-apps/gradience/gradience-0.3.0-r1.ebuild
index e809578c1f..8723979bb1 100644
--- a/gui-apps/gradience/gradience-0.3.0-r1.ebuild
+++ b/gui-apps/gradience/gradience-0.3.0-r1.ebuild
@@ -8,9 +8,10 @@ inherit meson xdg python-single-r1
DESCRIPTION="GNOME's main interface to configure various aspects of the desktop"
HOMEPAGE="https://github.com/GradienceTeam/Gradience"
-SRC_URI+="https://dev.gentoo.org/~mattst88/distfiles/${PN}-42.0-patchset.tar.xz"
SRC_URI="https://github.com/GradienceTeam/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/Gradience-${PV}
+
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
@@ -41,8 +42,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-S="${WORKDIR}"/Gradience-${PV}
-
src_prepare() {
default
xdg_environment_reset
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/gradience/
@ 2024-08-06 13:23 Mattéo Rossillol‑‑Laruelle
0 siblings, 0 replies; 4+ messages in thread
From: Mattéo Rossillol‑‑Laruelle @ 2024-08-06 13:23 UTC (permalink / raw
To: gentoo-commits
commit: de88dea443098b6c274d1a1da8dea5a0a68baa11
Author: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Tue Aug 6 13:22:16 2024 +0000
Commit: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
CommitDate: Tue Aug 6 13:22:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=de88dea4
gui-apps/gradience: drop ALLARCHES
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
gui-apps/gradience/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/gui-apps/gradience/metadata.xml b/gui-apps/gradience/metadata.xml
index cf9dda3ea..36c441d66 100644
--- a/gui-apps/gradience/metadata.xml
+++ b/gui-apps/gradience/metadata.xml
@@ -5,7 +5,6 @@
<email>pascal.jaeger@leimstift.de</email>
<name>Pascal Jaeger</name>
</maintainer>
- <stabilize-allarches/>
<upstream>
<maintainer status="inactive">
<name>Gradience Team</name>
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-06 13:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-08 10:38 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/gradience/ Pascal Jäger
-- strict thread matches above, loose matches on Subject: below --
2022-10-10 19:28 Arthur Zamarin
2024-05-01 13:40 Lucio Sauer
2024-08-06 13:23 Mattéo Rossillol‑‑Laruelle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox