Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c13ae3f7fa | ||
|
|
8788569cc2 | ||
|
|
351503d2ce | ||
|
|
adf2dc75a3 |
5 changed files with 25 additions and 45 deletions
|
|
@ -1 +0,0 @@
|
|||
PHP_CodeSniffer-1.1.0.tgz
|
||||
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
PHP_CodeSniffer-1.2.2.tgz
|
||||
PHP_CodeSniffer-licence.txt
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: php-pear-PHP-CodeSniffer
|
||||
# $Id$
|
||||
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
|
||||
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)
|
||||
|
|
@ -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 <christof@damian.net> 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 <christof@damian.net> - 1.2.1-1
|
||||
- Upstream 1.2.1
|
||||
|
||||
* Sat Sep 19 2009 Christof Damian <christof@damian.net> - 1.2.0-1
|
||||
- Upstream 1.2.0
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Mar 05 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 1.1.0-1
|
||||
- Belatedly update to 1.1.0 final.
|
||||
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
|||
b5f727311b091ee6b6edf8ffcc411e71 PHP_CodeSniffer-1.1.0.tgz
|
||||
b734e066105d052fde564ab5e6be7091 PHP_CodeSniffer-1.2.2.tgz
|
||||
09df23a638e665feddffb575f7a623dc PHP_CodeSniffer-licence.txt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue