+++ /dev/null
-#!/bin/sh
-#-
-# The extracted .orig.tar.gz is kept in CVS, in the origtgz branch
-# with appropriate tags. Changes are directly applied to the code,
-# as checked out from CVS, and will end up as "direct patches with
-# no patch system", this is by design. When releasing, configure.in
-# AC_INIT call must be touched to change the version number, then
-# this script must be run to regenerate the autoconf/automake files.
-# For that, there are some dependencies:
-# sudo apt-get install autoconf2.59 automake1.9
-#
-# The patchlevel is kept in configure.in (and regenerated as below).
-# MirDebian-16 is in sync with MirOS-0AB7.2 revision.
-#
-# The patches should be kept in sync with those in MirBSD base:
-# Vcs-CVS: :ext:_anoncvs@anoncvs.mirbsd.org:/cvs src/gnu/usr.bin/cvs
-# Vcs-Browser: http://cvs.mirbsd.de/src/gnu/usr.bin/cvs/
-
-set -x
-cd "$(dirname "$0")/.."
-rm -f config.h.in configure
-rv=0
-aclocal-1.9 -I m4 || rv=$?
-autoheader2.59 || rv=$?
-automake-1.9 || rv=$?
-autoconf2.59 || rv=$?
-exit $rv
* Take back the package (Closes: #764397)
* Fix typo in changelog entry for cvs (2:1.12.13+real-9)
* Bump Policy; no changes
- * Update code with bugfixes from MirBSD (Closes: #839669)
+ * Update code with bugfixes from MirBSD 0AB7.2 (Closes: #839669)
-- Thorsten Glaser <tg@mirbsd.de> Fri, 21 Oct 2016 23:34:20 +0200