From 80d5e4223795651ce89b66be43188250b4134a9b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 1 Oct 2013 18:00:06 +0200 Subject: php-channel-phpunit: import from rawhide --- Makefile | 4 ++ channel.xml | 16 ++++++++ php-channel-phpunit.spec | 101 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 121 insertions(+) create mode 100644 Makefile create mode 100644 channel.xml create mode 100644 php-channel-phpunit.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + diff --git a/channel.xml b/channel.xml new file mode 100644 index 0000000..91bb678 --- /dev/null +++ b/channel.xml @@ -0,0 +1,16 @@ + + + pear.phpunit.de + PHPUnit PEAR Channel + phpunit + + + + http://pear.phpunit.de/rest/ + http://pear.phpunit.de/rest/ + http://pear.phpunit.de/rest/ + http://pear.phpunit.de/rest/ + + + + \ No newline at end of file diff --git a/php-channel-phpunit.spec b/php-channel-phpunit.spec new file mode 100644 index 0000000..adc913c --- /dev/null +++ b/php-channel-phpunit.spec @@ -0,0 +1,101 @@ +%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}} + +Name: php-channel-phpunit +# Use REST version +Version: 1.3 +Release: 8%{?dist} +Summary: Adds phpunit channel to PEAR + +Group: Development/Languages +License: BSD +URL: http://pear.phpunit.de +Source0: http://pear.phpunit.de/channel.xml +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +BuildRequires: php-pear >= 1:1.4.9-1.2 +Requires: php-common >= 5.1.4 +Requires: php-pear(PEAR) +Requires(post): %{__pear} +Requires(postun): %{__pear} +Provides: php-channel(pear.phpunit.de) + +%description +This package adds the phpunit channel which allows PEAR packages +from this channel to be installed. + + +%prep +%setup -q -c -T + + +%build +# Empty build section, nothing to build + + +%install +rm -rf $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT%{pear_xmldir} +install -pm 644 %{SOURCE0} $RPM_BUILD_ROOT%{pear_xmldir}/%{name}.xml + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +if [ $1 -eq 1 ] ; then + %{__pear} channel-add %{pear_xmldir}/%{name}.xml > /dev/null || : +else + %{__pear} channel-update %{pear_xmldir}/%{name}.xml > /dev/null ||: +fi + + +%postun +if [ $1 -eq 0 ] ; then + %{__pear} channel-delete pear.phpunit.de > /dev/null || : +fi + + +%files +%defattr(-,root,root,-) +%{pear_xmldir}/%{name}.xml + + +%changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 1.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Jul 20 2012 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Feb 09 2011 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Aug 11 2010 Remi Collet - 1.3-3 +- don't requires php but php-common (#577040) + +* Fri Dec 18 2009 Remi Collet - 1.3-2 +- missing Requires for post/postun + +* Fri Dec 18 2009 Remi Collet - 1.3-1 +- update for REST 1.3 and new URL (#542417) +- rename pear.phpunit.de.xml to php-channel-phpunit.xml + +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Dec 29 2006 Christopher Stone 1.0-2 +- Add virtual provides on channel name + +* Wed Dec 27 2006 Christopher Stone 1.0-1 +- Initial Release -- cgit