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/PHP_Timer/files/, dev-php/PHP_Timer/
Date: Fri, 07 Jan 2022 14:34:07
Message-Id: 1641566040.753c51df9d52530b21d8fd99f3dd14e69f8c2cdf.grknight@gentoo
1 commit: 753c51df9d52530b21d8fd99f3dd14e69f8c2cdf
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 7 14:17:06 2022 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 7 14:34:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=753c51df
7
8 dev-php/PHP_Timer: Drop old
9
10 Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
11
12 dev-php/PHP_Timer/Manifest | 2 --
13 dev-php/PHP_Timer/PHP_Timer-1.0.5.ebuild | 18 ------------------
14 dev-php/PHP_Timer/PHP_Timer-1.0.9.ebuild | 31 -------------------------------
15 dev-php/PHP_Timer/files/autoload.php | 13 -------------
16 dev-php/PHP_Timer/files/channel.xml | 16 ----------------
17 5 files changed, 80 deletions(-)
18
19 diff --git a/dev-php/PHP_Timer/Manifest b/dev-php/PHP_Timer/Manifest
20 index d99a7462f4c6..e502bf2d2ae4 100644
21 --- a/dev-php/PHP_Timer/Manifest
22 +++ b/dev-php/PHP_Timer/Manifest
23 @@ -1,3 +1 @@
24 -DIST PHP_Timer-1.0.5.tgz 3597 BLAKE2B cf82c3ff61a1f96a94a5d3743270be3262bc2ea28d7d71cd1c93a07c7bec950597c4da5d6dd23e4b58b8aad7c2e3bdb7aea07d761ef096e898088ca2296b43cf SHA512 da030dec608d1f8d447da6ce40e995ca818064e3a4b2f2eca1819a77a12875843a25bba1ffd253043ef3ac62a6dc1a16c5e7ba9b792b99b54d0713090478be84
25 -DIST PHP_Timer-1.0.9.tar.gz 3740 BLAKE2B d551fd676046e6bb653fb9a9bde7a976b9b2081d26caee23177b899fa01e11ae1fb2183234ab43745798c058222574b1523064cc07d25485315eef9090f892a5 SHA512 96db90cf2af18fabcf44bdd4dbb5d298402ed2c8e49f3033fd1b89b3aa8c880d9f8677897d4d542a0db6348bdd9c697042deb0b6e26242adebfde1bcdb4bc559
26 DIST PHP_Timer-2.1.2.tar.gz 7090 BLAKE2B c99dd69433b3579e9ed81f06188cac280b6ac383bce12acd9c6a00b5a6d6017a94c427692b639ad1516c1faebec8e160b7cd5c7e5e96043dd3dcb6d283d2095b SHA512 199175e048560756867180cd99a3ca1766431d14091f1448cd8011df5f7824504a6c586ef15d9e53374bdb9dbd1731c05b44509e59d92d725908ec2c46d7d576
27
28 diff --git a/dev-php/PHP_Timer/PHP_Timer-1.0.5.ebuild b/dev-php/PHP_Timer/PHP_Timer-1.0.5.ebuild
29 deleted file mode 100644
30 index 6e31e37ca148..000000000000
31 --- a/dev-php/PHP_Timer/PHP_Timer-1.0.5.ebuild
32 +++ /dev/null
33 @@ -1,18 +0,0 @@
34 -# Copyright 1999-2017 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=6
38 -
39 -PHP_PEAR_CHANNEL="${FILESDIR}/channel.xml"
40 -PHP_PEAR_DOMAIN="pear.phpunit.de"
41 -PHP_PEAR_PKG_NAME="PHP_Timer"
42 -
43 -inherit php-pear-r2
44 -
45 -DESCRIPTION="Utility class for timing"
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~hppa x86"
49 -IUSE=""
50 -HOMEPAGE="http://pear.phpunit.de/"
51 -SRC_URI="http://${PHP_PEAR_URI}/get/${PEAR_P}.tgz"
52
53 diff --git a/dev-php/PHP_Timer/PHP_Timer-1.0.9.ebuild b/dev-php/PHP_Timer/PHP_Timer-1.0.9.ebuild
54 deleted file mode 100644
55 index 584ae19d7a7f..000000000000
56 --- a/dev-php/PHP_Timer/PHP_Timer-1.0.9.ebuild
57 +++ /dev/null
58 @@ -1,31 +0,0 @@
59 -# Copyright 1999-2020 Gentoo Authors
60 -# Distributed under the terms of the GNU General Public License v2
61 -
62 -EAPI=6
63 -
64 -MY_PN="php-timer"
65 -
66 -DESCRIPTION="Utility class for timing"
67 -HOMEPAGE="https://phpunit.de"
68 -SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
69 -
70 -LICENSE="BSD"
71 -SLOT="0"
72 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86"
73 -IUSE=""
74 -
75 -S="${WORKDIR}/${MY_PN}-${PV}"
76 -
77 -RDEPEND="dev-php/fedora-autoloader
78 - >=dev-lang/php-5.6:*"
79 -
80 -src_install() {
81 - insinto /usr/share/php/PHP/Timer
82 - doins -r src/Timer.php
83 - doins "${FILESDIR}/autoload.php"
84 -}
85 -
86 -pkg_postinst() {
87 - ewarn "This library now loads via /usr/share/php/PHP/Timer/autoload.php"
88 - ewarn "Please update any scripts to require the autoloader"
89 -}
90
91 diff --git a/dev-php/PHP_Timer/files/autoload.php b/dev-php/PHP_Timer/files/autoload.php
92 deleted file mode 100644
93 index bb0974e087d6..000000000000
94 --- a/dev-php/PHP_Timer/files/autoload.php
95 +++ /dev/null
96 @@ -1,13 +0,0 @@
97 -<?php
98 -/* Autoloader for dev-php/PHP_Timer */
99 -
100 -if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
101 - require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
102 -}
103 -
104 -\Fedora\Autoloader\Autoload::addClassMap(
105 - array(
106 - 'php_timer' => '/Timer.php',
107 - ),
108 - __DIR__
109 -);
110
111 diff --git a/dev-php/PHP_Timer/files/channel.xml b/dev-php/PHP_Timer/files/channel.xml
112 deleted file mode 100644
113 index 91bb6786f543..000000000000
114 --- a/dev-php/PHP_Timer/files/channel.xml
115 +++ /dev/null
116 @@ -1,16 +0,0 @@
117 -<?xml version="1.0" encoding="UTF-8" ?>
118 -<channel version="1.0" xmlns="http://pear.php.net/channel-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/channel-1.0 http://pear.php.net/dtd/channel-1.0.xsd">
119 - <name>pear.phpunit.de</name>
120 - <summary>PHPUnit PEAR Channel</summary>
121 - <suggestedalias>phpunit</suggestedalias>
122 - <servers>
123 - <primary>
124 - <rest>
125 - <baseurl type="REST1.0">http://pear.phpunit.de/rest/</baseurl>
126 - <baseurl type="REST1.1">http://pear.phpunit.de/rest/</baseurl>
127 - <baseurl type="REST1.2">http://pear.phpunit.de/rest/</baseurl>
128 - <baseurl type="REST1.3">http://pear.phpunit.de/rest/</baseurl>
129 - </rest>
130 - </primary>
131 - </servers>
132 -</channel>
133 \ No newline at end of file