diff --git a/packaging/debian/README b/packaging/debian/README index e2a0521..779b1f5 100644 --- a/packaging/debian/README +++ b/packaging/debian/README @@ -1,7 +1,7 @@ Release new version for Debian ============================== -VERSION=1.3.2 +VERSION=1.5.0 WD=/tmp/pkg TARGET=vm-debian8 @@ -36,6 +36,9 @@ sudo pbuilder --build ../../yamllint_$VERSION-1.dsc # Run lintian to detect problems lintian -i -I --show-overrides ../../yamllint_$VERSION-1_source.changes +# Retrieve modified files +rsync -av $TARGET:$WD/yamllint-$VERSION/debian packaging/debian + # Upload to mentors FTP (needed even for updates) cat >>~/.dput.cf << EOF [mentors] diff --git a/packaging/debian/debian/changelog b/packaging/debian/debian/changelog index 3f0a194..1c743f3 100644 --- a/packaging/debian/debian/changelog +++ b/packaging/debian/debian/changelog @@ -1,3 +1,14 @@ +yamllint (1.5.0-1) unstable; urgency=medium + + * Output color only on TTY + * Generalize line-length for mappings + * Fix line-length bug by scanning tokens securely + * New rule: truthy + * Fix distribution (don't distribute tests in site-packages) + * Exclude PTY-related test (doesn't work with pbuilder) + + -- Adrien Vergé Mon, 07 Nov 2016 18:51:37 +0100 + yamllint (1.3.2-1) unstable; urgency=medium * Allow disabling yamllint checks using comments diff --git a/packaging/debian/debian/rules b/packaging/debian/debian/rules index 81b30d7..bee4631 100755 --- a/packaging/debian/debian/rules +++ b/packaging/debian/debian/rules @@ -1,7 +1,8 @@ #!/usr/bin/make -f %: - dh $@ --with python3 --buildsystem=pybuild + NOSE_EXCLUDE=test_run_colored_output \ + dh $@ --with python3 --buildsystem=pybuild override_dh_auto_build: dh_auto_build