summaryrefslogtreecommitdiff
path: root/dev-php
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-08-13 11:06:03 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-08-13 11:06:03 +0100
commitbe8708090362c01c6111c4b76f1e395c14d86e00 (patch)
treebb61ca73e867522450783849eb63c9e1f0ba1730 /dev-php
parente93a38d535f2c29b55a5756d2de99425986b0bf3 (diff)
gentoo auto-resync : 13:08:2024 - 11:06:03
Diffstat (limited to 'dev-php')
-rw-r--r--dev-php/Manifest.gzbin19170 -> 18999 bytes
-rw-r--r--dev-php/PEAR-Mail_mimeDecode/Manifest4
-rw-r--r--dev-php/PEAR-Mail_mimeDecode/PEAR-Mail_mimeDecode-1.5.6-r3.ebuild24
-rw-r--r--dev-php/PEAR-Mail_mimeDecode/files/PEAR-Mail_mimeDecode-1.5.6-r3-php8_compat.patch12
-rw-r--r--dev-php/PEAR-Mail_mimeDecode/metadata.xml11
5 files changed, 0 insertions, 51 deletions
diff --git a/dev-php/Manifest.gz b/dev-php/Manifest.gz
index c1645bf607e4..760d36b950e7 100644
--- a/dev-php/Manifest.gz
+++ b/dev-php/Manifest.gz
Binary files differ
diff --git a/dev-php/PEAR-Mail_mimeDecode/Manifest b/dev-php/PEAR-Mail_mimeDecode/Manifest
deleted file mode 100644
index 6e7758bc04ad..000000000000
--- a/dev-php/PEAR-Mail_mimeDecode/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX PEAR-Mail_mimeDecode-1.5.6-r3-php8_compat.patch 404 BLAKE2B 2bf9a4dd203f772988afcc74777e0bbdd2c945328846d83ff92d50982d51d8b10304deb9dc4105c0abdbcc26e10717cf41952f9131ae042b93db143711a64079 SHA512 4671c12d2579c72525c62aebfe2696e1af634340d02f8778e321a6eb01fa4866b922ccfa1dc60c40b5935a0c15654a05cebd5c85f211c9431bbf87c93a8523c7
-DIST Mail_mimeDecode-1.5.6.tgz 13258 BLAKE2B 7e027cf9bf2a450bde639f8c530f216cc8dfd9eab719829dedad029d98fc5c4806279d13ec3ffb5191ba23edf64ae658ca0ec8d83f116da3fafbd23d758a9f00 SHA512 fe46ff2542acd3b180981c7dae41a1979b2edb3bfa5ad716a1ff39a255c2c04d92a7d770ae6531e38f3b869173f576fba44410c8e03269510d71dce5fa345bd1
-EBUILD PEAR-Mail_mimeDecode-1.5.6-r3.ebuild 539 BLAKE2B 8bec8b0905a04c5b19eb14d44760ca150e5aba2e2b9aa2156e2dc641c3123384bace832164f084e93271b4f162131114beaeff0d548870a6b846b499aa915aa7 SHA512 b9e032e0656e226c516852831aa06bd5f1455c2742081511579691404a4ff918b643924b652b5fc65695e85237ff665f64cbfc71d982f9c7a26aaff70ad66055
-MISC metadata.xml 318 BLAKE2B 1c42fc40996e9cbf8eedbe0db55a4fc9df55e1b75fd67154199f009839ca1a291cefd40608024b7e7caae4a694d27468907c673d87d4b470fb5b61657ace2032 SHA512 19ff2178e9febd85c0642452b052421a203d335dedb58accae0e89996f81b1e2420164c06e558600cca86378850b45f8854c88d72166fd5407712b86eee411a7
diff --git a/dev-php/PEAR-Mail_mimeDecode/PEAR-Mail_mimeDecode-1.5.6-r3.ebuild b/dev-php/PEAR-Mail_mimeDecode/PEAR-Mail_mimeDecode-1.5.6-r3.ebuild
deleted file mode 100644
index 2449fce9dc64..000000000000
--- a/dev-php/PEAR-Mail_mimeDecode/PEAR-Mail_mimeDecode-1.5.6-r3.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit php-pear-r2
-
-DESCRIPTION="Provides a class to decode mime messages (split from PEAR-Mail_Mime)"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ppc64 ~s390 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-php/PEAR-Mail_Mime-1.5.2"
-DEPEND="test? ( ${RDEPEND} dev-php/PEAR-PEAR )"
-
-PATCHES=(
- "${FILESDIR}/PEAR-Mail_mimeDecode-1.5.6-r3-php8_compat.patch"
-)
-
-src_test() {
- pear run-tests tests || die
-}
diff --git a/dev-php/PEAR-Mail_mimeDecode/files/PEAR-Mail_mimeDecode-1.5.6-r3-php8_compat.patch b/dev-php/PEAR-Mail_mimeDecode/files/PEAR-Mail_mimeDecode-1.5.6-r3-php8_compat.patch
deleted file mode 100644
index e167af7f6a33..000000000000
--- a/dev-php/PEAR-Mail_mimeDecode/files/PEAR-Mail_mimeDecode-1.5.6-r3-php8_compat.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-https://pear.php.net/bugs/bug.php?id=23775
---- a/Mail/mimeDecode.php
-+++ b/Mail/mimeDecode.php
-@@ -834,7 +834,7 @@
-
- // Replace encoded characters
-
-- $cb = create_function('$matches', ' return chr(hexdec($matches[0]));');
-+ $cb = function($matches) { return chr(hexdec($matches[0])); };
-
- $input = preg_replace_callback( '/=([a-f0-9]{2})/i', $cb, $input);
-
diff --git a/dev-php/PEAR-Mail_mimeDecode/metadata.xml b/dev-php/PEAR-Mail_mimeDecode/metadata.xml
deleted file mode 100644
index 6f1279cd96c2..000000000000
--- a/dev-php/PEAR-Mail_mimeDecode/metadata.xml
+++ /dev/null
@@ -1,11 +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>
- <upstream>
- <remote-id type="pear">Mail_mimeDecode</remote-id>
- </upstream>
-</pkgmetadata>