diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /dev-php/pecl-rrd | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'dev-php/pecl-rrd')
| -rw-r--r-- | dev-php/pecl-rrd/Manifest | 1 | ||||
| -rw-r--r-- | dev-php/pecl-rrd/files/2.0.1/0001-arginfo.patch | 81 | ||||
| -rw-r--r-- | dev-php/pecl-rrd/files/2.0.1/0002-relax-float-test-result.patch | 132 | ||||
| -rw-r--r-- | dev-php/pecl-rrd/metadata.xml | 9 | ||||
| -rw-r--r-- | dev-php/pecl-rrd/pecl-rrd-2.0.3.ebuild | 30 |
5 files changed, 0 insertions, 253 deletions
diff --git a/dev-php/pecl-rrd/Manifest b/dev-php/pecl-rrd/Manifest deleted file mode 100644 index 23eeb6d19ab1..000000000000 --- a/dev-php/pecl-rrd/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST rrd-2.0.3.tgz 19178 BLAKE2B 473fe53e858665372133db9f13d9aeac330da2ca57a8fb59f0eb280f1bdd40d2f0b28179a9b150acdf15d7bbc6fb5416a82dcd670c67ad39050cbd1c5795b62e SHA512 28679ccead54806d1e92accc6f5ebab582a41db802f95797ddb43e3e15690889be3437f22e2a14939d217422ac2700ef90ae0a9b36244ddead3856343b3e09b4 diff --git a/dev-php/pecl-rrd/files/2.0.1/0001-arginfo.patch b/dev-php/pecl-rrd/files/2.0.1/0001-arginfo.patch deleted file mode 100644 index 28496fe19c96..000000000000 --- a/dev-php/pecl-rrd/files/2.0.1/0001-arginfo.patch +++ /dev/null @@ -1,81 +0,0 @@ ---- a/rrd.c 2020/09/23 07:41:40 350617 -+++ b/rrd.c 2020/09/23 09:09:08 350618 -@@ -552,6 +552,9 @@ - ZEND_ARG_INFO(0, file) - ZEND_ARG_INFO(0, options) - ZEND_END_ARG_INFO() -+ -+ZEND_BEGIN_ARG_INFO(arginfo_rrd_void, 0) -+ZEND_END_ARG_INFO() - /* }}} */ - - /* {{{ */ -@@ -559,7 +562,7 @@ - PHP_FE(rrd_update, arginfo_rrd_update) - PHP_FE(rrd_create, arginfo_rrd_create) - PHP_FE(rrd_graph, arginfo_rrd_graph) -- PHP_FE(rrd_error, NULL) -+ PHP_FE(rrd_error, arginfo_rrd_void) - PHP_FE(rrd_fetch, arginfo_rrd_fetch) - PHP_FE(rrd_first, arginfo_rrd_first) - PHP_FE(rrd_info, arginfo_rrd_info) -@@ -569,9 +572,9 @@ - PHP_FE(rrd_tune, arginfo_rrd_tune) - PHP_FE(rrd_xport, arginfo_rrd_xport) - #ifdef HAVE_RRDC_DISCONNECT -- PHP_FE(rrdc_disconnect, NULL) -+ PHP_FE(rrdc_disconnect, arginfo_rrd_void) - #endif -- PHP_FE(rrd_version, NULL) -+ PHP_FE(rrd_version, arginfo_rrd_void) - PHP_FE_END - }; - /* }}} */ ---- a/rrd_create.c 2020/09/23 07:41:40 350617 -+++ b/rrd_create.c 2020/09/23 09:09:08 350618 -@@ -323,10 +323,13 @@ - ZEND_ARG_INFO(0, description) - ZEND_END_ARG_INFO() - -+ZEND_BEGIN_ARG_INFO_EX(arginfo_rrdcreator_void, 0, 0, 0) -+ZEND_END_ARG_INFO() -+ - /* class method table */ - static zend_function_entry rrd_create_methods[] = { - PHP_ME(RRDCreator, __construct, arginfo_rrdcreator_construct, ZEND_ACC_PUBLIC) -- PHP_ME(RRDCreator, save, NULL, ZEND_ACC_PUBLIC) -+ PHP_ME(RRDCreator, save, arginfo_rrdcreator_void, ZEND_ACC_PUBLIC) - PHP_ME(RRDCreator, addDataSource, arginfo_rrdcreator_description, ZEND_ACC_PUBLIC) - PHP_ME(RRDCreator, addArchive, arginfo_rrdcreator_description, ZEND_ACC_PUBLIC) - PHP_FE_END ---- a/rrd_graph.c 2020/09/23 07:41:40 350617 -+++ b/rrd_graph.c 2020/09/23 09:09:08 350618 -@@ -140,6 +140,7 @@ - array_init(&zv_argv); - - ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL(obj->zv_arr_options), num_key, zs_key, zv_option_val) { -+ (void)num_key; /* to avoid -Wunused-but-set-variable */ - smart_string option = {0}; /* one argument option */ - - /* option with string key means long option, hence they are used as -@@ -356,6 +357,9 @@ - /* }}} */ - - /* arguments */ -+ZEND_BEGIN_ARG_INFO_EX(arginfo_rrd_void, 0, 0, 0) -+ZEND_END_ARG_INFO() -+ - ZEND_BEGIN_ARG_INFO_EX(arginfo_rrd_path, 0, 0, 1) - ZEND_ARG_INFO(0, path) - ZEND_END_ARG_INFO() -@@ -367,8 +371,8 @@ - /* class method table */ - static zend_function_entry rrd_graph_methods[] = { - PHP_ME(RRDGraph, __construct, arginfo_rrd_path, ZEND_ACC_PUBLIC) -- PHP_ME(RRDGraph, save, NULL, ZEND_ACC_PUBLIC) -- PHP_ME(RRDGraph, saveVerbose, NULL, ZEND_ACC_PUBLIC) -+ PHP_ME(RRDGraph, save, arginfo_rrd_void, ZEND_ACC_PUBLIC) -+ PHP_ME(RRDGraph, saveVerbose, arginfo_rrd_void, ZEND_ACC_PUBLIC) - PHP_ME(RRDGraph, setOptions, arginfo_rrd_options, ZEND_ACC_PUBLIC) - PHP_FE_END - }; diff --git a/dev-php/pecl-rrd/files/2.0.1/0002-relax-float-test-result.patch b/dev-php/pecl-rrd/files/2.0.1/0002-relax-float-test-result.patch deleted file mode 100644 index b4a692fc3f5f..000000000000 --- a/dev-php/pecl-rrd/files/2.0.1/0002-relax-float-test-result.patch +++ /dev/null @@ -1,132 +0,0 @@ ---- a/tests/rrd_010.phpt 2020/09/23 07:41:40 350617 -+++ b/tests/rrd_010.phpt 2020/09/23 09:09:08 350618 -@@ -40,11 +40,11 @@ - [920805900]=> - float(0) - [920806200]=> -- float(0.033333333333333) -+ float(0.03333333333%s) - [920806500]=> -- float(0.033333333333333) -+ float(0.03333333333%s) - [920806800]=> -- float(0.033333333333333) -+ float(0.03333333333%s) - [920807100]=> - float(0.02) - [920807400]=> -@@ -52,20 +52,20 @@ - [920807700]=> - float(0.02) - [920808000]=> -- float(0.013333333333333) -+ float(0.01333333333%s) - [920808300]=> -- float(0.016666666666667) -+ float(0.01666666666%s) - } - ["speed2"]=> - array(13) { - [920804700]=> - float(NAN) - [920805000]=> -- float(0.056666666666667) -+ float(0.05666666666%s) - [920805300]=> - float(0.02) - [920805600]=> -- float(0.0033333333333333) -+ float(0.00333333333%s) - [920805900]=> - float(0) - [920806200]=> -@@ -73,7 +73,7 @@ - [920806500]=> - float(0) - [920806800]=> -- float(0.066666666666667) -+ float(0.06666666666%s) - [920807100]=> - float(0.02) - [920807400]=> -@@ -81,9 +81,9 @@ - [920807700]=> - float(0.02) - [920808000]=> -- float(0.013333333333333) -+ float(0.01333333333%s) - [920808300]=> -- float(0.016666666666667) -+ float(0.01666666666%s) - } - } --} -\ No newline at end of file -+} ---- a/tests/rrd_012.phpt 2020/09/23 07:41:40 350617 -+++ b/tests/rrd_012.phpt 2020/09/23 09:09:08 350618 -@@ -69,7 +69,7 @@ - ["rra[1].xff"]=> - float(0.5) - ["rra[1].cdp_prep[0].value"]=> -- float(0.026666666666667) -+ float(0.02666666666%s) - ["rra[1].cdp_prep[0].unknown_datapoints"]=> - int(0) - } ---- a/tests/rrd_017.phpt 2020/09/23 07:41:40 350617 -+++ b/tests/rrd_017.phpt 2020/09/23 09:09:08 350618 -@@ -47,11 +47,11 @@ - [920805900]=> - float(0) - [920806200]=> -- float(0.033333333333333) -+ float(0.0333333333%s) - [920806500]=> -- float(0.033333333333333) -+ float(0.0333333333%s) - [920806800]=> -- float(0.033333333333333) -+ float(0.0333333333%s) - [920807100]=> - float(0.02) - [920807400]=> -@@ -59,9 +59,9 @@ - [920807700]=> - float(0.02) - [920808000]=> -- float(0.013333333333333) -+ float(0.0133333333%s) - [920808300]=> -- float(0.016666666666667) -+ float(0.0166666666%s) - } - } - [1]=> -@@ -81,11 +81,11 @@ - [920805900]=> - float(0) - [920806200]=> -- float(33.333333333333) -+ float(33.333333333%s) - [920806500]=> -- float(33.333333333333) -+ float(33.333333333%s) - [920806800]=> -- float(33.333333333333) -+ float(33.333333333%s) - [920807100]=> - float(20) - [920807400]=> -@@ -93,9 +93,9 @@ - [920807700]=> - float(20) - [920808000]=> -- float(13.333333333333) -+ float(13.333333333%s) - [920808300]=> -- float(16.666666666667) -+ float(16.666666666%s) - } - } - } diff --git a/dev-php/pecl-rrd/metadata.xml b/dev-php/pecl-rrd/metadata.xml deleted file mode 100644 index 7ee69925d9aa..000000000000 --- a/dev-php/pecl-rrd/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>php-bugs@gentoo.org</email> - <name>PHP</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</pkgmetadata> diff --git a/dev-php/pecl-rrd/pecl-rrd-2.0.3.ebuild b/dev-php/pecl-rrd/pecl-rrd-2.0.3.ebuild deleted file mode 100644 index 19ef5c74540e..000000000000 --- a/dev-php/pecl-rrd/pecl-rrd-2.0.3.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -USE_PHP="php8-2" - -inherit php-ext-pecl-r3 - -DESCRIPTION="RRDtool bindings for PHP" -LICENSE="BSD" -SLOT="7" -KEYWORDS="~amd64 ~x86" - -DEPEND="net-analyzer/rrdtool[graph(-)]" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -#PATCHES=( "${FILESDIR}/${PV}" ) -PHP_EXT_ECONF_ARGS=() - -src_test() { - local slot - for slot in $(php_get_slots); do - php_init_slot_env "${slot}" - # Prepare test data - emake -C tests/data all - NO_INTERACTION="yes" emake test - done -} |
