From b3c3e99e4070f7be5ca6961e1be224166edb7591 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 15 Apr 2016 14:37:27 +0200 Subject: php-league-climate: from fedora --- php-league-climate-get-source.sh | 69 +++++++++++++++ php-league-climate.spec | 177 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 246 insertions(+) create mode 100755 php-league-climate-get-source.sh create mode 100644 php-league-climate.spec diff --git a/php-league-climate-get-source.sh b/php-league-climate-get-source.sh new file mode 100755 index 0000000..ba71f5d --- /dev/null +++ b/php-league-climate-get-source.sh @@ -0,0 +1,69 @@ +#/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 [ -x "$1" ] +then + SPEC=$1 +else + SPEC=`ls *.spec | head -1` +fi + +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=`$RPM --eval='%{_sourcedir}'`/${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-league-climate.spec b/php-league-climate.spec new file mode 100644 index 0000000..66b58ad --- /dev/null +++ b/php-league-climate.spec @@ -0,0 +1,177 @@ +# +# Fedora spec file for php-league-climate +# +# Copyright (c) 2016 Shawn Iwinski +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + +%global github_owner thephpleague +%global github_name climate +%global github_version 3.2.1 +%global github_commit b103fc8faa3780c802cc507d5f0ff534ecc94fb5 + +%global composer_vendor league +%global composer_project climate + +# "php": ">=5.4.0" +%global php_min_ver 5.4.0 +# "mikey179/vfsStream": "~1.4" +# NOTE: Min version not 1.4 because autoloader required +%global vfsstream_min_ver 1.6.0 +%global vfsstream_max_ver 2.0 +# "mockery/mockery": "~0.9" +# NOTE: Min version not 0.9 because autoloader required +%global mockery_min_ver 0.9.3 +%global mockery_max_ver 1.0 +# "seld/cli-prompt": "~1.0" +%global seld_cli_prompt_min_ver 1.0 +%global seld_cli_prompt_max_ver 2.0 + +# Build using "--without tests" to disable tests +%global with_tests 0%{!?_without_tests:1} + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project} +Version: %{github_version} +Release: 1%{?github_release}%{?dist} +Summary: Allows you to easily output colored text, special formats, and more + +Group: Development/Libraries +License: MIT +URL: http://climate.thephpleague.com/ + +# GitHub export does not include tests. +# Run php-league-climate-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: php-composer(mikey179/vfsStream) >= %{vfsstream_min_ver} +BuildRequires: php-composer(mockery/mockery) >= %{mockery_min_ver} +BuildRequires: php-composer(phpunit/phpunit) +BuildRequires: php-composer(seld/cli-prompt) >= %{seld_cli_prompt_min_ver} +## phpcompatinfo (computed from version 3.2.1) +BuildRequires: php-json +BuildRequires: php-mbstring +BuildRequires: php-pcre +BuildRequires: php-posix +BuildRequires: php-reflection +BuildRequires: php-zlib +## Autoloader +BuildRequires: php-composer(symfony/class-loader) +%endif + +# composer.json +Requires: php(language) >= %{php_min_ver} +Requires: php-composer(seld/cli-prompt) >= %{seld_cli_prompt_min_ver} +Requires: php-composer(seld/cli-prompt) < %{seld_cli_prompt_max_ver} +# phpcompatinfo (computed from version 3.2.1) +Requires: php-json +Requires: php-mbstring +Requires: php-pcre +Requires: php-posix +Requires: php-reflection +Requires: php-zlib +# Autoloader +Requires: php-composer(symfony/class-loader) + +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +%description +If you’re running PHP from the command line, CLImate is your new best bud. + +CLImate allows you to easily output colored text, special formatting, and more. +It makes output to the terminal clearer and debugging a lot simpler. + +Autoloader: %{phpdir}/League/CLImate/autoload.php + + +%prep +%setup -qn %{github_name}-%{github_commit} + +: Create autoloader +cat <<'AUTOLOAD' | tee src/autoload.php +register(); +} + +$fedoraClassLoader->addPrefix('League\\CLImate\\', dirname(dirname(__DIR__))); + +// Required dependencies +require_once '%{phpdir}/Seld/CliPrompt/autoload.php'; + +return $fedoraClassLoader; +AUTOLOAD + + +%build +# Empty build section, nothing to build + + +%install +mkdir -p %{buildroot}%{phpdir}/League/CLImate +cp -rp src/* %{buildroot}%{phpdir}/League/CLImate/ + + +%check +%if %{with_tests} +: Make PSR-0 tests +mkdir -p tests-psr0/League/CLImate +ln -s ../../../tests tests-psr0/League/CLImate/Tests + +: Create tests bootstrap +cat <<'BOOTSTRAP' | tee bootstrap.php +addPrefix('League\\CLImate\\Tests\\', __DIR__.'/tests-psr0'); + +require_once '%{phpdir}/Mockery/autoload.php'; +require_once '%{phpdir}/org/bovigo/vfs/autoload.php'; +BOOTSTRAP + +: Remove Composer vendor file load +sed '/require.*vendor\/mikey179/d' -i tests/FileTest.php + +%{_bindir}/phpunit --verbose --bootstrap bootstrap.php +%else +: Tests skipped +%endif + + +%files +%{!?_licensedir:%global license %%doc} +%license LICENSE.md +%doc CHANGELOG.md +%doc composer.json +%doc README.md +%dir %{phpdir}/League + %{phpdir}/League/CLImate + + +%changelog +* Mon Apr 11 2016 Shawn Iwinski - 3.2.1-1 +- Initial package -- cgit