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/jsonlint/
Date: Tue, 02 Feb 2021 01:18:49
Message-Id: 1612228672.6330e67889ff6fa8be256b7f0f463a7133e720fb.whissi@gentoo
1 commit: 6330e67889ff6fa8be256b7f0f463a7133e720fb
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 00:45:52 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 01:17:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6330e678
7
8 dev-php/jsonlint: bump to v1.8.3
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/jsonlint/Manifest | 1 +
14 dev-php/jsonlint/jsonlint-1.8.3.ebuild | 36 ++++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-php/jsonlint/Manifest b/dev-php/jsonlint/Manifest
18 index 02c9af5eda4..897e3a36158 100644
19 --- a/dev-php/jsonlint/Manifest
20 +++ b/dev-php/jsonlint/Manifest
21 @@ -1 +1,2 @@
22 DIST jsonlint-1.8.2.tar.gz 13729 BLAKE2B 80cbe2e1dc6bcbc0d75d04f34a36deb8b53ebd78bc4dcff0dd1195549ae2eaa02360b642d91c6a848cba9a3f502ed0618937c149663d6d0c9c7ad0f33897b7c1 SHA512 675ae7bf6cddd83bb2fab60f4c2ac4a8b4bf0068e630f266511a1805682cadefc9a44006623448364ceb73c5e211739787643d9196794349b992cca4d5fc737c
23 +DIST jsonlint-1.8.3.tar.gz 10588 BLAKE2B af54e4bedb66e28f61c338f5161109cf1df45dc4aea7c5ab27d728aa4ca6cc0c1e76575527abffc0a1ff8b52465cee40935829f71b3b1a0284c0512827b5bc3c SHA512 c2a9a16e9abc048a1899e51cc78995410b8aa44d5afdab30930f7a7d88b174844ac0f547b0d0da83bc4a71ca0457392e586afbc97cef5de36e0dc2e032732bfc
24
25 diff --git a/dev-php/jsonlint/jsonlint-1.8.3.ebuild b/dev-php/jsonlint/jsonlint-1.8.3.ebuild
26 new file mode 100644
27 index 00000000000..5882c9617f6
28 --- /dev/null
29 +++ b/dev-php/jsonlint/jsonlint-1.8.3.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="JSON Lint for PHP"
37 +HOMEPAGE="https://github.com/Seldaek/jsonlint"
38 +SRC_URI="https://github.com/Seldaek/jsonlint/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE=""
44 +
45 +BDEPEND="dev-php/theseer-Autoload"
46 +
47 +RDEPEND="dev-php/fedora-autoloader
48 + dev-lang/php:*"
49 +
50 +src_prepare() {
51 + default
52 +
53 + phpab \
54 + --output src/Seld/JsonLint/autoload.php \
55 + --template fedora2 \
56 + --basedir src \
57 + src \
58 + || die
59 +}
60 +
61 +src_install() {
62 + insinto "/usr/share/php/Seld/JsonLint"
63 + doins -r src/Seld/JsonLint/.
64 +
65 + einstalldocs
66 +}