# remirepo spec file for php-gliph, from Fedora: # # Fedora spec file for php-gliph # # Copyright (c) 2013-2017 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner sdboyer %global github_name gliph %global github_version 0.1.8 %global github_commit db9e4b77622f91e2d338cc45f83c2cd0e3cf0e1e %global composer_vendor sdboyer %global composer_project gliph # "php": ">=5.3" %global php_min_ver 5.3.0 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} %{!?phpdir: %global phpdir %{_datadir}/php} Name: php-%{composer_project} Version: %{github_version} Release: 7%{?github_release}%{?dist} Summary: A graph library for PHP Group: Development/Libraries License: MIT URL: https://github.com/%{github_owner}/%{github_name} # Run "php-gliph-get-source.sh" to create source Source0: %{name}-%{version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh BuildArch: noarch # Tests %if %{with_tests} BuildRequires: php-composer(phpunit/phpunit) ## composer.json BuildRequires: php(language) >= %{php_min_ver} ## phpcompatinfo (computed from version 0.1.8) BuildRequires: php-reflection BuildRequires: php-spl ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json Requires: php(language) >= %{php_min_ver} # phpcompatinfo (computed from version 0.1.8) Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Standard "php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT}" naming Provides: php-%{composer_vendor}-%{composer_project} = %{version}-%{release} # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description Gliph is a graph library for PHP. It provides graph building blocks and data structures for use by other PHP applications. It is (currently) designed for use with in-memory graphs, not for interaction with a graph database like Neo4J (http://neo4j.org/). Autoloader: %{phpdir}/Gliph/autoload.php %prep %setup -qn %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee src/Gliph/autoload.php - 0.1.8-7 - Switch autoloader to php-composer(fedora/autoloader) - Test with SCLs if available * Sat Jul 11 2015 Shawn Iwinski - 0.1.8-4 - Added missing autoloader require * Sat Jul 11 2015 Shawn Iwinski - 0.1.8-3 - Added autoloader - Added tests - Added standard "php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT}" naming provides * Sun Aug 17 2014 Shawn Iwinski - 0.1.8-1 - Updated to 0.1.8 (BZ #1125361) * Sat Jul 19 2014 Shawn Iwinski - 0.1.6-1 - Updated to 0.1.6 (BZ #1119424) - Added "php-composer(sdboyer/gliph)" virtual provide * Thu Nov 7 2013 Remi Collet 0.1.5-1 - backport 0.1.5 for remi repo * Wed Nov 06 2013 Shawn Iwinski 0.1.5-1 - Updated to 0.1.5 - Removed tests (git export-ignored upstream) * Thu Oct 24 2013 Shawn Iwinski 0.1.4-1.20131024git8da23c6 - Updated to latest snapshot (commit 8da23c6397354e9acc7a7e6f8d2a782fdf21ab54) which includes LICENSE - "php-common" -> "php(language)" - Added PHPUnit min/max versions * Wed Oct 23 2013 Shawn Iwinski 0.1.4-1 - Initial package