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/igbinary/
Date: Sun, 27 Sep 2015 18:05:03
Message-Id: 1443376981.d091720edf4b7dcb2106d6cf064b680eb3ac82e4.mjo@gentoo
1 commit: d091720edf4b7dcb2106d6cf064b680eb3ac82e4
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 27 18:03:01 2015 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 18:03:01 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d091720e
7
8 dev-php/igbinary: revision bump to fix DOCS.
9
10 The existing DOCS string contained a nonexistent file. It has been
11 updated with the correct values, and a little cleanup was performed at
12 the same time.
13
14 Package-Manager: portage-2.2.20.1
15
16 dev-php/igbinary/Manifest | 1 +
17 dev-php/igbinary/igbinary-1.2.1-r1.ebuild | 39 +++++++++++++++++++++++++++++++
18 2 files changed, 40 insertions(+)
19
20 diff --git a/dev-php/igbinary/Manifest b/dev-php/igbinary/Manifest
21 index 8a6daf1..9995479 100644
22 --- a/dev-php/igbinary/Manifest
23 +++ b/dev-php/igbinary/Manifest
24 @@ -1 +1,2 @@
25 +DIST igbinary-1.2.1-r1.tar.gz 143092 SHA256 f71a2e085669ed915740b29f55b6a81e30bae52215d041938afb9212e6bafc27 SHA512 5e69831606cfe47db2ae2b2200bd8bcfce42db32599a2a58cf23238d88896a2ef79baf16e78b3aaefb8725f8fdd7b815470e2d314ba14ea05f33be547da31777 WHIRLPOOL f7eb5d28b536bd1d2b0565f3e8541cbdb39edd2f5130bd041f0d75cc8218edeaa8719ebaea4d8ddf372172df9863d9d72a12dd8fc09c3653418b49e26d0e2f61
26 DIST igbinary-1.2.1.tar.gz 143092 SHA256 f71a2e085669ed915740b29f55b6a81e30bae52215d041938afb9212e6bafc27 SHA512 5e69831606cfe47db2ae2b2200bd8bcfce42db32599a2a58cf23238d88896a2ef79baf16e78b3aaefb8725f8fdd7b815470e2d314ba14ea05f33be547da31777 WHIRLPOOL f7eb5d28b536bd1d2b0565f3e8541cbdb39edd2f5130bd041f0d75cc8218edeaa8719ebaea4d8ddf372172df9863d9d72a12dd8fc09c3653418b49e26d0e2f61
27
28 diff --git a/dev-php/igbinary/igbinary-1.2.1-r1.ebuild b/dev-php/igbinary/igbinary-1.2.1-r1.ebuild
29 new file mode 100644
30 index 0000000..258ea58
31 --- /dev/null
32 +++ b/dev-php/igbinary/igbinary-1.2.1-r1.ebuild
33 @@ -0,0 +1,39 @@
34 +# Copyright 1999-2015 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=5
39 +PHP_EXT_NAME="${PN}"
40 +PHP_EXT_INI="yes"
41 +PHP_EXT_ZENDEXT="no"
42 +DOCS="ChangeLog NEWS README.md"
43 +
44 +USE_PHP="php5-4 php5-5 php5-6"
45 +
46 +inherit php-ext-source-r2
47 +
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +DESCRIPTION="A fast drop-in replacement for the standard PHP serialize"
51 +HOMEPAGE="https://github.com/${PN}/${PN}"
52 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PF}.tar.gz"
53 +
54 +LICENSE="BSD"
55 +SLOT="0"
56 +IUSE=""
57 +
58 +DEPEND=""
59 +RDEPEND=""
60 +
61 +src_configure() {
62 + my_conf="--enable-${PN}"
63 + php-ext-source-r2_src_configure
64 +}
65 +
66 +src_test() {
67 + for slot in $(php_get_slots); do
68 + php_init_slot_env ${slot}
69 + NO_INTERACTION="yes" emake test \
70 + || die "test suite failed for slot ${slot}"
71 + done
72 +}