php-pear-PHP-CodeSniffer-0.3.0-1.src.rpmf38
parent
3363a3398a
commit
db3c33049e
@ -0,0 +1 @@
|
||||
PHP_CodeSniffer-0.3.0.tgz
|
@ -0,0 +1,28 @@
|
||||
PHP_CodeSniffer Licence
|
||||
|
||||
Copyright (c) 2006, Squiz Pty Ltd (ABN 77 084 670 600) All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in
|
||||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
* Neither the name of Squiz Pty Ltd nor the names of its
|
||||
contributors may be used to endorse or promote products derived
|
||||
from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
||||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
||||
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -0,0 +1,113 @@
|
||||
%{!?__pear: %{expand: %%global __pear %{_bindir}/pear}}
|
||||
%define pear_name PHP_CodeSniffer
|
||||
|
||||
Name: php-pear-PHP-CodeSniffer
|
||||
Version: 0.3.0
|
||||
Release: 1%{?dist}
|
||||
Summary: PHP coding standards enforcement tool
|
||||
|
||||
Group: Development/Tools
|
||||
License: BSD
|
||||
URL: http://pear.php.net/package/PHP_CodeSniffer
|
||||
Source0: http://pear.php.net/get/PHP_CodeSniffer-%{version}.tgz
|
||||
Source1: PHP_CodeSniffer-licence.txt
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: php-pear >= 1:1.4.9-1.2
|
||||
Requires: php-pear(PEAR), php-common > 5.1.0
|
||||
Requires(post): %{__pear}
|
||||
Requires(postun): %{__pear}
|
||||
Provides: php-pear(%{pear_name}) = %{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
|
||||
mv package2.xml %{pear_name}-%{version}/%{pear_name}.xml
|
||||
cd %{pear_name}-%{version}
|
||||
|
||||
|
||||
%build
|
||||
|
||||
|
||||
%install
|
||||
cd %{pear_name}-%{version}
|
||||
rm -rf $RPM_BUILD_ROOT docdir
|
||||
%{__pear} install --nodeps --packagingroot $RPM_BUILD_ROOT %{pear_name}.xml
|
||||
|
||||
# Move documentation (none packaged so far)
|
||||
# mkdir -p docdir
|
||||
# mv $RPM_BUILD_ROOT%{pear_docdir}/* docdir
|
||||
cp %{SOURCE1} .
|
||||
|
||||
# Clean up unnecessary files
|
||||
rm -rf $RPM_BUILD_ROOT%{pear_phpdir}/.??*
|
||||
|
||||
# Install XML package description
|
||||
mkdir -p $RPM_BUILD_ROOT%{pear_xmldir}
|
||||
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 || :
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
%{__pear} uninstall --nodeps --ignore-errors --register-only \
|
||||
%{pear_name} >/dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc %{pear_name}-%{version}/PHP_CodeSniffer-licence.txt
|
||||
%{pear_xmldir}/%{pear_name}.xml
|
||||
%{pear_testdir}/%{pear_name}
|
||||
%dir %{pear_phpdir}/PHP
|
||||
%{pear_phpdir}/PHP/*
|
||||
|
||||
%files -n phpcs
|
||||
%doc %{pear_name}-%{version}/PHP_CodeSniffer-licence.txt
|
||||
%{_bindir}/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Jan 29 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.3.0-1
|
||||
- Rename to php-pear-PHP-CodeSniffer
|
||||
- Own all dirs we create
|
||||
- Require php-common > 5.1.0
|
||||
|
||||
* Mon Jan 29 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.3.0-1
|
||||
- Split phpcs into a separate package (so we don't require php-cli)
|
||||
|
||||
* Fri Jan 12 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.3.0-0.1
|
||||
- Upstream 0.3.0
|
||||
|
||||
* Mon Oct 23 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.2.0-0.1
|
||||
- Upstream 0.2.0
|
||||
|
||||
* Mon Sep 25 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.1.1-0.1
|
||||
- Upstream update.
|
||||
|
||||
* Fri Sep 22 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.1.0-0.1
|
||||
- Initial packaging.
|
Loading…
Reference in new issue