diff options
author | Brian Evans <grknight@gentoo.org> | 2019-12-30 09:55:59 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2019-12-30 10:09:12 -0500 |
commit | 12ea5452a9b31e3ba843fb89076b5948410ee645 (patch) | |
tree | e5b996c437526bb2fd0c20ee58d1a21bc26a8280 | |
parent | dev-php/pecl-spl_types: Drop package (diff) | |
download | gentoo-12ea5452a9b31e3ba843fb89076b5948410ee645.tar.gz gentoo-12ea5452a9b31e3ba843fb89076b5948410ee645.tar.bz2 gentoo-12ea5452a9b31e3ba843fb89076b5948410ee645.zip |
dev-php/pecl-svn: Drop package
Signed-off-by: Brian Evans <grknight@gentoo.org>
-rw-r--r-- | dev-php/pecl-svn/Manifest | 1 | ||||
-rw-r--r-- | dev-php/pecl-svn/files/1.0.3-c99-fixes.patch | 68 | ||||
-rw-r--r-- | dev-php/pecl-svn/metadata.xml | 8 | ||||
-rw-r--r-- | dev-php/pecl-svn/pecl-svn-1.0.3-r1.ebuild | 22 | ||||
-rw-r--r-- | profiles/package.mask | 1 |
5 files changed, 0 insertions, 100 deletions
diff --git a/dev-php/pecl-svn/Manifest b/dev-php/pecl-svn/Manifest deleted file mode 100644 index 42531249d7fd..000000000000 --- a/dev-php/pecl-svn/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST svn-1.0.3.tgz 27216 BLAKE2B 906f11dbc048f3bc7fa2b27c19661ce40c3008b35344cd0446c88432e2a6423ab6aeb396ded7723f70229767238d8a10eed6f8cd4ae29e73497eee6c5a0ac0a9 SHA512 41f111c3a47f66317c47318162bfd17c22ffef6462ababdafd9ed38220b1135464e52a365fbc206fd510dafad739437174faf1d0dd144707fad62da43c6c1a79 diff --git a/dev-php/pecl-svn/files/1.0.3-c99-fixes.patch b/dev-php/pecl-svn/files/1.0.3-c99-fixes.patch deleted file mode 100644 index a1214ffd0cbe..000000000000 --- a/dev-php/pecl-svn/files/1.0.3-c99-fixes.patch +++ /dev/null @@ -1,68 +0,0 @@ ---- a/svn.c 2016/05/04 04:14:33 339123 -+++ b/svn.c 2016/05/04 07:32:45 339129 -@@ -977,6 +977,7 @@ - apr_pool_t *subpool; - svn_opt_revision_t peg_revision; - const char *true_path; -+ apr_hash_index_t *hi; - - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lbb", - &repos_url, &repos_url_len, &revision.value.number, &recurse, &peg) == FAILURE) { -@@ -1021,7 +1022,7 @@ - - array_init(return_value); - -- for (apr_hash_index_t *hi = apr_hash_first(subpool, dirents); hi; hi = apr_hash_next(hi)) { -+ for (hi = apr_hash_first(subpool, dirents); hi; hi = apr_hash_next(hi)) { - const char *utf8_entryname; - svn_dirent_t *dirent; - apr_time_t now = apr_time_now(); -@@ -1031,9 +1032,10 @@ - char timestr[20]; - const char *utf8_timestr; - zval *row; -+ const char *key; - -- svn_utf_cstring_to_utf8 (&utf8_entryname, apr_hash_this_key(hi), subpool); -- dirent = apr_hash_this_val(hi); -+ apr_hash_this(hi, &key, NULL, &dirent); -+ svn_utf_cstring_to_utf8 (&utf8_entryname, key, subpool); - - /* svn_time_to_human_cstring gives us something *way* too long - to use for this, so we have to roll our own. We include -@@ -1101,6 +1103,7 @@ - { - struct php_svn_log_receiver_baton *baton = (struct php_svn_log_receiver_baton*) ibaton; - zval *row, *paths; -+ apr_hash_index_t *hi; - TSRMLS_FETCH(); - - if (rev == 0) { -@@ -1127,7 +1130,7 @@ - MAKE_STD_ZVAL(paths); - array_init(paths); - -- for (apr_hash_index_t *hi = apr_hash_first(pool, changed_paths); hi; hi = apr_hash_next(hi)) { -+ for (hi = apr_hash_first(pool, changed_paths); hi; hi = apr_hash_next(hi)) { - svn_log_changed_path_t *log_item; - zval *zpaths; - const char *path; -@@ -1135,8 +1138,7 @@ - MAKE_STD_ZVAL(zpaths); - array_init(zpaths); - -- path = apr_hash_this_key(hi); -- log_item = apr_hash_this_val(hi); -+ apr_hash_this(hi, &path, NULL, &log_item); - - add_assoc_stringl(zpaths, "action", &(log_item->action), 1,1); - add_assoc_string(zpaths, "path", path, 1); -@@ -1152,7 +1154,7 @@ - add_assoc_zval(paths, path, zpaths); - } - -- zend_hash_sort(Z_ARRVAL_P(paths), zend_qsort, compare_keys_as_paths, 1); -+ zend_hash_sort(Z_ARRVAL_P(paths), zend_qsort, compare_keys_as_paths, 1 TSRMLS_CC); - add_assoc_zval(row,"paths",paths); - } - diff --git a/dev-php/pecl-svn/metadata.xml b/dev-php/pecl-svn/metadata.xml deleted file mode 100644 index aca42932b833..000000000000 --- a/dev-php/pecl-svn/metadata.xml +++ /dev/null @@ -1,8 +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> -</pkgmetadata> diff --git a/dev-php/pecl-svn/pecl-svn-1.0.3-r1.ebuild b/dev-php/pecl-svn/pecl-svn-1.0.3-r1.ebuild deleted file mode 100644 index 52eb35c8875d..000000000000 --- a/dev-php/pecl-svn/pecl-svn-1.0.3-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PHP_EXT_NAME="svn" - -USE_PHP="php5-6" - -inherit php-ext-pecl-r3 - -KEYWORDS="~amd64 ~x86" - -DESCRIPTION="PHP Bindings for the Subversion Revision control system" -LICENSE="PHP-3.01" -SLOT="0" -IUSE="" - -DEPEND="dev-vcs/subversion" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/1.0.3-c99-fixes.patch" ) diff --git a/profiles/package.mask b/profiles/package.mask index 390b7ffaf30c..83e6237b7e1a 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -780,7 +780,6 @@ virtual/httpd-php:5.6 # Brian Evans <grknight@gentoo.org> (2019-10-01) # Old extensions which only work with PHP <7 # Removal in 90 days. Bug 651784 -dev-php/pecl-svn dev-php/pecl-xrange dev-php/suhosin dev-php/xcache |