[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 45b5b429681e1bda3acf4db49eec57a6cb105e02 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Aug 10 22:32:42 2024 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Aug 10 22:32:42 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45b5b429 x11-misc/safeeyes: 2.2.2 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.2.2.ebuild | 60 + 2 files changed, 61 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 7db8e7fb01f7..928e70238662 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -2,3 +2,4 @@ DIST safeeyes-2.1.6.tar.gz 286359 BLAKE2B a5e4b4d680d455f2ae9494705f1e4508341802 DIST safeeyes-2.1.8.tar.gz 288991 BLAKE2B 53fa71171c42679f7241a13b5542855c542c020814a4ec9e9c7480163bc2179e93787fb87291999815f900d5dea3522f5de8e35e85b714d3cb1cc4e24bad5638 SHA512 df3192ee751510449a0ee8946c8e59daff3dc5b4ef95a2f5563cc82834fbe8d3de52f39be2e0c26c13db7ac3d115ef1de63184ec8d069b99f411f4d60e9b5139 DIST safeeyes-2.1.9.tar.gz 288598 BLAKE2B 4a8892758220d7422c9d58b0dfcaef19c4a7cbef1266dc593321d2abaeafee5857dff277d16a4a98c5fdd745cdf305762f593e04c1cf9f9886d3e79486108c5c SHA512 2a752686c101bd3a952ed11b7c68e692077220663ac36ee73343d001807bb5d7c02477cb45ab92be99fd8463f436570caf021ae1a064079fcecd82447c13c3ac DIST safeeyes-2.2.0.tar.gz 291116 BLAKE2B a1650447c04fa828d58fd650488eeec47699da4b16476d58471ec396c4f724e516e16069b748cd94e215b1dd1d75f716d1955f7488f39d412fbe7b53dc27f5ea SHA512 f3b6679ad7f8a9983f466ef5b29a67bed62ffb95aff2468401eefa543e359e9c2470b593e27023874e1400d6569ac55decfb024a9ad81ba07a8989d70af7dab0 +DIST safeeyes-2.2.2.tar.gz 312701 BLAKE2B 73e316c699bb1b6a1291bc2afefc228067d692352788cbd68904917bbea8d8d566e3a3b764d44cb8be37d75a89a97326f153be98b69b800c42f49b0e9668dfd5 SHA512 b84f3bdeae06bc0db88a7ef1c029f8896880bd4f0cdf624eb332eb974dbfca4ce766f13d41b275747098016b3b3dbe4f1fe4ac58916a641913ddf0a18f77 diff --git a/x11-misc/safeeyes/safeeyes-2.2.2.ebuild b/x11-misc/safeeyes/safeeyes-2.2.2.ebuild new file mode 100644 index ..d3e9574426cd --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.2.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +python_install() { + distutils-r1_python_install + + # Workaround for https://bugs.gentoo.org/926816 + # Files were misplaced and also duplicate across Python slots. + local misplaced_usr="${D}/usr/lib/${EPYTHON}/site-packages/usr" + local i + for i in applications icons ; do + local source="${misplaced_usr}/share/${i}" + local target="${D}/usr/share/${i}" + if [[ ! -d "${target}" ]]; then + dodir /usr/share/ + mv "${source}" "${target}" || die + fi + done + rm -R "${misplaced_usr}" || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 34c756f95209de7f851823833c7536a7141f11a8 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Jul 14 20:27:50 2024 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Jul 14 20:29:05 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34c756f9 x11-misc/safeeyes: 2.2.0 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.2.0.ebuild | 61 + 2 files changed, 62 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index d4f3b38c47b1..7db8e7fb01f7 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1,4 @@ DIST safeeyes-2.1.6.tar.gz 286359 BLAKE2B a5e4b4d680d455f2ae9494705f1e4508341802f4826b2d11f5407eed4074f0eab45066a3741745dd164b47e26a2dbf2a393945bffef0f747cbebd5f87b3b1961 SHA512 6476284ed1d8cdde77f10b3fe962a5d9d5ead944b0418f797e375cc67affa6807d858279cf4a1189585b7688dbe983fc6b90c917e0e55a2a11ebfdc56b44ca93 DIST safeeyes-2.1.8.tar.gz 288991 BLAKE2B 53fa71171c42679f7241a13b5542855c542c020814a4ec9e9c7480163bc2179e93787fb87291999815f900d5dea3522f5de8e35e85b714d3cb1cc4e24bad5638 SHA512 df3192ee751510449a0ee8946c8e59daff3dc5b4ef95a2f5563cc82834fbe8d3de52f39be2e0c26c13db7ac3d115ef1de63184ec8d069b99f411f4d60e9b5139 DIST safeeyes-2.1.9.tar.gz 288598 BLAKE2B 4a8892758220d7422c9d58b0dfcaef19c4a7cbef1266dc593321d2abaeafee5857dff277d16a4a98c5fdd745cdf305762f593e04c1cf9f9886d3e79486108c5c SHA512 2a752686c101bd3a952ed11b7c68e692077220663ac36ee73343d001807bb5d7c02477cb45ab92be99fd8463f436570caf021ae1a064079fcecd82447c13c3ac +DIST safeeyes-2.2.0.tar.gz 291116 BLAKE2B a1650447c04fa828d58fd650488eeec47699da4b16476d58471ec396c4f724e516e16069b748cd94e215b1dd1d75f716d1955f7488f39d412fbe7b53dc27f5ea SHA512 f3b6679ad7f8a9983f466ef5b29a67bed62ffb95aff2468401eefa543e359e9c2470b593e27023874e1400d6569ac55decfb024a9ad81ba07a8989d70af7dab0 diff --git a/x11-misc/safeeyes/safeeyes-2.2.0.ebuild b/x11-misc/safeeyes/safeeyes-2.2.0.ebuild new file mode 100644 index ..9b766db92038 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.2.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +python_install() { + distutils-r1_python_install + + # Workaround for https://bugs.gentoo.org/926816 + # Files were misplaced and also duplicate across Python slots. + local misplaced_usr="${D}/usr/lib/${EPYTHON}/site-packages/usr" + local i + for i in applications icons ; do + local source="${misplaced_usr}/share/${i}" + local target="${D}/usr/share/${i}" + if [[ ! -d "${target}" ]]; then + dodir /usr/share/ + mv "${source}" "${target}" || die + fi + done + rm -R "${misplaced_usr}" || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 7166d1978ef4330865731a3fe75305e9b0ff5f1c Author: Sebastian Pipping gentoo org> AuthorDate: Wed Jun 19 13:19:12 2024 + Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jun 19 13:20:24 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7166d197 x11-misc/safeeyes: 2.1.9 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.9.ebuild | 60 + 2 files changed, 61 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 4a7b721a70e4..d4f3b38c47b1 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,2 +1,3 @@ DIST safeeyes-2.1.6.tar.gz 286359 BLAKE2B a5e4b4d680d455f2ae9494705f1e4508341802f4826b2d11f5407eed4074f0eab45066a3741745dd164b47e26a2dbf2a393945bffef0f747cbebd5f87b3b1961 SHA512 6476284ed1d8cdde77f10b3fe962a5d9d5ead944b0418f797e375cc67affa6807d858279cf4a1189585b7688dbe983fc6b90c917e0e55a2a11ebfdc56b44ca93 DIST safeeyes-2.1.8.tar.gz 288991 BLAKE2B 53fa71171c42679f7241a13b5542855c542c020814a4ec9e9c7480163bc2179e93787fb87291999815f900d5dea3522f5de8e35e85b714d3cb1cc4e24bad5638 SHA512 df3192ee751510449a0ee8946c8e59daff3dc5b4ef95a2f5563cc82834fbe8d3de52f39be2e0c26c13db7ac3d115ef1de63184ec8d069b99f411f4d60e9b5139 +DIST safeeyes-2.1.9.tar.gz 288598 BLAKE2B 4a8892758220d7422c9d58b0dfcaef19c4a7cbef1266dc593321d2abaeafee5857dff277d16a4a98c5fdd745cdf305762f593e04c1cf9f9886d3e79486108c5c SHA512 2a752686c101bd3a952ed11b7c68e692077220663ac36ee73343d001807bb5d7c02477cb45ab92be99fd8463f436570caf021ae1a064079fcecd82447c13c3ac diff --git a/x11-misc/safeeyes/safeeyes-2.1.9.ebuild b/x11-misc/safeeyes/safeeyes-2.1.9.ebuild new file mode 100644 index ..cd7e15330da3 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.9.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +python_install() { + distutils-r1_python_install + + # Workaround for https://bugs.gentoo.org/926816 + # Files were misplaced and also duplicate across Python slots. + local misplaced_usr="${D}/usr/lib/${EPYTHON}/site-packages/usr" + local i + for i in applications icons ; do + local source="${misplaced_usr}/share/${i}" + local target="${D}/usr/share/${i}" + if [[ ! -d "${target}" ]]; then + dodir /usr/share/ + mv "${source}" "${target}" || die + fi + done + rm -R "${misplaced_usr}" || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 5cf1e4a7f9eb8ef231cdb9b154bde73a76e46001 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Jun 8 23:00:59 2024 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Jun 8 23:20:29 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf1e4a7 x11-misc/safeeyes: Drop old Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild | 42 --- x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild | 46 -- x11-misc/safeeyes/safeeyes-2.1.6.ebuild| 43 3 files changed, 131 deletions(-) diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild deleted file mode 100644 index c6d102ef6476.. --- a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py -DISTUTILS_USE_PEP517=setuptools - -inherit xdg distutils-r1 pypi - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" - -RDEPEND=" - dev-libs/libayatana-appindicator - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild deleted file mode 100644 index 307103b60daf.. --- a/x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..12} ) -PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py -DISTUTILS_USE_PEP517=setuptools - -inherit xdg distutils-r1 pypi - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" - -PATCHES=( - "${FILESDIR}"/${P}-py312.patch -) - -RDEPEND=" - dev-libs/libayatana-appindicator - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-2.1.6.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6.ebuild deleted file mode 100644 index 5aca9341d36c.. --- a/x11-misc/safeeyes/safeeyes-2.1.6.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py -DISTUTILS_USE_PEP517=setuptools - -inherit xdg distutils-r1 pypi - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" -IUSE="" - -RDEPEND=" - dev-libs/libayatana-appindicator - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: a11e422906cbb521697888a0629676addf9f1d61 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Jun 8 23:06:01 2024 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Jun 8 23:20:34 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11e4229 x11-misc/safeeyes: 2.1.8 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.8.ebuild | 60 + 2 files changed, 61 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 4fcd5e9d7940..4a7b721a70e4 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1 +1,2 @@ DIST safeeyes-2.1.6.tar.gz 286359 BLAKE2B a5e4b4d680d455f2ae9494705f1e4508341802f4826b2d11f5407eed4074f0eab45066a3741745dd164b47e26a2dbf2a393945bffef0f747cbebd5f87b3b1961 SHA512 6476284ed1d8cdde77f10b3fe962a5d9d5ead944b0418f797e375cc67affa6807d858279cf4a1189585b7688dbe983fc6b90c917e0e55a2a11ebfdc56b44ca93 +DIST safeeyes-2.1.8.tar.gz 288991 BLAKE2B 53fa71171c42679f7241a13b5542855c542c020814a4ec9e9c7480163bc2179e93787fb87291999815f900d5dea3522f5de8e35e85b714d3cb1cc4e24bad5638 SHA512 df3192ee751510449a0ee8946c8e59daff3dc5b4ef95a2f5563cc82834fbe8d3de52f39be2e0c26c13db7ac3d115ef1de63184ec8d069b99f411f4d60e9b5139 diff --git a/x11-misc/safeeyes/safeeyes-2.1.8.ebuild b/x11-misc/safeeyes/safeeyes-2.1.8.ebuild new file mode 100644 index ..cd7e15330da3 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.8.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +python_install() { + distutils-r1_python_install + + # Workaround for https://bugs.gentoo.org/926816 + # Files were misplaced and also duplicate across Python slots. + local misplaced_usr="${D}/usr/lib/${EPYTHON}/site-packages/usr" + local i + for i in applications icons ; do + local source="${misplaced_usr}/share/${i}" + local target="${D}/usr/share/${i}" + if [[ ! -d "${target}" ]]; then + dodir /usr/share/ + mv "${source}" "${target}" || die + fi + done + rm -R "${misplaced_usr}" || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 07a8db8179d87bfb26d091aa2b329d58c31993db Author: Sebastian Pipping gentoo org> AuthorDate: Thu Mar 14 20:54:48 2024 + Commit: Sebastian Pipping gentoo org> CommitDate: Thu Mar 14 21:11:53 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a8db81 x11-misc/safeeyes: Move assets and .desktop file in place Closes: https://bugs.gentoo.org/926816 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/safeeyes-2.1.6-r3.ebuild | 64 ++ 1 file changed, 64 insertions(+) diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r3.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r3.ebuild new file mode 100644 index ..7f1927eab085 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.6-r3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +PATCHES=( + "${FILESDIR}"/${P}-py312.patch +) + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +python_install() { + distutils-r1_python_install + + # Workaround for https://bugs.gentoo.org/926816 + # Files were misplaced and also duplicate across Python slots. + local misplaced_usr="${D}/usr/lib/${EPYTHON}/site-packages/usr" + local i + for i in applications icons ; do + local source="${misplaced_usr}/share/${i}" + local target="${D}/usr/share/${i}" + if [[ ! -d "${target}" ]]; then + dodir /usr/share/ + mv "${source}" "${target}" || die + fi + done + rm -R "${misplaced_usr}" || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/files/, x11-misc/safeeyes/
commit: 0af193126b0874fc5e7f76addb8fb81b7bfcd0e7 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Dec 3 15:42:01 2023 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Dec 3 15:57:30 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0af19312 x11-misc/safeeyes: Fix support for Python 3.12 Closes: https://bugs.gentoo.org/919099 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch | 34 ++ x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild | 2 +- ...es-2.1.6-r1.ebuild => safeeyes-2.1.6-r2.ebuild} | 4 +++ 3 files changed, 39 insertions(+), 1 deletion(-) diff --git a/x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch b/x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch new file mode 100644 index ..93430da89b88 --- /dev/null +++ b/x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch @@ -0,0 +1,34 @@ +From 043d9c5018431b3b41cc2bcfacdaaa7f0db1563c Mon Sep 17 00:00:00 2001 +From: Alyssa Rosenzweig +Date: Thu, 9 Nov 2023 12:14:13 -0400 +Subject: [PATCH] Fix with python3.12 + +imp is deprecated in 3.4 and removed in 3.12. this caused safe eyes to +break on upgrading to fedora 39 + +Signed-off-by: Alyssa Rosenzweig +--- + safeeyes/utility.py | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/safeeyes/utility.py b/safeeyes/utility.py +index e145d4d..3976140 100644 +--- a/safeeyes/utility.py b/safeeyes/utility.py +@@ -21,7 +21,6 @@ + """ + + import errno +-import imp + import inspect + import importlib + import json +@@ -355,7 +354,7 @@ def module_exist(module): + Check wther the given Python module exists or not. + """ + try: +-imp.find_module(module) ++importlib.util.find_spec(module) + return True + except ImportError: + return False diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild index 02c1bee35ae8..c6d102ef6476 100644 --- a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{9..11} ) PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py DISTUTILS_USE_PEP517=setuptools diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild similarity index 95% copy from x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild copy to x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild index 02c1bee35ae8..307103b60daf 100644 --- a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.1.6-r2.ebuild @@ -16,6 +16,10 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~riscv ~x86" +PATCHES=( + "${FILESDIR}"/${P}-py312.patch +) + RDEPEND=" dev-libs/libayatana-appindicator dev-python/Babel[${PYTHON_USEDEP}]
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: c004e47374d840b93b534cf6fd304292586ad0c9 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Nov 5 22:07:26 2023 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Nov 5 22:07:36 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c004e473 x11-misc/safeeyes: Python 3.12 + EmptyGlobalAssignment Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild | 42 ++ 1 file changed, 42 insertions(+) diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild new file mode 100644 index ..02c1bee35ae8 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/files/, x11-misc/safeeyes/
commit: 86e45683936ea303446135948c74cfa77a8f1226 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Nov 5 22:06:23 2023 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Nov 5 22:06:23 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e45683 x11-misc/safeeyes: Drop old Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 - .../files/safeeyes-2.1.5-python-3.11.patch | 25 x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild | 47 -- 3 files changed, 73 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 6b686165b96b..4fcd5e9d7940 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,2 +1 @@ -DIST safeeyes-2.1.5.tar.gz 284690 BLAKE2B deedf39bc0a69ee70a692061c96e0ea5ce6aeb09513d7469710d25b8660eaed854b3ee711de4702f839dbfb1f04aee84cb05ebc24d4567fc2b56c04e319f5c63 SHA512 0e4ed1d9f4473b45f6f5d4a74ba4817fca08199072fe937fd3b7ceed1ef543729c618e672198cf4dfeba8ed896b24779ca725f2f2c98bf1c9cdf1a8e9c147dc8 DIST safeeyes-2.1.6.tar.gz 286359 BLAKE2B a5e4b4d680d455f2ae9494705f1e4508341802f4826b2d11f5407eed4074f0eab45066a3741745dd164b47e26a2dbf2a393945bffef0f747cbebd5f87b3b1961 SHA512 6476284ed1d8cdde77f10b3fe962a5d9d5ead944b0418f797e375cc67affa6807d858279cf4a1189585b7688dbe983fc6b90c917e0e55a2a11ebfdc56b44ca93 diff --git a/x11-misc/safeeyes/files/safeeyes-2.1.5-python-3.11.patch b/x11-misc/safeeyes/files/safeeyes-2.1.5-python-3.11.patch deleted file mode 100644 index e494dfc1a2ce.. --- a/x11-misc/safeeyes/files/safeeyes-2.1.5-python-3.11.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 1fabfb9eddc2b67d174dffba0e46ecb4fb4dec71 Mon Sep 17 00:00:00 2001 -From: tibequadorian -Date: Tue, 24 Jan 2023 18:39:49 +0100 -Subject: [PATCH] utility.py: Fix getargspec error with python 3.11 - - safeeyes/utility.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/safeeyes/utility.py b/safeeyes/utility.py -index bf2dede..7e08735 100644 a/safeeyes/utility.py -+++ b/safeeyes/utility.py -@@ -666,7 +666,7 @@ def has_method(module, method_name, no_of_args=0): - Check whether the given function is defined in the module or not. - """ - if hasattr(module, method_name): --if len(inspect.getargspec(getattr(module, method_name)).args) == no_of_args: -+if len(inspect.getfullargspec(getattr(module, method_name)).args) == no_of_args: - return True - return False - --- -2.39.1 - diff --git a/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild deleted file mode 100644 index c5cb4ebcd177.. --- a/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py -DISTUTILS_USE_PEP517=setuptools - -inherit xdg distutils-r1 pypi - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" -IUSE="" - -PATCHES=( - "${FILESDIR}"/${P}-python-3.11.patch -) - -RDEPEND=" - dev-libs/libayatana-appindicator - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: ebdcde304e33b804d356316001186179bf97570e Author: Sebastian Pipping gentoo org> AuthorDate: Wed Jul 5 15:39:50 2023 + Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jul 5 15:39:50 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebdcde30 x11-misc/safeeyes: 2.1.6 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.6.ebuild | 43 + 2 files changed, 44 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 67b3f4e4a423..6b686165b96b 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1 +1,2 @@ DIST safeeyes-2.1.5.tar.gz 284690 BLAKE2B deedf39bc0a69ee70a692061c96e0ea5ce6aeb09513d7469710d25b8660eaed854b3ee711de4702f839dbfb1f04aee84cb05ebc24d4567fc2b56c04e319f5c63 SHA512 0e4ed1d9f4473b45f6f5d4a74ba4817fca08199072fe937fd3b7ceed1ef543729c618e672198cf4dfeba8ed896b24779ca725f2f2c98bf1c9cdf1a8e9c147dc8 +DIST safeeyes-2.1.6.tar.gz 286359 BLAKE2B a5e4b4d680d455f2ae9494705f1e4508341802f4826b2d11f5407eed4074f0eab45066a3741745dd164b47e26a2dbf2a393945bffef0f747cbebd5f87b3b1961 SHA512 6476284ed1d8cdde77f10b3fe962a5d9d5ead944b0418f797e375cc67affa6807d858279cf4a1189585b7688dbe983fc6b90c917e0e55a2a11ebfdc56b44ca93 diff --git a/x11-misc/safeeyes/safeeyes-2.1.6.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6.ebuild new file mode 100644 index ..5aca9341d36c --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.6.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: a470cb95dcefa963e492131fdac82d15f465dace Author: Pacho Ramos gentoo org> AuthorDate: Mon May 8 09:01:20 2023 + Commit: Pacho Ramos gentoo org> CommitDate: Mon May 8 09:11:20 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a470cb95 x11-misc/safeeyes: drop 2.1.3-r1, 2.1.4, 2.1.4-r1, 2.1.5 Signed-off-by: Pacho Ramos gentoo.org> x11-misc/safeeyes/Manifest | 2 -- x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild | 46 -- x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild | 52 -- x11-misc/safeeyes/safeeyes-2.1.4.ebuild| 47 --- x11-misc/safeeyes/safeeyes-2.1.5.ebuild| 44 - 5 files changed, 191 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 242aeade11fd..67b3f4e4a423 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1 @@ -DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723 SHA512 8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48 -DIST safeeyes-2.1.4.tar.gz 383245 BLAKE2B 307d58fd589c0a8b01f0c20c21f06a0f81b0d8a43f81e71e79a273a124e00df7cdd2c7c498a4918f6b56abc03fa7cb58db231124a96806a2fe60d6f9dab7f6c8 SHA512 547d00f18e06679464e225ab62f76c43e8efb733e945ae93c02c7cf55ab0bcf5fc078ffc41ad2842a324fff2513050cced404e8bd53d63b78ba7fb1f862c1ad3 DIST safeeyes-2.1.5.tar.gz 284690 BLAKE2B deedf39bc0a69ee70a692061c96e0ea5ce6aeb09513d7469710d25b8660eaed854b3ee711de4702f839dbfb1f04aee84cb05ebc24d4567fc2b56c04e319f5c63 SHA512 0e4ed1d9f4473b45f6f5d4a74ba4817fca08199072fe937fd3b7ceed1ef543729c618e672198cf4dfeba8ed896b24779ca725f2f2c98bf1c9cdf1a8e9c147dc8 diff --git a/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild deleted file mode 100644 index 329df210ab2b.. --- a/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" -IUSE="" - -RDEPEND=" - dev-libs/libappindicator:3[introspection] - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild deleted file mode 100644 index a00135abf2fc.. --- a/x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py - -inherit xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~riscv ~x86" -IUSE="" - -RDEPEND=" - dev-libs/libappindicator:3[introspection] - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -src_prepare() { - default - find . -type f -name \*.pyc -delete # bug #864765 -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-2.1.4.ebuild b/x11-misc/safeeyes/safeeyes-2.1.4.ebuild deleted file mode 100644 index 2e6849d06d75.. --- a/x11-misc/safeeyes/safeeyes-2.1.4.ebuild +++ /d
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: f353a866596c718c09e3c1c12f5493962db05302 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 16 16:04:12 2023 + Commit: Michał Górny gentoo org> CommitDate: Thu Mar 16 18:50:32 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f353a866 x11-misc/safeeyes: Use pypi.eclass Signed-off-by: Michał Górny gentoo.org> x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild index debfe192fcfa..c5cb4ebcd177 100644 --- a/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild @@ -7,11 +7,10 @@ PYTHON_COMPAT=( python3_{9..11} ) PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py DISTUTILS_USE_PEP517=setuptools -inherit xdg distutils-r1 +inherit xdg distutils-r1 pypi DESCRIPTION="Linux alternative to EyeLeo" HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/files/, x11-misc/safeeyes/
commit: 0b8e113a954a44ec1f32eebcc74e2db818c7847d Author: Sebastian Pipping gentoo org> AuthorDate: Tue Jan 24 17:16:56 2023 + Commit: Sebastian Pipping gentoo org> CommitDate: Tue Jan 24 17:53:58 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b8e113a x11-misc/safeeyes: Fix py311 + switch to dev-libs/libayatana-appindicator Closes: https://bugs.gentoo.org/891951 Signed-off-by: Sebastian Pipping gentoo.org> .../files/safeeyes-2.1.5-python-3.11.patch | 25 +++ x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild | 48 ++ 2 files changed, 73 insertions(+) diff --git a/x11-misc/safeeyes/files/safeeyes-2.1.5-python-3.11.patch b/x11-misc/safeeyes/files/safeeyes-2.1.5-python-3.11.patch new file mode 100644 index ..e494dfc1a2ce --- /dev/null +++ b/x11-misc/safeeyes/files/safeeyes-2.1.5-python-3.11.patch @@ -0,0 +1,25 @@ +From 1fabfb9eddc2b67d174dffba0e46ecb4fb4dec71 Mon Sep 17 00:00:00 2001 +From: tibequadorian +Date: Tue, 24 Jan 2023 18:39:49 +0100 +Subject: [PATCH] utility.py: Fix getargspec error with python 3.11 + +--- + safeeyes/utility.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/safeeyes/utility.py b/safeeyes/utility.py +index bf2dede..7e08735 100644 +--- a/safeeyes/utility.py b/safeeyes/utility.py +@@ -666,7 +666,7 @@ def has_method(module, method_name, no_of_args=0): + Check whether the given function is defined in the module or not. + """ + if hasattr(module, method_name): +-if len(inspect.getargspec(getattr(module, method_name)).args) == no_of_args: ++if len(inspect.getfullargspec(getattr(module, method_name)).args) == no_of_args: + return True + return False + +-- +2.39.1 + diff --git a/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild new file mode 100644 index ..debfe192fcfa --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.5-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="" + +PATCHES=( + "${FILESDIR}"/${P}-python-3.11.patch +) + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 7b414b66e806f0d8f48c949e35017416e4c9517f Author: Sebastian Pipping gentoo org> AuthorDate: Fri Jan 6 00:49:46 2023 + Commit: Sebastian Pipping gentoo org> CommitDate: Fri Jan 6 00:51:52 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b414b66 x11-misc/safeeyes: 2.1.5 + DistutilsNonPEP517Build Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.5.ebuild | 44 + 2 files changed, 45 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 1566e3af3c85..242aeade11fd 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,2 +1,3 @@ DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723 SHA512 8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48 DIST safeeyes-2.1.4.tar.gz 383245 BLAKE2B 307d58fd589c0a8b01f0c20c21f06a0f81b0d8a43f81e71e79a273a124e00df7cdd2c7c498a4918f6b56abc03fa7cb58db231124a96806a2fe60d6f9dab7f6c8 SHA512 547d00f18e06679464e225ab62f76c43e8efb733e945ae93c02c7cf55ab0bcf5fc078ffc41ad2842a324fff2513050cced404e8bd53d63b78ba7fb1f862c1ad3 +DIST safeeyes-2.1.5.tar.gz 284690 BLAKE2B deedf39bc0a69ee70a692061c96e0ea5ce6aeb09513d7469710d25b8660eaed854b3ee711de4702f839dbfb1f04aee84cb05ebc24d4567fc2b56c04e319f5c63 SHA512 0e4ed1d9f4473b45f6f5d4a74ba4817fca08199072fe937fd3b7ceed1ef543729c618e672198cf4dfeba8ed896b24779ca725f2f2c98bf1c9cdf1a8e9c147dc8 diff --git a/x11-misc/safeeyes/safeeyes-2.1.5.ebuild b/x11-misc/safeeyes/safeeyes-2.1.5.ebuild new file mode 100644 index ..b865ffc84d69 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="" + +RDEPEND=" + dev-libs/libappindicator:3[introspection] + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 63cecf35be27d134b26b1fe5bca6d1644270c4ec Author: Sebastian Pipping gentoo org> AuthorDate: Sun Dec 4 16:05:41 2022 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Dec 4 16:06:24 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63cecf35 x11-misc/safeeyes: Stop installing shipped stray .pyc files Closes: https://bugs.gentoo.org/864765 Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild | 52 ++ 1 file changed, 52 insertions(+) diff --git a/x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild new file mode 100644 index ..18d803a78ba0 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.4-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="" + +RDEPEND=" + dev-libs/libappindicator:3[introspection] + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +src_prepare() { + default + find . -type f -name \*.pyc -delete # bug #864765 +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 1cd78fd844008ef5e5e6d9b54d9a57cc30a2eb65 Author: Sebastian Pipping gentoo org> AuthorDate: Tue Nov 22 02:15:18 2022 + Commit: Sebastian Pipping gentoo org> CommitDate: Tue Nov 22 02:15:39 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd78fd8 x11-misc/safeeyes: Drop old Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 3 -- x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild | 50 - x11-misc/safeeyes/safeeyes-2.1.1.ebuild| 51 -- x11-misc/safeeyes/safeeyes-2.1.2.ebuild| 51 -- x11-misc/safeeyes/safeeyes-2.1.3.ebuild| 51 -- 5 files changed, 206 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 8978399f03aa..1566e3af3c85 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,5 +1,2 @@ -DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 -DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e SHA512 ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1 -DIST safeeyes-2.1.2.tar.gz 348431 BLAKE2B 03d51c435f62e00703aba4c1224a5a961b1a187d22e3470993a7bb4c2537dc27dfe784d4c53403905853fa79aaa1ef8e8bfb2333045a2e0d2ec48452483baa7f SHA512 2d67c198fbbf7d5813d900450c6608870f5ca692f533cbb68d36e7f34e197e2e9b52b3210b328318d5c64fc430092748ddd2dfa6e493a585fdada920f933a434 DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723 SHA512 8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48 DIST safeeyes-2.1.4.tar.gz 383245 BLAKE2B 307d58fd589c0a8b01f0c20c21f06a0f81b0d8a43f81e71e79a273a124e00df7cdd2c7c498a4918f6b56abc03fa7cb58db231124a96806a2fe60d6f9dab7f6c8 SHA512 547d00f18e06679464e225ab62f76c43e8efb733e945ae93c02c7cf55ab0bcf5fc078ffc41ad2842a324fff2513050cced404e8bd53d63b78ba7fb1f862c1ad3 diff --git a/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild b/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild deleted file mode 100644 index aa561a0edce9.. --- a/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -CDEPEND="${PYTHON_DEPS}" -DEPEND="${CDEPEND} - >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] - " -RDEPEND="${CDEPEND} - dev-libs/libappindicator:3[introspection] - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-libs/gtk+:3[introspection] - x11-libs/libnotify[introspection] - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-2.1.1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.1.ebuild deleted file mode 100644 index 3371d997dd1d.. --- a/x11-misc/safeeyes/safeeyes-2.1.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -CDEPEND="${PYTHON_DEPS}" -DEPEND="${CDEPEND} - >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] - " -RDEPEND="${CDEPEND} - dev-libs/libappindicator:3[introspection] - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/croniter[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: c34225108256439100685ef87bf2074348b95f8b Author: Sebastian Pipping gentoo org> AuthorDate: Tue Nov 22 02:13:36 2022 + Commit: Sebastian Pipping gentoo org> CommitDate: Tue Nov 22 02:15:38 2022 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3422510 x11-misc/safeeyes: 2.1.4 + EAPI 8 + py311 + Python USE fix for Xlib/tk Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.4.ebuild | 47 + 2 files changed, 48 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 4bd148f1a32d..8978399f03aa 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -2,3 +2,4 @@ DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff41353 DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e SHA512 ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1 DIST safeeyes-2.1.2.tar.gz 348431 BLAKE2B 03d51c435f62e00703aba4c1224a5a961b1a187d22e3470993a7bb4c2537dc27dfe784d4c53403905853fa79aaa1ef8e8bfb2333045a2e0d2ec48452483baa7f SHA512 2d67c198fbbf7d5813d900450c6608870f5ca692f533cbb68d36e7f34e197e2e9b52b3210b328318d5c64fc430092748ddd2dfa6e493a585fdada920f933a434 DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723 SHA512 8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48 +DIST safeeyes-2.1.4.tar.gz 383245 BLAKE2B 307d58fd589c0a8b01f0c20c21f06a0f81b0d8a43f81e71e79a273a124e00df7cdd2c7c498a4918f6b56abc03fa7cb58db231124a96806a2fe60d6f9dab7f6c8 SHA512 547d00f18e06679464e225ab62f76c43e8efb733e945ae93c02c7cf55ab0bcf5fc078ffc41ad2842a324fff2513050cced404e8bd53d63b78ba7fb1f862c1ad3 diff --git a/x11-misc/safeeyes/safeeyes-2.1.4.ebuild b/x11-misc/safeeyes/safeeyes-2.1.4.ebuild new file mode 100644 index ..a23286174f04 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.4.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" +IUSE="" + +RDEPEND=" + dev-libs/libappindicator:3[introspection] + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 31799bfc07e3dfe5de839bda53a1d7ae14dfdb58 Author: Marek Szuba gentoo org> AuthorDate: Mon Oct 11 19:57:14 2021 + Commit: Marek Szuba gentoo org> CommitDate: Tue Oct 12 07:41:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31799bfc x11-misc/safeeyes: keyword 2.1.3-r1 for ~riscv Signed-off-by: Marek Szuba gentoo.org> x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild index a8758f0a686..d32153bf1da 100644 --- a/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..10} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit xdg distutils-r1 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~riscv ~x86" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: d8aa2a2a13b3e02c8cfb6877499ff31fe43c6449 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Sep 5 00:16:26 2021 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Sep 5 00:16:26 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8aa2a2a x11-misc/safeeyes: Update DISTUTILS_USE_SETUPTOOLS + py3.10 Closes: https://bugs.gentoo.org/811396 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.22, Repoman-3.0.3 x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild | 46 ++ 1 file changed, 46 insertions(+) diff --git a/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild new file mode 100644 index 000..a8758f0a686 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.3-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..10} ) + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-libs/libappindicator:3[introspection] + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 85e181205cb42aa160d79ca3fcf38d7000b4201d Author: Sebastian Pipping gentoo org> AuthorDate: Thu Apr 22 14:13:52 2021 + Commit: Sebastian Pipping gentoo org> CommitDate: Fri Apr 30 00:26:29 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e18120 x11-misc/safeeyes: 2.1.3 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.18, Repoman-3.0.3 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.3.ebuild | 51 + 2 files changed, 52 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 77be1d20363..4bd148f1a32 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1,4 @@ DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e SHA512 ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1 DIST safeeyes-2.1.2.tar.gz 348431 BLAKE2B 03d51c435f62e00703aba4c1224a5a961b1a187d22e3470993a7bb4c2537dc27dfe784d4c53403905853fa79aaa1ef8e8bfb2333045a2e0d2ec48452483baa7f SHA512 2d67c198fbbf7d5813d900450c6608870f5ca692f533cbb68d36e7f34e197e2e9b52b3210b328318d5c64fc430092748ddd2dfa6e493a585fdada920f933a434 +DIST safeeyes-2.1.3.tar.gz 354494 BLAKE2B 5f7977a8de280f5022cb226689c5b1d48f494932babd014b9ee8affcf9aaa0ef8dfe3ed18c33dbfa4ebaf1c5bfdbed4efc3b69c1ce3065e3ff3c82e83fa71723 SHA512 8a708b3e8f40f75659092a2effb0318b0fb7f47345e3f430f6b83ff2fc3c7de46b2dc881bf69902055bc8233f539946e60822e6ab7a6149f2c99441af1191f48 diff --git a/x11-misc/safeeyes/safeeyes-2.1.3.ebuild b/x11-misc/safeeyes/safeeyes-2.1.3.ebuild new file mode 100644 index 000..9f1c4ee6589 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3[introspection] + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: b55c8e7cdd8f563174b99bd62a2eea436c2063ea Author: Sebastian Pipping gentoo org> AuthorDate: Mon Feb 15 00:22:59 2021 + Commit: Sebastian Pipping gentoo org> CommitDate: Mon Feb 15 00:22:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b55c8e7c x11-misc/safeeyes: 2.1.2 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.14, Repoman-3.0.2 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.1.2.ebuild | 51 + 2 files changed, 52 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 21a2a15d608..77be1d20363 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,2 +1,3 @@ DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e SHA512 ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1 +DIST safeeyes-2.1.2.tar.gz 348431 BLAKE2B 03d51c435f62e00703aba4c1224a5a961b1a187d22e3470993a7bb4c2537dc27dfe784d4c53403905853fa79aaa1ef8e8bfb2333045a2e0d2ec48452483baa7f SHA512 2d67c198fbbf7d5813d900450c6608870f5ca692f533cbb68d36e7f34e197e2e9b52b3210b328318d5c64fc430092748ddd2dfa6e493a585fdada920f933a434 diff --git a/x11-misc/safeeyes/safeeyes-2.1.2.ebuild b/x11-misc/safeeyes/safeeyes-2.1.2.ebuild new file mode 100644 index 000..9f1c4ee6589 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3[introspection] + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 2c23770271229055dce9c4687e5057c1070ef143 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Dec 26 15:51:41 2020 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Dec 26 15:52:40 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c237702 x11-misc/safeeyes: 2.1.1 + add missing deps Closes: https://bugs.gentoo.org/761316 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.12, Repoman-3.0.2 x11-misc/safeeyes/Manifest | 1 + .../safeeyes/{safeeyes-2.0.9-r1.ebuild => safeeyes-2.0.9-r2.ebuild} | 4 +++- .../safeeyes/{safeeyes-2.0.9-r1.ebuild => safeeyes-2.1.1.ebuild} | 5 - 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 5ad0f9486da..21a2a15d608 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1 +1,2 @@ DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 +DIST safeeyes-2.1.1.tar.gz 342791 BLAKE2B 0051267daacb1a8f5dcd6c88c0132d09483cc5181c59a19f34b956ea97672a44fbefc78b8b1ec2223428df159dab3074280afd3069618dc3b3257f3703e9078e SHA512 ad1f7810646010902b30effc899743c986a5bc56734f6ded0f22f0e428ec772b419aa11348d75c406f931b126737a809fabf9e029a4936976f889714629ac0b1 diff --git a/x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild similarity index 89% copy from x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild copy to x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild index fe34e0ec470..645b84ffc08 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.9-r2.ebuild @@ -22,7 +22,7 @@ DEPEND="${CDEPEND} >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] " RDEPEND="${CDEPEND} - dev-libs/libappindicator:3 + dev-libs/libappindicator:3[introspection] dev-python/Babel[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] @@ -30,6 +30,8 @@ RDEPEND="${CDEPEND} dev-python/python-xlib[${PYTHON_USEDEP}] media-sound/alsa-utils x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] x11-misc/xprintidle " diff --git a/x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.1.ebuild similarity index 86% rename from x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild rename to x11-misc/safeeyes/safeeyes-2.1.1.ebuild index fe34e0ec470..99a979b206a 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.1.1.ebuild @@ -22,14 +22,17 @@ DEPEND="${CDEPEND} >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] " RDEPEND="${CDEPEND} - dev-libs/libappindicator:3 + dev-libs/libappindicator:3[introspection] dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] dev-python/pygobject:3[${PYTHON_USEDEP}] dev-python/python-xlib[${PYTHON_USEDEP}] media-sound/alsa-utils x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] x11-misc/xprintidle "
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: dc0ad595fe78b0c19a437bcb400320cb9c137de4 Author: Sebastian Pipping gentoo org> AuthorDate: Mon Dec 7 14:46:23 2020 + Commit: Sebastian Pipping gentoo org> CommitDate: Mon Dec 7 14:50:08 2020 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0ad595 x11-misc/safeeyes: EAPI 7 + de-warn PythonCompatUpdate Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.0, Repoman-2.3.23 x11-misc/safeeyes/Manifest | 2 - x11-misc/safeeyes/safeeyes-2.0.8.ebuild| 50 -- ...yes-2.0.8.1.ebuild => safeeyes-2.0.9-r1.ebuild} | 16 +++ x11-misc/safeeyes/safeeyes-2.0.9.ebuild| 50 -- 4 files changed, 7 insertions(+), 111 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 9aa91080cf1..5ad0f9486da 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1 @@ -DIST safeeyes-2.0.8.1.tar.gz 314379 BLAKE2B 9a54dfcda3027ecb12261b5e90f5526c4011ddc07bcaa8f80357b60738a5a03673136c5597e0f1414894b548d10a52da13f7cac4bd418c0534c341bcf3b5397a SHA512 06b53d6baad479e4143ae65cc37d01367ff73875083817511903692f493f01f5704a1f37ac95c4ec4aaa66040ec0aa1424e6a76fbea0676584fd531c1547b0a7 -DIST safeeyes-2.0.8.tar.gz 304438 BLAKE2B 5f6b36ae0d214e33035d1a3f7856c2eacd8407b2586365f7c914d69a5744a4d1488f5bcbc1d1c7112b9f237ccdbfa7839c426048e88d2e19e56cf550da33ecfa SHA512 6e7669d9ee6b2167c23307108544b3a3b4a4161fe819569fc7920a7e24af94701b053a2e147f83ce0300a0112e2a66d500055fc722eba89208b6c0cd86b49f38 DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 diff --git a/x11-misc/safeeyes/safeeyes-2.0.8.ebuild b/x11-misc/safeeyes/safeeyes-2.0.8.ebuild deleted file mode 100644 index 583b24353a2..000 --- a/x11-misc/safeeyes/safeeyes-2.0.8.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) -inherit gnome2-utils xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -CDEPEND="${PYTHON_DEPS}" -DEPEND="${CDEPEND} - >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] - " -RDEPEND="${CDEPEND} - dev-libs/libappindicator:3 - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - gnome2_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild b/x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild similarity index 83% rename from x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild rename to x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild index 583b24353a2..fe34e0ec470 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.9-r1.ebuild @@ -1,10 +1,12 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) -inherit gnome2-utils xdg distutils-r1 +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit xdg distutils-r1 DESCRIPTION="Linux alternative to EyeLeo" HOMEPAGE="https://github.com/slgobinath/SafeEyes"; @@ -35,16 +37,12 @@ DOCS=( README.md ) -pkg_preinst() { - gnome2_icon_savelist -} - pkg_postinst() { xdg_desktop_database_update - gnome2_icon_cache_update + xdg_icon_cache_update } pkg_postrm() { xdg_desktop_database_update - gnome2_icon_cache_update + xdg_icon_cache_update } diff --git a/x11-misc/safeeyes/safeeyes-2.0.9.ebuild b/x11-misc/safeeyes/safeeyes-2.0.9.ebuild deleted file mode 100644 index 583b24353a2..000 --- a/x11-misc/safeeyes/safeeyes-2.0.9.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) -inherit gnome2-utils xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 1858ec18a144ae04dfc638ad3ee1c91244945057 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Mar 31 17:17:11 2019 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Mar 31 17:18:16 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1858ec18 x11-misc/safeeyes: 2.0.9 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.9.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 89c4a60b970..8a5b1a1894a 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -5,3 +5,4 @@ DIST safeeyes-2.0.6.tar.gz 313974 BLAKE2B 6ee2c0bd7b6c3c4de4213b30b6dc445ae04ba1 DIST safeeyes-2.0.6_p15.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 DIST safeeyes-2.0.8.1.tar.gz 314379 BLAKE2B 9a54dfcda3027ecb12261b5e90f5526c4011ddc07bcaa8f80357b60738a5a03673136c5597e0f1414894b548d10a52da13f7cac4bd418c0534c341bcf3b5397a SHA512 06b53d6baad479e4143ae65cc37d01367ff73875083817511903692f493f01f5704a1f37ac95c4ec4aaa66040ec0aa1424e6a76fbea0676584fd531c1547b0a7 DIST safeeyes-2.0.8.tar.gz 304438 BLAKE2B 5f6b36ae0d214e33035d1a3f7856c2eacd8407b2586365f7c914d69a5744a4d1488f5bcbc1d1c7112b9f237ccdbfa7839c426048e88d2e19e56cf550da33ecfa SHA512 6e7669d9ee6b2167c23307108544b3a3b4a4161fe819569fc7920a7e24af94701b053a2e147f83ce0300a0112e2a66d500055fc722eba89208b6c0cd86b49f38 +DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 diff --git a/x11-misc/safeeyes/safeeyes-2.0.9.ebuild b/x11-misc/safeeyes/safeeyes-2.0.9.ebuild new file mode 100644 index 000..1980a39f296 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.9.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6,7} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 15198ec8cfefc8a18d082a0a22bd742c14d27d0f Author: Sebastian Pipping gentoo org> AuthorDate: Sun Mar 31 17:17:47 2019 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Mar 31 17:18:16 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15198ec8 x11-misc/safeeyes: Clean old Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/safeeyes/Manifest | 5 --- x11-misc/safeeyes/safeeyes-2.0.2.ebuild | 50 --- x11-misc/safeeyes/safeeyes-2.0.4.ebuild | 50 --- x11-misc/safeeyes/safeeyes-2.0.5.ebuild | 50 --- x11-misc/safeeyes/safeeyes-2.0.6.ebuild | 50 --- x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild | 53 - 6 files changed, 258 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 8a5b1a1894a..9aa91080cf1 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,8 +1,3 @@ -DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 -DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6 -DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 -DIST safeeyes-2.0.6.tar.gz 313974 BLAKE2B 6ee2c0bd7b6c3c4de4213b30b6dc445ae04ba1919d2675d3b06d5e7b699641dd82404a7a0b44ed311a5f24cab7be0a37fa1262aef3de3f1fd98c66b098c20df8 SHA512 864aaa94d43e5595623b6fbe9c8408e27be1b7ece0192daf22b3d6886064ccb20caefbde035cb12fbf8d612d1c2535f9db24d2025b1747ef4a72733881440dba -DIST safeeyes-2.0.6_p15.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 DIST safeeyes-2.0.8.1.tar.gz 314379 BLAKE2B 9a54dfcda3027ecb12261b5e90f5526c4011ddc07bcaa8f80357b60738a5a03673136c5597e0f1414894b548d10a52da13f7cac4bd418c0534c341bcf3b5397a SHA512 06b53d6baad479e4143ae65cc37d01367ff73875083817511903692f493f01f5704a1f37ac95c4ec4aaa66040ec0aa1424e6a76fbea0676584fd531c1547b0a7 DIST safeeyes-2.0.8.tar.gz 304438 BLAKE2B 5f6b36ae0d214e33035d1a3f7856c2eacd8407b2586365f7c914d69a5744a4d1488f5bcbc1d1c7112b9f237ccdbfa7839c426048e88d2e19e56cf550da33ecfa SHA512 6e7669d9ee6b2167c23307108544b3a3b4a4161fe819569fc7920a7e24af94701b053a2e147f83ce0300a0112e2a66d500055fc722eba89208b6c0cd86b49f38 DIST safeeyes-2.0.9.tar.gz 291147 BLAKE2B 61f56b7c73964f1663eff4da7965c54ff413535d55fcb3c4dbe2b5caef6f1d8e7330d5191711b87f274cbbf4458d0dff2c0dd6f5531755c556d81455438b46cc SHA512 6a168686faa716bc1da9966250bb55654ccab926775207ff1c2104b2da802ccbd50f916ed9f7cec55ffe2b5b12ea63b5bdefcfbf35f044a7fb9ba9cb4918b2b2 diff --git a/x11-misc/safeeyes/safeeyes-2.0.2.ebuild b/x11-misc/safeeyes/safeeyes-2.0.2.ebuild deleted file mode 100644 index e071dcfa59f..000 --- a/x11-misc/safeeyes/safeeyes-2.0.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) -inherit gnome2-utils xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -CDEPEND="${PYTHON_DEPS}" -DEPEND="${CDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - " -RDEPEND="${CDEPEND} - dev-libs/libappindicator:3 - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-sound/alsa-utils - x11-apps/xprop - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - gnome2_icon_cache_update -} diff --git a/x11-
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 076e8a1b2028f510f3d7ef53123a70b5725731a5 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Mar 9 14:56:46 2019 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Mar 9 16:33:36 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=076e8a1b x11-misc/safeeyes: 2.0.8.1 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/safeeyes/Manifest| 1 + x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild | 50 +++ 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index d2fb114058f..89c4a60b970 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -3,4 +3,5 @@ DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 DIST safeeyes-2.0.6.tar.gz 313974 BLAKE2B 6ee2c0bd7b6c3c4de4213b30b6dc445ae04ba1919d2675d3b06d5e7b699641dd82404a7a0b44ed311a5f24cab7be0a37fa1262aef3de3f1fd98c66b098c20df8 SHA512 864aaa94d43e5595623b6fbe9c8408e27be1b7ece0192daf22b3d6886064ccb20caefbde035cb12fbf8d612d1c2535f9db24d2025b1747ef4a72733881440dba DIST safeeyes-2.0.6_p15.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 +DIST safeeyes-2.0.8.1.tar.gz 314379 BLAKE2B 9a54dfcda3027ecb12261b5e90f5526c4011ddc07bcaa8f80357b60738a5a03673136c5597e0f1414894b548d10a52da13f7cac4bd418c0534c341bcf3b5397a SHA512 06b53d6baad479e4143ae65cc37d01367ff73875083817511903692f493f01f5704a1f37ac95c4ec4aaa66040ec0aa1424e6a76fbea0676584fd531c1547b0a7 DIST safeeyes-2.0.8.tar.gz 304438 BLAKE2B 5f6b36ae0d214e33035d1a3f7856c2eacd8407b2586365f7c914d69a5744a4d1488f5bcbc1d1c7112b9f237ccdbfa7839c426048e88d2e19e56cf550da33ecfa SHA512 6e7669d9ee6b2167c23307108544b3a3b4a4161fe819569fc7920a7e24af94701b053a2e147f83ce0300a0112e2a66d500055fc722eba89208b6c0cd86b49f38 diff --git a/x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild b/x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild new file mode 100644 index 000..1980a39f296 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.8.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6,7} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: e4c7f98403d6252220024fcfc7f8d03845c71433 Author: Sebastian Pipping gentoo org> AuthorDate: Tue Jan 22 13:43:54 2019 + Commit: Sebastian Pipping gentoo org> CommitDate: Tue Jan 22 13:49:11 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c7f984 x11-misc/safeeyes: 2.0.8 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.8.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 5305b5fe61e..d2fb114058f 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -3,3 +3,4 @@ DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 DIST safeeyes-2.0.6.tar.gz 313974 BLAKE2B 6ee2c0bd7b6c3c4de4213b30b6dc445ae04ba1919d2675d3b06d5e7b699641dd82404a7a0b44ed311a5f24cab7be0a37fa1262aef3de3f1fd98c66b098c20df8 SHA512 864aaa94d43e5595623b6fbe9c8408e27be1b7ece0192daf22b3d6886064ccb20caefbde035cb12fbf8d612d1c2535f9db24d2025b1747ef4a72733881440dba DIST safeeyes-2.0.6_p15.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 +DIST safeeyes-2.0.8.tar.gz 304438 BLAKE2B 5f6b36ae0d214e33035d1a3f7856c2eacd8407b2586365f7c914d69a5744a4d1488f5bcbc1d1c7112b9f237ccdbfa7839c426048e88d2e19e56cf550da33ecfa SHA512 6e7669d9ee6b2167c23307108544b3a3b4a4161fe819569fc7920a7e24af94701b053a2e147f83ce0300a0112e2a66d500055fc722eba89208b6c0cd86b49f38 diff --git a/x11-misc/safeeyes/safeeyes-2.0.8.ebuild b/x11-misc/safeeyes/safeeyes-2.0.8.ebuild new file mode 100644 index 000..1980a39f296 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.8.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6,7} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 9c621e4dc7335efc2b1c7ea58ee58be8921946b4 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Oct 31 23:04:21 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Wed Oct 31 23:04:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c621e4d x11-misc/safeeyes: Fix 2.0.6_p15 filename for mirrors Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/safeeyes/Manifest | 2 +- x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 25fdc896649..5305b5fe61e 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,5 +1,5 @@ -DIST 65fc4043a6ee4c1087f40a8e7b480645776c7b4e.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6 DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 DIST safeeyes-2.0.6.tar.gz 313974 BLAKE2B 6ee2c0bd7b6c3c4de4213b30b6dc445ae04ba1919d2675d3b06d5e7b699641dd82404a7a0b44ed311a5f24cab7be0a37fa1262aef3de3f1fd98c66b098c20df8 SHA512 864aaa94d43e5595623b6fbe9c8408e27be1b7ece0192daf22b3d6886064ccb20caefbde035cb12fbf8d612d1c2535f9db24d2025b1747ef4a72733881440dba +DIST safeeyes-2.0.6_p15.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 diff --git a/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild b/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild index d9dd24cdec5..10dbe0104a5 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild @@ -9,7 +9,7 @@ inherit gnome2-utils xdg distutils-r1 MY_PV=65fc4043a6ee4c1087f40a8e7b480645776c7b4e DESCRIPTION="Linux alternative to EyeLeo" HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="https://github.com/slgobinath/SafeEyes/archive/${MY_PV}.tar.gz"; +SRC_URI="https://github.com/slgobinath/SafeEyes/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 1c81a79e25867c100bac9c45445da1c0f73254ed Author: Sebastian Pipping gentoo org> AuthorDate: Wed Oct 31 16:03:53 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Wed Oct 31 16:04:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c81a79e x11-misc/safeeyes: 2.0.6_p15 (with postpone-until-idle feature) Related: https://github.com/slgobinath/SafeEyes/issues/261#issuecomment-434551505 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild | 53 + 2 files changed, 54 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index fe027715672..25fdc896649 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1,4 @@ +DIST 65fc4043a6ee4c1087f40a8e7b480645776c7b4e.tar.gz 264889 BLAKE2B 8680e119587a06f2290769f550c027e6969baac5f518fb26d9f4c700e30e29c9505ca5c4f4093eb9240b24059cd0e85457c942d5cc0d0da3ab15a26e954c SHA512 1f819752728afe62cbd1e793b23a9958ce43e55989b66c2958547184fad54f45a807b17f2605821083f46b890c5fbc2971846c9721ecfaca0e730cacd4cca219 DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6 DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 diff --git a/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild b/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild new file mode 100644 index 000..d9dd24cdec5 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.6_p15.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +MY_PV=65fc4043a6ee4c1087f40a8e7b480645776c7b4e +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="https://github.com/slgobinath/SafeEyes/archive/${MY_PV}.tar.gz"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-misc/xprintidle + " + +S="${WORKDIR}"/SafeEyes-${MY_PV} + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 79029e88e35c841c1ded1e36fccb6beba18e2d38 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Jul 8 16:46:26 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Jul 8 16:46:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79029e88 x11-misc/safeeyes: Fix audio dependency Closes: https://bugs.gentoo.org/660330 Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/safeeyes/safeeyes-2.0.2.ebuild | 4 ++-- x11-misc/safeeyes/safeeyes-2.0.4.ebuild | 4 ++-- x11-misc/safeeyes/safeeyes-2.0.5.ebuild | 4 ++-- x11-misc/safeeyes/safeeyes-2.0.6.ebuild | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/x11-misc/safeeyes/safeeyes-2.0.2.ebuild b/x11-misc/safeeyes/safeeyes-2.0.2.ebuild index ebf1e7c7347..e071dcfa59f 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.2.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="portaudio" +IUSE="" CDEPEND="${PYTHON_DEPS}" DEPEND="${CDEPEND} @@ -24,9 +24,9 @@ RDEPEND="${CDEPEND} dev-python/Babel[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] - portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) dev-python/pygobject:3[${PYTHON_USEDEP}] dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils x11-apps/xprop x11-misc/xprintidle " diff --git a/x11-misc/safeeyes/safeeyes-2.0.4.ebuild b/x11-misc/safeeyes/safeeyes-2.0.4.ebuild index ebf1e7c7347..e071dcfa59f 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.4.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.4.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="portaudio" +IUSE="" CDEPEND="${PYTHON_DEPS}" DEPEND="${CDEPEND} @@ -24,9 +24,9 @@ RDEPEND="${CDEPEND} dev-python/Babel[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] - portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) dev-python/pygobject:3[${PYTHON_USEDEP}] dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils x11-apps/xprop x11-misc/xprintidle " diff --git a/x11-misc/safeeyes/safeeyes-2.0.5.ebuild b/x11-misc/safeeyes/safeeyes-2.0.5.ebuild index ebf1e7c7347..e071dcfa59f 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.5.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="portaudio" +IUSE="" CDEPEND="${PYTHON_DEPS}" DEPEND="${CDEPEND} @@ -24,9 +24,9 @@ RDEPEND="${CDEPEND} dev-python/Babel[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] - portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) dev-python/pygobject:3[${PYTHON_USEDEP}] dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils x11-apps/xprop x11-misc/xprintidle " diff --git a/x11-misc/safeeyes/safeeyes-2.0.6.ebuild b/x11-misc/safeeyes/safeeyes-2.0.6.ebuild index 9aae9642548..f240b0ed0b0 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.6.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.6.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="portaudio" +IUSE="" CDEPEND="${PYTHON_DEPS}" DEPEND="${CDEPEND} @@ -24,9 +24,9 @@ RDEPEND="${CDEPEND} dev-python/Babel[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] - portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) dev-python/pygobject:3[${PYTHON_USEDEP}] dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils x11-apps/xprop x11-misc/xprintidle "
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 080fe36a24e06f16ef7c7f0134272387c16a76fe Author: Sebastian Pipping gentoo org> AuthorDate: Mon Jul 2 19:41:19 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Mon Jul 2 19:45:36 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=080fe36a x11-misc/safeeyes: Fix setuptools depndency Bug: https://bugs.gentoo.org/659318 Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/safeeyes/safeeyes-2.0.6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-misc/safeeyes/safeeyes-2.0.6.ebuild b/x11-misc/safeeyes/safeeyes-2.0.6.ebuild index ebf1e7c7347..9aae9642548 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.6.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.6.ebuild @@ -17,7 +17,7 @@ IUSE="portaudio" CDEPEND="${PYTHON_DEPS}" DEPEND="${CDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/setuptools-38.6.0[${PYTHON_USEDEP}] " RDEPEND="${CDEPEND} dev-libs/libappindicator:3
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 1e9e084e5298fff0628cb84ae74693999069beba Author: Sebastian Pipping gentoo org> AuthorDate: Sun Jul 1 17:27:59 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Jul 1 17:28:49 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e9e084e x11-misc/safeeyes: 2.0.6 Closes: https://bugs.gentoo.org/659318 Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.6.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index ccd61240421..fe027715672 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1,4 @@ DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6 DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 +DIST safeeyes-2.0.6.tar.gz 313974 BLAKE2B 6ee2c0bd7b6c3c4de4213b30b6dc445ae04ba1919d2675d3b06d5e7b699641dd82404a7a0b44ed311a5f24cab7be0a37fa1262aef3de3f1fd98c66b098c20df8 SHA512 864aaa94d43e5595623b6fbe9c8408e27be1b7ece0192daf22b3d6886064ccb20caefbde035cb12fbf8d612d1c2535f9db24d2025b1747ef4a72733881440dba diff --git a/x11-misc/safeeyes/safeeyes-2.0.6.ebuild b/x11-misc/safeeyes/safeeyes-2.0.6.ebuild new file mode 100644 index 000..ebf1e7c7347 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.6.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="portaudio" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: c4f0590739e98c86ed8867302ff589bf821194e9 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Mar 21 15:30:20 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Wed Mar 21 15:32:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4f05907 x11-misc/safeeyes: 2.0.5 Package-Manager: Portage-2.3.24, Repoman-2.3.6 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.5.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index a2d3b953057..ccd61240421 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,2 +1,3 @@ DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6 +DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9 diff --git a/x11-misc/safeeyes/safeeyes-2.0.5.ebuild b/x11-misc/safeeyes/safeeyes-2.0.5.ebuild new file mode 100644 index 000..ebf1e7c7347 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.5.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="portaudio" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 0ad249cfd7e579992ec9849ad4a8cbee6ce55060 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Feb 10 15:28:19 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Feb 10 15:46:18 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad249cf x11-misc/safeeyes: 2.0.4 Package-Manager: Portage-2.3.24, Repoman-2.3.6 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.4.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 26af421a664..a2d3b953057 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1 +1,2 @@ DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 +DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6 diff --git a/x11-misc/safeeyes/safeeyes-2.0.4.ebuild b/x11-misc/safeeyes/safeeyes-2.0.4.ebuild new file mode 100644 index 000..ebf1e7c7347 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="portaudio" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: e7b24cb7e8090498a99ec9f6aaf3bd52897a8d35 Author: Sebastian Pipping gentoo org> AuthorDate: Thu Jan 18 00:03:29 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Thu Jan 18 00:03:29 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b24cb7 x11-misc/safeeyes: Drop old Package-Manager: Portage-2.3.19, Repoman-2.3.6 x11-misc/safeeyes/Manifest | 3 -- x11-misc/safeeyes/safeeyes-1.2.1.ebuild | 50 - x11-misc/safeeyes/safeeyes-1.2.2.ebuild | 50 - x11-misc/safeeyes/safeeyes-2.0.0.ebuild | 50 - 4 files changed, 153 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index c552b2657de..26af421a664 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,4 +1 @@ -DIST safeeyes-1.2.1.tar.gz 137676 BLAKE2B f19d4781b14a41aba79ba13a5adc52843111a2ea0056f6505ee08f21a6f16a17e8e89f29f719b114e275c4285dfec9431672dafe1ecfb4c57a974ca34786a263 SHA512 a2a31fd1b0e31403a8e2bd938e19b317a5ebcee66ce1fa29d1b00e4ed9f7b78281bfac5fff1486166f4093211c515e5d06577d47251a711e9b92af24c56f6b5c -DIST safeeyes-1.2.2.tar.gz 146517 BLAKE2B 6df368e177c54b4221a88b4e01fe484bc0bfad52354976fed70f85f3271dcd7763ee6ed47f4250fae375b86ec26f2fbc93bf0411925666535419cb4080464c04 SHA512 3a693bd2976106c8b2e6e131acb1667a52610348c5f0cb6e76e9b1290bf633a0cbfe34632330163dd754df19f600a5781d5b2ef05102194dbcb0de4cc6a9869e -DIST safeeyes-2.0.0.tar.gz 179036 BLAKE2B c35de1fb28076374ea112eae422f0ebeb8e0bdc1fd1060558436e3d4e1194a91df6f6e9f0cbbafa2b5919262f1678b946492305e9163d8a626487b22e8bbb7fc SHA512 b3a655a761fb24b8fee5455d29b2333b8d5b60a7c759a38df0fa1fd608e3a35dccb24a8aeaae87fde5e7cbe1df7569c2bb5897076e1d0cc4d96c98a029249881 DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 diff --git a/x11-misc/safeeyes/safeeyes-1.2.1.ebuild b/x11-misc/safeeyes/safeeyes-1.2.1.ebuild deleted file mode 100644 index 6305f53b5b4..000 --- a/x11-misc/safeeyes/safeeyes-1.2.1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) -inherit gnome2-utils xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -CDEPEND="${PYTHON_DEPS}" -DEPEND="${CDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - " -RDEPEND="${CDEPEND} - dev-libs/libappindicator:3 - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pyaudio[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - x11-apps/xprop - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - gnome2_icon_cache_update -} diff --git a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild deleted file mode 100644 index 98d9b9cc112..000 --- a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) -inherit gnome2-utils xdg distutils-r1 - -DESCRIPTION="Linux alternative to EyeLeo" -HOMEPAGE="https://github.com/slgobinath/SafeEyes"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="portaudio" - -CDEPEND="${PYTHON_DEPS}" -DEPEND="${CDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - " -RDEPEND="${CDEPEND} - dev-libs/libappindicator:3 - dev-python/Babel[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - x11-apps/xprop - x11-misc/xprintidle - " - -DOCS=( - README.md -) - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - gnome2_icon_cache_update -} diff --git a/x11-misc/safeeyes/sa
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/, x11-misc/safeeyes/files/
commit: ddc495f8f5bb2db36f22aa6f953f961bfcc7216d Author: Sebastian Pipping gentoo org> AuthorDate: Thu Jan 4 20:20:01 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Thu Jan 4 20:20:46 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddc495f8 x11-misc/safeeyes: 2.0.2, remove 2.0.1 Related: https://github.com/slgobinath/SafeEyes/issues/224 Package-Manager: Portage-2.3.16, Repoman-2.3.6 x11-misc/safeeyes/Manifest | 2 +- .../safeeyes/files/safeeyes-2.0.1-setup-py.patch | 37 -- ...safeeyes-2.0.1.ebuild => safeeyes-2.0.2.ebuild} | 5 --- 3 files changed, 1 insertion(+), 43 deletions(-) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 94ddd15740b..c552b2657de 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,4 +1,4 @@ DIST safeeyes-1.2.1.tar.gz 137676 BLAKE2B f19d4781b14a41aba79ba13a5adc52843111a2ea0056f6505ee08f21a6f16a17e8e89f29f719b114e275c4285dfec9431672dafe1ecfb4c57a974ca34786a263 SHA512 a2a31fd1b0e31403a8e2bd938e19b317a5ebcee66ce1fa29d1b00e4ed9f7b78281bfac5fff1486166f4093211c515e5d06577d47251a711e9b92af24c56f6b5c DIST safeeyes-1.2.2.tar.gz 146517 BLAKE2B 6df368e177c54b4221a88b4e01fe484bc0bfad52354976fed70f85f3271dcd7763ee6ed47f4250fae375b86ec26f2fbc93bf0411925666535419cb4080464c04 SHA512 3a693bd2976106c8b2e6e131acb1667a52610348c5f0cb6e76e9b1290bf633a0cbfe34632330163dd754df19f600a5781d5b2ef05102194dbcb0de4cc6a9869e DIST safeeyes-2.0.0.tar.gz 179036 BLAKE2B c35de1fb28076374ea112eae422f0ebeb8e0bdc1fd1060558436e3d4e1194a91df6f6e9f0cbbafa2b5919262f1678b946492305e9163d8a626487b22e8bbb7fc SHA512 b3a655a761fb24b8fee5455d29b2333b8d5b60a7c759a38df0fa1fd608e3a35dccb24a8aeaae87fde5e7cbe1df7569c2bb5897076e1d0cc4d96c98a029249881 -DIST safeeyes-2.0.1.tar.gz 211680 BLAKE2B fba6ed8bc3d9e9c4c953e4746c81faf96448b4bf5a15c8008061e596dfcd418d852e5c273a06dae70bdf7f6bc89bd0b142d602208efce8c6c076e04fad908b1d SHA512 77c26fd04d7a5a801bc12be182bb5b60e293b83acad88264b5d267b9a620d8300baf21399257765d7dd9a297cebd3acb256ffc1eff29fb478c22c5f9aa4f0de3 +DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6 diff --git a/x11-misc/safeeyes/files/safeeyes-2.0.1-setup-py.patch b/x11-misc/safeeyes/files/safeeyes-2.0.1-setup-py.patch deleted file mode 100644 index 777c5d2e5be..000 --- a/x11-misc/safeeyes/files/safeeyes-2.0.1-setup-py.patch +++ /dev/null @@ -1,37 +0,0 @@ -From a3373aa9b0a5bf473357b337f5f0944552831262 Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping -Date: Wed, 3 Jan 2018 19:17:22 +0100 -Subject: [PATCH] Fix start-up crash from broken PyGObject dependency - -$ safeeyes -Traceback (most recent call last): - File "/usr/lib/python-exec/python3.5/safeeyes", line 6, in -from pkg_resources import load_entry_point - [..] - File "/usr/lib64/python3.5/site-packages/pkg_resources/__init__.py", line 870, in resolve -raise DistributionNotFound(req, requirers) -pkg_resources.DistributionNotFound: The 'gi' distribution was not found and is required by safeeyes - -$ python3.5 -c 'import gi; print(gi.__file__)' -/usr/lib64/python3.5/site-packages/gi/__init__.py - setup.py | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/setup.py b/setup.py -index e6e4ef1..5dff037 100644 a/setup.py -+++ b/setup.py -@@ -6,8 +6,7 @@ import setuptools - requires = [ - 'babel', --'dbus', --'gi', - 'psutil', -+'PyGObject', - 'python-xlib' - ] - --- -2.15.0 - diff --git a/x11-misc/safeeyes/safeeyes-2.0.1.ebuild b/x11-misc/safeeyes/safeeyes-2.0.2.ebuild similarity index 93% rename from x11-misc/safeeyes/safeeyes-2.0.1.ebuild rename to x11-misc/safeeyes/safeeyes-2.0.2.ebuild index dfa294d11aa..ebf1e7c7347 100644 --- a/x11-misc/safeeyes/safeeyes-2.0.1.ebuild +++ b/x11-misc/safeeyes/safeeyes-2.0.2.ebuild @@ -35,11 +35,6 @@ DOCS=( README.md ) -src_prepare() { - eapply "${FILESDIR}"/${P}-setup-py.patch - eapply_user -} - pkg_preinst() { gnome2_icon_savelist }
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/files/, x11-misc/safeeyes/
commit: 00ddbcbbeec0caa0aa7b04788baf793da46997a1 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Jan 3 18:57:24 2018 + Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jan 3 19:13:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ddbcbb x11-misc/safeeyes: 2.0.1 Package-Manager: Portage-2.3.16, Repoman-2.3.6 x11-misc/safeeyes/Manifest | 1 + .../safeeyes/files/safeeyes-2.0.1-setup-py.patch | 37 +++ x11-misc/safeeyes/safeeyes-2.0.1.ebuild| 55 ++ 3 files changed, 93 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index db087e8c3df..94ddd15740b 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,3 +1,4 @@ DIST safeeyes-1.2.1.tar.gz 137676 BLAKE2B f19d4781b14a41aba79ba13a5adc52843111a2ea0056f6505ee08f21a6f16a17e8e89f29f719b114e275c4285dfec9431672dafe1ecfb4c57a974ca34786a263 SHA512 a2a31fd1b0e31403a8e2bd938e19b317a5ebcee66ce1fa29d1b00e4ed9f7b78281bfac5fff1486166f4093211c515e5d06577d47251a711e9b92af24c56f6b5c DIST safeeyes-1.2.2.tar.gz 146517 BLAKE2B 6df368e177c54b4221a88b4e01fe484bc0bfad52354976fed70f85f3271dcd7763ee6ed47f4250fae375b86ec26f2fbc93bf0411925666535419cb4080464c04 SHA512 3a693bd2976106c8b2e6e131acb1667a52610348c5f0cb6e76e9b1290bf633a0cbfe34632330163dd754df19f600a5781d5b2ef05102194dbcb0de4cc6a9869e DIST safeeyes-2.0.0.tar.gz 179036 BLAKE2B c35de1fb28076374ea112eae422f0ebeb8e0bdc1fd1060558436e3d4e1194a91df6f6e9f0cbbafa2b5919262f1678b946492305e9163d8a626487b22e8bbb7fc SHA512 b3a655a761fb24b8fee5455d29b2333b8d5b60a7c759a38df0fa1fd608e3a35dccb24a8aeaae87fde5e7cbe1df7569c2bb5897076e1d0cc4d96c98a029249881 +DIST safeeyes-2.0.1.tar.gz 211680 BLAKE2B fba6ed8bc3d9e9c4c953e4746c81faf96448b4bf5a15c8008061e596dfcd418d852e5c273a06dae70bdf7f6bc89bd0b142d602208efce8c6c076e04fad908b1d SHA512 77c26fd04d7a5a801bc12be182bb5b60e293b83acad88264b5d267b9a620d8300baf21399257765d7dd9a297cebd3acb256ffc1eff29fb478c22c5f9aa4f0de3 diff --git a/x11-misc/safeeyes/files/safeeyes-2.0.1-setup-py.patch b/x11-misc/safeeyes/files/safeeyes-2.0.1-setup-py.patch new file mode 100644 index 000..777c5d2e5be --- /dev/null +++ b/x11-misc/safeeyes/files/safeeyes-2.0.1-setup-py.patch @@ -0,0 +1,37 @@ +From a3373aa9b0a5bf473357b337f5f0944552831262 Mon Sep 17 00:00:00 2001 +From: Sebastian Pipping +Date: Wed, 3 Jan 2018 19:17:22 +0100 +Subject: [PATCH] Fix start-up crash from broken PyGObject dependency + +$ safeeyes +Traceback (most recent call last): + File "/usr/lib/python-exec/python3.5/safeeyes", line 6, in +from pkg_resources import load_entry_point + [..] + File "/usr/lib64/python3.5/site-packages/pkg_resources/__init__.py", line 870, in resolve +raise DistributionNotFound(req, requirers) +pkg_resources.DistributionNotFound: The 'gi' distribution was not found and is required by safeeyes + +$ python3.5 -c 'import gi; print(gi.__file__)' +/usr/lib64/python3.5/site-packages/gi/__init__.py +--- + setup.py | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/setup.py b/setup.py +index e6e4ef1..5dff037 100644 +--- a/setup.py b/setup.py +@@ -6,8 +6,7 @@ import setuptools + requires = [ + 'babel', +-'dbus', +-'gi', + 'psutil', ++'PyGObject', + 'python-xlib' + ] + +-- +2.15.0 + diff --git a/x11-misc/safeeyes/safeeyes-2.0.1.ebuild b/x11-misc/safeeyes/safeeyes-2.0.1.ebuild new file mode 100644 index 000..dfa294d11aa --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="portaudio" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +src_prepare() { + eapply "${FILESDIR}"/${P}-setup-py.patch + eapply_user +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 38f0e09d2310046246383fe6c2f017e202ec024d Author: Sebastian Pipping gentoo org> AuthorDate: Tue Oct 17 18:40:41 2017 + Commit: Sebastian Pipping gentoo org> CommitDate: Tue Oct 17 18:42:38 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f0e09d x11-misc/safeeyes: 2.0.0 Package-Manager: Portage-2.3.10, Repoman-2.3.3 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-2.0.0.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 31cd2136837..a222efb9da1 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1,2 +1,3 @@ DIST safeeyes-1.2.1.tar.gz 137676 SHA256 08a2915d50c9bef6b375d2bbeb0909b0745293115603764306c5da06c621a35e SHA512 a2a31fd1b0e31403a8e2bd938e19b317a5ebcee66ce1fa29d1b00e4ed9f7b78281bfac5fff1486166f4093211c515e5d06577d47251a711e9b92af24c56f6b5c WHIRLPOOL 04661393094c6f01e9ca0cc9c54bfd8938c8e907d31ecccfc7f2a110819a34e35fb2de0f011a6f13d3a7a8453e4ae7289e26cba4caee6500878f9461aea9 DIST safeeyes-1.2.2.tar.gz 146517 SHA256 ccd7a882239b70994e62a7ad06058a4fba9607a0c3340a2c7ece0a71d96f992c SHA512 3a693bd2976106c8b2e6e131acb1667a52610348c5f0cb6e76e9b1290bf633a0cbfe34632330163dd754df19f600a5781d5b2ef05102194dbcb0de4cc6a9869e WHIRLPOOL 9c2ea47c41f117a352e3d42ec3c4c2d00222ed89d77b9ca5a6b34201dca1130f78b2066ae099c977e7324d671c9cade068d0a8d355ef497ac66e6a8978d6d53e +DIST safeeyes-2.0.0.tar.gz 179036 SHA256 6cff7d4820e3fe213b9197a5e04765a80e3ea9a0ea56efd114ae92cb7dfa9efb SHA512 b3a655a761fb24b8fee5455d29b2333b8d5b60a7c759a38df0fa1fd608e3a35dccb24a8aeaae87fde5e7cbe1df7569c2bb5897076e1d0cc4d96c98a029249881 WHIRLPOOL 10eafe4ec8c0a79e1a6b0bc6d45709aeef718bf726e52e177a3f4dcc9fabd7d3e2cd898e27369612f1b98ccab7503c2a6171dd3c0c4d726009faf5f8da4f8165 diff --git a/x11-misc/safeeyes/safeeyes-2.0.0.ebuild b/x11-misc/safeeyes/safeeyes-2.0.0.ebuild new file mode 100644 index 000..98d9b9cc112 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.0.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="portaudio" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: bb9e6d3811382c9432778e97f02f0a47572bf4dc Author: Sebastian Pipping gentoo org> AuthorDate: Tue Aug 15 18:49:02 2017 + Commit: Sebastian Pipping gentoo org> CommitDate: Tue Aug 15 18:51:35 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9e6d38 x11-misc/safeeyes: Optional PortAudio (bug #627896) Package-Manager: Portage-2.3.6, Repoman-2.3.3 x11-misc/safeeyes/safeeyes-1.2.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild index 6305f53b5b4..98d9b9cc112 100644 --- a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild +++ b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="portaudio" CDEPEND="${PYTHON_DEPS}" DEPEND="${CDEPEND} @@ -24,7 +24,7 @@ RDEPEND="${CDEPEND} dev-python/Babel[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] - dev-python/pyaudio[${PYTHON_USEDEP}] + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] ) dev-python/pygobject:3[${PYTHON_USEDEP}] dev-python/python-xlib[${PYTHON_USEDEP}] x11-apps/xprop
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: 7a8245f4e26df42da685d5c77a3c3faa5bc6d936 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Aug 13 01:22:25 2017 + Commit: Sebastian Pipping gentoo org> CommitDate: Sun Aug 13 01:22:25 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8245f4 x11-misc/safeeyes: 1.2.2 Package-Manager: Portage-2.3.6, Repoman-2.3.3 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/safeeyes-1.2.2.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest index 5abc627f857..31cd2136837 100644 --- a/x11-misc/safeeyes/Manifest +++ b/x11-misc/safeeyes/Manifest @@ -1 +1,2 @@ DIST safeeyes-1.2.1.tar.gz 137676 SHA256 08a2915d50c9bef6b375d2bbeb0909b0745293115603764306c5da06c621a35e SHA512 a2a31fd1b0e31403a8e2bd938e19b317a5ebcee66ce1fa29d1b00e4ed9f7b78281bfac5fff1486166f4093211c515e5d06577d47251a711e9b92af24c56f6b5c WHIRLPOOL 04661393094c6f01e9ca0cc9c54bfd8938c8e907d31ecccfc7f2a110819a34e35fb2de0f011a6f13d3a7a8453e4ae7289e26cba4caee6500878f9461aea9 +DIST safeeyes-1.2.2.tar.gz 146517 SHA256 ccd7a882239b70994e62a7ad06058a4fba9607a0c3340a2c7ece0a71d96f992c SHA512 3a693bd2976106c8b2e6e131acb1667a52610348c5f0cb6e76e9b1290bf633a0cbfe34632330163dd754df19f600a5781d5b2ef05102194dbcb0de4cc6a9869e WHIRLPOOL 9c2ea47c41f117a352e3d42ec3c4c2d00222ed89d77b9ca5a6b34201dca1130f78b2066ae099c977e7324d671c9cade068d0a8d355ef497ac66e6a8978d6d53e diff --git a/x11-misc/safeeyes/safeeyes-1.2.2.ebuild b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild new file mode 100644 index 000..6305f53b5b4 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-1.2.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pyaudio[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/, net-analyzer/zabbix/, dev-ruby/plist/
commit: 977c24facb0d085c884cbc104f24c1e66287ba67 Author: Justin Lecher gentoo org> AuthorDate: Sun Apr 30 10:18:13 2017 + Commit: Justin Lecher gentoo org> CommitDate: Sun Apr 30 10:18:13 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=977c24fa Globally add remote IDs in metadata.xml Clean empty upstream tags Signed-off-by: Justin Lecher gentoo.org> dev-ruby/plist/metadata.xml | 5 - net-analyzer/zabbix/metadata.xml | 32 +++- x11-misc/safeeyes/metadata.xml | 6 +- 3 files changed, 24 insertions(+), 19 deletions(-) diff --git a/dev-ruby/plist/metadata.xml b/dev-ruby/plist/metadata.xml index eb1e47f2edf..d2a2918c128 100644 --- a/dev-ruby/plist/metadata.xml +++ b/dev-ruby/plist/metadata.xml @@ -1,8 +1,11 @@ - + http://www.gentoo.org/dtd/metadata.dtd";> r...@gentoo.org Gentoo Ruby Project + + patsplat/plist + diff --git a/net-analyzer/zabbix/metadata.xml b/net-analyzer/zabbix/metadata.xml index 79eaaeb72c0..aec9f833cb0 100644 --- a/net-analyzer/zabbix/metadata.xml +++ b/net-analyzer/zabbix/metadata.xml @@ -1,4 +1,4 @@ - + http://www.gentoo.org/dtd/metadata.dtd";> @@ -9,25 +9,23 @@ ali...@gentoo.org Alice Ferrazzi - + ZABBIX is software for monitoring of your applications, network and servers. ZABBIX supports both polling and trapping techniques to collect data from monitored hosts. A flexible notification mechanism allows easy and quickly configure different types of notifications for pre-defined events. - - Enable zabbix agent (for to-be-monitored machines) - Enable zabbix web frontend - Turn on support of IPv6 - Enable proxy support - Enable openipmi things - Enable zabbix server - SSH v2 based checks - Enable Database Monitor and use UnixODBC Library by default - Build statically linked binaries - Enable Zabbix Java JMX Management Gateway - Use libxml2 client library - - - + +Enable zabbix agent (for to-be-monitored machines) +Enable zabbix web frontend +Turn on support of IPv6 +Enable proxy support +Enable openipmi things +Enable zabbix server +SSH v2 based checks +Enable Database Monitor and use UnixODBC Library by default +Build statically linked binaries +Enable Zabbix Java JMX Management Gateway +Use libxml2 client library + diff --git a/x11-misc/safeeyes/metadata.xml b/x11-misc/safeeyes/metadata.xml index 82b7b795379..8ff45602e15 100644 --- a/x11-misc/safeeyes/metadata.xml +++ b/x11-misc/safeeyes/metadata.xml @@ -1,7 +1,11 @@ - + http://www.gentoo.org/dtd/metadata.dtd";> sp...@gentoo.org + + slgobinath/SafeEyes + safeeyes +
[gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
commit: a5289693d45ba5e9fe471eeae4077691aca2e054 Author: Sebastian Pipping gentoo org> AuthorDate: Sat Apr 29 19:30:37 2017 + Commit: Sebastian Pipping gentoo org> CommitDate: Sat Apr 29 20:22:02 2017 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5289693 x11-misc/safeeyes: New package Package-Manager: Portage-2.3.5, Repoman-2.3.2 x11-misc/safeeyes/Manifest | 1 + x11-misc/safeeyes/metadata.xml | 7 + x11-misc/safeeyes/safeeyes-1.2.1.ebuild | 50 + 3 files changed, 58 insertions(+) diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest new file mode 100644 index 000..5abc627f857 --- /dev/null +++ b/x11-misc/safeeyes/Manifest @@ -0,0 +1 @@ +DIST safeeyes-1.2.1.tar.gz 137676 SHA256 08a2915d50c9bef6b375d2bbeb0909b0745293115603764306c5da06c621a35e SHA512 a2a31fd1b0e31403a8e2bd938e19b317a5ebcee66ce1fa29d1b00e4ed9f7b78281bfac5fff1486166f4093211c515e5d06577d47251a711e9b92af24c56f6b5c WHIRLPOOL 04661393094c6f01e9ca0cc9c54bfd8938c8e907d31ecccfc7f2a110819a34e35fb2de0f011a6f13d3a7a8453e4ae7289e26cba4caee6500878f9461aea9 diff --git a/x11-misc/safeeyes/metadata.xml b/x11-misc/safeeyes/metadata.xml new file mode 100644 index 000..82b7b795379 --- /dev/null +++ b/x11-misc/safeeyes/metadata.xml @@ -0,0 +1,7 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + + sp...@gentoo.org + + diff --git a/x11-misc/safeeyes/safeeyes-1.2.1.ebuild b/x11-misc/safeeyes/safeeyes-1.2.1.ebuild new file mode 100644 index 000..6305f53b5b4 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-1.2.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit gnome2-utils xdg distutils-r1 + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CDEPEND="${PYTHON_DEPS}" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${CDEPEND} + dev-libs/libappindicator:3 + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pyaudio[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + x11-apps/xprop + x11-misc/xprintidle + " + +DOCS=( + README.md +) + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +}