From 7d783f23ad7648d5de77fb7daaa2d8ec45972297 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Jan 2016 19:02:33 +0100 Subject: php-psr-cache: import from fedora --- php-psr-cache.spec | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 php-psr-cache.spec diff --git a/php-psr-cache.spec b/php-psr-cache.spec new file mode 100644 index 0000000..ff90fea --- /dev/null +++ b/php-psr-cache.spec @@ -0,0 +1,111 @@ +# +# Fedora spec file for php-psr-cache +# +# Copyright (c) 2016 Shawn Iwinski +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + +%global github_owner php-fig +%global github_name cache +%global github_version 1.0.0 +%global github_commit 9e66031f41fbbdda45ee11e93c45d480ccba3eb3 + +%global composer_vendor psr +%global composer_project cache + +# "php": ">=5.3.0" +%global php_min_ver 5.3.0 + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project} +Version: %{github_version} +Release: 1%{?github_release}%{?dist} +Summary: PSR Cache: Common interface for caching libraries + +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 + +# composer.json +Requires: php(language) >= %{php_min_ver} +# phpcompatinfo (computed from version 1.0.0) +# +# Autoloader +Requires: php-composer(symfony/class-loader) + +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +%description +This package holds all interfaces defined by PSR-6 [1]. + +Note that this is not a Cache implementation of its own. It is merely an +interface that describes a Cache implementation. See the specification for +more details. + +Autoloader: %{phpdir}/Psr/Cache/autoload.php + +[1] http://www.php-fig.org/psr/psr-6/ + + +%prep +%setup -qn %{github_name}-%{github_commit} + +: Create autoloader +cat <<'AUTOLOAD' | tee src/autoload.php +register(); +} + +$fedoraClassLoader->addPrefix('Psr\\Cache\\', dirname(dirname(__DIR__))); + +return $fedoraClassLoader; +AUTOLOAD + + +%build +# Empty build section, nothing to build + + +%install +mkdir -p %{buildroot}%{phpdir}/Psr/Cache +cp -rp src/* %{buildroot}%{phpdir}/Psr/Cache/ + + +%check +: No tests provided upstream + + +%files +%{!?_licensedir:%global license %%doc} +%license LICENSE.txt +%doc *.md +%doc composer.json +%dir %{phpdir}/Psr + %{phpdir}/Psr/Cache + + +%changelog +* Sun Jan 03 2016 Shawn Iwinski - 1.0.0-1 +- Initial package -- cgit