diff options
author | Remi Collet <remi@remirepo.net> | 2024-03-01 16:02:49 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-03-01 16:02:49 +0100 |
commit | 48d09faae80a547ea46f9a7b3c3ed76b7bc3adc2 (patch) | |
tree | 031eea682e91ffcdc67fad439b3a34ff85aa41a8 | |
parent | 3005f521b543011ff8426cc63b8a8e5e0ce0ad6b (diff) |
sources from git snapshot
-rwxr-xr-x | makesrc.sh | 28 | ||||
-rw-r--r-- | php-sebastian-type.spec | 17 |
2 files changed, 39 insertions, 6 deletions
diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..3d8028d --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) +COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) +SHORT=${COMMIT:0:7} + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" + +echo "Cloning..." +rm -rf $PROJECT-$COMMIT +git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT + +echo "Getting commit..." +pushd $PROJECT-$COMMIT +git checkout $COMMIT +cp composer.json ../composer.json +popd + +echo "Archiving..." +tar czf $NAME-$VERSION-$SHORT.tgz --exclude-vcs --exclude tools $PROJECT-$COMMIT + +echo "Cleaning..." +rm -rf $PROJECT-$COMMIT + +echo "Done." diff --git a/php-sebastian-type.spec b/php-sebastian-type.spec index 39b596a..f7ae8c3 100644 --- a/php-sebastian-type.spec +++ b/php-sebastian-type.spec @@ -1,6 +1,6 @@ # remirepo/fedora spec file for php-sebastian-type # -# Copyright (c) 2019-2023 Remi Collet +# Copyright (c) 2019-2024 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -8,7 +8,7 @@ # %global bootstrap 0 # github -%global gh_commit 0150cfbc4495ed2df3872fb31b26781e4e077eb4 +%global gh_commit 18f071c3a29892b037d35e6b20ddf3ea39b42874 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project type @@ -27,13 +27,14 @@ %endif Name: php-%{pk_vendor}-%{pk_project}%{major} -Version: 1.1.4 -Release: 7%{?dist} +Version: 1.1.5 +Release: 1%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v1 License: BSD-3-Clause URL: https://github.com/%{gh_owner}/%{gh_project} -Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz +Source0: %{name}-%{version}-%{gh_short}.tgz +Source1: makesrc.sh BuildArch: noarch BuildRequires: php(language) >= 7.2 @@ -93,7 +94,7 @@ EOF : Run upstream test suite ret=0 -for cmd in php php80 php81 php82; do +for cmd in php php81 php82 php83; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ %{_bindir}/phpunit8 --verbose || ret=1 @@ -116,6 +117,10 @@ exit $ret %changelog +* Fri Mar 1 2024 Remi Collet <remi@remirepo.net> - 1.1.5-1 +- update to 1.1.5 (no change) +- sources from git snapshot + * Fri Apr 21 2023 Remi Collet <remi@remirepo.net> - 1.1.4-7 - use SPDX License id |