dev-util/app: drop last-rited package

This commit is contained in:
Tim Harder
2017-01-20 19:52:09 -05:00
parent e7eaeb263a
commit dd869f7a70
7 changed files with 0 additions and 182 deletions

View File

@@ -1,2 +0,0 @@
DIST aap-1.076.zip 1637913 SHA256 dc223d5e88a25426544bcfeebe4f97a71cfb3aea5fe983956f643d83b6f3841e SHA512 581f34f7bc531e989c725b2e732d47bac57b85b5c738aca3df35279d5979c050277cf9fafffce8bafe304034be1d490abbd089eda2244cf272ad77a61958df11 WHIRLPOOL 52a369f73830c92865ae86b5405ef0e883ef4ff84403e8b4abb086680dd27575e390a5db360aa4e1a6865a14c3e40e844437490d563422fc4a2c45871c98b3ad
DIST aap-1.091.zip 1645498 SHA256 1cae4e5c6426f3862ef6795e3e1966ef15ab618cde57be2005a0a6c6eac41aae SHA512 37fbbc1d816bfdadf3c4e16a31d002326ce86dbfbdfa60b30785f88aa202e52d79a13c91e7e0e843d93620e5eb9ba50545bc761550386b715359122cd375341e WHIRLPOOL 9b7ec209fe3c86d288037ced9cc5b44b406ed55ccabfada96c1a3423f8eecc91ae50e76f01b07f47d7bb54c0b06f47c7150a3dd5620e71045f3810fc32a857fd

View File

@@ -1,44 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
IUSE="doc"
DESCRIPTION="Bram Moolenaar's super-make program"
HOMEPAGE="http://www.a-a-p.org/"
SRC_URI="mirror://sourceforge/a-a-p/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ia64 ~mips ~ppc sparc x86"
DEPEND="app-arch/unzip"
RDEPEND=">=dev-lang/python-1.5"
S=${WORKDIR}/${PN}
src_unpack() {
mkdir "${S}" && cd "${S}" && unzip -q "${DISTDIR}"/${A} || die
}
src_install() {
rm doc/*.sgml
rm doc/*.pdf
if use doc ; then
dodir /usr/share/doc/${PF}/html
cp -R doc/* "${D}"/usr/share/doc/${PF}/html
fi
rm doc/*.html
rm -fr doc/images
dodoc doc/*
doman aap.1
rm -rf doc aap.1
# Move the remainder directly into the dest tree
dodir /usr/share
cd "${WORKDIR}"
mv aap "${D}"/usr/share
# Create a symbolic link for the executable
dodir /usr/bin
ln -s ../share/aap/aap "${D}"/usr/bin/aap
}

View File

@@ -1,42 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
DESCRIPTION="Bram Moolenaar's super-make program"
HOMEPAGE="http://www.a-a-p.org/"
SRC_URI="mirror://sourceforge/a-a-p/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc"
DEPEND="app-arch/unzip"
RDEPEND="${PYTHON_DEPS}"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
S=${WORKDIR}
src_install() {
rm doc/*.sgml doc/*.pdf COPYING || die
use doc && dohtml -r doc/*.html doc/images
rm -r doc/*.html doc/images || die
dodoc doc/*
doman aap.1
rm -r doc aap.1 || die
# Move the remainder directly into the dest tree
python_moduleinto /usr/share/aap
python_domodule .
# Create a symbolic link for the executable
dosym ../share/aap/aap /usr/bin/aap
python_fix_shebang "${ED}"/usr/share/aap/aap
}

View File

@@ -1,52 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
DESCRIPTION="Bram Moolenaar's super-make program"
HOMEPAGE="http://www.a-a-p.org/"
SRC_URI="mirror://sourceforge/a-a-p/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}
app-arch/unzip"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
S=${WORKDIR}
PATCHES=( "${FILESDIR}"/${P}-module-install.patch )
src_test() {
"${PYTHON}" aap || die "tests failed"
rm -r AAPDIR || die
}
src_install() {
rm -r rectest unittest test.aap || die
rm doc/*.sgml doc/*.pdf COPYING README.txt || die
if use doc; then
docinto html
dodoc -r doc/*.html doc/images
fi
rm -r doc/*.html doc/images || die
docinto /
dodoc doc/*
doman aap.1
rm -r doc aap.1 || die
python_doscript aap
rm aap aap.py aap.bat || die
python_moduleinto aap
python_domodule .
}

View File

@@ -1,26 +0,0 @@
Allow aap to be installed like a normal python module.
--- aap-1.091/aap
+++ aap-1.091/aap
@@ -7,8 +7,8 @@
# This simply calls the main() function in the Main.py module.
-import Main
+from aap import Main
-Main.main()
+Main.main(1)
# vim: set sw=4 sts=4 tw=79 fo+=l:
--- aap-1.091/Main.py
+++ aap-1.091/Main.py
@@ -168,7 +168,7 @@
if setroot:
# We need to know the location of our modules (find ccskim there).
try:
- progname = os.path.realpath(sys.argv[0])
+ progname = os.path.realpath(__file__)
except:
# Doesn't have os.path.realpath(), it's new in Python 2.2
# Use our copy of it.

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>vim@gentoo.org</email>
<name>Gentoo Vim Project</name>
</maintainer>
<upstream>
<remote-id type="sourceforge">a-a-p</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -297,11 +297,6 @@ app-admin/phpsyslogng
# No reverse dependencies. Masked for removal in 30 days.
net-analyzer/snips
# Tim Harder <radhermit@gentoo.org> (12 Dec 2016)
# Outdated and broken in the tree.
# Masked for removal in 30 days.
dev-util/aap
# Markos Chandras <hwoarang@gentoo.org> (11 Dec 2016)
# Dead upstream, no maintainer and it hasn't been bumped
# since 2013. Masking for removal in 30 days (wrt bug #489878)