From 1849a9b3c4cab7610e0880d233bdc22143a60839 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 10 Jun 2012 07:06:04 +0200 Subject: repo reorg --- Makefile | 4 + gmagick-tests.patch | 32 +++++++ gmagick.patch | 12 +++ php-pecl-gmagick.spec | 244 ++++++++++++++++++++++++++++++++++++++++++++++++++ px.c | 20 +++++ 5 files changed, 312 insertions(+) create mode 100644 Makefile create mode 100644 gmagick-tests.patch create mode 100644 gmagick.patch create mode 100644 php-pecl-gmagick.spec create mode 100644 px.c diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e65467 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile + diff --git a/gmagick-tests.patch b/gmagick-tests.patch new file mode 100644 index 0000000..280ff67 --- /dev/null +++ b/gmagick-tests.patch @@ -0,0 +1,32 @@ +--- tests.orig/gmagick-054-getquantumdepth.phpt 2012-01-23 08:06:35.694766376 +0100 ++++ tests/gmagick-054-getquantumdepth.phpt 2012-01-23 08:17:58.499797061 +0100 +@@ -9,11 +9,22 @@ + read("magick:rose"); +-print_r($gm->getQuantumDepth()); ++$q=$gm->getQuantumDepth(); ++if (is_array($q) && count($q)==2 && isset($q['quantumDepthLong']) && isset($q['quantumDepthString'])) { ++ echo "Struct OK\n"; ++ if ($q['quantumDepthLong']=='8' && $q['quantumDepthString']=='Q8') { ++ echo "Quantum OK\n"; ++ } else if ($q['quantumDepthLong']=='16' && $q['quantumDepthString']=='Q16') { ++ echo "Quantum OK\n"; ++ } else { ++ echo "Quantum KO\n"; ++ print_r($q); ++ } ++} else { ++ echo "Struct KO\n"; ++ print_r($q); ++} + ?> + --EXPECTF-- +-Array +-( +- [quantumDepthLong] => 8 +- [quantumDepthString] => Q8 +-) +\ Pas de fin de ligne à la fin du fichier ++Struct OK ++Quantum OK diff --git a/gmagick.patch b/gmagick.patch new file mode 100644 index 0000000..391efda --- /dev/null +++ b/gmagick.patch @@ -0,0 +1,12 @@ +diff -up gmagick-1.1.0RC2/gmagickpixel_methods.c.orig gmagick-1.1.0RC2/gmagickpixel_methods.c +--- gmagick-1.1.0RC2/gmagickpixel_methods.c.orig 2012-01-21 07:42:13.727957934 +0100 ++++ gmagick-1.1.0RC2/gmagickpixel_methods.c 2012-01-21 07:43:09.328959265 +0100 +@@ -82,7 +82,7 @@ PHP_METHOD(gmagickpixel, getcolor) + zend_bool as_array = 0, normalise_array = 0; + + /* Parse parameters given to function */ +- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &as_array, &normalise_array) == FAILURE) { ++ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|bb", &as_array, &normalise_array) == FAILURE) { + return; + } + diff --git a/php-pecl-gmagick.spec b/php-pecl-gmagick.spec new file mode 100644 index 0000000..d95742c --- /dev/null +++ b/php-pecl-gmagick.spec @@ -0,0 +1,244 @@ +%{!?__pecl: %{expand: %%global __pecl %{_bindir}/pecl}} + +%global pecl_name gmagick +%global prever RC3 + +Summary: Provides a wrapper to the GraphicsMagick library +Name: php-pecl-%{pecl_name} +Version: 1.1.0 +Release: 0.5.%{prever}%{?dist} +License: PHP +Group: Development/Libraries +URL: http://pecl.php.net/package/gmagick +Source0: http://pecl.php.net/get/gmagick-%{version}%{?prever}.tgz + +# https://bugs.php.net/60829 getColor don't accept second option +Patch0: gmagick.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n) +BuildRequires: php-pear >= 1.4.7 +BuildRequires: php-devel >= 5.1.3, GraphicsMagick-devel >= 1.2.6 + +Requires(post): %{__pecl} +Requires(postun): %{__pecl} +Requires: php(zend-abi) = %{php_zend_api} +Requires: php(api) = %{php_core_api} + +Provides: php-pecl(%{pecl_name}) = %{version}%{?prever} + +Conflicts: php-pecl-imagick +Conflicts: php-magickwand + + +# RPM 4.8 +%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} +%{?filter_setup} +# RPM 4.9 +%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}%{_libdir}/.*\\.so$ + + +%description +%{pecl_name} is a php extension to create, modify and obtain meta information +of images using the GraphicsMagick API. + + +%prep +%setup -qc + +cd %{pecl_name}-%{version}%{?prever} +%patch0 -p1 -b .options + +%if 0%{?fedora} <= 15 && 0%{?rhel} <= 6 +# Remove know to fail tests (GM font config issue) +# https://bugzilla.redhat.com/783906 +rm -f tests/gmagick-006-annotateimage.phpt +%endif + +# Check extension version +extver=$(sed -n '/#define PHP_GMAGICK_VERSION/{s/.* "//;s/".*$//;p}' php_gmagick.h) +if test "x${extver}" != "x%{version}%{?prever}"; then + : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever}. + exit 1 +fi +cd .. + +# Create configuration file +cat >%{pecl_name}.ini << 'EOF' +; Enable %{pecl_name} extension module +extension=%{pecl_name}.so +EOF + +# Duplicate build tree for nts/zts +cp -r %{pecl_name}-%{version}%{?prever} %{pecl_name}-zts + + +%build +cd %{pecl_name}-%{version}%{?prever} +%{_bindir}/phpize +%{configure} --with-%{pecl_name} --with-php-config=%{_bindir}/php-config +make %{?_smp_mflags} + +cd ../%{pecl_name}-zts +%{_bindir}/zts-phpize +%{configure} --with-%{pecl_name} --with-php-config=%{_bindir}/zts-php-config +make %{?_smp_mflags} + + +%install +rm -rf %{buildroot} + +make -C %{pecl_name}-%{version}%{?prever} \ + install INSTALL_ROOT=%{buildroot} + +make -C %{pecl_name}-zts \ + install INSTALL_ROOT=%{buildroot} + +# Install XML package description +install -D -m 664 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + +# Drop in the bit of configuration +install -D -m 664 %{pecl_name}.ini %{buildroot}%{php_inidir}/%{pecl_name}.ini +install -D -m 664 %{pecl_name}.ini %{buildroot}%{php_ztsinidir}/%{pecl_name}.ini + + +%clean +rm -rf %{buildroot} + + +%post +%{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : + + +%postun +if [ "$1" -eq "0" ]; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : +fi + +%check +cd %{pecl_name}-%{version}%{?prever} + +# simple module load test +%{__php} --no-php-ini \ + --define extension_dir=%{buildroot}%{php_extdir} \ + --define extension=%{pecl_name}.so \ + --modules | grep %{pecl_name} + +# Still ignore test result as some fail on old version +# And in fedora > 15 https://bugs.php.net/60830 +TEST_PHP_EXECUTABLE=%{__php} \ +REPORT_EXIT_STATUS=0 \ +NO_INTERACTION=1 \ +%{__php} run-tests.php \ + -n -q \ + -d extension_dir=%{buildroot}%{php_extdir} \ + -d extension=%{pecl_name}.so + +cd ../%{pecl_name}-zts + +if [ -f %{__ztsphp} ]; then +# simple module load test +%{__ztsphp} --no-php-ini \ + --define extension_dir=%{buildroot}%{php_ztsextdir} \ + --define extension=%{pecl_name}.so \ + --modules | grep %{pecl_name} + +# Still ignore test result as some fail on old version +TEST_PHP_EXECUTABLE=%{__ztsphp} \ +REPORT_EXIT_STATUS=0 \ +NO_INTERACTION=1 \ +%{__ztsphp} run-tests.php \ + -n -q \ + -d extension_dir=%{buildroot}%{php_ztsextdir} \ + -d extension=%{pecl_name}.so +fi + + +%files +%defattr(-,root,root,-) +%doc %{pecl_name}-%{version}%{?prever}/{README,LICENSE} +%config(noreplace) %{php_inidir}/%{pecl_name}.ini +%config(noreplace) %{php_ztsinidir}/%{pecl_name}.ini +%{php_extdir}/%{pecl_name}.so +%{php_ztsextdir}/%{pecl_name}.so +%{pecl_xmldir}/%{name}.xml + + +%changelog +* Sat Jun 02 2012 Remi Collet - 1.1.0-0.5.RC3 +- Update to 1.1.0RC3 + +* Sat Jan 21 2012 Remi Collet - 1.1.0-0.4.RC2 +- add patch for getColor options https://bugs.php.net/60829 + +* Fri Jan 20 2012 Remi Collet - 1.1.0-0.3.RC2 +- build against php 5.4 + +* Fri Jan 20 2012 Remi Collet - 1.1.0-0.2.RC2 +- Update to 1.1.0RC2 + fix https://bugs.php.net/60807 + +* Thu Jan 19 2012 Remi Collet - 1.1.0-0.1.RC1 +- Update to 1.1.0RC1 + +* Mon Dec 05 2011 Remi Collet - 1.0.10-0.2.b1 +- build against php 5.4 + +* Mon Dec 05 2011 Remi Collet - 1.0.10-0.1.b1 +- Update to 1.0.10b1 +- run tests + +* Tue Nov 15 2011 Remi Collet - 1.0.9-0.2.b1 +- build against php 5.4 +- add patch for php 5.4, see https://bugs.php.net/60308 + +* Sun Oct 02 2011 Remi Collet 1.0.9-0.1.b1 +- Update to 1.0.9b1 +- build zts extension +- clean spec + +* Thu May 05 2011 Remi Collet 1.0.8-0.4.b2 +- Update to 1.0.8b2 + +* Sat Apr 16 2011 Remi Collet 1.0.8-0.3.b1 +- fix build against latest php + +* Sun Oct 17 2010 Remi Collet 1.0.8-0.2.b1 +- F-14 build + add Conflicts php-magickwand + +* Mon Sep 13 2010 Remi Collet 1.0.8-0.1.b1 +- Update to 1.0.8b1 for remi repo + +* Sun Aug 08 2010 Remi Collet 1.0.7-0.1.b1 +- Update to 1.0.7b1 for remi repo +- remove patch for http://pecl.php.net/bugs/17991 +- add fix for http://pecl.php.net/bugs/18002 + +* Sat Aug 07 2010 Remi Collet 1.0.6-0.1.b1 +- Update to 1.0.6b1 for remi repo +- add patch for http://pecl.php.net/bugs/17991 + +* Mon Jul 26 2010 Remi Collet 1.0.5-0.1.b1 +- Update to 1.0.5b1 for remi repo + +* Mon Jul 26 2010 Pavel Alexeev - 1.0.5b1-5 +- Update to 1.0.5b1 +- Add Conflicts: php-pecl-imagick - BZ#559675 + +* Sun Jan 31 2010 Pavel Alexeev - 1.0.3b3-4 +- Update to 1.0.3b3 + +* Fri Jan 29 2010 Remi Collet 1.0.3-0.1.b3 +- update to 1.0.3b3 + +* Tue Nov 3 2009 Pavel Alexeev - 1.0.2b1-3 +- Fedora Review started, thanks to Andrew Colin Kissa. +- Remove macros %%{__make} in favour to plain make. +- Add %%{?_smp_mflags} to make. + +* Mon Oct 12 2009 Pavel Alexeev - 1.0.2b1-2 +- New version 1.0.2b1 - author include license text by my request. Thank you Vito Chin. +- Include LICENSE. + +* Fri Oct 2 2009 Pavel Alexeev - 1.0.1b1-1 +- Initial release. +- License text absent, but I ask Vito Chin by email to add it into tarball. diff --git a/px.c b/px.c new file mode 100644 index 0000000..2c20418 --- /dev/null +++ b/px.c @@ -0,0 +1,20 @@ +#include +#include + +int main(int argc, char *argv[]) +{ + PixelWand *pix; + char *str; + char *col[] = {"rgb(0,0,0)", "rgb(80,80,80)", "rgb(255,255,255)", "rgb(999,999,999)", NULL}; + int i; + + pix = NewPixelWand(); + for (i=0 ; col[i] ; i++) + { + PixelSetColor(pix, col[i]); + str = PixelGetColorAsString(pix); + printf("%s = rgb(%s)\n", col[i], str); + } + DestroyPixelWand(pix); + return 0; +} -- cgit