dev-util/scanmem: Drop old
authorPacho Ramos <pacho@gentoo.org>
Sun, 27 Jan 2019 15:15:05 +0000 (16:15 +0100)
committerPacho Ramos <pacho@gentoo.org>
Sun, 27 Jan 2019 16:52:57 +0000 (17:52 +0100)
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
dev-util/scanmem/Manifest
dev-util/scanmem/scanmem-0.15.3.ebuild [deleted file]

index e350a0e06c95384de3fe05881c2630b6f553287c..ae50e589dbdcd3e5c562e04e7372275093e3d7e7 100644 (file)
@@ -1,2 +1 @@
-DIST scanmem-0.15.3.tar.gz 243150 BLAKE2B d9a218815163da31c191884268698ea8f4e12521c9f512deb850327fef44b0590d977906b4e4d48b8f15b5958523951a90fae2ace1c3a9db3f677249c706ced5 SHA512 7f14e8a129321d7e58651d7e98ab71e58926465c98d256226ef7803fa7e42ba8bbe0879da8173ad2659deb655c73338db27d832a264b429f740331aee1f6d4b7
 DIST scanmem-0.16.1.tar.gz 202133 BLAKE2B bb07234aaf1f93dba5f7feb0af0efcdadb7cd7cabfce2d62f19da01ba947cf9f4ba91024db2379e218b91953679a77080a4fa711ceaca659ac7b3f01645e3f93 SHA512 5e0a97e020a8a392aed75e2654cc6bcfad68590b9caab43444e57c3180be45ce1269f5acb02355bee57ff8bb5b9349b4f65e0fe96655206a812ea645796b153b
diff --git a/dev-util/scanmem/scanmem-0.15.3.ebuild b/dev-util/scanmem/scanmem-0.15.3.ebuild
deleted file mode 100644 (file)
index 036313e..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit autotools eutils python-single-r1
-
-DESCRIPTION="Locate and modify variables in executing processes"
-HOMEPAGE="https://github.com/scanmem/scanmem"
-SRC_URI="https://github.com/scanmem/scanmem/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gui"
-
-DEPEND="sys-libs/readline:="
-RDEPEND="${DEPEND}
-       gui? (
-               ${PYTHON_DEPS}
-               dev-python/pygobject:3
-               sys-auth/polkit
-       )"
-
-REQUIRED_USE="gui? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
-       use gui && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-       sed -i "/CFLAGS/d" Makefile.am || die
-
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               --docdir="/usr/share/doc/${PF}" \
-               $(use_enable gui)
-}
-
-src_install() {
-       default
-
-       if use gui ; then
-               docinto gui
-               dodoc gui/{README,TODO}
-               python_fix_shebang "${D}"
-       fi
-}