diff options
| author | Remi Collet <remi@remirepo.net> | 2019-06-06 16:09:02 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2019-06-06 16:09:02 +0200 | 
| commit | 023953796579f3b93400a755c7e6e3e7cebfd1b5 (patch) | |
| tree | b1fa5f4f160003e7ba337a5167277f600ad8e9a3 | |
| parent | c0113290bb5f0c22ff8d9c5388078d1ebb1578ef (diff) | |
v1.1.3
| -rw-r--r-- | Makefile | 8 | ||||
| -rw-r--r-- | php-symfony-contracts.spec | 7 | 
2 files changed, 13 insertions, 2 deletions
| @@ -2,3 +2,11 @@ SRCDIR := $(shell pwd)  NAME := $(shell basename $(SRCDIR))  include ../../../common/Makefile +composer: +	tar xf $(shell spectool -l $(NAME).spec | head -n 1 | sed -e 's:.* ::' | sed -e 's:.*/::') --strip-components=1 '*/composer.json' +	test -d Cache           && mv Cache/composer.json           src/Cache           && rmdir Cache +	test -d EventDispatcher && mv EventDispatcher/composer.json src/EventDispatcher && rmdir EventDispatcher +	test -d HttpClient      && mv HttpClient/composer.json      src/HttpClient      && rmdir HttpClient +	test -d Service         && mv Service/composer.json         src/Service         && rmdir Service +	test -d Translation     && mv Translation/composer.json     src/Translation     && rmdir Translation + diff --git a/php-symfony-contracts.spec b/php-symfony-contracts.spec index ca0917a..496df07 100644 --- a/php-symfony-contracts.spec +++ b/php-symfony-contracts.spec @@ -6,7 +6,7 @@  #  # Please, preserve the changelog entries  # -%global gh_commit    b6e291a08e6b002fb56aa6f3e2a2beb6674d2b2f +%global gh_commit    2d19b12caccbd80cf0c85624dc87b7021a0df1d5  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     symfony  %global gh_project   contracts @@ -21,7 +21,7 @@  %global with_tests   0%{!?_without_tests:1}  Name:           php-%{pk_vendor}-%{pk_project} -Version:        1.1.2 +Version:        1.1.3  Release:        1%{?gh_date:.%{gh_date}git%{gh_short}}%{?dist}  Summary:        A set of abstractions extracted out of the Symfony @@ -165,6 +165,9 @@ exit $ret  %changelog +* Thu Jun  6 2019 Remi Collet <remi@remirepo.net> - 1.1.3-1 +- update to 1.1.3 +  * Mon Jun  3 2019 Remi Collet <remi@remirepo.net> - 1.1.2-1  - update to 1.1.2 (no change) | 
