diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-php/PHP_Timer | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-php/PHP_Timer')
| -rw-r--r-- | dev-php/PHP_Timer/Manifest | 2 | ||||
| -rw-r--r-- | dev-php/PHP_Timer/PHP_Timer-2.1.2-r1.ebuild | 31 | ||||
| -rw-r--r-- | dev-php/PHP_Timer/PHP_Timer-5.0.3.ebuild | 31 | ||||
| -rw-r--r-- | dev-php/PHP_Timer/files/autoload-2.1.2.php | 15 | ||||
| -rw-r--r-- | dev-php/PHP_Timer/files/autoload-5.0.3.php | 18 | ||||
| -rw-r--r-- | dev-php/PHP_Timer/metadata.xml | 12 |
6 files changed, 0 insertions, 109 deletions
diff --git a/dev-php/PHP_Timer/Manifest b/dev-php/PHP_Timer/Manifest deleted file mode 100644 index 29415f02a66d..000000000000 --- a/dev-php/PHP_Timer/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST PHP_Timer-2.1.2.tar.gz 7090 BLAKE2B c99dd69433b3579e9ed81f06188cac280b6ac383bce12acd9c6a00b5a6d6017a94c427692b639ad1516c1faebec8e160b7cd5c7e5e96043dd3dcb6d283d2095b SHA512 199175e048560756867180cd99a3ca1766431d14091f1448cd8011df5f7824504a6c586ef15d9e53374bdb9dbd1731c05b44509e59d92d725908ec2c46d7d576 -DIST PHP_Timer-5.0.3.tar.gz 5363 BLAKE2B b63d438eab1dd5d872a1a632f1861d216dbdd7ab073a8fa36bad7f93134fd0c98ef7eb049189aeb6373b60eba592cc5add0044ac577d0b9728f3f78156dae914 SHA512 e1642cd0d247a49981f142b6975339c4abaf26cf4847783f309a0a15ba7a55520c7d1e11a87ea9b923337a9972f4dc95ee11121484a75c9c7a20882f664e8ba5 diff --git a/dev-php/PHP_Timer/PHP_Timer-2.1.2-r1.ebuild b/dev-php/PHP_Timer/PHP_Timer-2.1.2-r1.ebuild deleted file mode 100644 index 0d9fbb38cce6..000000000000 --- a/dev-php/PHP_Timer/PHP_Timer-2.1.2-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="php-timer" - -DESCRIPTION="Utility class for timing" -HOMEPAGE="https://phpunit.de" -SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm ~hppa ppc64 ~s390 ~sparc x86" -IUSE="" - -S="${WORKDIR}/${MY_PN}-${PV}" - -RDEPEND="dev-php/fedora-autoloader - >=dev-lang/php-7.1:*" - -src_install() { - insinto /usr/share/php/PHP/Timer - doins -r src/Timer.php src/{Runtime,}Exception.php - newins "${FILESDIR}/autoload-2.1.2.php" autoload.php -} - -pkg_postinst() { - ewarn "This library now loads via /usr/share/php/PHP/Timer/autoload.php" - ewarn "Please update any scripts to require the autoloader" -} diff --git a/dev-php/PHP_Timer/PHP_Timer-5.0.3.ebuild b/dev-php/PHP_Timer/PHP_Timer-5.0.3.ebuild deleted file mode 100644 index 150cafa72d3e..000000000000 --- a/dev-php/PHP_Timer/PHP_Timer-5.0.3.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_PN="php-timer" - -DESCRIPTION="Utility class for timing" -HOMEPAGE="https://phpunit.de" -SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~s390 ~sparc ~x86" -IUSE="" - -S="${WORKDIR}/${MY_PN}-${PV}" - -RDEPEND="dev-php/fedora-autoloader - >=dev-lang/php-7.3:*" - -src_install() { - insinto /usr/share/php/PHP/Timer - doins -r src/* - newins "${FILESDIR}/autoload-5.0.3.php" autoload.php -} - -pkg_postinst() { - ewarn "This library now loads via /usr/share/php/PHP/Timer/autoload.php" - ewarn "Please update any scripts to require the autoloader" -} diff --git a/dev-php/PHP_Timer/files/autoload-2.1.2.php b/dev-php/PHP_Timer/files/autoload-2.1.2.php deleted file mode 100644 index 65490d9ae6e4..000000000000 --- a/dev-php/PHP_Timer/files/autoload-2.1.2.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php -/* Autoloader for dev-php/PHP_Timer */ - -if (!class_exists('Fedora\\Autoloader\\Autoload', false)) { - require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; -} - -\Fedora\Autoloader\Autoload::addClassMap( - [ - 'sebastianbergmann\timer\exception' => '/Exception.php', - 'sebastianbergmann\timer\runtimeexception' => '/RuntimeException.php', - 'sebastianbergmann\timer\timer' => '/Timer.php', - ], - __DIR__ -); diff --git a/dev-php/PHP_Timer/files/autoload-5.0.3.php b/dev-php/PHP_Timer/files/autoload-5.0.3.php deleted file mode 100644 index 45b65b6045e8..000000000000 --- a/dev-php/PHP_Timer/files/autoload-5.0.3.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php -/* Autoloader for dev-php/PHP_Timer */ - -if (!class_exists('Fedora\\Autoloader\\Autoload', false)) { - require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; -} - -\Fedora\Autoloader\Autoload::addClassMap( - [ - 'sebastianbergmann\timer\duration' => '/Duration.php', - 'sebastianbergmann\timer\exception' => '/exceptions/Exception.php', - 'sebastianbergmann\timer\noactivetimerexception' => '/exceptions/NoActiveTimerException.php', - 'sebastianbergmann\timer\resourceusageformatter' => '/ResourceUsageFormatter.php', - 'sebastianbergmann\timer\timer' => '/Timer.php', - 'sebastianbergmann\timer\timesincestartofrequestnotavailableexception' => '/exceptions/TimeSinceStartOfRequestNotAvailableException.php', - ], - __DIR__ -); diff --git a/dev-php/PHP_Timer/metadata.xml b/dev-php/PHP_Timer/metadata.xml deleted file mode 100644 index 6a8916ce0954..000000000000 --- a/dev-php/PHP_Timer/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>php-bugs@gentoo.org</email> - <name>PHP</name> - </maintainer> - <stabilize-allarches/> - <upstream> - <remote-id type="github">sebastianbergmann/php-timer</remote-id> - </upstream> -</pkgmetadata> |
