diff options
author | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:15 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:15 +0200 |
commit | 2dc96d106aeb072ffe15bea9d50f9b466167c69b (patch) | |
tree | 6a42c0a10a1e8e1fa7bf2dde95d167681a39ed41 | |
parent | dev-php/sebastian-object-reflector: treeclean (diff) | |
download | gentoo-2dc96d106aeb072ffe15bea9d50f9b466167c69b.tar.gz gentoo-2dc96d106aeb072ffe15bea9d50f9b466167c69b.tar.bz2 gentoo-2dc96d106aeb072ffe15bea9d50f9b466167c69b.zip |
dev-php/sebastian-object-enumerator: treeclean
Signed-off-by: David Seifert <soap@gentoo.org>
7 files changed, 0 insertions, 110 deletions
diff --git a/dev-php/sebastian-object-enumerator/Manifest b/dev-php/sebastian-object-enumerator/Manifest deleted file mode 100644 index ae6ac094869f..000000000000 --- a/dev-php/sebastian-object-enumerator/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST sebastian-object-enumerator-2.0.1.tar.gz 4861 BLAKE2B cc68da9e38e756e478eedab588c023ebbf15d28d6f9e5399f178c581765aa02324ffe6f0bdf5e561f61791f449d8763e6cfdb572c779adaa9c7dedcc8b0f15a8 SHA512 087ef23c079be2ef56948c734cbdefbf4d8cad36c6c26aae5e38401ec3f306d91067aea28a2226811d1ed90611c7c8070a4f5c3733a24eb56f6a177eb332a9b3 -DIST sebastian-object-enumerator-3.0.3.tar.gz 4989 BLAKE2B 8d2314daf82280dc746cdc91c3c927d012440ef162a59918e038a15775f0113cf7bc0ae0eafb83d6d6992cdb2680bdd92935789584305906747fd71f13fcad5a SHA512 9bbff5081e1627d7ab98e01830cf6245f15b3ca96a56f6074e090f10862d19d0849251d69bf1117d3634b7e0ef86e266b2e9d4062e75eff9c9bc5f994dfe9a2d diff --git a/dev-php/sebastian-object-enumerator/files/autoload-3.0.3.php b/dev-php/sebastian-object-enumerator/files/autoload-3.0.3.php deleted file mode 100644 index 07afae81e5d4..000000000000 --- a/dev-php/sebastian-object-enumerator/files/autoload-3.0.3.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php -/* Autoloader for dev-php/sebastian-object-enumerator */ - -if (!class_exists('Fedora\\Autoloader\\Autoload', false)) { - require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; -} - -\Fedora\Autoloader\Autoload::addClassMap( - [ - 'sebastianbergmann\objectenumerator\enumerator' => '/Enumerator.php', - 'sebastianbergmann\objectenumerator\exception' => '/Exception.php', - 'sebastianbergmann\objectenumerator\invalidargumentexception' => '/InvalidArgumentException.php', - ], - __DIR__ -); - -\Fedora\Autoloader\Dependencies::required([ - __DIR__.'/../ObjectReflector/autoload.php', - __DIR__.'/../RecursionContext/autoload.php', -]); diff --git a/dev-php/sebastian-object-enumerator/files/autoload.php b/dev-php/sebastian-object-enumerator/files/autoload.php deleted file mode 100644 index cac71a54f125..000000000000 --- a/dev-php/sebastian-object-enumerator/files/autoload.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/* Autoloader for dev-php/sebastian-object-enumerator */ - -if (!class_exists('Fedora\\Autoloader\\Autoload', false)) { - require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; -} - -\Fedora\Autoloader\Autoload::addClassMap( - array( - 'sebastianbergmann\objectenumerator\enumerator' => '/Enumerator.php', - 'sebastianbergmann\objectenumerator\exception' => '/Exception.php', - 'sebastianbergmann\objectenumerator\invalidargumentexception' => '/InvalidArgumentException.php', - ), - __DIR__ -); - -\Fedora\Autoloader\Dependencies::required(array( - '/usr/share/php/SebastianBergmann/RecursionContext/autoload.php', -)); diff --git a/dev-php/sebastian-object-enumerator/metadata.xml b/dev-php/sebastian-object-enumerator/metadata.xml deleted file mode 100644 index cd07b250d72c..000000000000 --- a/dev-php/sebastian-object-enumerator/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/object-enumerator</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-php/sebastian-object-enumerator/sebastian-object-enumerator-2.0.1.ebuild b/dev-php/sebastian-object-enumerator/sebastian-object-enumerator-2.0.1.ebuild deleted file mode 100644 index 99e54f1f8bae..000000000000 --- a/dev-php/sebastian-object-enumerator/sebastian-object-enumerator-2.0.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PN="${PN/sebastian-//}" - -DESCRIPTION="Traverses array structures and object graphs to enumerate all referenced objects" -HOMEPAGE="https://phpunit.de" -SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86" -IUSE="" - -S="${WORKDIR}/${MY_PN}-${PV}" - -RDEPEND="dev-php/fedora-autoloader - <dev-php/sebastian-recursion-context-3.0 - >=dev-lang/php-5.6:*" - -src_install() { - insinto /usr/share/php/SebastianBergmann/ObjectEnumerator - doins -r src/* - doins "${FILESDIR}/autoload.php" -} diff --git a/dev-php/sebastian-object-enumerator/sebastian-object-enumerator-3.0.3.ebuild b/dev-php/sebastian-object-enumerator/sebastian-object-enumerator-3.0.3.ebuild deleted file mode 100644 index 90dcda08ea79..000000000000 --- a/dev-php/sebastian-object-enumerator/sebastian-object-enumerator-3.0.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="${PN/sebastian-//}" - -DESCRIPTION="Traverses array structures and object graphs to enumerate all referenced objects" -HOMEPAGE="https://phpunit.de" -SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sparc x86" -IUSE="" - -S="${WORKDIR}/${MY_PN}-${PV}" - -RDEPEND="dev-php/fedora-autoloader - <dev-php/sebastian-object-reflector-2.0 - >=dev-php/sebastian-recursion-context-3.0 - <dev-php/sebastian-recursion-context-4.0 - =dev-lang/php-7*:*" - -src_install() { - insinto /usr/share/php/SebastianBergmann/ObjectEnumerator - doins -r src/* - newins "${FILESDIR}/autoload-3.0.3.php" autoload.php -} diff --git a/profiles/package.mask b/profiles/package.mask index 35c0be7ad976..3d5d6158af78 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -272,7 +272,6 @@ dev-php/phpunit-mock-objects dev-php/sebastian-comparator dev-php/sebastian-exporter dev-php/sebastian-global-state -dev-php/sebastian-object-enumerator # Volkmar W. Pogatzki <gentoo@pogatzki.net> (2023-07-05) # Library without consumers. Bug #906882 |