* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-clipman/
@ 2024-12-28 15:23 Pascal Jäger
0 siblings, 0 replies; 3+ messages in thread
From: Pascal Jäger @ 2024-12-28 15:23 UTC (permalink / raw
To: gentoo-commits
commit: 79bf58e2d6bbd59f0254adca101c985e59ab078a
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Sat Dec 28 15:22:20 2024 +0000
Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
CommitDate: Sat Dec 28 15:22:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=79bf58e2
gui-apps/nwg-clipman: new package, add 0.2.4
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
gui-apps/nwg-clipman/Manifest | 1 +
gui-apps/nwg-clipman/metadata.xml | 16 ++++++++
gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild | 55 +++++++++++++++++++++++++++
3 files changed, 72 insertions(+)
diff --git a/gui-apps/nwg-clipman/Manifest b/gui-apps/nwg-clipman/Manifest
new file mode 100644
index 000000000..08ebf4bb6
--- /dev/null
+++ b/gui-apps/nwg-clipman/Manifest
@@ -0,0 +1 @@
+DIST nwg-clipman-0.2.4.tar.gz 11173 BLAKE2B 6c98dbbc78a00076d9d81a08560e46d8bcd5802f08715a18b04aa8178cd76b6a70a2eb4665acbe4963fb6e6b9bd12844e6080912da7b214d07f35d05ec11c6f6 SHA512 241a585b05fba51cbf146472a69eca8e31318d70099ab401a56bf27e571314dcde541536ec7769da7aa1886bfc6786b47d6752616ba423876d036bfeed993aee
diff --git a/gui-apps/nwg-clipman/metadata.xml b/gui-apps/nwg-clipman/metadata.xml
new file mode 100644
index 000000000..65fb208de
--- /dev/null
+++ b/gui-apps/nwg-clipman/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-clipman/issues</bugs-to>
+ <remote-id type="github">nwg-piotr/nwg-clipman</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild b/gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild
new file mode 100644
index 000000000..ac59529d9
--- /dev/null
+++ b/gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..12} )
+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-clipman.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-clipman/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="nwg-shell clipboard manager - a GTK3-based GUI for cliphist"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-clipman"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ dev-python/pygobject[${PYTHON_USEDEP}]
+ x11-libs/gtk+:3
+ gui-libs/gtk-layer-shell[introspection]
+ gui-apps/wl-clipboard
+ app-misc/cliphist
+ x11-misc/xdg-utils
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-clipman.desktop
+ doicon nwg-clipman.svg
+ dodoc README.md
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ elog "To enable nwg-cliphist put this in your compisitors config:"
+ elog "For sway:"
+ elog "exec wl-paste --type text --watch cliphist store"
+ elog "exec wl-paste --type image --watch cliphist store"
+ elog "For hyprland:"
+ elog "exec-once = wl-paste --type text --watch cliphist store"
+ elog "exec-once = wl-paste --type image --watch cliphist store"
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-clipman/
@ 2025-05-01 22:24 Pascal Jäger
0 siblings, 0 replies; 3+ messages in thread
From: Pascal Jäger @ 2025-05-01 22:24 UTC (permalink / raw
To: gentoo-commits
commit: db40b30971e021f7561f1d7c63c851ea696eaa4a
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Thu May 1 21:13:40 2025 +0000
Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
CommitDate: Thu May 1 22:16:41 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=db40b309
gui-apps/nwg-clipman: add 0.2.5
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
gui-apps/nwg-clipman/Manifest | 1 +
gui-apps/nwg-clipman/nwg-clipman-0.2.5.ebuild | 55 +++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/gui-apps/nwg-clipman/Manifest b/gui-apps/nwg-clipman/Manifest
index 08ebf4bb6..881beef7b 100644
--- a/gui-apps/nwg-clipman/Manifest
+++ b/gui-apps/nwg-clipman/Manifest
@@ -1 +1,2 @@
DIST nwg-clipman-0.2.4.tar.gz 11173 BLAKE2B 6c98dbbc78a00076d9d81a08560e46d8bcd5802f08715a18b04aa8178cd76b6a70a2eb4665acbe4963fb6e6b9bd12844e6080912da7b214d07f35d05ec11c6f6 SHA512 241a585b05fba51cbf146472a69eca8e31318d70099ab401a56bf27e571314dcde541536ec7769da7aa1886bfc6786b47d6752616ba423876d036bfeed993aee
+DIST nwg-clipman-0.2.5.tar.gz 11312 BLAKE2B 5e90a41f620451c5b6157d0f933c64b214eb122faa4163a2d249fdccc836a1ed0abde8f41b97248fd2f150fa1fdea72145abad3e09ca9bcefd88049451dcf43b SHA512 a3929bda8c45dc9e7636d6288b25e23cb80c533d52c2703bc780eaa758b24c78289d053d03484c7281a71d6a148e92c761832597010886c7dc33263045a5c9e6
diff --git a/gui-apps/nwg-clipman/nwg-clipman-0.2.5.ebuild b/gui-apps/nwg-clipman/nwg-clipman-0.2.5.ebuild
new file mode 100644
index 000000000..50be1ccec
--- /dev/null
+++ b/gui-apps/nwg-clipman/nwg-clipman-0.2.5.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{12..13} )
+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-clipman.git"
+else
+ SRC_URI="https://github.com/nwg-piotr/nwg-clipman/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="nwg-shell clipboard manager - a GTK3-based GUI for cliphist"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-clipman"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+ dev-python/pygobject[${PYTHON_USEDEP}]
+ x11-libs/gtk+:3
+ gui-libs/gtk-layer-shell[introspection]
+ gui-apps/wl-clipboard
+ app-misc/cliphist
+ x11-misc/xdg-utils
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+ distutils-r1_python_install_all
+ domenu nwg-clipman.desktop
+ doicon nwg-clipman.svg
+ dodoc README.md
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ elog "To enable nwg-cliphist put this in your compisitors config:"
+ elog "For sway:"
+ elog "exec wl-paste --type text --watch cliphist store"
+ elog "exec wl-paste --type image --watch cliphist store"
+ elog "For hyprland:"
+ elog "exec-once = wl-paste --type text --watch cliphist store"
+ elog "exec-once = wl-paste --type image --watch cliphist store"
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-clipman/
@ 2025-05-01 22:24 Pascal Jäger
0 siblings, 0 replies; 3+ messages in thread
From: Pascal Jäger @ 2025-05-01 22:24 UTC (permalink / raw
To: gentoo-commits
commit: b3a4e13056ed8a623befa2ed50914b487804f81e
Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
AuthorDate: Thu May 1 21:17:37 2025 +0000
Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
CommitDate: Thu May 1 22:16:41 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3a4e130
gui-apps/nwg-clipman: bump pyhton compat
Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
.../{nwg-clipman-0.2.4.ebuild => nwg-clipman-0.2.4-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild b/gui-apps/nwg-clipman/nwg-clipman-0.2.4-r1.ebuild
similarity index 94%
rename from gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild
rename to gui-apps/nwg-clipman/nwg-clipman-0.2.4-r1.ebuild
index ac59529d9..d8ceeefb0 100644
--- a/gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild
+++ b/gui-apps/nwg-clipman/nwg-clipman-0.2.4-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{11..12} )
+PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit desktop distutils-r1 xdg-utils
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-05-01 22:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-28 15:23 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-clipman/ Pascal Jäger
-- strict thread matches above, loose matches on Subject: below --
2025-05-01 22:24 Pascal Jäger
2025-05-01 22:24 Pascal Jäger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox