From 79bf58e2d6bbd59f0254adca101c985e59ab078a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Sat, 28 Dec 2024 16:22:20 +0100 Subject: [PATCH] gui-apps/nwg-clipman: new package, add 0.2.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Jäger --- 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(+) create mode 100644 gui-apps/nwg-clipman/Manifest create mode 100644 gui-apps/nwg-clipman/metadata.xml create mode 100644 gui-apps/nwg-clipman/nwg-clipman-0.2.4.ebuild diff --git a/gui-apps/nwg-clipman/Manifest b/gui-apps/nwg-clipman/Manifest new file mode 100644 index 0000000000..08ebf4bb66 --- /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 0000000000..65fb208de2 --- /dev/null +++ b/gui-apps/nwg-clipman/metadata.xml @@ -0,0 +1,16 @@ + + + + + pascal.jaeger@leimstift.de + Pascal Jaeger + + + + Piotr Miller + nwg.piotr@gmail.com + + https://github.com/nwg-piotr/nwg-clipman/issues + nwg-piotr/nwg-clipman + + 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 0000000000..ac59529d9b --- /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 +}