release Change History

1.50 (2016-01-24)

Add support for bootstrap scripts, similar to autogen. This appears to be the naming that the Autoconf world is now standardizing on.

Lines changed: +10 -5

1.49 (2015-12-31)

Use gpg2 instead of gpg to sign releases.

Lines changed: +2 -2

1.48 (2014-07-27)

When building a distribution tarball, if there is not an xz-compressed version (such as with Perl's build system, which doesn't yet have support for xz), generate an xz-compressed version from the gzip version automatically.

Lines changed: +14 -7

1.47 (2013-09-13)

Fix one line of error reporting when building distributions from Build.PL Perl packages.

Lines changed: +2 -2

1.46 (2013-06-30)

Add release -d support for Module::Build Perl modules.

Lines changed: +12 -2

1.45 (2013-01-10)

Support multiple signatures on the distribution. Switch the gpg invocation over to using subprocess.check_call() instead of os.system(). This bumps the version requirement to Python 2.5.

Lines changed: +14 -8

1.44 (2013-01-03)

Use Git instead of Subversion to commit the .versions file.

Lines changed: +6 -6

1.43 (2012-06-02)

Add support for *.tar.xz distribution tarballs.

Lines changed: +37 -26

1.42 (2010-10-10)

For tarball releases, maintain links without the version number to the current tarball and the current GnuPG signature and update them with each new release.

Stop generating or copying MD5 checksum files, since they're pointless given the presence of a GnuPG signature.

Lines changed: +26 -21

1.41 (2009-07-18)

Add a new keyid configuration parameter, which sets the GnuPG keyid used for signing releases.

Lines changed: +11 -2

1.40 (2009-07-14)

Add a new configuration file option, maketarget, which overrides the default make target of distcheck or dist for building a tarball release.

Fix a syntax error by closing the quoted string containing the new POD documentation.

Lines changed: +17 -3

1.39 (2009-07-14)

Add full documentation.

Also remove -B from the getopt invocation and add the new options to the usage message.

Lines changed: +327 -3

1.38 (2009-07-13)

Remove support for building a backport of a Debian package using the old Subversion package build method. This assumped use of a *.tgz file and pbuilder instead of cowbuilder, plus is no longer something I use or test.

Lines changed: +9 -30

1.37 (2008-07-24)

Improve the git archive command used for exports from Git.

Lines changed: +3 -3

1.36 (2008-07-10)

Add support for Git exports.

Lines changed: +20 -1

1.35 (2008-04-16)

Better error message when the tarball isn't in the expected location.

Lines changed: +4 -2

1.34 (2008-04-10)

Use make distcheck for Automake projects.

Lines changed: +5 -2

1.33 (2007-06-27)

Print a newline after the usage message.

Lines changed: +2 -2

1.32 (2007-04-13)

Anchor the regex used to find the release tarball.

Lines changed: +2 -2

1.31 (2007-03-25)

Anchor patterns when doing tarball releases so that releasing remctl doesn't archive kadmin-remctl.

Lines changed: +2 -2

1.30 (2007-03-03)

Delete stale .md5 and .asc files when doing a release.

Lines changed: +6 -1

1.29 (2007-01-07)

Always generate MD5 checksums and PGP signatures.

Lines changed: +7 -5

1.28 (2006-08-11)

Add support for generating distribution tarballs via bzr. Also add support for packages that don't use autoconf and just have a regular Makefile with a make dist target.

Lines changed: +20 -2

1.27 (2006-08-06)

Silence the Subversion commit of the .versions file.

Lines changed: +2 -2

1.26 (2006-08-06)

Add a -u option to look for unreleased changes, places where the version of a script is different than what appears in the .versions file. This currently only handles scripts, not tarballs.

Qualify the NoOptionError exceptions from ConfigParser. I'm not sure if this ever worked, but it definitely doesn't work without qualification in Python 2.4.

Lines changed: +37 -9

1.25 (2006-07-27)

Use svn instead of cvs to commit the change to .versions.

Lines changed: +2 -2

1.24 (2006-04-10)

Initialize a few variables introduced in the previous change.

Lines changed: +3 -1

1.23 (2006-03-27)

Add support for forcing inclusion of the source in the package.

Lines changed: +29 -25

1.22 (2006-03-27)

Add support for backport Debian builds.

Lines changed: +44 -12

1.21 (2005-12-11)

Handle the change to the CVS date format in Id strings.

Lines changed: +6 -2

1.20 (2005-08-09)

First draft of Subversion support for make_dist and deb_build.

Lines changed: +62 -21

1.19 (2005-06-18)

Increase the width of the program column in .versions for afs-backend-acl.

Lines changed: +2 -2

1.18 (2005-04-25)

Fix tarball archiving.

Lines changed: +2 -2

1.17 (2005-04-20)

Fix -h and -v options.

Lines changed: +4 -4

1.16 (2005-04-20)

Fix the error handling for find_tarball.

Lines changed: +2 -2

1.15 (2005-04-19)

Improve the file name pattern matching for -d and -b.

Lines changed: +3 -3

1.14 (2005-04-14)

Be more precise about what tarballs are picked up for the .orig.tar.gz file when doing Debian builds.

Lines changed: +2 -2

1.13 (2005-04-14)

Handle .md5 and .asc files associated with a release.

Lines changed: +6 -2

1.12 (2005-02-23)

Add the necessary machinery for building a Debian package out of a single script or set of scripts.

Lines changed: +60 -4

1.11 (2005-02-22)

Use cvs export to grab the Debian directory for a distribution instead of cvs checkout and pass -kv to the command to expand all keywords. Improve the leading comment for deb_build.

Lines changed: +6 -7

1.10 (2005-01-20)

Improvements to checking out the debian subdirectory of a package. Allow for that directory not to exist in the distribution tarball and remove the CVS subdirectory that CVS creates.

Lines changed: +6 -2

1.9 (2004-08-19)

Add support for make dist of C programs.

Lines changed: +11 -1

1.8 (2004-08-06)

Add building distributions and building Debian packages. Change the configuration from specifying a pattern to match new tarballs to specifying a prefix (the part that comes before the version) so that it can be used to handle moving other files related to the package around as well.

Lines changed: +172 -64

1.7 (2004-07-30)

Fix the automatic creation of the archive directory if it doesn't already exist. Python throws an exception when os.stat fails rather than returning None.

Lines changed: +4 -2

1.6 (2004-07-23)

Add support for releasing software as a tarball and archiving old versions of the package. Change the configuration file to use script rather than path for script releases, so that it makes more sense to distinguish between scripts and tarballs based on the script or tarball configuration parameter.

Lines changed: +138 -61

1.5 (2004-04-18)

Add support for exporting a script out of CVS.

Lines changed: +30 -14

1.4 (2004-04-16)

Add support for a configuration file that specifies paths and actions, support copying a script into a release location, and support adding something new to the .versions file if it's not already found there.

Lines changed: +51 -23

1.3 (2004-04-16)

If we only have a VERSION line and no Id tag, assume that the release date is the current date.

Lines changed: +3 -1

1.2 (2004-04-16)

Fix the Id regex.

Lines changed: +2 -2

1.1 (2004-04-16)

Initial version. All that it can do is update the .versions file for spin based on a CVS Id string read out of a file.

Generated by cvs2xhtml 1.15 on 2022-02-06