2008-04-29 12:55:25 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
#
|
|
|
|
# This program creates a source distribution of qpdf. For details,
|
2021-12-21 14:23:20 +00:00
|
|
|
# see README-maintainer.
|
2008-04-29 12:55:25 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
require 5.008;
|
2011-08-10 20:43:12 +00:00
|
|
|
use warnings;
|
2008-04-29 12:55:25 +00:00
|
|
|
use strict;
|
2011-08-10 20:43:12 +00:00
|
|
|
use File::Basename;
|
2008-04-29 12:55:25 +00:00
|
|
|
use Cwd;
|
2018-02-21 12:02:45 +00:00
|
|
|
use Cwd 'abs_path';
|
2008-04-29 12:55:25 +00:00
|
|
|
use IO::File;
|
2021-12-13 12:43:26 +00:00
|
|
|
use File::Path qw(rmtree make_path);
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2011-08-10 20:43:12 +00:00
|
|
|
my $whoami = basename($0);
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2021-12-13 12:43:26 +00:00
|
|
|
my $tmp = $ENV{'TMPDIR'} || '/tmp';
|
2018-08-16 15:20:35 +00:00
|
|
|
my $keep_tmp = 0;
|
2018-10-13 15:51:35 +00:00
|
|
|
my $ci_mode = 0;
|
2018-08-16 15:20:35 +00:00
|
|
|
my $version = undef;
|
2018-02-21 12:02:45 +00:00
|
|
|
foreach my $arg (@ARGV)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2018-02-21 12:02:45 +00:00
|
|
|
if ($arg eq '--no-tests')
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2021-12-21 14:23:20 +00:00
|
|
|
# ignore for compatibility
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
2018-08-16 15:20:35 +00:00
|
|
|
elsif ($arg eq '--keep-tmp')
|
|
|
|
{
|
|
|
|
$keep_tmp = 1;
|
|
|
|
}
|
2018-10-13 15:51:35 +00:00
|
|
|
elsif ($arg eq '--ci')
|
|
|
|
{
|
|
|
|
$ci_mode = 1;
|
|
|
|
}
|
2018-08-16 15:20:35 +00:00
|
|
|
elsif (! defined $version)
|
|
|
|
{
|
|
|
|
$version = $arg;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
2018-02-21 12:02:45 +00:00
|
|
|
|
2018-10-13 15:51:35 +00:00
|
|
|
if ($ci_mode && (! defined $version))
|
|
|
|
{
|
|
|
|
$version = get_version_from_configure();
|
|
|
|
}
|
|
|
|
|
2018-08-16 15:20:35 +00:00
|
|
|
usage() unless defined $version;
|
|
|
|
usage() unless $version =~ m/^(\d+\.\d+(?:\.(a|b|rc)?\d+)?)$/;
|
|
|
|
my $distname = "qpdf-$version";
|
2021-12-13 12:43:26 +00:00
|
|
|
my $tmpdir = "${tmp}/$distname";
|
2018-08-16 15:20:35 +00:00
|
|
|
if ((-d $tmpdir) && (! $keep_tmp))
|
|
|
|
{
|
|
|
|
rmtree($tmpdir);
|
|
|
|
}
|
2021-12-13 12:43:26 +00:00
|
|
|
make_path($tmp);
|
|
|
|
run("git archive --prefix=qpdf-$version/ HEAD . | (cd $tmp; tar xf -)");
|
2018-08-16 15:20:35 +00:00
|
|
|
cd($tmpdir);
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
# Check versions
|
2018-10-13 15:51:35 +00:00
|
|
|
my $config_version = get_version_from_configure();
|
|
|
|
my $code_version = get_version_from_source();
|
|
|
|
my $doc_version = get_version_from_manual();
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
my $version_error = 0;
|
|
|
|
if ($version ne $config_version)
|
|
|
|
{
|
|
|
|
print "$whoami: configure.ac version = $config_version\n";
|
|
|
|
$version_error = 1;
|
|
|
|
}
|
|
|
|
if ($version ne $code_version)
|
|
|
|
{
|
2009-10-24 13:41:03 +00:00
|
|
|
print "$whoami: QPDF.cc version = $code_version\n";
|
2008-04-29 12:55:25 +00:00
|
|
|
$version_error = 1;
|
|
|
|
}
|
|
|
|
if ($version ne $doc_version)
|
|
|
|
{
|
2021-12-11 22:16:05 +00:00
|
|
|
print "$whoami: doc version = $doc_version\n";
|
2008-04-29 12:55:25 +00:00
|
|
|
$version_error = 1;
|
|
|
|
}
|
|
|
|
if ($version_error)
|
|
|
|
{
|
|
|
|
die "$whoami: version numbers are not consistent\n";
|
|
|
|
}
|
|
|
|
|
2021-12-13 12:43:26 +00:00
|
|
|
cd($tmp);
|
2018-08-16 15:20:35 +00:00
|
|
|
run("tar czvf $distname.tar.gz-candidate $distname");
|
2018-10-13 15:51:35 +00:00
|
|
|
my $distfile = ($ci_mode ? "$distname-ci.tar.gz" : "$distname.tar.gz");
|
|
|
|
rename "$distname.tar.gz-candidate", $distfile or die;
|
2018-08-16 15:20:35 +00:00
|
|
|
|
|
|
|
if (! $keep_tmp)
|
|
|
|
{
|
|
|
|
rmtree($tmpdir);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print "
|
2021-12-13 12:43:26 +00:00
|
|
|
Source distribution created as ${tmp}/$distfile
|
2008-04-29 12:55:25 +00:00
|
|
|
If this is a release, don't forget to tag the version control system and
|
|
|
|
make a backup of the release tar file.
|
|
|
|
|
|
|
|
";
|
|
|
|
|
2018-10-13 15:51:35 +00:00
|
|
|
sub get_version_from_configure
|
|
|
|
{
|
|
|
|
my $fh = safe_open("configure.ac");
|
|
|
|
my $config_version = 'unknown';
|
|
|
|
while (<$fh>)
|
|
|
|
{
|
|
|
|
if (m/^AC_INIT\(\[qpdf\],\[([^\)]+)\]\)/)
|
|
|
|
{
|
|
|
|
$config_version = $1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fh->close();
|
|
|
|
$config_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_version_from_source
|
|
|
|
{
|
|
|
|
my $fh = safe_open("libqpdf/QPDF.cc");
|
|
|
|
my $code_version = 'unknown';
|
|
|
|
while (<$fh>)
|
|
|
|
{
|
|
|
|
if (m/QPDF::qpdf_version = \"([^\"]+)\"/)
|
|
|
|
{
|
|
|
|
$code_version = $1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fh->close();
|
|
|
|
$code_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_version_from_manual
|
|
|
|
{
|
2021-12-11 22:16:05 +00:00
|
|
|
my $fh = safe_open("manual/conf.py");
|
2018-10-13 15:51:35 +00:00
|
|
|
my $doc_version = 'unknown';
|
|
|
|
while (<$fh>)
|
|
|
|
{
|
2021-12-11 22:16:05 +00:00
|
|
|
if (m/release = '([^\']+)\'/)
|
2018-10-13 15:51:35 +00:00
|
|
|
{
|
|
|
|
$doc_version = $1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$fh->close();
|
|
|
|
$doc_version;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
sub safe_open
|
|
|
|
{
|
|
|
|
my $file = shift;
|
|
|
|
my $fh = new IO::File("<$file") or die "$whoami: can't open $file: $!";
|
|
|
|
$fh;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub run
|
|
|
|
{
|
|
|
|
my $cmd = shift;
|
|
|
|
system($cmd) == 0 or die "$whoami: $cmd failed\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sub cd
|
|
|
|
{
|
|
|
|
my $dir = shift;
|
|
|
|
chdir($dir) or die;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub usage
|
|
|
|
{
|
|
|
|
die "
|
2018-08-16 15:20:35 +00:00
|
|
|
Usage: $whoami [ --no-tests --keep-tmp ] version
|
|
|
|
|
|
|
|
Use of --no-tests can be used for internally testing releases, but do
|
|
|
|
not use it for a real release.
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2021-12-13 12:43:26 +00:00
|
|
|
$whoami creates ${tmp}/qpdf-<version> and deletes it when done. With
|
2018-08-16 15:20:35 +00:00
|
|
|
--keep-tmp, the directory is kept. This can be useful for debugging
|
|
|
|
the release process.
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
";
|
|
|
|
}
|