Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/libvirt-php/
Date: Thu, 19 Oct 2017 19:39:47
Message-Id: 1508441802.e00949d9fe4e70664d843c433e4d87318161e45c.grknight@gentoo
1 commit: e00949d9fe4e70664d843c433e4d87318161e45c
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 19 19:36:42 2017 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 19 19:36:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e00949d9
7
8 dev-php/libvirt-php: Drop old
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 dev-php/libvirt-php/Manifest | 1 -
13 dev-php/libvirt-php/libvirt-php-0.5.2.ebuild | 51 ----------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-php/libvirt-php/Manifest b/dev-php/libvirt-php/Manifest
17 index 51c35c682eb..e5f494589db 100644
18 --- a/dev-php/libvirt-php/Manifest
19 +++ b/dev-php/libvirt-php/Manifest
20 @@ -1,2 +1 @@
21 -DIST libvirt-php-0.5.2.tar.gz 770816 SHA256 f338caab2bebcce60cd62e3982ec4c1a274ecaf49d03cf7080b45f2f16cd516d SHA512 11844fea8507090826acd81fc7c257ecc3ed9cca10fc785e4d54b98ebd1e213310e379e7ca684c6439d9e2c57800a140fdc9953c6bec72da1959f5ed99e9ef31 WHIRLPOOL 19bde6afd0ef824557048d9f00aa1dd34f7138408326653e49c04a25e514575d1c2d92c462a8a9f40048ae2af7b2e46a27b66561cddf21fb8f28c294085700f5
22 DIST libvirt-php-0.5.3.tar.gz 778604 SHA256 6cf9a5aa855cf973e4280c890d9da88a2a26a1e5a3c8bb555f885391467f85cf SHA512 b4cbfd8840d8f114fde762b5d6ada155ebdb231b554e28e8526a7af45a802a18f28e90fa52f3d7ca9f616996fe0a8289b70c2d14dca51a52a7bf8a501c3ff44f WHIRLPOOL fc379e7a216e7846dd6711816f19fac8497f67bee69fe66b904b86d40cc7064d941338941d6bb48e13d4fb1e0a8bff6421831c538a66f5b36556fff838d7f598
23
24 diff --git a/dev-php/libvirt-php/libvirt-php-0.5.2.ebuild b/dev-php/libvirt-php/libvirt-php-0.5.2.ebuild
25 deleted file mode 100644
26 index bc4fa0c889b..00000000000
27 --- a/dev-php/libvirt-php/libvirt-php-0.5.2.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PHP_EXT_NAME="libvirt-php"
36 -PHP_EXT_SKIP_PHPIZE="yes"
37 -USE_PHP="php5-6"
38 -
39 -inherit php-ext-source-r2 eutils
40 -
41 -DESCRIPTION="PHP 5 bindings for libvirt"
42 -HOMEPAGE="http://libvirt.org/php/"
43 -SRC_URI="http://libvirt.org/sources/php/${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2.1"
46 -SLOT="0"
47 -KEYWORDS="~amd64"
48 -IUSE="doc"
49 -
50 -RDEPEND="app-emulation/libvirt
51 - dev-libs/libxml2"
52 -DEPEND="${RDEPEND}
53 - dev-libs/libxslt
54 - doc? ( app-text/xhtml1 )"
55 -
56 -RESTRICT="test"
57 -
58 -src_unpack() {
59 - default
60 -
61 - # create the default modules directory to be able
62 - # to use the php-ext-source-r2 eclass to configure/build
63 - ln -s src "${S}/modules"
64 -
65 - for slot in $(php_get_slots); do
66 - cp -r "${S}" "${WORKDIR}/${slot}"
67 - done
68 -}
69 -
70 -src_install() {
71 - local slot
72 - for slot in $(php_get_slots); do
73 - php_init_slot_env ${slot}
74 - insinto "${EXT_DIR}"
75 - newins "src/.libs/${PHP_EXT_NAME}.so.0.0.0" "${PHP_EXT_NAME}.so"
76 - done
77 - php-ext-source-r2_createinifiles
78 - dodoc AUTHORS ChangeLog NEWS README
79 - use doc && dohtml docs/* docs/graphics/*
80 -}