summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2021-05-26 18:37:22 +0000
committerJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2021-05-27 00:34:45 +0000
commite051d347d1f44d908864e6be3e91b9297a6615f2 (patch)
tree7b830cbb125d2bf474b38a1a19240bcb0de494ce /dev-php/sebastian-diff
parentdev-php: Drop old packages from my overlay. (diff)
downloadjmbsvicetto-e051d347d1f44d908864e6be3e91b9297a6615f2.tar.gz
jmbsvicetto-e051d347d1f44d908864e6be3e91b9297a6615f2.tar.bz2
jmbsvicetto-e051d347d1f44d908864e6be3e91b9297a6615f2.zip
dev-php/* and www-apache/*: Drop obsolete.
These packages have been rotting in this repo. Newer verions are available in the tree. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>
Diffstat (limited to 'dev-php/sebastian-diff')
-rw-r--r--dev-php/sebastian-diff/Manifest1
-rw-r--r--dev-php/sebastian-diff/files/autoload.php20
-rw-r--r--dev-php/sebastian-diff/metadata.xml11
-rw-r--r--dev-php/sebastian-diff/sebastian-diff-3.0.1.ebuild31
4 files changed, 0 insertions, 63 deletions
diff --git a/dev-php/sebastian-diff/Manifest b/dev-php/sebastian-diff/Manifest
deleted file mode 100644
index baa8a2c..0000000
--- a/dev-php/sebastian-diff/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sebastian-diff-3.0.1.tar.gz 30831 BLAKE2B a8b0f04df576c13de3596f65b436b727396246fd81f168f4a7220bc32ae6f8aeb5444d56840f053cc55a40ff23af7cf9bbbab7c32c0111afdf4e96e39386f5e7 SHA512 97c188831b647c885907b878bf6979d3261c639223ef96f5dbc094987987693dddaec7066442349f57f6c837f0aa88b093e847924d48600c016f806012aa9f28
diff --git a/dev-php/sebastian-diff/files/autoload.php b/dev-php/sebastian-diff/files/autoload.php
deleted file mode 100644
index 5b72dc3..0000000
--- a/dev-php/sebastian-diff/files/autoload.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-/* Autoloader for dev-php/sebastian-diff */
-
-if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
- require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
-}
-
-\Fedora\Autoloader\Autoload::addClassMap(
- array(
- 'sebastianbergmann\diff\chunk' => '/Chunk.php',
- 'sebastianbergmann\diff\diff' => '/Diff.php',
- 'sebastianbergmann\diff\differ' => '/Differ.php',
- 'sebastianbergmann\diff\line' => '/Line.php',
- 'sebastianbergmann\diff\parser' => '/Parser.php',
- 'sebastianbergmann\diff\lcs\longestcommonsubsequence' => '/LCS/LongestCommonSubsequence.php',
- 'sebastianbergmann\diff\lcs\memoryefficientimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
- 'sebastianbergmann\diff\lcs\timeefficientimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
- ),
- __DIR__
-);
diff --git a/dev-php/sebastian-diff/metadata.xml b/dev-php/sebastian-diff/metadata.xml
deleted file mode 100644
index 3526674..0000000
--- a/dev-php/sebastian-diff/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>php-bugs@gentoo.org</email>
- <name>PHP</name>
- </maintainer>
- <upstream>
- <remote-id type="github">sebastianbergmann/diff</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-php/sebastian-diff/sebastian-diff-3.0.1.ebuild b/dev-php/sebastian-diff/sebastian-diff-3.0.1.ebuild
deleted file mode 100644
index 34ee63e..0000000
--- a/dev-php/sebastian-diff/sebastian-diff-3.0.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="diff"
-
-DESCRIPTION="PHP Diff implementation"
-HOMEPAGE="http://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 ~sh sparc x86"
-IUSE=""
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
- dev-php/fedora-autoloader
- || (
- dev-lang/php:7.2
- dev-lang/php:7.1
- )
-"
-
-src_install() {
- insinto /usr/share/php/SebastianBergmann/Diff
- doins -r src/*
- doins "${FILESDIR}/autoload.php"
-}