update to 1.9.18
use git snapshot for sources (cherry picked from commite8a0daec36) (cherry picked from commit143709ca2a)
This commit is contained in:
parent
30cfd7cfba
commit
0835c714ec
4 changed files with 38 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -9,3 +9,4 @@ getid3-2.0.0b5.zip
|
|||
/getID3-1.9.15-df9b441.tar.gz
|
||||
/getID3-1.9.16-7aec0d4.tar.gz
|
||||
/getID3-1.9.17-d2e45f2.tar.gz
|
||||
/php-getid3-1.9.18-0723b77.tgz
|
||||
|
|
|
|||
28
makesrc.sh
Executable file
28
makesrc.sh
Executable file
|
|
@ -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, Commit=$COMMIT\n"
|
||||
|
||||
echo "Cloning..."
|
||||
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 $PROJECT-$COMMIT
|
||||
|
||||
echo "Cleaning..."
|
||||
rm -rf $PROJECT-$COMMIT
|
||||
|
||||
echo "Done."
|
||||
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
# Please preserve changelog entries
|
||||
#
|
||||
%global gh_commit d2e45f2c4f75cc7443e158757ad2d678e318685d
|
||||
%global gh_commit 0723b77cafe9278618cfb6bc91b75e73705d3de8
|
||||
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
||||
%global gh_owner JamesHeinrich
|
||||
%global gh_project getID3
|
||||
|
|
@ -14,13 +14,14 @@
|
|||
%global pk_project getid3
|
||||
|
||||
Name: php-%{pk_project}
|
||||
Version: 1.9.17
|
||||
Version: 1.9.18
|
||||
Release: 1%{?dist}
|
||||
Epoch: 1
|
||||
License: LGPLv3+
|
||||
Summary: The PHP media file parser
|
||||
URL: https://www.getid3.org/
|
||||
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz
|
||||
Source0: %{name}-%{version}-%{gh_short}.tgz
|
||||
Source1: makesrc.sh
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: php-fedora-autoloader-devel
|
||||
|
|
@ -89,7 +90,6 @@ exit ($ok ? 0 : 1);
|
|||
|
||||
|
||||
%files
|
||||
%{!?_licensedir:%global license %%doc}
|
||||
%license licenses license.txt
|
||||
%doc changelog.txt dependencies.txt readme.txt structure.txt demos
|
||||
%doc composer.json
|
||||
|
|
@ -97,6 +97,10 @@ exit ($ok ? 0 : 1);
|
|||
|
||||
|
||||
%changelog
|
||||
* Tue Sep 17 2019 Remi Collet <remi@remirepo.net> - 1.9.18-1
|
||||
- update to 1.9.18
|
||||
- use git snapshot for sources
|
||||
|
||||
* Fri Feb 8 2019 Remi Collet <remi@remirepo.net> - 1.9.17-1
|
||||
- update to 1.9.17
|
||||
- add weak dependencies on suggested extension
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (getID3-1.9.17-d2e45f2.tar.gz) = 0824840d161e80f597e36d85cd6da4f74181d0b78d0ae1015ea510ec30bbb943919428f981c9dadb684813e93cf10d3137105a32ca710dee908eb7b0cbf79165
|
||||
SHA512 (php-getid3-1.9.18-0723b77.tgz) = 984668a1ccbb2ba48685cddada720a95477e75ac66207acfead73d5d9bf50692a0e502f2c6fe9a0ec8e17caefb436a5c9227cd7664762e379321d46b986cfbb4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue