public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-diff/, dev-php/sebastian-diff/files/
@ 2017-03-09 16:23 Brian Evans
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Evans @ 2017-03-09 16:23 UTC (permalink / raw
  To: gentoo-commits

commit:     a4344147b6dd67e88d6bf58c6d5406da6473d4a6
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  9 15:26:03 2017 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Thu Mar  9 16:21:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4344147

dev-php/sebastian-diff: New package for an unbundled phpunit

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-php/sebastian-diff/Manifest                    |  1 +
 dev-php/sebastian-diff/files/autoload.php          | 20 +++++++++++++++++
 dev-php/sebastian-diff/metadata.xml                |  8 +++++++
 dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild | 26 ++++++++++++++++++++++
 4 files changed, 55 insertions(+)

diff --git a/dev-php/sebastian-diff/Manifest b/dev-php/sebastian-diff/Manifest
new file mode 100644
index 00000000000..dddaa406943
--- /dev/null
+++ b/dev-php/sebastian-diff/Manifest
@@ -0,0 +1 @@
+DIST sebastian-diff-1.4.1.tar.gz 10310 SHA256 ddedfbae9063434dfdabf8b74d0f6ee427412b4a894880ab7d0609c8e2495775 SHA512 b355f1407619ea6f1e9153a7946c339e790530c1c86369005998dc0c1078b96ef1ca369fec32f134b056dd8833770fcdb30443334275c8cb17b69e95ef8325a9 WHIRLPOOL f9a718790f62df5fba7e82d0fbd785150be6a4396209066d9420e41f9e7a6416a5aa3ebe004cb84fceb0b5bdac03c71b8edec1065f26b3d2bb08e8b54a78d4eb

diff --git a/dev-php/sebastian-diff/files/autoload.php b/dev-php/sebastian-diff/files/autoload.php
new file mode 100644
index 00000000000..40925e7dd6f
--- /dev/null
+++ b/dev-php/sebastian-diff/files/autoload.php
@@ -0,0 +1,20 @@
+<?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\memoryefficientlongestcommonsubsequenceimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
+		'sebastianbergmann\diff\lcs\timeefficientlongestcommonsubsequenceimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
+	),
+	__DIR__
+);

diff --git a/dev-php/sebastian-diff/metadata.xml b/dev-php/sebastian-diff/metadata.xml
new file mode 100644
index 00000000000..b86acf66c75
--- /dev/null
+++ b/dev-php/sebastian-diff/metadata.xml
@@ -0,0 +1,8 @@
+<?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>
+</pkgmetadata>

