diff options
author | 2024-12-06 19:43:49 +0000 | |
---|---|---|
committer | 2024-12-06 19:44:54 +0000 | |
commit | d6773fd3060346c371adb5e79237126417f4de4f (patch) | |
tree | 8058647ef97e2d481c2c2faca90572a95aba89b2 /app-misc | |
parent | app-misc/screenfetch: add 3.9.9, EAPI=8 (diff) | |
download | gentoo-d6773fd3060346c371adb5e79237126417f4de4f.tar.gz gentoo-d6773fd3060346c371adb5e79237126417f4de4f.tar.bz2 gentoo-d6773fd3060346c371adb5e79237126417f4de4f.zip |
app-misc/screenfetch: drop 3.9.1, 9999
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/screenfetch/metadata.xml | 3 | ||||
-rw-r--r-- | app-misc/screenfetch/screenfetch-3.9.1.ebuild | 35 | ||||
-rw-r--r-- | app-misc/screenfetch/screenfetch-9999.ebuild | 34 |
3 files changed, 0 insertions, 72 deletions
diff --git a/app-misc/screenfetch/metadata.xml b/app-misc/screenfetch/metadata.xml index c7c7dee55d62..adb0d4f7ced7 100644 --- a/app-misc/screenfetch/metadata.xml +++ b/app-misc/screenfetch/metadata.xml @@ -2,9 +2,6 @@ <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <!-- maintainer-needed --> - <use> - <flag name="X">Use the <pkg>media-gfx/scrot</pkg> package to take screenshots</flag> - </use> <upstream> <remote-id type="github">KittyKatt/screenFetch</remote-id> </upstream> diff --git a/app-misc/screenfetch/screenfetch-3.9.1.ebuild b/app-misc/screenfetch/screenfetch-3.9.1.ebuild deleted file mode 100644 index b60b0c410fdb..000000000000 --- a/app-misc/screenfetch/screenfetch-3.9.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="${PN/f/F}" - -DESCRIPTION="Bash Screenshot Information Tool" -HOMEPAGE="https://github.com/KittyKatt/screenFetch" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/KittyKatt/screenFetch.git" - inherit git-r3 -else - KEYWORDS="amd64 ~arm x86 ~x64-macos" - SRC_URI="https://github.com/KittyKatt/screenFetch/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -LICENSE="GPL-3+" -SLOT="0" -IUSE="curl X" - -DEPEND="" -RDEPEND=" - curl? ( net-misc/curl ) - X? ( - media-gfx/scrot - x11-apps/xdpyinfo - )" - -src_install() { - newbin ${PN}-dev ${PN} - einstalldocs -} diff --git a/app-misc/screenfetch/screenfetch-9999.ebuild b/app-misc/screenfetch/screenfetch-9999.ebuild deleted file mode 100644 index 4312905647d7..000000000000 --- a/app-misc/screenfetch/screenfetch-9999.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit optfeature - -MY_PN="${PN/f/F}" - -DESCRIPTION="Bash Screenshot Information Tool" -HOMEPAGE="https://github.com/KittyKatt/screenFetch" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/KittyKatt/screenFetch.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~arm ~loong ~x86 ~x64-macos" - SRC_URI="https://github.com/KittyKatt/screenFetch/archive/v${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${MY_PN}-${PV}" -fi - -LICENSE="GPL-3+" -SLOT="0" - -src_install() { - newbin ${PN}-dev ${PN} - einstalldocs -} - -pkg_postinst() { - optfeature "screenshot taking" media-gfx/scrot - optfeature "screenshot uploading" net-misc/curl - optfeature "resolution detection" x11-apps/xdpyinfo -} |