dev-php/PEAR-Crypt_GPG: Drop old
authorBrian Evans <grknight@gentoo.org>
Tue, 24 Apr 2018 20:26:33 +0000 (16:26 -0400)
committerBrian Evans <grknight@gentoo.org>
Tue, 24 Apr 2018 20:33:15 +0000 (16:33 -0400)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

dev-php/PEAR-Crypt_GPG/Manifest
dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild [deleted file]

index f3e1d8a84a7a549f27a8c80628aaecd769e3ad28..5fba343f944171988166ad53926d26b347b47bc3 100644 (file)
@@ -1,2 +1 @@
-DIST Crypt_GPG-1.6.0b3.tgz 345445 BLAKE2B ab9318fa026f3dbde5974da9581b9fdf73245e78a8b5e891b2151aa7ebc8e1356a090e21a05129f4d3aa110a78082621ab386625069936f4644a1fff2bb461ef SHA512 0a3cb665fac8e84a0699600155cb74e2394e4759fe0b111d971d253ca511a371d06d826e54abadfbb3f707833cd3d6b369f52d04541b3e04f217056ec8439f4c
 DIST Crypt_GPG-1.6.2.tgz 346709 BLAKE2B abced2fe8c909f06690c38884506ce03df4c5ef3ef460aafce65ea9405c6974f8af320fd5a07a7967b45421a9a67aa27026c28ef7eb1402ffefba527007a33ae SHA512 9d954d96b4e461c75f79ce9bc701d062e3f19671690228e6e0ce5265733ac1de9c06520f9f750348f3c37f01ccb79720574b2d2f371e69c8a25ae6e1bc18aabd
diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta3.ebuild
deleted file mode 100644 (file)
index 23527ba..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="${PN/PEAR-/}"
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/beta/b}"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="PHP interface to the GNU Privacy Guard (GnuPG)"
-HOMEPAGE="http://pear.php.net/package/${MY_PN}"
-SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="test"
-
-# Really only needs PEAR_Exception, not PEAR-PEAR.
-RDEPEND="app-crypt/gnupg
-       dev-lang/php:*[posix,unicode]
-       dev-php/PEAR-Console_CommandLine
-       dev-php/PEAR-PEAR"
-DEPEND="test? (        ${RDEPEND} dev-php/phpunit )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-       default
-       sed -i "s|@bin-dir@|${EPREFIX}/usr/bin|" Crypt/GPG/Engine.php || die
-       sed -i "s|@package-name@|${MY_PN}|" Crypt/GPG/PinEntry.php || die
-       sed -i "s|@data-dir@|${EPREFIX}/usr/share|" Crypt/GPG/PinEntry.php || die
-}
-
-src_install() {
-       dodoc README.md
-       dobin scripts/crypt-gpg-pinentry
-
-       insinto "/usr/share/${MY_PN}"
-       doins -r data
-
-       insinto /usr/share/php
-       doins -r Crypt
-}
-
-src_test() {
-       phpunit tests/ || die "test suite failed"
-}