diff options
author | V3n3RiX <venerix@koprulu.sector> | 2025-03-19 00:30:04 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2025-03-19 00:30:04 +0000 |
commit | 781c9128468d2e8302221d4d7152ae09cffc4a9e (patch) | |
tree | 1f0892c391dbb3e56d61a206fdc800034917eead /dev-php/pecl-ps | |
parent | cade0827f4ab3a7b13c870b7841c4462dde54dc6 (diff) |
gentoo auto-resync : 19:03:2025 - 00:30:03
Diffstat (limited to 'dev-php/pecl-ps')
-rw-r--r-- | dev-php/pecl-ps/Manifest | 4 | ||||
-rw-r--r-- | dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch | 11 | ||||
-rw-r--r-- | dev-php/pecl-ps/metadata.xml | 8 | ||||
-rw-r--r-- | dev-php/pecl-ps/pecl-ps-1.4.4.ebuild | 31 |
4 files changed, 0 insertions, 54 deletions
diff --git a/dev-php/pecl-ps/Manifest b/dev-php/pecl-ps/Manifest deleted file mode 100644 index a5db9a8bd1b7..000000000000 --- a/dev-php/pecl-ps/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX ps-1.4.4-fix-gd-detection.patch 230 BLAKE2B b052d4dbb6e802c9d25620dd2516b03492a7493518af5d26a97b58b7a2990c558ec64cc3a6eb36aa62d93829e040980c11e56b3133bb345eb8cb7795e71a1f6c SHA512 b9ed97bf9fe8b841b4d25870db036b95f1a744f5d9fc0d59b89f43f76e23dd27d2cca877086b7e66b8dfddbd0fc0fbdf34ba490c9546c54087772d9e0eeb1537 -DIST ps-1.4.4.tgz 637247 BLAKE2B 19dd32a2321fd53224c662e68603c7c330fcf8fe0d3e4e3d4a6e75e211c876225f1f6cf9325b117f7a3713abd87e6acfe25c4c9b0c161e6d6717f94cc90b7649 SHA512 42ab1fff661da68afb42d90dc7fb07761698f191beaf09b6dd4b2c3e7e67949ef06b2f6389738a462f58722f863c6b80f55a00a57dddc860250a4500cbfecf8b -EBUILD pecl-ps-1.4.4.ebuild 657 BLAKE2B 5d5003ec22a055adb1cef33f2ed57a34317e6cc1dc4a072548a990c73d59221d41c0105564410f7d4a22913ad29da25856ba797306acfb7047dfa30167d2408e SHA512 ea7db42bc1bdbf796e4b56a6eb05cfd5fbb82d0ec42ed04bbaeab5781407ce32c90b13f7dc61a8cbf96fbbff87a16ba3e48fc10c052405c680a85fbe2ebd58f7 -MISC metadata.xml 240 BLAKE2B f60f325331d493a555e53c29c7cf2742a415356da28a467505f1441f3fd790fd0d59050df84854bdc379d19d94a46121216479807975a2922d5a2fefde83416b SHA512 fada9d69055f2be962b95aac82f260ec5db7a3f4392d10f0458a1d125938fa17539f7ec486000f3a95cff85a3fbb6bbf1f6f4fe6c2de7aa420a7543a3e89d03e diff --git a/dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch b/dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch deleted file mode 100644 index 282bc7a34106..000000000000 --- a/dev-php/pecl-ps/files/ps-1.4.4-fix-gd-detection.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/config.m4 -+++ b/config.m4 -@@ -38,7 +38,7 @@ - PHP_ARG_ENABLE([gd], - [for GD support], - [AS_HELP_STRING([--enable-gd], -- [Include GD support])]) -+ [Include GD support])], no, no) - - if test "$PHP_GD" != "no"; then - diff --git a/dev-php/pecl-ps/metadata.xml b/dev-php/pecl-ps/metadata.xml deleted file mode 100644 index 222c77f3742a..000000000000 --- a/dev-php/pecl-ps/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> diff --git a/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild b/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild deleted file mode 100644 index 844a93c31842..000000000000 --- a/dev-php/pecl-ps/pecl-ps-1.4.4.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PHP_EXT_NAME="ps" -USE_PHP="php8-1" -PHP_EXT_NEEDED_USE="gd(-)?" - -inherit php-ext-pecl-r3 - -KEYWORDS="~amd64 ~ppc64 ~x86" - -DESCRIPTION="PHP extension for creating PostScript files" -LICENSE="BSD" -SLOT="7" -IUSE="examples gd" - -DEPEND="dev-libs/pslib gd? ( media-libs/gd:2= )" -RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/ps-1.4.4-fix-gd-detection.patch" ) - -src_configure() { - PHP_EXT_ECONF_ARGS=( $(use_enable gd) ) - php-ext-source-r3_src_configure -} - -src_test() { - # tests/004.phpt depends on set numeric format - LC_ALL=C php-ext-pecl-r3_src_test -} |