[php-doctrine-inflector] Initial import (#1046123)

Shawn Iwinski siwinski at fedoraproject.org
Mon Jan 6 17:04:00 UTC 2014


commit feeaff820b8a61f5103379c6dc037970ad1f1497
Author: Shawn Iwinski <siwinski at redhat.com>
Date:   Mon Jan 6 11:34:21 2014 -0500

    Initial import (#1046123)

 .gitignore                  |    1 +
 php-doctrine-inflector.spec |   69 +++++++++++++++++++++++++++++++++++++++++++
 sources                     |    1 +
 3 files changed, 71 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f8ad60d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/php-doctrine-inflector-1.0-a81c334f2764b09e2f13a55cfd8fe3233946f728.tar.gz
diff --git a/php-doctrine-inflector.spec b/php-doctrine-inflector.spec
new file mode 100644
index 0000000..e2032c5
--- /dev/null
+++ b/php-doctrine-inflector.spec
@@ -0,0 +1,69 @@
+%global github_owner   doctrine
+%global github_name    inflector
+%global github_version 1.0
+%global github_commit  a81c334f2764b09e2f13a55cfd8fe3233946f728
+# Additional commits after v1.0 tag
+%global github_release 20131221git%(c=%{github_commit}; echo ${c:0:7})
+
+# "php": ">=5.3.2"
+%global php_min_ver    5.3.2
+
+Name:          php-%{github_owner}-%{github_name}
+Version:       %{github_version}
+Release:       1.%{github_release}%{dist}
+Summary:       Common string manipulations with regard to casing and singular/plural rules
+
+Group:         Development/Libraries
+License:       MIT
+URL:           https://github.com/%{github_owner}/%{github_name}
+Source0:       %{url}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz
+
+BuildArch:     noarch
+# For tests
+BuildRequires: php(language) >= %{php_min_ver}
+BuildRequires: php-pear(pear.phpunit.de/PHPUnit)
+# For tests: phpcompatinfo (computed from v1.0 git commit a81c334f2764b09e2f13a55cfd8fe3233946f728)
+BuildRequires: php-pcre
+BuildRequires: php-spl
+
+Requires:      php(language) >= %{php_min_ver}
+# phpcompatinfo (computed from v1.0 git commit a81c334f2764b09e2f13a55cfd8fe3233946f728)
+Requires:      php-pcre
+
+%description
+Doctrine Inflector is a small library that can perform string manipulations
+with regard to upper-/lowercase and singular/plural forms of words.
+
+
+%prep
+%setup -q -n %{github_name}-%{github_commit}
+
+
+%build
+# Empty build section, nothing required
+
+
+%install
+mkdir -p %{buildroot}/%{_datadir}/php
+cp -rp lib/* %{buildroot}/%{_datadir}/php/
+
+
+%check
+# Create PHPUnit config w/ colors turned off
+cat phpunit.xml.dist \
+    | sed 's/colors="true"/colors="false"/' \
+    > phpunit.xml
+
+%{_bindir}/phpunit --include-path ./lib:./tests -d date.timezone="UTC"
+
+
+%files
+%doc LICENSE *.md composer.json
+%dir %{_datadir}/php/Doctrine
+%dir %{_datadir}/php/Doctrine/Common
+     %{_datadir}/php/Doctrine/Common/Inflector
+
+
+%changelog
+* Mon Dec 23 2013 Shawn Iwinski <shawn.iwinski at gmail.com> 1.0-1.20131221gita81c334
+- Initial package
diff --git a/sources b/sources
index e69de29..e3bbd2a 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+bc7bb1e17a675d778fa37b2fad27a74a  php-doctrine-inflector-1.0-a81c334f2764b09e2f13a55cfd8fe3233946f728.tar.gz


More information about the scm-commits mailing list