Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-type/
Date: Tue, 09 Feb 2021 18:47:43
Message-Id: 1612896234.375ef60f5c1c14fcf2bf24fdbf06b17f0de23d87.whissi@gentoo
1 commit: 375ef60f5c1c14fcf2bf24fdbf06b17f0de23d87
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 9 18:37:38 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 18:43:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=375ef60f
7
8 dev-php/sebastian-type: bump to v1.1.4
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/sebastian-type/Manifest | 1 +
14 dev-php/sebastian-type/sebastian-type-1.1.4.ebuild | 40 ++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/dev-php/sebastian-type/Manifest b/dev-php/sebastian-type/Manifest
18 index 922b2aba231..7435bb2e405 100644
19 --- a/dev-php/sebastian-type/Manifest
20 +++ b/dev-php/sebastian-type/Manifest
21 @@ -1 +1,2 @@
22 DIST sebastian-type-1.1.3.tar.gz 19031 BLAKE2B 5e0d191cbc9315661f226aca14849ac4afa6d9e1dc59ca6033c60e425c94ee8b9ad49ab1c2b94c7814654bbadbaadd0164fadb1494f88c9521b2583985ba0281 SHA512 27b455c7a5f1125c916ea56fd933ef9ffa659b3fa6addf8d2c5956e4efef5bd8ffadc686e5dddfc50ba09a300c8148af7dded4249f404e15923e77102ab777fc
23 +DIST sebastian-type-1.1.4.tar.gz 19091 BLAKE2B 17a10d98c7356002b474ebab2c128631593ee175033fe9088a6fdfc29f020e33f1f090c1fb47c9890c686d41d207f5c8d2f6fffccd1e53341b8244b2633f55a1 SHA512 5320cad60dc79b213f30ec7b962d9e178ca7e49053eac040a50df3cea05579741f39bdc13872fb1b2d7c779a8e201767ee9550f47bb39cfca9fdac763886390d
24
25 diff --git a/dev-php/sebastian-type/sebastian-type-1.1.4.ebuild b/dev-php/sebastian-type/sebastian-type-1.1.4.ebuild
26 new file mode 100644
27 index 00000000000..2a0d5cf2d20
28 --- /dev/null
29 +++ b/dev-php/sebastian-type/sebastian-type-1.1.4.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +MY_PN="${PN/sebastian-/}"
37 +
38 +DESCRIPTION="Collection of value objects that represent the types of the PHP type system"
39 +HOMEPAGE="https://phpunit.de"
40 +SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
45 +IUSE=""
46 +
47 +BDEPEND="dev-php/theseer-Autoload"
48 +
49 +RDEPEND="dev-php/fedora-autoloader
50 + >=dev-lang/php-7.2:*"
51 +
52 +S="${WORKDIR}/${MY_PN}-${PV}"
53 +
54 +src_prepare() {
55 + default
56 +
57 + phpab \
58 + --output src/autoload.php \
59 + --template fedora2 \
60 + --basedir src \
61 + src \
62 + || die
63 +}
64 +
65 +src_install() {
66 + insinto /usr/share/php/SebastianBergmann/Type
67 + doins -r src/.
68 +
69 + einstalldocs
70 +}