Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/awl/
Date: Tue, 01 Oct 2019 05:21:02
Message-Id: 1569906436.8adb89e9b0c348dc588269c519103711b8d1b797.juippis@gentoo
1 commit: 8adb89e9b0c348dc588269c519103711b8d1b797
2 Author: Till Schäfer <till2.schaefer <AT> uni-dortmund <DOT> de>
3 AuthorDate: Thu Sep 26 19:26:31 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 1 05:07:16 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8adb89e9
7
8 dev-php/awl: bump to 0.60
9
10 upgrade to EAPI 7
11
12 Closes: https://bugs.gentoo.org/688570
13 Package-Manager: Portage-2.3.69, Repoman-2.3.16
14 Signed-off-by: Till Schäfer <till2.schaefer <AT> uni-dortmund.de>
15 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
16
17 dev-php/awl/Manifest | 1 +
18 dev-php/awl/awl-0.60.ebuild | 32 ++++++++++++++++++++++++++++++++
19 2 files changed, 33 insertions(+)
20
21 diff --git a/dev-php/awl/Manifest b/dev-php/awl/Manifest
22 index 0e6e65794b8..9b239c5840a 100644
23 --- a/dev-php/awl/Manifest
24 +++ b/dev-php/awl/Manifest
25 @@ -1 +1,2 @@
26 DIST awl-0.59.tar.xz 124652 BLAKE2B 45b6271c175c23597c56f3d2ecc906ffc7d32feb4d8d51529e8ff861791b901f7076a1ed2aaa2309101c7d0e8aa1a48327f2d2cc4fca2738fffc55fe7665c310 SHA512 98a7bf336d5677146e06d3d8f320b67ae2a034d2b7ad32d64998993ed29431fbcf8f7c8f972ccfa55d81af32f1b413e265850181a505022e9ad350a8a670e6b6
27 +DIST awl-0.60.tar.xz 124772 BLAKE2B d24dcaa34f65720e76d8304f990c22fd0bab836b92a60e05acac39ced0924b6ce881328ca5fc5368ada4aee6b647e75406cbf07b96582ca03dd3bf0b3532e039 SHA512 b2a44c02cc3a8c0d4fef3ae1f9bbc121a6f4a25607c47c0b45625b272a754ce645443a95b074f89319877221e8b74bd0101c5a0ec741d80b7ea37f193dc1af42
28
29 diff --git a/dev-php/awl/awl-0.60.ebuild b/dev-php/awl/awl-0.60.ebuild
30 new file mode 100644
31 index 00000000000..80df3028b30
32 --- /dev/null
33 +++ b/dev-php/awl/awl-0.60.ebuild
34 @@ -0,0 +1,32 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +DESCRIPTION="Andrew McMillan's Web Libraries"
41 +HOMEPAGE="https://gitlab.com/davical-project/awl"
42 +SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> ${P}.tar.xz"
43 +
44 +LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2+ LGPL-3+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +BDEPEND="test? ( dev-php/phpunit )"
50 +RDEPEND="dev-lang/php:*[pdo,postgres,xml]"
51 +
52 +S="${WORKDIR}"
53 +
54 +src_compile() {
55 + :
56 +}
57 +
58 +src_test() {
59 + phpunit tests/ || die "test suite failed"
60 +}
61 +
62 +src_install() {
63 + einstalldocs
64 + insinto /usr/share/php/${PN}
65 + doins -r dba inc
66 +}