diff options
author | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:04 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-15 09:52:04 +0200 |
commit | b2d596fcea9e00b61ae8d6b11092026b3d504007 (patch) | |
tree | b04bce7a1d1cd0e7f7c58c9177ca50133357170a /dev-php | |
parent | dev-php/pecl-http: drop 3.3.0 (diff) | |
download | gentoo-b2d596fcea9e00b61ae8d6b11092026b3d504007.tar.gz gentoo-b2d596fcea9e00b61ae8d6b11092026b3d504007.tar.bz2 gentoo-b2d596fcea9e00b61ae8d6b11092026b3d504007.zip |
dev-php/pecl-ncurses: treeclean
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-ncurses/Manifest | 2 | ||||
-rw-r--r-- | dev-php/pecl-ncurses/files/pecl-ncurses-1.0.2-php7.3.patch | 175 | ||||
-rw-r--r-- | dev-php/pecl-ncurses/metadata.xml | 8 | ||||
-rw-r--r-- | dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r5.ebuild | 23 |
4 files changed, 0 insertions, 208 deletions
diff --git a/dev-php/pecl-ncurses/Manifest b/dev-php/pecl-ncurses/Manifest deleted file mode 100644 index a25fbc4308db..000000000000 --- a/dev-php/pecl-ncurses/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST ncurses-1.0.2.tgz 16226 BLAKE2B 2b50fb953594f71e8ba2c93cc8ac1443168ea360c5c752eb4ebb941cdbd4e576bd6d5516722bbe06f31a5dd4732bf47c6fd740599af161cb33cbcb45493bbc5d SHA512 e1f684dcab2aa4dd3fded79fed02c78de1525f0384027fe64ad08759617f13ca6fb11742e3407723eecc431ed99847c0c98ae559797dc98ce373a01ba8413bf2 -DIST pecl-ncurses-1.0.2-php7.patch.xz 5096 BLAKE2B 8034121b97cc1769534923570c929444c0cd01238615e51c47845b9b10db4b62353a853a17d8ddd44c8ad47e68c44363321f7d08c2dfdd0e2948ddc7d33b2b9d SHA512 1f1dcaaa61033d7db55048f97e48029a335d5d191447038324eb170c9877da62a7b03cec20ea7496c073b76d7ba1009b4374b088c87e1838ee2dc433749c41fa diff --git a/dev-php/pecl-ncurses/files/pecl-ncurses-1.0.2-php7.3.patch b/dev-php/pecl-ncurses/files/pecl-ncurses-1.0.2-php7.3.patch deleted file mode 100644 index 9b4f8a6274b5..000000000000 --- a/dev-php/pecl-ncurses/files/pecl-ncurses-1.0.2-php7.3.patch +++ /dev/null @@ -1,175 +0,0 @@ -diff -aurN a/ncurses_fe.c b/ncurses_fe.c ---- a/ncurses_fe.c 2012-06-16 13:05:19.000000000 -0400 -+++ b/ncurses_fe.c 2019-02-06 10:41:09.000000000 -0500 -@@ -123,7 +123,9 @@ - PHP_FE(ncurses_savetty, NULL) - PHP_FE(ncurses_termattrs, NULL) - PHP_FE(ncurses_use_default_colors, NULL) -+#ifdef HAVE_NCURSES_SLK_ATTR - PHP_FE(ncurses_slk_attr, NULL) -+#endif - PHP_FE(ncurses_slk_clear, NULL) - PHP_FE(ncurses_slk_noutrefresh, NULL) - PHP_FE(ncurses_slk_refresh, NULL) -@@ -191,7 +193,9 @@ - #ifdef HAVE_NCURSES_ASSUME_DEFAULT_COLORS - PHP_FE(ncurses_assume_default_colors, NULL) - #endif -+#ifdef HAVE_NCURSES_DEFINE_KEY - PHP_FE(ncurses_define_key, NULL) -+#endif - PHP_FE(ncurses_hline, NULL) - PHP_FE(ncurses_vline, NULL) - PHP_FE(ncurses_keyok, NULL) -@@ -205,6 +209,10 @@ - PHP_FE(ncurses_waddstr, NULL) - PHP_FE(ncurses_wnoutrefresh, NULL) - PHP_FE(ncurses_wclear, NULL) -+ PHP_FE(ncurses_wscrl, NULL) -+ PHP_FE(ncurses_wsetscrreg, NULL) -+ PHP_FE(ncurses_scrollok, NULL) -+ - #ifdef HAVE_NCURSES_COLOR_SET - PHP_FE(ncurses_wcolor_set, NULL) - #endif -diff -aurN a/ncurses_functions.c b/ncurses_functions.c ---- a/ncurses_functions.c 2019-06-07 11:00:54.713250845 -0400 -+++ b/ncurses_functions.c 2019-02-06 10:41:09.000000000 -0500 -@@ -163,16 +163,25 @@ - *pscr = stdscr; - zscr = zend_register_resource(pscr, le_ncurses_windows); - ZVAL_RES(&c.value, zscr); -+#if PHP_VERSION_ID < 70300 - c.flags = CONST_CS; -+#endif - c.name = zend_string_init("STDSCR", sizeof("STDSCR")-1, 0); - zend_register_constant(&c); - -+#if PHP_VERSION_ID < 70300 - #define PHP_NCURSES_DEF_CONST(x) \ - ZVAL_LONG(&c.value, x); \ - c.flags = CONST_CS; \ - c.name = zend_string_init("NCURSES_" #x, sizeof("NCURSES_" #x)-1, 0); \ - zend_register_constant(&c) - #else -+#define PHP_NCURSES_DEF_CONST(x) \ -+ ZVAL_LONG(&c.value, x); \ -+ c.name = zend_string_init("NCURSES_" #x, sizeof("NCURSES_" #x)-1, 0); \ -+ zend_register_constant(&c) -+#endif -+#else - zval *zscr; - - *pscr = stdscr; -@@ -188,7 +197,6 @@ - /* we need this "interesting" arrangement because the - * underlying values of the ACS_XXX defines are not - * initialized until after ncurses has been initialized */ -- - #define PHP_NCURSES_DEF_CONST(x) \ - ZVAL_LONG(zscr, x); \ - c.value = *zscr; \ -@@ -1904,6 +1912,66 @@ - } - /* }}} */ - -+/* {{{ proto int ncurses_wscrl(resource window, int count) -+ Scrolls window content up or down without changing current position */ -+PHP_FUNCTION(ncurses_wscrl) -+{ -+ zval *handle; -+ zend_long intarg; -+ WINDOW **w; -+ -+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &handle, &intarg) == FAILURE) { -+ return; -+ } -+ -+ IS_NCURSES_INITIALIZED(); -+ -+ FETCH_WINRES(w, &handle); -+ -+ RETURN_LONG(wscrl(*w, intarg)); -+} -+/* }}} */ -+ -+/* {{{ proto int ncurses_wsetscrreg(resource window, int top, int bot) -+ Set region for scrolling */ -+PHP_FUNCTION(ncurses_wsetscrreg) -+{ -+ zval *handle; -+ zend_long top, bot; -+ WINDOW **w; -+ -+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rll", &handle, &top, &bot) == FAILURE) { -+ return; -+ } -+ -+ IS_NCURSES_INITIALIZED(); -+ -+ FETCH_WINRES(w, &handle); -+ -+ RETURN_LONG(wsetscrreg(*w, top, bot)); -+} -+/* }}} */ -+ -+/* {{{ proto int ncurses_scrollok(resource window, bool bf) -+ Enable or disable scrolling of window content */ -+PHP_FUNCTION(ncurses_scrollok) -+{ -+ zval *handle; -+ zend_bool bf; -+ WINDOW **w; -+ -+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rb", &handle, &bf) == FAILURE) { -+ return; -+ } -+ -+ IS_NCURSES_INITIALIZED(); -+ -+ FETCH_WINRES(w, &handle); -+ -+ RETURN_LONG(scrollok(*w, bf)); -+} -+/* }}} */ -+ - /* {{{ proto string ncurses_termname(void) - Returns terminal name */ - PHP_FUNCTION(ncurses_termname) -@@ -2609,7 +2677,11 @@ - if (above) { - #if PHP_MAJOR_VERSION >= 7 - zend_resource *id = (zend_resource *)panel_userptr(above); -+#if PHP_VERSION_ID < 70300 - GC_REFCOUNT(id)++; -+#else -+ GC_ADDREF(id); -+#endif - RETURN_RES(id); - #else - long id = (long)panel_userptr(above); -@@ -2643,7 +2715,11 @@ - if (below) { - #if PHP_MAJOR_VERSION >= 7 - zend_resource *id = (zend_resource *)panel_userptr(below); -+#if PHP_VERSION_ID < 70300 - GC_REFCOUNT(id)++; -+#else -+ GC_ADDREF(id); -+#endif - RETURN_RES(id); - #else - long id = (long)panel_userptr(below); -diff -aurN a/php_ncurses_fe.h b/php_ncurses_fe.h ---- a/php_ncurses_fe.h 2012-06-16 13:05:19.000000000 -0400 -+++ b/php_ncurses_fe.h 2019-02-06 10:41:09.000000000 -0500 -@@ -158,6 +158,9 @@ - PHP_FUNCTION(ncurses_prefresh); - PHP_FUNCTION(ncurses_pnoutrefresh); - -+PHP_FUNCTION(ncurses_wscrl); -+PHP_FUNCTION(ncurses_wsetscrreg); -+PHP_FUNCTION(ncurses_scrollok); - PHP_FUNCTION(ncurses_wstandout); - PHP_FUNCTION(ncurses_wstandend); - PHP_FUNCTION(ncurses_wattrset); diff --git a/dev-php/pecl-ncurses/metadata.xml b/dev-php/pecl-ncurses/metadata.xml deleted file mode 100644 index 222c77f3742a..000000000000 --- a/dev-php/pecl-ncurses/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-ncurses/pecl-ncurses-1.0.2-r5.ebuild b/dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r5.ebuild deleted file mode 100644 index 007edf9f7a58..000000000000 --- a/dev-php/pecl-ncurses/pecl-ncurses-1.0.2-r5.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_PHP="php7-4" - -inherit php-ext-pecl-r3 - -SRC_URI+=" https://dev.gentoo.org/~grknight/distfiles/${P}-php7.patch.xz" - -DESCRIPTION="Terminal screen handling and optimization package" - -LICENSE="PHP-3.01" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -DEPEND="sys-libs/ncurses:0=" -RDEPEND="${DEPEND}" - -PHP_EXT_ECONF_ARGS=( --enable-ncursesw ) -PATCHES=( "${WORKDIR}/${P}-php7.patch" "${FILESDIR}/${P}-php7.3.patch" ) |