From 0aa8344687a17e8b22db47b96bbe1fbb77baf6fe Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 14 Jan 2020 10:21:12 +0100 Subject: v1.0.2 --- .gitignore | 8 ++++++++ composer.json | 26 ++++++++++++++++++++++++++ php-seld-phar-utils.spec | 19 +++++++------------ 3 files changed, 41 insertions(+), 12 deletions(-) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..edf42f6 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "seld/phar-utils", + "description": "PHAR file format utilities, for when PHP phars you up", + "type": "library", + "keywords": ["phra"], + "license": "MIT", + "require": { + "php": ">=5.3" + }, + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "autoload": { + "psr-4": { + "Seld\\PharUtils\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + } +} diff --git a/php-seld-phar-utils.spec b/php-seld-phar-utils.spec index f738028..d9199f7 100644 --- a/php-seld-phar-utils.spec +++ b/php-seld-phar-utils.spec @@ -1,22 +1,21 @@ # remirepo/fedora spec file for php-seld-phar-utils # -# Copyright (c) 2015-2017 Remi Collet +# Copyright (c) 2015-2020 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # -%global gh_commit 7009b5139491975ef6486545a39f3e6dad5ac30a +%global gh_commit 84715761c35808076b00908a20317a3a8a67d17e %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner Seldaek %global gh_project phar-utils Name: php-seld-phar-utils -Version: 1.0.1 -Release: 2%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: PHAR file format utilities -Group: Development/Libraries License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz @@ -24,7 +23,6 @@ Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit # Autoloader Source1: %{gh_project}-autoload.php -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php(language) >= 5.3 # For test @@ -64,7 +62,6 @@ cp %{SOURCE1} src/autoload.php %install -rm -rf %{buildroot} # Restore PSR-0 tree mkdir -p %{buildroot}%{_datadir}/php/Seld/PharUtils/ cp -pr src/* %{buildroot}%{_datadir}/php/Seld/PharUtils/ @@ -80,12 +77,7 @@ exit(0); ' -%clean -rm -rf %{buildroot} - - %files -%defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE %doc README.md @@ -94,6 +86,9 @@ rm -rf %{buildroot} %changelog +* Tue Jan 14 2020 Remi Collet - 1.0.2-1 +- update to 1.0.2 + * Fri Oct 21 2016 Remi Collet - 1.0.1-2 - switch from symfony/class-loader to fedora/autoloader -- cgit