From 905f3f9c8495bfd2a89450f63737a81d3ddfac08 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 24 Aug 2020 09:01:36 +0200 Subject: import from Fedora --- php-opis-closure-get-source.sh | 73 ++++++++++++++++ php-opis-closure.spec | 184 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 257 insertions(+) create mode 100755 php-opis-closure-get-source.sh create mode 100644 php-opis-closure.spec diff --git a/php-opis-closure-get-source.sh b/php-opis-closure-get-source.sh new file mode 100755 index 0000000..fd53f46 --- /dev/null +++ b/php-opis-closure-get-source.sh @@ -0,0 +1,73 @@ +#/bin/sh + +GIT=`which git` +RPM=`which rpm` + +if [ -z "$GIT" ] +then + echo "ERROR: 'git' command not found" 1>&2 + exit 1 +elif [ -z "$RPM" ] +then + echo "ERROR: 'rpm' command not found" 1>&2 + exit 1 +fi + +function print { + echo -e "\e[0;33m>>>>> ${1}\e[0m" +} + +if [ -n "$1" ] +then + SPEC=$1 +else + SPEC=`ls *.spec | head -1` +fi + +SPEC_DIR=`pwd` + +print "SPEC_DIR = $SPEC_DIR" + +NAME=`echo $SPEC | sed 's#\.spec##'` +VERSION=`egrep '%global\s*github_version' $SPEC | awk '{print $3}'` + +print "SPEC = $SPEC" +print "NAME = $NAME" + +GIT_OWNER=`egrep '%global\s*github_owner' $SPEC | awk '{print $3}'` +GIT_NAME=`egrep '%global\s*github_name' $SPEC | awk '{print $3}'` +GIT_COMMIT=`egrep '%global\s*github_commit' $SPEC | awk '{print $3}'` +GIT_REPO=https://github.com/${GIT_OWNER}/${GIT_NAME} +GIT_DIR=`echo $GIT_REPO | sed 's#.*/##'` + +print "GIT_OWNER = $GIT_OWNER" +print "GIT_NAME = $GIT_NAME" +print "GIT_COMMIT = $GIT_COMMIT" +print "GIT_REPO = $GIT_REPO" +print "GIT_DIR = $GIT_DIR" + +TEMP_DIR=$(mktemp --dir) + +pushd $TEMP_DIR + print "Cloning git repo..." + $GIT clone $GIT_REPO + + pushd $GIT_DIR + print "Checking out commit..." + $GIT checkout $GIT_COMMIT + popd + + TAR_DIR=${GIT_NAME}-${GIT_COMMIT} + print "TAR_DIR = $TAR_DIR" + + mv $GIT_DIR $TAR_DIR + + TAR_FILE=${SPEC_DIR}/${NAME}-${VERSION}-${GIT_COMMIT}.tar.gz + print "TAR_FILE = $TAR_FILE" + + [ -e $TAR_FILE ] && rm -f $TAR_FILE + tar --exclude-vcs -czf $TAR_FILE $TAR_DIR + chmod 0644 $TAR_FILE +popd + +rm -rf $TEMP_DIR diff --git a/php-opis-closure.spec b/php-opis-closure.spec new file mode 100644 index 0000000..469a42f --- /dev/null +++ b/php-opis-closure.spec @@ -0,0 +1,184 @@ +# +# Fedora spec file for php-opis-closure +# +# Copyright (c) 2020 Shawn Iwinski +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + +%global github_owner opis +%global github_name closure +%global github_version 3.5.6 +%global github_commit e8d34df855b0a0549a300cb8cb4db472556e8aa9 + +%global composer_vendor opis +%global composer_project closure + +%global namespace_vendor Opis +%global namespace_project Closure + +# "php": "^5.4 || ^7.0" +%global php_min_ver 5.4 +# "jeremeamia/superclosure": "^2.0" +%global jeremeamia_superclosure_min_ver 2.0 +%global jeremeamia_superclosure_max_ver 3.0 + +# PHPUnit +## v7 +%if 0%{?fedora} >= 28 || 0%{?rhel} >= 8 +%global phpunit_require phpunit7 +%global phpunit_exec phpunit7 +%else +## v6 +%if 0%{?fedora} >= 26 +%global phpunit_require phpunit6 +%global phpunit_exec phpunit6 +%else +## Pre-v6 +%global phpunit_require php-composer(phpunit/phpunit) +%global phpunit_exec phpunit +%endif +%endif + +# Build using "--without tests" to disable tests +%global with_tests 0%{!?_without_tests:1} + +# Range dependencies supported? +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +%global with_range_dependencies 1 +%else +%global with_range_dependencies 0 +%endif + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project}%{?namespace_version} +Version: %{github_version} +Release: 2%{?github_release}%{?dist} +Summary: A library that can be used to serialize closures and arbitrary objects + +License: MIT +URL: https://github.com/%{github_owner}/%{github_name} + +# GitHub export does not include tests +# Run php-opis-closure-get-source.sh to create full source +Source0: %{name}-%{github_version}-%{github_commit}.tar.gz +Source1: %{name}-get-source.sh + +BuildArch: noarch +# Tests +%if %{with_tests} +## composer.json +BuildRequires: php(language) >= %{php_min_ver} +BuildRequires: %{phpunit_require} +%if %{with_range_dependencies} +BuildRequires: (php-composer(jeremeamia/superclosure) >= %{jeremeamia_superclosure_min_ver} with php-composer(jeremeamia/superclosure) < %{jeremeamia_superclosure_max_ver}) +%else +BuildRequires: php-composer(jeremeamia/superclosure) < %{jeremeamia_superclosure_max_ver} +BuildRequires: php-composer(jeremeamia/superclosure) >= %{jeremeamia_superclosure_min_ver} +%endif +## phpcompatinfo (computed from version 3.5.6) +BuildRequires: php-date +BuildRequires: php-hash +BuildRequires: php-iconv +BuildRequires: php-json +BuildRequires: php-reflection +BuildRequires: php-spl +BuildRequires: php-tokenizer +## Autoloader +BuildRequires: php-composer(fedora/autoloader) +%endif + +# composer.json +Requires: php(language) >= %{php_min_ver} +# phpcompatinfo (computed from version 3.5.6) +Requires: php-reflection +Requires: php-date +Requires: php-hash +Requires: php-json +Requires: php-spl +Requires: php-tokenizer +# Autoloader +Requires: php-composer(fedora/autoloader) + +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +%description +Opis Closure is a library that aims to overcome PHP's limitations regarding +closure serialization by providing a wrapper that will make all closures +serializable. + +Autoloader: %{phpdir}/%{namespace_vendor}/%{namespace_project}%{?namespace_version}/autoload.php + + +%prep +%setup -qn %{github_name}-%{github_commit} +cp functions.php src/ + + +%build +: Create autoloader +cat <<'AUTOLOAD' | tee src/autoload.php + - 3.5.6-2 +- Update SCL tests per review (RHBZ #1869433) + +* Mon Aug 17 2020 Shawn Iwinski - 3.5.6-1 +- Initial package -- cgit