From patchwork Fri Oct 9 12:17:02 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Clean up sections in linux-backports-modules Date: Fri, 09 Oct 2009 02:17:02 -0000 From: Colin Watson X-Patchwork-Id: 35616 Message-Id: <20091009121702.GV13423@riva.ucam.org> To: kernel-team@lists.ubuntu.com This patch would have saved me some time in archive processing today; it cleans up Section fields to match the overrides in the archive. We don't use Section: base any more. I'm not sending this in 'git format-patch' form because you ought to run 'debian/rules debian/control' before applying it, and the git repository still has generated files referring to 2.6.31-11, which makes the patch rather noisy and hard to read. Thanks, diff --git a/debian/control.d/flavour-control.stub b/debian/control.d/flavour-control.stub index 67e9b4d..9939509 100644 --- a/debian/control.d/flavour-control.stub +++ b/debian/control.d/flavour-control.stub @@ -25,7 +25,7 @@ Description: Ubuntu supplied Linux modules for version PKGVER on DESC Package: linux-headers-lbm-PKGVER-ABINUM-FLAVOUR Architecture: ARCH -Section: SECTION_IMAGE +Section: SECTION_HEADERS Priority: optional Depends: coreutils | fileutils (>= 4.0), linux-headers-PKGVER-ABINUM-FLAVOUR Provides: linux-headers-lbm, linux-headers-lbm-2.6 diff --git a/debian/control.stub.in b/debian/control.stub.in index f76299a..9c0d6fe 100644 --- a/debian/control.stub.in +++ b/debian/control.stub.in @@ -1,5 +1,5 @@ Source: linux-backports-modules-PKGVER -Section: base +Section: admin Priority: optional Maintainer: Ubuntu Kernel Team Standards-Version: 3.6.1 diff --git a/debian/scripts/control-create b/debian/scripts/control-create index 58edbde..eef7f9d 100755 --- a/debian/scripts/control-create +++ b/debian/scripts/control-create @@ -4,7 +4,7 @@ stub=debian/control.d/flavour-control.stub vars=$1 # Defaults -section_image=base +section_image=admin section_headers=devel . $vars @@ -20,4 +20,5 @@ cat $stub | grep -v '^#' | sed \ -e "s#DESC#$desc#g" \ -e "s#ARCH#$arch#g" \ -e "s#=PROVIDES=#$provides#g" \ - -e "s#SECTION_IMAGE#$section_image#g" + -e "s#SECTION_IMAGE#$section_image#g" \ + -e "s#SECTION_HEADERS#$section_headers#g"