diff options
author | Till Schäfer <till2.schaefer@uni-dortmund.de> | 2018-04-25 16:54:52 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2018-04-27 11:40:16 +0200 |
commit | 6d923e5996359ffd5863f1e1e3ba3b522c4b8216 (patch) | |
tree | 8bb3a5c78addcaba54c7e1316ead02b5380328ba /dev-php/awl | |
parent | sci-electronics/xcircuit: version bump to 3.9.73 (diff) | |
download | gentoo-6d923e5996359ffd5863f1e1e3ba3b522c4b8216.tar.gz gentoo-6d923e5996359ffd5863f1e1e3ba3b522c4b8216.tar.bz2 gentoo-6d923e5996359ffd5863f1e1e3ba3b522c4b8216.zip |
dev-php/awl: use official release tarball
drop outdated version
Bug: https://bugs.gentoo.org/653988
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/8131
Diffstat (limited to 'dev-php/awl')
-rw-r--r-- | dev-php/awl/Manifest | 3 | ||||
-rw-r--r-- | dev-php/awl/awl-0.56.ebuild | 36 | ||||
-rw-r--r-- | dev-php/awl/awl-0.59.ebuild | 8 |
3 files changed, 5 insertions, 42 deletions
diff --git a/dev-php/awl/Manifest b/dev-php/awl/Manifest index 4ef39b86d5b6..0e6e65794b85 100644 --- a/dev-php/awl/Manifest +++ b/dev-php/awl/Manifest @@ -1,2 +1 @@ -DIST awl-0.56.tar.gz 769208 BLAKE2B 08513675d8d26fab26429a6e51cfd7dc3b00aa7cec6538789e6bbd2853989bf563ffba0df3cda61359f30ab672a74798251213e58423cbc4a77185ffd74e6716 SHA512 6336d6f938330eee0b51f04665776269d974086ba56a3c8f4b7f53e7e17b637d899e9b329aeba3dcd690673a1a95a8cf03ae8417ebb9f356294314790915886a -DIST awl-0.59.tar.gz 601449 BLAKE2B 606c52bdad06e6fa130fd20f7da25bc75c7357c81c1d34d88bb62c43b56857eb95492581b8845ff97416d94d64135ccaa5bcba0b3989a115156ade05bc1b26b8 SHA512 d3e82e7f3269c1c02c801628498768ec94a8d215b719369e8ee997d67c86c5e4e780571852a077511ffffbe91ade1d05bfc60ee03624fbaada1ce23f7335d3e3 +DIST awl-0.59.tar.xz 124652 BLAKE2B 45b6271c175c23597c56f3d2ecc906ffc7d32feb4d8d51529e8ff861791b901f7076a1ed2aaa2309101c7d0e8aa1a48327f2d2cc4fca2738fffc55fe7665c310 SHA512 98a7bf336d5677146e06d3d8f320b67ae2a034d2b7ad32d64998993ed29431fbcf8f7c8f972ccfa55d81af32f1b413e265850181a505022e9ad350a8a670e6b6 diff --git a/dev-php/awl/awl-0.56.ebuild b/dev-php/awl/awl-0.56.ebuild deleted file mode 100644 index 8a65231a9a6d..000000000000 --- a/dev-php/awl/awl-0.56.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Andrew McMillan's Web Libraries" -HOMEPAGE="https://gitlab.com/davical-project/awl" -SRC_URI="${HOMEPAGE}/repository/archive.tar.gz?ref=r${PV} -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc test" - -DEPEND="test? ( dev-php/phpunit )" -RDEPEND="dev-lang/php:*[pdo,postgres,xml]" - -src_unpack() { - default_src_unpack - mv awl-* awl-${PV} || die "Ouch" -} - -src_compile() { - : -} - -src_test() { - phpunit tests/ || die "test suite failed" -} - -src_install() { - dodoc debian/changelog - use doc && dohtml -r "docs/api/" - insinto "/usr/share/php/${PN}" - doins -r dba inc -} diff --git a/dev-php/awl/awl-0.59.ebuild b/dev-php/awl/awl-0.59.ebuild index 24b33af893f7..3364d36a1b4d 100644 --- a/dev-php/awl/awl-0.59.ebuild +++ b/dev-php/awl/awl-0.59.ebuild @@ -3,11 +3,9 @@ EAPI=6 -inherit vcs-snapshot - DESCRIPTION="Andrew McMillan's Web Libraries" HOMEPAGE="https://gitlab.com/davical-project/awl" -SRC_URI="${HOMEPAGE}/repository/archive.tar.gz?ref=r${PV} -> ${P}.tar.gz" +SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> ${P}.tar.xz" LICENSE="GPL-2" SLOT="0" @@ -17,6 +15,8 @@ IUSE="test" DEPEND="test? ( dev-php/phpunit )" RDEPEND="dev-lang/php:*[pdo,postgres,xml]" +S="${WORKDIR}" + src_compile() { : } @@ -26,7 +26,7 @@ src_test() { } src_install() { - dodoc debian/changelog + einstalldocs insinto /usr/share/php/${PN} doins -r dba inc } |