From 4cbcc855382a06088e2f016f62cafdbcb7e40665 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 20 Mar 2022 00:40:44 +0000 Subject: gentoo resync : 20.03.2022 --- x11-misc/mugshot/Manifest | 2 +- x11-misc/mugshot/mugshot-0.4.3-r1.ebuild | 78 +++++++++++++++++++++++++++++++ x11-misc/mugshot/mugshot-0.4.3.ebuild | 79 -------------------------------- 3 files changed, 79 insertions(+), 80 deletions(-) create mode 100644 x11-misc/mugshot/mugshot-0.4.3-r1.ebuild delete mode 100644 x11-misc/mugshot/mugshot-0.4.3.ebuild (limited to 'x11-misc/mugshot') diff --git a/x11-misc/mugshot/Manifest b/x11-misc/mugshot/Manifest index f55c51ff4f98..e5161ce534d4 100644 --- a/x11-misc/mugshot/Manifest +++ b/x11-misc/mugshot/Manifest @@ -1,3 +1,3 @@ DIST mugshot-0.4.3.tar.gz 128500 BLAKE2B 88ed4a9a0efa70a14d90b831d00ad8c98d7c6dc4eff0e319e5ad08e904b0c0cf2c15bb26198f4ae1248e85959c08af165c9b6dc917dce35d986fdd73ff67eed8 SHA512 b5e91288b4de30124bd84c44b8f2a70e043af12e1f9580d07b13344b6c0343399037aadf153ea216d61cd12e4891ebb15557f1ad62c3b4d7c49584fa004ae65c -EBUILD mugshot-0.4.3.ebuild 1534 BLAKE2B f1045f5f9fc390b6257a3f851c556ec7f3dccc96f2e03182702b48315a8df09f6ebfdbdeca36bab3a3e11947f71aa997cd8af3355690a4d70261e21f765e246a SHA512 f62b7d90374df80b80de6180b813698666d8d4ca91d83a37d19a27b12631e1bfdc7cbb1b116d5bd9f8faa151ae52bf52487372c3de13625313a8a25402f04f2e +EBUILD mugshot-0.4.3-r1.ebuild 1533 BLAKE2B c670b6d091532da46de04babaa4b1f557924c6ae126bd5ea241779e6c100bc7acb65acaae150474fc22eaaaa876f0284c557bd884296bf92aadf53dde7f1cda0 SHA512 65e0da1169bcf1a78ad6038fd585f2cfb03f42922f044d01303dea2e7b8c2f9522172d6440c35fe701cf90f508a0c08b0a3ae4d11326bac92aee9f889d6da84b MISC metadata.xml 944 BLAKE2B 59f4fc9d71e76357768b352815291f678bfae5667e5ce2a0dfa78255ff78fa08b894b8aad97e06231177e008ba693a96ed96718c44a0b464be91f21cf4a31ac8 SHA512 cba7b3abd264aa6cb7bd6ed03a21b03d60f453480e40caffb6343a928c540bed2455fd5651ff33c726f6ba3c111e2c6e8654260bf7acc16204f65b6ba89fce51 diff --git a/x11-misc/mugshot/mugshot-0.4.3-r1.ebuild b/x11-misc/mugshot/mugshot-0.4.3-r1.ebuild new file mode 100644 index 000000000000..61fadeb0cba2 --- /dev/null +++ b/x11-misc/mugshot/mugshot-0.4.3-r1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS="no" +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 gnome2-utils xdg-utils + +DESCRIPTION="A lightweight user-configuration application" +HOMEPAGE="https://github.com/bluesabre/mugshot" +SRC_URI="https://github.com/bluesabre/${PN}/archive/${P}.tar.gz" +S="${WORKDIR}/${PN}-${P}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="gnome libreoffice webcam" + +COMMON_DEPEND=" + dev-libs/gobject-introspection + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + +" + +RDEPEND=" + ${COMMON_DEPEND} + dev-python/pycairo[${PYTHON_USEDEP}] + sys-apps/accountsservice + sys-apps/shadow + gnome? ( gnome-base/gnome-control-center ) + libreoffice? ( + || ( + app-office/libreoffice-bin + app-office/libreoffice + ) + ) + webcam? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-good:1.0 + gnome? ( + media-libs/clutter-gtk[introspection] + media-video/cheese[introspection] + ) + ) +" + +DEPEND=" + ${COMMON_DEPEND} + x11-libs/gtk+:3[introspection] +" + +BDEPEND=" + dev-python/python-distutils-extra[${PYTHON_USEDEP}] + dev-util/intltool +" + +python_install() { + distutils-r1_python_install + + python_optimize + + # Since DOCS are installed twice, remove the wrong path + rm -r "${ED}"/usr/share/doc/mugshot || die +} + +pkg_postinst() { + gnome2_schemas_update + xdg_icon_cache_update +} + +pkg_postrm() { + gnome2_schemas_update + xdg_icon_cache_update +} diff --git a/x11-misc/mugshot/mugshot-0.4.3.ebuild b/x11-misc/mugshot/mugshot-0.4.3.ebuild deleted file mode 100644 index 1b7d2a746548..000000000000 --- a/x11-misc/mugshot/mugshot-0.4.3.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS="no" -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 gnome2-utils xdg-utils - -DESCRIPTION="A lightweight user-configuration application" -HOMEPAGE="https://github.com/bluesabre/mugshot" -SRC_URI="https://github.com/bluesabre/${PN}/archive/${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="gnome libreoffice webcam" - -COMMON_DEPEND=" - dev-libs/gobject-introspection - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/pexpect[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - -" - -RDEPEND=" - ${COMMON_DEPEND} - dev-python/pycairo[${PYTHON_USEDEP}] - sys-apps/accountsservice - sys-apps/shadow - gnome? ( gnome-base/gnome-control-center ) - libreoffice? ( - || ( - app-office/libreoffice-bin - app-office/libreoffice - ) - ) - webcam? ( - media-libs/gstreamer:1.0 - media-libs/gst-plugins-good:1.0 - gnome? ( - media-libs/clutter-gtk[introspection] - media-video/cheese[introspection] - ) - ) -" - -DEPEND=" - ${COMMON_DEPEND} - x11-libs/gtk+:3[introspection] -" - -BDEPEND=" - dev-python/python-distutils-extra[${PYTHON_USEDEP}] - dev-util/intltool -" - -S="${WORKDIR}/${PN}-${P}" - -python_install() { - distutils-r1_python_install - - python_optimize - - # Since DOCS are installed twice, remove the wrong path - rm -r "${ED}"/usr/share/doc/mugshot || die -} - -pkg_postinst() { - gnome2_schemas_update - xdg_icon_cache_update -} - -pkg_postrm() { - gnome2_schemas_update - xdg_icon_cache_update -} -- cgit v1.2.3