From adf2dc75a3be902d1748206298ff6f9068638a6e Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 15 Apr 2009 05:54:30 +0000 Subject: [PATCH 1/4] Initialize branch F-11 for php-pear-PHP-CodeSniffer --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From 351503d2ce0296037f00a8cb68ca3f9cd553cd73 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:59:22 +0000 Subject: [PATCH 2/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 24dd3e6..7fd3e60 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: php-pear-PHP-CodeSniffer -# $Id$ +# $Id: Makefile,v 1.1 2007/01/30 01:33:58 icon Exp $ NAME := php-pear-PHP-CodeSniffer SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 8788569cc2c21f3d7c3cacabd223ce3ef7a7c613 Mon Sep 17 00:00:00 2001 From: Christof Damian Date: Wed, 27 Jan 2010 20:39:16 +0000 Subject: [PATCH 3/4] - upstream 1.2.2 ( bug:559170 ) - move phpcs into main package ( bug: 517775 ) - add php-common version requirement --- .cvsignore | 3 ++- php-pear-PHP-CodeSniffer.spec | 43 +++++++++++++++++------------------ sources | 3 ++- 3 files changed, 25 insertions(+), 24 deletions(-) diff --git a/.cvsignore b/.cvsignore index c2f22a0..daae2bc 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1,2 @@ -PHP_CodeSniffer-1.1.0.tgz +PHP_CodeSniffer-1.2.2.tgz +PHP_CodeSniffer-licence.txt diff --git a/php-pear-PHP-CodeSniffer.spec b/php-pear-PHP-CodeSniffer.spec index 56d6ade..cf0f345 100644 --- a/php-pear-PHP-CodeSniffer.spec +++ b/php-pear-PHP-CodeSniffer.spec @@ -2,7 +2,7 @@ %define pear_name PHP_CodeSniffer Name: php-pear-PHP-CodeSniffer -Version: 1.1.0 +Version: 1.2.2 Release: 1%{?dist} Summary: PHP coding standards enforcement tool @@ -16,25 +16,17 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear >= 1:1.4.9-1.2 Requires: php-pear(PEAR) +Requires: php-common >= 5.1.2 Requires(post): %{__pear} Requires(postun): %{__pear} Provides: php-pear(%{pear_name}) = %{version} +Provides: phpcs = %{version} +Obsoletes: phpcs < %{version} %description PHP_CodeSniffer provides functionality to verify that code conforms to certain standards, such as PEAR, or user-defined. - -%package -n phpcs -Summary: Command-line utility for PHP-CodeSniffer -Group: Development/Tools -Requires: php-pear(%{pear_name}) = %{version} -Requires: php-cli - -%description -n phpcs -This package includes a utility to run PHP_CodeSniffer from command line. - - %prep %setup -q -c [ -f package2.xml ] || mv package.xml package2.xml @@ -72,7 +64,6 @@ install -pm 644 %{pear_name}.xml $RPM_BUILD_ROOT%{pear_xmldir} %clean rm -rf $RPM_BUILD_ROOT - %post %{__pear} install --nodeps --soft --force --register-only \ %{pear_xmldir}/%{pear_name}.xml >/dev/null || : @@ -87,21 +78,29 @@ fi %files %defattr(-,root,root,-) %doc %{pear_name}-%{version}/PHP_CodeSniffer-licence.txt +%doc %{pear_name}-%{version}/phpcs-svn-pre-commit %doc %{pear_name}-%{version}/docdir/* %{pear_xmldir}/%{pear_name}.xml %{pear_testdir}/%{pear_name} -%dir %{pear_phpdir}/PHP -%{pear_phpdir}/PHP/* -%dir %{pear_datadir}/%{pear_name} - -%files -n phpcs -%defattr(-,root,root,-) -%doc %{pear_name}-%{version}/PHP_CodeSniffer-licence.txt -%doc %{pear_name}-%{version}/phpcs-svn-pre-commit +%{pear_datadir}/%{pear_name} +%{pear_phpdir}/PHP %{_bindir}/phpcs - %changelog +* Wed Jan 27 2010 Christof Damian 1.2.2-1 +- upstream 1.2.2 ( bug:559170 ) +- move phpcs into main package ( bug: 517775 ) +- add php-common version requirement + +* Tue Nov 17 2009 Christof Damian - 1.2.1-1 +- Upstream 1.2.1 + +* Sat Sep 19 2009 Christof Damian - 1.2.0-1 +- Upstream 1.2.0 + +* Sun Jul 26 2009 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Mar 05 2009 Konstantin Ryabitsev - 1.1.0-1 - Belatedly update to 1.1.0 final. diff --git a/sources b/sources index 6a93018..88252ba 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ -b5f727311b091ee6b6edf8ffcc411e71 PHP_CodeSniffer-1.1.0.tgz +b734e066105d052fde564ab5e6be7091 PHP_CodeSniffer-1.2.2.tgz +09df23a638e665feddffb575f7a623dc PHP_CodeSniffer-licence.txt From c13ae3f7fa914b28e5cfef4c73cf57a7db1f2a88 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 09:05:50 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 7fd3e60..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: php-pear-PHP-CodeSniffer -# $Id: Makefile,v 1.1 2007/01/30 01:33:58 icon Exp $ -NAME := php-pear-PHP-CodeSniffer -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11