Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/theseer-tokenizer/
Date: Sun, 28 Jan 2018 16:48:08
Message-Id: 1517157953.adc0e21417490d1c472a3566d83e221c0f8e877f.mjo@gentoo
1 commit: adc0e21417490d1c472a3566d83e221c0f8e877f
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 28 15:34:43 2018 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 28 16:45:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc0e214
7
8 dev-php/theseer-tokenizer: minor variable cleanup.
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild | 10 ++++------
13 1 file changed, 4 insertions(+), 6 deletions(-)
14
15 diff --git a/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild b/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild
16 index f4435fb25f3..2f736a8e864 100644
17 --- a/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild
18 +++ b/dev-php/theseer-tokenizer/theseer-tokenizer-1.1.0.ebuild
19 @@ -3,18 +3,16 @@
20
21 EAPI=6
22
23 -MY_PN="tokenizer"
24 -
25 -DESCRIPTION="Library for converting tokenized PHP source code into XML and other formats"
26 +DESCRIPTION="Convert tokenized PHP source code into XML and other formats"
27 HOMEPAGE="https://github.com/theseer/tokenizer"
28 -SRC_URI="https://github.com/theseer/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
29 +SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
30
31 LICENSE="BSD"
32 SLOT="0"
33 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
34 IUSE="test"
35
36 -S="${WORKDIR}/${MY_PN}-${PV}"
37 +S="${WORKDIR}/tokenizer-${PV}"
38
39 RDEPEND="dev-php/fedora-autoloader
40 >=dev-lang/php-7.0:*[tokenizer,xmlwriter]"
41 @@ -28,7 +26,7 @@ src_prepare() {
42
43 src_install() {
44 insinto /usr/share/php/TheSeer/Tokenizer
45 - doins -r src/*
46 + doins src/*.php
47 dodoc README.md
48 }