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/realpath_turbo/
Date: Fri, 29 Nov 2019 19:36:01
Message-Id: 1575056110.f5485b7a5dbfd68ef35ed95da1cbe1a849c308c1.whissi@gentoo
1 commit: f5485b7a5dbfd68ef35ed95da1cbe1a849c308c1
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 29 19:33:51 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 29 19:35:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5485b7a
7
8 dev-php/realpath_turbo: initial import of v2.0.0
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.19
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/realpath_turbo/Manifest | 1 +
14 dev-php/realpath_turbo/metadata.xml | 15 ++++++++++++
15 dev-php/realpath_turbo/realpath_turbo-2.0.0.ebuild | 28 ++++++++++++++++++++++
16 3 files changed, 44 insertions(+)
17
18 diff --git a/dev-php/realpath_turbo/Manifest b/dev-php/realpath_turbo/Manifest
19 new file mode 100644
20 index 00000000000..edbb9d2adfb
21 --- /dev/null
22 +++ b/dev-php/realpath_turbo/Manifest
23 @@ -0,0 +1 @@
24 +DIST realpath_turbo-2.0.0.tar.bz2 9106 BLAKE2B 3275397ab72def1b120d2df1bfe6c233283754539b2ea7dfd558a0773d2f094f9f6b31850a516b883af470cd04d4ebb9d5a7d8492608169a797d1562c7236d11 SHA512 03a03d4a3a067ffac61222c4d71031ab9e289b745fd3b158b5b723f3abf1ad7bb1f691904e3f7b53a98c970f1b0f7c4fe558a4de696aac77d0f9a0f99159fb30
25
26 diff --git a/dev-php/realpath_turbo/metadata.xml b/dev-php/realpath_turbo/metadata.xml
27 new file mode 100644
28 index 00000000000..9c672a72477
29 --- /dev/null
30 +++ b/dev-php/realpath_turbo/metadata.xml
31 @@ -0,0 +1,15 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>whissi@g.o</email>
37 + <name>Thomas Deutschmann</name>
38 + </maintainer>
39 + <maintainer type="project">
40 + <email>php-bugs@g.o</email>
41 + <name>PHP Project</name>
42 + </maintainer>
43 + <upstream>
44 + <bugs-to>https://github.com/Whissi/realpath_turbo/issues</bugs-to>
45 + </upstream>
46 +</pkgmetadata>
47
48 diff --git a/dev-php/realpath_turbo/realpath_turbo-2.0.0.ebuild b/dev-php/realpath_turbo/realpath_turbo-2.0.0.ebuild
49 new file mode 100644
50 index 00000000000..629ec768de1
51 --- /dev/null
52 +++ b/dev-php/realpath_turbo/realpath_turbo-2.0.0.ebuild
53 @@ -0,0 +1,28 @@
54 +# Copyright 1999-2019 Gentoo Authors
55 +# Distributed under the terms of the GNU General Public License v2
56 +
57 +EAPI="7"
58 +
59 +PHP_EXT_NAME="realpath_turbo"
60 +PHP_EXT_INI="yes"
61 +PHP_EXT_ZENDEXT="no"
62 +
63 +USE_PHP="php5-6 php7-1 php7-2 php7-3 php7-4"
64 +
65 +inherit php-ext-source-r3
66 +
67 +MY_PV="${PV/_/}"
68 +
69 +DESCRIPTION="PHP extension to re-enable realpath cache when using open_basedir restriction"
70 +HOMEPAGE="https://github.com/Whissi/${PN}/"
71 +SRC_URI="https://github.com/Whissi/${PN}/releases/download/v${MY_PV}/${P}.tar.bz2"
72 +
73 +LICENSE="BSD-2"
74 +KEYWORDS="~amd64 ~x86"
75 +SLOT="0"
76 +IUSE=""
77 +
78 +DEPEND=""
79 +RDEPEND=""
80 +
81 +DOCS=( ChangeLog CREDITS LICENSE README.md )