diff --git a/dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild b/dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild
new file mode 100644
index 00000000000..fe8aa111a37
--- /dev/null
+++ b/dev-php/sebastian-diff/sebastian-diff-1.4.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# 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="~amd64 ~x86"
+IUSE=""
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="dev-php/fedora-autoloader
+	>=dev-lang/php-5.6:*"
+
+src_install() {
+	insinto /usr/share/php/SebastianBergmann/Diff
+	doins -r src/*
+	doins "${FILESDIR}/autoload.php"
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-diff/, dev-php/sebastian-diff/files/
@ 2019-12-19 21:51 Brian Evans
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Evans @ 2019-12-19 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     fbc48c7a1f220fd5accb7f6bd02a1b17b56d3186
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 19 21:06:19 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Thu Dec 19 21:50:53 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc48c7a

dev-php/sebastian-diff: Version bump for 3.0.2

Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 dev-php/sebastian-diff/Manifest                    |  1 +
 dev-php/sebastian-diff/files/autoload-3.0.2.php    | 28 ++++++++++++++++++++++
 dev-php/sebastian-diff/sebastian-diff-3.0.2.ebuild | 26 ++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/dev-php/sebastian-diff/Manifest b/dev-php/sebastian-diff/Manifest
index 8e780a5fe2d..da56572dda1 100644
--- a/dev-php/sebastian-diff/Manifest
+++ b/dev-php/sebastian-diff/Manifest
@@ -1 +1,2 @@
 DIST sebastian-diff-1.4.1.tar.gz 10310 BLAKE2B facb81bb6ec7a60714493b531eecd0cea6fc8fde0811de982f3a149b2446cfe71f32bfca62bb830dee734966ac6161990e14b666426f5b34c4068922c544f36f SHA512 b355f1407619ea6f1e9153a7946c339e790530c1c86369005998dc0c1078b96ef1ca369fec32f134b056dd8833770fcdb30443334275c8cb17b69e95ef8325a9
+DIST sebastian-diff-3.0.2.tar.gz 30918 BLAKE2B 33c307c97d30573c913e4a696710c7b0091b3d0a612661b900dfdb749e4fa5c8970d993c0ee8828c4b0342336c39db4c74702114a5a6ae0daf650fc625baade7 SHA512 c06176de492970f3e55a5fdf1901eb56299b3e49cb838b8cdcbb93bc9cfe9fe9c1b693acb0c598c618760c4de0e49deb2f7bad15a929bd13ef08d30fab41b677

diff --git a/dev-php/sebastian-diff/files/autoload-3.0.2.php b/dev-php/sebastian-diff/files/autoload-3.0.2.php
new file mode 100644
index 00000000000..13d6bb4216a
--- /dev/null
+++ b/dev-php/sebastian-diff/files/autoload-3.0.2.php
@@ -0,0 +1,28 @@
+<?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\longestcommonsubsequencecalculator' => '/LongestCommonSubsequenceCalculator.php',
+		'sebastianbergmann\diff\memoryefficientlongestcommonsubsequencecalculator' => '/MemoryEfficientLongestCommonSubsequenceCalculator.php',
+		'sebastianbergmann\diff\parser' => '/Parser.php',
+		'sebastianbergmann\diff\timeefficientlongestcommonsubsequencecalculator' => '/TimeEfficientLongestCommonSubsequenceCalculator.php',
+		'sebastianbergmann\diff\configurationexception' => '/Exception/ConfigurationException.php',
+                'sebastianbergmann\diff\exception' => '/Exception/Exception.php',
+                'sebastianbergmann\diff\invalidargumentexception' => '/Exception/InvalidArgumentException.php',
+		'sebastianbergmann\diff\output\abstractchunkoutputbuilder' => '/Output/AbstractChunkOutputBuilder.php',
+		'sebastianbergmann\diff\output\diffonlyoutputbuilder' => '/Output/DiffOnlyOutputBuilder.php',
+		'sebastianbergmann\diff\output\diffoutputbuilderinterface' => '/Output/DiffOutputBuilderInterface.php',
+		'sebastianbergmann\diff\output\strictunifieddiffoutputbuilder' => '/Output/StrictUnifiedDiffOutputBuilder.php',
+		'sebastianbergmann\diff\output\unifieddiffoutputbuilder' => '/Output/UnifiedDiffOutputBuilder.php',
+	),
+	__DIR__
+);

diff --git a/dev-php/sebastian-diff/sebastian-diff-3.0.2.ebuild b/dev-php/sebastian-diff/sebastian-diff-3.0.2.ebuild
new file mode 100644
index 00000000000..20aa5303052
--- /dev/null
+++ b/dev-php/sebastian-diff/sebastian-diff-3.0.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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.1:*"
+
+src_install() {
+	insinto /usr/share/php/SebastianBergmann/Diff
+	doins -r src/*
+	newins "${FILESDIR}/autoload-3.0.2.php" autoload.php
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-diff/, dev-php/sebastian-diff/files/
@ 2023-08-26 15:09 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2023-08-26 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     66bf5c0e1fa92e94811d14a01ac934d8ca3f366c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 26 13:02:06 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 15:09:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66bf5c0e

dev-php/sebastian-diff: drop 1.4.1-r1

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-php/sebastian-diff/Manifest                    |  1 -
 dev-php/sebastian-diff/files/autoload.php          | 20 -----------------
 .../sebastian-diff/sebastian-diff-1.4.1-r1.ebuild  | 26 ----------------------
 3 files changed, 47 deletions(-)

diff --git a/dev-php/sebastian-diff/Manifest b/dev-php/sebastian-diff/Manifest
index da56572dda16..ae6be20156cd 100644
--- a/dev-php/sebastian-diff/Manifest
+++ b/dev-php/sebastian-diff/Manifest
@@ -1,2 +1 @@
-DIST sebastian-diff-1.4.1.tar.gz 10310 BLAKE2B facb81bb6ec7a60714493b531eecd0cea6fc8fde0811de982f3a149b2446cfe71f32bfca62bb830dee734966ac6161990e14b666426f5b34c4068922c544f36f SHA512 b355f1407619ea6f1e9153a7946c339e790530c1c86369005998dc0c1078b96ef1ca369fec32f134b056dd8833770fcdb30443334275c8cb17b69e95ef8325a9
 DIST sebastian-diff-3.0.2.tar.gz 30918 BLAKE2B 33c307c97d30573c913e4a696710c7b0091b3d0a612661b900dfdb749e4fa5c8970d993c0ee8828c4b0342336c39db4c74702114a5a6ae0daf650fc625baade7 SHA512 c06176de492970f3e55a5fdf1901eb56299b3e49cb838b8cdcbb93bc9cfe9fe9c1b693acb0c598c618760c4de0e49deb2f7bad15a929bd13ef08d30fab41b677

diff --git a/dev-php/sebastian-diff/files/autoload.php b/dev-php/sebastian-diff/files/autoload.php
deleted file mode 100644
index 5b72dc303318..000000000000
--- 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/sebastian-diff-1.4.1-r1.ebuild b/dev-php/sebastian-diff/sebastian-diff-1.4.1-r1.ebuild
deleted file mode 100644
index a91aa10b3ced..000000000000
--- a/dev-php/sebastian-diff/sebastian-diff-1.4.1-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="diff"
-
-DESCRIPTION="PHP Diff implementation"
-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-lang/php-5.6:*"
-
-src_install() {
-	insinto /usr/share/php/SebastianBergmann/Diff
-	doins -r src/*
-	doins "${FILESDIR}/autoload.php"
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-08-26 15:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-26 15:09 [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-diff/, dev-php/sebastian-diff/files/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2019-12-19 21:51 Brian Evans
2017-03-09 16:23 Brian Evans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox