mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve generation of debian changelog
This commit is contained in:
parent
1e7f7bfc12
commit
bbc05a2cf5
2 changed files with 6 additions and 4 deletions
3
Makefile
3
Makefile
|
@ -53,6 +53,7 @@ DEBUILD_BIN ?= debuild
|
||||||
DEBUILD_OPTS = --source-option="-I"
|
DEBUILD_OPTS = --source-option="-I"
|
||||||
DPUT_BIN ?= dput
|
DPUT_BIN ?= dput
|
||||||
DPUT_OPTS ?=
|
DPUT_OPTS ?=
|
||||||
|
DEB_DATE := $(shell date +"%a, %d %b %Y %T %z")
|
||||||
ifeq ($(OFFICIAL),yes)
|
ifeq ($(OFFICIAL),yes)
|
||||||
DEB_RELEASE = $(RELEASE)ppa
|
DEB_RELEASE = $(RELEASE)ppa
|
||||||
# Sign OFFICIAL builds using 'DEBSIGN_KEYID'
|
# Sign OFFICIAL builds using 'DEBSIGN_KEYID'
|
||||||
|
@ -217,7 +218,7 @@ debian: sdist
|
||||||
mkdir -p deb-build/$${DIST} ; \
|
mkdir -p deb-build/$${DIST} ; \
|
||||||
tar -C deb-build/$${DIST} -xvf dist/$(NAME)-$(VERSION).tar.gz ; \
|
tar -C deb-build/$${DIST} -xvf dist/$(NAME)-$(VERSION).tar.gz ; \
|
||||||
cp -a packaging/debian deb-build/$${DIST}/$(NAME)-$(VERSION)/ ; \
|
cp -a packaging/debian deb-build/$${DIST}/$(NAME)-$(VERSION)/ ; \
|
||||||
sed -ie "s#^$(NAME) (\([^)]*\)) \([^;]*\);#ansible (\1-$(DEB_RELEASE)~$${DIST}) $${DIST};#" deb-build/$${DIST}/$(NAME)-$(VERSION)/debian/changelog ; \
|
sed -ie "s|%VERSION%|$(VERSION)|g;s|%RELEASE%|$(DEB_RELEASE)|;s|%DIST%|$${DIST}|g;s|%DATE%|$(DEB_DATE)|g" deb-build/$${DIST}/$(NAME)-$(VERSION)/debian/changelog ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
deb: debian
|
deb: debian
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
ansible (2.0.0) unstable; urgency=low
|
ansible (%VERSION%-%RELEASE%~%DIST%) %DIST%; urgency=low
|
||||||
|
|
||||||
* 2.0.0 (in progress)
|
* %VERSION% release
|
||||||
|
|
||||||
-- Ansible, Inc. <support@ansible.com> Fri, 01 Jan 2016 00:00:00 -0500
|
-- Ansible, Inc. <support@ansible.com> %DATE%
|
||||||
|
>>>>>>> Stashed changes
|
||||||
|
|
||||||
ansible (1.9.0.1) unstable; urgency=low
|
ansible (1.9.0.1) unstable; urgency=low
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue