Packaging: Debian: Package 1.3.2-1

packaging
Adrien Vergé 9 years ago
parent c0da5eac54
commit c57d2784df

@ -1,7 +1,7 @@
Release new version for Debian
==============================
VERSION=1.2.1
VERSION=1.3.2
WD=/tmp/pkg
TARGET=vm-debian8
@ -12,7 +12,13 @@ python3 setup.py sdist
ssh $TARGET mkdir $WD
rsync -av dist/yamllint-$VERSION.tar.gz $TARGET:$WD/yamllint_$VERSION.orig.tar.gz
ssh $TARGET tar -C $WD -xf $WD/yamllint_$VERSION.orig.tar.gz
if false; then
rsync -av packaging/debian/debian $TARGET:$WD/yamllint-$VERSION
else
ssh $TARGET "cd $WD && sudo apt-get update"
ssh $TARGET "cd $WD && apt-get source yamllint"
ssh $TARGET mv $WD'/yamllint-*/debian' $WD/yamllint-$VERSION # old version
fi
ssh $TARGET
cd $WD/yamllint-$VERSION/debian
@ -27,6 +33,9 @@ debuild -S -sa
sudo pbuilder --create
sudo pbuilder --build ../../yamllint_$VERSION-1.dsc
# Run lintian to detect problems
lintian -i -I --show-overrides ../../yamllint_$VERSION-1_source.changes
# Upload to mentors FTP (needed even for updates)
cat >>~/.dput.cf << EOF
[mentors]

@ -1,3 +1,18 @@
yamllint (1.3.2-1) unstable; urgency=medium
* Allow disabling yamllint checks using comments
* Detect user config using `os.path.expanduser()`
* Fix non-ASCII comments bug and add tests
* Update standards version to 3.9.8
-- Adrien Vergé <adrienverge@gmail.com> Mon, 27 Jun 2016 22:17:05 +0200
yamllint (1.2.2-1) unstable; urgency=medium
* Update to new upstream version
-- Adrien Vergé <adrienverge@gmail.com> Fri, 24 Jun 2016 08:54:59 +0200
yamllint (1.2.1-1) unstable; urgency=medium
* Update to new upstream version

@ -9,7 +9,7 @@ Build-Depends:
python3-setuptools,
python3-sphinx,
python3-yaml,
Standards-Version: 3.9.7
Standards-Version: 3.9.8
Homepage: https://github.com/adrienverge/yamllint
Vcs-Git: https://github.com/adrienverge/yamllint.git -b packaging
Vcs-Browser: https://github.com/adrienverge/yamllint/tree/packaging

Loading…
Cancel
Save