public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Viorel Munteanu" <ceamac@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Text_Wiki_Mediawiki/files/, dev-php/PEAR-Text_Wiki_Mediawiki/
Date: Thu, 11 Jul 2024 18:47:25 +0000 (UTC)	[thread overview]
Message-ID: <1720723420.95a2e3345b60599ae6381e84839d5131dbb2ab92.ceamac@gentoo> (raw)

commit:     95a2e3345b60599ae6381e84839d5131dbb2ab92
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 11 17:38:04 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Jul 11 18:43:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a2e334

dev-php/PEAR-Text_Wiki_Mediawiki: treeclean

Bug: https://bugs.gentoo.org/933998
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-php/PEAR-Text_Wiki_Mediawiki/Manifest          |  1 -
 ...PEAR-Text_Wiki_Mediawiki-0.2.0_p20140604.ebuild | 30 ------------------
 .../files/0.2.0-constructor.patch                  | 36 ----------------------
 dev-php/PEAR-Text_Wiki_Mediawiki/metadata.xml      |  8 -----
 4 files changed, 75 deletions(-)

diff --git a/dev-php/PEAR-Text_Wiki_Mediawiki/Manifest b/dev-php/PEAR-Text_Wiki_Mediawiki/Manifest
deleted file mode 100644
index 0fc75a5a74bf..000000000000
--- a/dev-php/PEAR-Text_Wiki_Mediawiki/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Text_Wiki_Mediawiki-0.2.0_p20140604.tar.gz 22941 BLAKE2B d208b4df7e01a2b28e44ada0226be0f183fe6ffefe742f9b6cb4f2b366f915ae46d950d574a8357cbec273f41792f17a639f5512613628ee60ed137d909be9dd SHA512 aef4d18a4a0b9f41dc4bad701a90a2e7d674851b63206db9dd87cf87d6705991c8221e41cdbb8d2572a950520ce87db96105a009e4189e48b8e7f5df0f460ee5

diff --git a/dev-php/PEAR-Text_Wiki_Mediawiki/PEAR-Text_Wiki_Mediawiki-0.2.0_p20140604.ebuild b/dev-php/PEAR-Text_Wiki_Mediawiki/PEAR-Text_Wiki_Mediawiki-0.2.0_p20140604.ebuild
deleted file mode 100644
index 25c8a0342475..000000000000
--- a/dev-php/PEAR-Text_Wiki_Mediawiki/PEAR-Text_Wiki_Mediawiki-0.2.0_p20140604.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit php-pear-r2 vcs-snapshot
-
-SRC_URI="https://github.com/pear/Text_Wiki_Mediawiki/archive/11a902741d3f8cc6010fb97b825d66345143e4dc.tar.gz -> ${PEAR_P}.tar.gz"
-DESCRIPTION="Mediawiki parser for Text_Wiki"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc64 ~sparc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-RDEPEND=">=dev-php/PEAR-Text_Wiki-1.2.2_p20170904"
-DEPEND="test? (
-		${RDEPEND}
-		<dev-php/phpunit-6
-	)"
-PATCHES=( "${FILESDIR}/0.2.0-constructor.patch" )
-
-src_test() {
-	phpunit tests/Text_Wiki_Parse_Mediawiki_Test.php || die
-}
-
-src_install() {
-	php-pear-r2_src_install
-	insinto /usr/share/php/.packagexml
-	newins package.xml "${PEAR_P}.xml"
-}

diff --git a/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch b/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch
deleted file mode 100644
index edd8e3572de0..000000000000
--- a/dev-php/PEAR-Text_Wiki_Mediawiki/files/0.2.0-constructor.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -aurN a/Text/Wiki/Mediawiki.php b/Text/Wiki/Mediawiki.php
---- a/Text/Wiki/Mediawiki.php	2014-06-04 23:24:45.000000000 -0400
-+++ b/Text/Wiki/Mediawiki.php	2018-02-14 13:36:18.777893414 -0500
-@@ -87,7 +87,7 @@
-      * @param array $rules The set of rules to load for this object.
-      */
-     function __construct($rules = null) {
--        parent::Text_Wiki($rules);
-+        parent::__construct($rules);
-         $this->addPath('parse', $this->fixPath(dirname(__FILE__)).'Parse/Mediawiki');
-     }
- }
-diff -aurN a/Text/Wiki/Parse/Mediawiki/Url.php b/Text/Wiki/Parse/Mediawiki/Url.php
---- a/Text/Wiki/Parse/Mediawiki/Url.php	2014-06-04 23:24:45.000000000 -0400
-+++ b/Text/Wiki/Parse/Mediawiki/Url.php	2018-02-14 13:40:21.974024459 -0500
-@@ -87,7 +87,7 @@
-     */
-     function __construct(&$obj)
-     {
--        parent::Text_Wiki_Parse($obj);
-+        parent::__construct($obj);
-         
-         // convert the list of recognized schemes to a regex-safe string,
-         // where the pattern delim is a slash
-diff -aurN a/Text/Wiki/Parse/Mediawiki/Wikilink.php b/Text/Wiki/Parse/Mediawiki/Wikilink.php
---- a/Text/Wiki/Parse/Mediawiki/Wikilink.php	2014-06-04 23:24:45.000000000 -0400
-+++ b/Text/Wiki/Parse/Mediawiki/Wikilink.php	2018-02-14 13:40:46.030542359 -0500
-@@ -99,7 +99,7 @@
-     function __construct(&$obj)
-     {
-         $default = $this->conf;
--        parent::Text_Wiki_Parse($obj);
-+        parent::__construct($obj);
- 
-         // override config options for image if specified
-         if (in_array('Image', $this->wiki->disable)) {

diff --git a/dev-php/PEAR-Text_Wiki_Mediawiki/metadata.xml b/dev-php/PEAR-Text_Wiki_Mediawiki/metadata.xml
deleted file mode 100644
index 77793b997e9e..000000000000
--- a/dev-php/PEAR-Text_Wiki_Mediawiki/metadata.xml
+++ /dev/null
@@ -1,8 +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>
-</pkgmetadata>


                 reply	other threads:[~2024-07-11 18:47 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1720723420.95a2e3345b60599ae6381e84839d5131dbb2ab92.ceamac@gentoo \
    --to=ceamac@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox