r3781: waldi | 2005-08-09 09:09:10 +0000

debian/rules: Use md5sum to check for changed input files in debian/control
build.

r3782: waldi | 2005-08-09 09:13:12 +0000
* debian/changelog: Prepare to release (2.6.12-2).
* debian/templates/control.source.in: Add myself to Uploaders.

svn path=/trunk/kernel/source/linux-2.6/; revision=3790
This commit is contained in:
Bastian Blank 2005-08-09 11:53:21 +00:00
parent d543590473
commit ad676246f6
3 changed files with 14 additions and 4 deletions

6
debian/changelog vendored
View File

@ -11,6 +11,8 @@ linux-2.6 (2.6.12-3) UNRELEASED; urgency=low
will be enabled.
Closes: #321885
* Link palinfo statically on ia64. (dann frazier) (Closes: #321885)
-- Simon Horman <horms@debian.org> Tue, 9 Aug 2005 11:00:51 +0900
linux-2.6 (2.6.12-2) unstable; urgency=low
@ -70,9 +72,7 @@ linux-2.6 (2.6.12-2) unstable; urgency=low
* Added list of flavours built to common header package. (Sven Luther)
* Link palinfo statically on ia64. (dann frazier) (Closes: #321885)
-- Andres Salomon <dilinger@debian.org> Mon, 08 Aug 2005 20:15:58 -0400
-- Bastian Blank <waldi@debian.org> Tue, 09 Aug 2005 11:12:40 +0200
linux-2.6 (2.6.12-1) unstable; urgency=low

10
debian/rules vendored
View File

@ -229,7 +229,17 @@ binary: binary-indep binary-arch
# variable values into the template.
#
debian/control: debian/bin/gencontrol.py debian/changelog $(wildcard debian/templates/control.*.in)
if [ -f debian/control.md5sum ]; then \
if md5sum $^ | diff - debian/control.md5sum > /dev/null; then true; else \
$(MAKE) -f debian/rules debian/control-real; \
fi \
else \
$(MAKE) -f debian/rules debian/control-real; \
fi
debian/control-real: debian/bin/gencontrol.py debian/changelog $(wildcard debian/templates/control.*.in)
debian/bin/gencontrol.py
md5sum $^ > debian/control.md5sum
@echo
@echo This target is made to fail intentionally, to make sure
@echo that it is NEVER run during the automated build. Please

View File

@ -2,7 +2,7 @@ Source: linux-@major@
Section: devel
Priority: optional
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Uploaders: Andres Salomon <dilinger@debian.org>
Uploaders: Andres Salomon <dilinger@debian.org>, Bastian Blank <waldi@debian.org>
Standards-Version: 3.6.1.0
Build-Depends: gcc (>= 4:4.0) [!sparc !alpha !m68k], gcc-3.3 [sparc alpha m68k], debhelper (>= 4.1.0), module-init-tools, dpkg-dev (>= 1.10.23), debianutils (>= 1.6), bzip2, console-tools [!s390], sparc-utils [sparc], kernel-package (>= 9.005)
Build-Depends-Indep: docbook-utils, gs, transfig, xmlto, dh-kpatches (>= 0.99.3)