+2007-12-27 Raphael Hertzog <hertzog@debian.org>
+
+ * Makefile.am: Add some missing files in EXTRA_DIST. And add a
+ dist-hook rule to check that all files contained in the git
+ repository (except .gitignore) are included in the dist tarball.
+
2007-12-27 Raphael Hertzog <hertzog@debian.org>
* configure.ac: Bump version to 1.14.15~.
dist_pkgdata_DATA = cputable ostable triplettable
EXTRA_DIST = \
+ README.translators \
debian/archtable \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
+ debian/dpkg-dev.docs \
debian/dpkg-dev.install \
+ debian/dpkg-dev.preinst \
debian/dpkg-dev.lintian-overrides \
debian/dpkg.cfg \
debian/dpkg.docs \
debian/dpkg.logrotate \
debian/dpkg.lintian-overrides \
debian/dselect.cfg \
+ debian/dselect.docs \
debian/dselect.install \
+ debian/dselect.preinst \
debian/dselect.lintian-overrides \
debian/source.lintian-overrides \
debian/usertags \
debian/rules \
debian/shlibs.default \
debian/shlibs.override
+
+# If we create the dist tarball from the git repository, make sure
+# that we're not forgetting some files...
+dist-hook:
+ if [ -e .git ]; then \
+ for file in `git ls-files | grep -v .gitignore`; do \
+ if [ ! -e "$(distdir)/$$file" ]; then \
+ echo "$$file is missing in $(distdir)" >&2 ; \
+ exit 1 ; \
+ fi ; \
+ done ; \
+ fi
+
dpkg (1.14.15) UNRELEASED; urgency=low
- *
+ [ Raphael Hertzog ]
+ * Make sure {dpkg-dev,dselect}.preinst are included in the source tarball.
+ Closes: #452730
[ Updated man pages translations ]
* Swedish (Peter Karlsson).