* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/darkman/
@ 2023-03-11 13:03 Michael Mair-Keimberger
0 siblings, 0 replies; 4+ messages in thread
From: Michael Mair-Keimberger @ 2023-03-11 13:03 UTC (permalink / raw
To: gentoo-commits
commit: 37c96a0279839f3290b4609d7b381c591cd6d6b9
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Mar 11 13:03:01 2023 +0000
Commit: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
CommitDate: Sat Mar 11 13:03:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37c96a02
guru/gui-apps: add 1.5.4
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
gui-apps/darkman/Manifest | 2 ++
gui-apps/darkman/darkman-1.5.4.ebuild | 50 +++++++++++++++++++++++++++++++++++
gui-apps/darkman/metadata.xml | 11 ++++++++
3 files changed, 63 insertions(+)
diff --git a/gui-apps/darkman/Manifest b/gui-apps/darkman/Manifest
new file mode 100644
index 000000000..3643e19a2
--- /dev/null
+++ b/gui-apps/darkman/Manifest
@@ -0,0 +1,2 @@
+DIST darkman-1.5.4-vendor.tar.xz 384628 BLAKE2B 3af63f7e676e4ac8209fc490b6e6ea8717268c76917887a3a744926e000a4a9adfae63981376fe88ea0a0cd16273824b23c23f2a85e11f65c13292d921c92958 SHA512 31dfc7ef1005c2bf59b0df32820070b217c7243c5256fb743b1a152619dd57da1a72d5db7a34d8715e3a1f0aa622fd5ba005bfdb1a179d00438e77bc79a9d25e
+DIST darkman-v1.5.4.tar.bz2 21648 BLAKE2B b81f09f0e9cfaf21fca700314a68380672bfbf96b4db1ea9d878de7daf2e2470a83b99e829794384b853161b9ff3687a0587834e5d2a0f14ee6a5436a598fcfe SHA512 a8f687bdb8ca8233434919d0428c7899953f79e80eb1471bb28e695e73906c1577f6e6fb495ae67dee0a44ff9cefffd1eb5a1288d3dd0a33673646e408f02556
diff --git a/gui-apps/darkman/darkman-1.5.4.ebuild b/gui-apps/darkman/darkman-1.5.4.ebuild
new file mode 100644
index 000000000..6f0b4c343
--- /dev/null
+++ b/gui-apps/darkman/darkman-1.5.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd go-module
+
+DESCRIPTION="Framework for dark and light mode transitions"
+HOMEPAGE="https://gitlab.com/WhyNotHugo/darkman"
+SRC_URI="https://gitlab.com/whynothugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
+SRC_URI+=" https://files.levelnine.at/${P}-vendor.tar.xz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+man +examples"
+
+S="${WORKDIR}/${PN}-v${PV}"
+
+RDEPEND="app-misc/geoclue"
+BDEPEND="man? ( app-text/scdoc )"
+
+DOCS=( CHANGELOG.md README.md )
+
+src_compile() {
+ ego build -v -x -o ${PN} -ldflags="-X main.Version=${PV}" ./cmd/${PN}
+
+ if use man; then
+ scdoc < ./${PN}.1.scd > ./${PN}.1 || die
+ fi
+}
+
+src_install() {
+ dobin ${PN}
+
+ systemd_dounit ${PN}.service
+ doman ${PN}.1
+
+ use examples && DOCS+=( examples/. )
+ einstalldocs
+
+ insinto /usr/share/dbus-1/services
+ doins contrib/dbus/*
+
+ insinto /usr/share/xdg-desktop-portal/portals/
+ doins contrib/portal/darkman.portal
+
+ dodir /etc/env.d/
+ echo "XDG_DATA_DIRS=\"~/.local/share/\"" >> "${ED}"/etc/env.d/99darkman || die
+}
diff --git a/gui-apps/darkman/metadata.xml b/gui-apps/darkman/metadata.xml
new file mode 100644
index 000000000..348eb5408
--- /dev/null
+++ b/gui-apps/darkman/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mmk@levelnine.at</email>
+ <name>Michael Mair-Keimberger</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="gitlab">WhyNotHugo/darkman</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/darkman/
@ 2024-05-01 15:51 Lucio Sauer
0 siblings, 0 replies; 4+ messages in thread
From: Lucio Sauer @ 2024-05-01 15:51 UTC (permalink / raw
To: gentoo-commits
commit: 02ad1270aede79986317b7c2880bfe76b0ee7aea
Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Wed May 1 15:45:54 2024 +0000
Commit: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Wed May 1 15:45:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02ad1270
gui-apps/darkman: fix permanent URL redirect for SRC_URI
fix variable order
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>
gui-apps/darkman/darkman-1.5.4.ebuild | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gui-apps/darkman/darkman-1.5.4.ebuild b/gui-apps/darkman/darkman-1.5.4.ebuild
index 6f0b4c3430..86e6b45c85 100644
--- a/gui-apps/darkman/darkman-1.5.4.ebuild
+++ b/gui-apps/darkman/darkman-1.5.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2022 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -7,16 +7,16 @@ inherit systemd go-module
DESCRIPTION="Framework for dark and light mode transitions"
HOMEPAGE="https://gitlab.com/WhyNotHugo/darkman"
-SRC_URI="https://gitlab.com/whynothugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
-SRC_URI+=" https://files.levelnine.at/${P}-vendor.tar.xz"
+SRC_URI="https://gitlab.com/WhyNotHugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
+ https://files.levelnine.at/${P}-vendor.tar.xz"
+
+S="${WORKDIR}/${PN}-v${PV}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+man +examples"
-S="${WORKDIR}/${PN}-v${PV}"
-
RDEPEND="app-misc/geoclue"
BDEPEND="man? ( app-text/scdoc )"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/darkman/
@ 2024-06-02 4:28 Amano Kenji
0 siblings, 0 replies; 4+ messages in thread
From: Amano Kenji @ 2024-06-02 4:28 UTC (permalink / raw
To: gentoo-commits
commit: e22681f1e2a827f40b3dee1bd2fe0f158ff18b2c
Author: amano.kenji <amano.kenji <AT> proton <DOT> me>
AuthorDate: Sun Jun 2 04:28:25 2024 +0000
Commit: Amano Kenji <amano.kenji <AT> proton <DOT> me>
CommitDate: Sun Jun 2 04:28:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e22681f1
gui-apps/darkman: add 2.0.1, drop 1.5.4
Signed-off-by: amano.kenji <amano.kenji <AT> proton.me>
gui-apps/darkman/Manifest | 4 ++--
gui-apps/darkman/{darkman-1.5.4.ebuild => darkman-2.0.1.ebuild} | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gui-apps/darkman/Manifest b/gui-apps/darkman/Manifest
index 3643e19a2..e3787e9d1 100644
--- a/gui-apps/darkman/Manifest
+++ b/gui-apps/darkman/Manifest
@@ -1,2 +1,2 @@
-DIST darkman-1.5.4-vendor.tar.xz 384628 BLAKE2B 3af63f7e676e4ac8209fc490b6e6ea8717268c76917887a3a744926e000a4a9adfae63981376fe88ea0a0cd16273824b23c23f2a85e11f65c13292d921c92958 SHA512 31dfc7ef1005c2bf59b0df32820070b217c7243c5256fb743b1a152619dd57da1a72d5db7a34d8715e3a1f0aa622fd5ba005bfdb1a179d00438e77bc79a9d25e
-DIST darkman-v1.5.4.tar.bz2 21648 BLAKE2B b81f09f0e9cfaf21fca700314a68380672bfbf96b4db1ea9d878de7daf2e2470a83b99e829794384b853161b9ff3687a0587834e5d2a0f14ee6a5436a598fcfe SHA512 a8f687bdb8ca8233434919d0428c7899953f79e80eb1471bb28e695e73906c1577f6e6fb495ae67dee0a44ff9cefffd1eb5a1288d3dd0a33673646e408f02556
+DIST darkman-2.0.1-deps.tar.xz 2361116 BLAKE2B 3bcf8b88ebf2e0f09816d31dad7bc2c6f44cc275931b99263e3f8b788d4a714a6c0760458054d8d1ea8d4c39fd28877e84f846dcf40099695f614aba5468728a SHA512 3adcb0655369151c942727088d4a3983b392ae3d2e7738ba7bfa81605af1f4c2a8a9d54797291b7864a6ec5572bc90ba935f5fd68d8557e2a09c3bd2864124de
+DIST darkman-v2.0.1.tar.bz2 25801 BLAKE2B 47170bbd92451d8ea8f6918755fa57d985ea43bc5a501b57e0e12ebda3274d06764d1ee3334df231f0774f36486fd5813e2b3e1515c16c18d9fb43c094fedb5f SHA512 8036e3470d22e1f689d8305cb3faf81a1fc2f0692afd8fb9657c2c22af417f25fd928189fcda42df7c053cb9129c90cdf11df64e6f597498af95f330de76f282
diff --git a/gui-apps/darkman/darkman-1.5.4.ebuild b/gui-apps/darkman/darkman-2.0.1.ebuild
similarity index 92%
rename from gui-apps/darkman/darkman-1.5.4.ebuild
rename to gui-apps/darkman/darkman-2.0.1.ebuild
index 86e6b45c8..de30c3f2c 100644
--- a/gui-apps/darkman/darkman-1.5.4.ebuild
+++ b/gui-apps/darkman/darkman-2.0.1.ebuild
@@ -8,7 +8,7 @@ inherit systemd go-module
DESCRIPTION="Framework for dark and light mode transitions"
HOMEPAGE="https://gitlab.com/WhyNotHugo/darkman"
SRC_URI="https://gitlab.com/WhyNotHugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
- https://files.levelnine.at/${P}-vendor.tar.xz"
+ https://codeberg.org/amano-kenji-gentoo-overlay/${PN}/raw/branch/master/${P}-deps.tar.xz"
S="${WORKDIR}/${PN}-v${PV}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/darkman/
@ 2024-06-19 0:45 Alberto Gireud
0 siblings, 0 replies; 4+ messages in thread
From: Alberto Gireud @ 2024-06-19 0:45 UTC (permalink / raw
To: gentoo-commits
commit: d0472a69835ae372dfb4a0f6436cedd9cb3c656a
Author: Alberto Gireud <agireud <AT> protonmail <DOT> com>
AuthorDate: Wed Jun 19 00:40:01 2024 +0000
Commit: Alberto Gireud <agireud <AT> protonmail <DOT> com>
CommitDate: Wed Jun 19 00:40:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d0472a69
gui-apps/darkman: Fix systemd user unit installation
Signed-off-by: Alberto Gireud <agireud <AT> protonmail.com>
gui-apps/darkman/{darkman-2.0.1.ebuild => darkman-2.0.1-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui-apps/darkman/darkman-2.0.1.ebuild b/gui-apps/darkman/darkman-2.0.1-r1.ebuild
similarity index 97%
rename from gui-apps/darkman/darkman-2.0.1.ebuild
rename to gui-apps/darkman/darkman-2.0.1-r1.ebuild
index de30c3f2c..a5e896ee4 100644
--- a/gui-apps/darkman/darkman-2.0.1.ebuild
+++ b/gui-apps/darkman/darkman-2.0.1-r1.ebuild
@@ -33,7 +33,7 @@ src_compile() {
src_install() {
dobin ${PN}
- systemd_dounit ${PN}.service
+ systemd_douserunit ${PN}.service
doman ${PN}.1
use examples && DOCS+=( examples/. )
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-19 0:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-01 15:51 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/darkman/ Lucio Sauer
-- strict thread matches above, loose matches on Subject: below --
2024-06-19 0:45 Alberto Gireud
2024-06-02 4:28 Amano Kenji
2023-03-11 13:03 Michael Mair-Keimberger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox