* Move md5sums and udeb.list generation into "release" target of

build/Makefile and run these as part of the daily build too.

r29872
suites/ascii
Joey Hess 20 years ago
parent 317643fe3d
commit 032c48640a
  1. 7
      build/Makefile
  2. 1
      build/daily-build
  3. 4
      debian/changelog
  4. 5
      debian/rules

@ -261,6 +261,13 @@ rebuild_%:
_rebuild:
@$(submake) _clean _build
# Run before releasing built files.
release:
egrep '^[[:space:]]' $(BASE_DEST)/MANIFEST.udebs | \
sed 's/^[[:space:]]*//' | sort | uniq > $(BASE_DEST)/udeb.list
rm -f $(BASE_DEST)/MD5SUMS
cd $(BASE_DEST) && md5sum `find . -type f` > MD5SUMS
# The general tree target.
$(STAMPS)tree-unpack-$(targetstring)-stamp: $(STAMPS)get_udebs-$(targetstring)-stamp
dh_testroot

@ -67,6 +67,7 @@ build () {
fi
done
$ROOTCMD make $(echo $TARGETS | sed 's/build_/stats_/g') > dest/stats.txt 2>&1 || true
make release
}
upload () {

4
debian/changelog vendored

@ -215,8 +215,10 @@ debian-installer (20050630) UNRELEASED; urgency=low
* Add libnss-files-udeb to exclude list to work around bug #322506.
* Optimise pkg-lists a bit.
* rootskel-locale renamed to installation-locale.
* Move md5sums and udeb.list generation into "release" target of
build/Makefile and run these as part of the daily build too.
-- Joey Hess <joeyh@debian.org> Thu, 11 Aug 2005 11:51:09 -0400
-- Joey Hess <joeyh@debian.org> Fri, 12 Aug 2005 11:00:55 -0400
debian-installer (20050317) unstable; urgency=low

5
debian/rules vendored

@ -31,7 +31,7 @@ clean:
# Must run as root, so is not run as part of regular build.
build-images:
$(MAKE) -C build all_build stats \
$(MAKE) -C build all_build stats release \
SUITE=$(SUITE) BUILD_DATE=$(DATE) PRESEED=
build: build-stamp
@ -60,9 +60,6 @@ install: build
install -d $(IMAGEDIR)
cp -a build/dest/* $(IMAGEDIR)
egrep '^[[:space:]]' $(IMAGEDIR)/MANIFEST.udebs | \
sed 's/^[[:space:]]*//' | sort | uniq > $(IMAGEDIR)/udeb.list
cd $(IMAGEDIR) && md5sum `find . -type f` > MD5SUMS
ln -s $(DATE) $(ARCHIVEDIR)/current
binary-arch: install

Loading…
Cancel
Save