summaryrefslogtreecommitdiff
path: root/dev-php/sebastian-type
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-php/sebastian-type
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-php/sebastian-type')
-rw-r--r--dev-php/sebastian-type/Manifest1
-rw-r--r--dev-php/sebastian-type/files/autoload.php24
-rw-r--r--dev-php/sebastian-type/metadata.xml12
-rw-r--r--dev-php/sebastian-type/sebastian-type-1.1.4.ebuild40
4 files changed, 0 insertions, 77 deletions
diff --git a/dev-php/sebastian-type/Manifest b/dev-php/sebastian-type/Manifest
deleted file mode 100644
index 55fd5f4c310e..000000000000
--- a/dev-php/sebastian-type/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sebastian-type-1.1.4.tar.gz 19091 BLAKE2B 17a10d98c7356002b474ebab2c128631593ee175033fe9088a6fdfc29f020e33f1f090c1fb47c9890c686d41d207f5c8d2f6fffccd1e53341b8244b2633f55a1 SHA512 5320cad60dc79b213f30ec7b962d9e178ca7e49053eac040a50df3cea05579741f39bdc13872fb1b2d7c779a8e201767ee9550f47bb39cfca9fdac763886390d
diff --git a/dev-php/sebastian-type/files/autoload.php b/dev-php/sebastian-type/files/autoload.php
deleted file mode 100644
index 91b60dbf64b2..000000000000
--- a/dev-php/sebastian-type/files/autoload.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/* Autoloader for dev-php/sebastian-version */
-
-if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
- require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
-}
-
-\Fedora\Autoloader\Autoload::addClassMap(
- [
- 'sebastianbergmann\type\callabletype' => '/CallableType.php',
- 'sebastianbergmann\type\genericobjecttype' => '/GenericObjectType.php',
- 'sebastianbergmann\type\iterabletype' => '/IterableType.php',
- 'sebastianbergmann\type\nulltype' => '/NullType.php',
- 'sebastianbergmann\type\objecttype' => '/ObjectType.php',
- 'sebastianbergmann\type\simpletype' => '/SimpleType.php',
- 'sebastianbergmann\type\type' => '/Type.php',
- 'sebastianbergmann\type\typename' => '/TypeName.php',
- 'sebastianbergmann\type\unknowntype' => '/UnknownType.php',
- 'sebastianbergmann\type\voidtype' => '/VoidType.php',
- 'sebastianbergmann\type\exception' => '/exception/Exception.php',
- 'sebastianbergmann\type\runtimeexception' => '/exception/RuntimeException.php',
- ],
- __DIR__
-);
diff --git a/dev-php/sebastian-type/metadata.xml b/dev-php/sebastian-type/metadata.xml
deleted file mode 100644
index 0976677111a9..000000000000
--- a/dev-php/sebastian-type/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/type</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-php/sebastian-type/sebastian-type-1.1.4.ebuild b/dev-php/sebastian-type/sebastian-type-1.1.4.ebuild
deleted file mode 100644
index 53f963d8ccd8..000000000000
--- a/dev-php/sebastian-type/sebastian-type-1.1.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/sebastian-/}"
-
-DESCRIPTION="Collection of value objects that represent the types of the PHP type system"
-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=""
-
-BDEPEND="dev-php/theseer-Autoload"
-
-RDEPEND="dev-php/fedora-autoloader
- >=dev-lang/php-7.2:*"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
- default
-
- phpab \
- --output src/autoload.php \
- --template fedora2 \
- --basedir src \
- src \
- || die
-}
-
-src_install() {
- insinto /usr/share/php/SebastianBergmann/Type
- doins -r src/.
-
- einstalldocs
-}