summaryrefslogtreecommitdiff
path: root/maint/release
blob: 42b75e1f5204abde06a4b5ce567c8130bb26a308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/perl
# A simple script for making releases of the pciutils
# (c) 2003--2012 Martin Mares <mj@ucw.cz>

use strict;
use warnings;
require "./maint/release.pm";

# Check API version
my $apiver = "???";
open X, "lib/pci.h" or die;
while (<X>) {
	/^#define PCI_LIB_VERSION 0x(.{6})$/ and $apiver = $1;
}
print "API version is $apiver ... <confirm> "; <STDIN>;

#print "Updating public GIT tree\n";
#`git push --tags public`; die if $?;

my $r = new UCW::Release("pciutils");
my $ver = $r->GetVersionFromFile("Makefile", "VERSION=(.*)");
$r->GetVersionsFromChangelog("ChangeLog", "Released as (.*)\.");
push @{$r->{"rules"}}, '^win32/config.h' => 's';
if ($ver =~ /-/) {
	$r->{"ALPHADIR"} = "alpha/";
	$r->{"conditions"}->{"ALPHA_VERSION"} = 1;
} else {
	$r->{"ALPHADIR"} = "";
	$r->{"conditions"}->{"ALPHA_VERSION"} = -1;
}
push @{$r->{"uploads"}}, {
	"url" => "scp://atrey.karlin.mff.cuni.cz/~ftp/pub/linux/pci/" . $r->{"ALPHADIR"}
##	},{
##	"url" => "scp://master.kernel.org/pub/software/utils/pciutils/" . $r->{"ALPHADIR"}
	};
$r->ParseOptions;
$r->InitDist("maint/dist");
my $reldir = $r->GenPackage;
$r->GenFile("README");
$r->GenFile("pciutils.lsm");
$r->Dispatch;
if ($r->{"do_upload"}) {
	print "Uploading pci.ids to Jabberwock\n";
	`scp -C pci.ids pciids\@jabberwock.ucw.cz:05-pciutils.new`; die if $?;
	`ssh pciids\@jabberwock.ucw.cz mv 05-pciutils.new origs/05-pciutils`; die if $?;
}

# Hacks for kernel.org
print "Preparing kernel.org package\n";
my $dd = $r->{"DISTDIR"};
my $pkg = $r->{"PKG"};
`gzip -d <$dd/$pkg.tar.gz >$dd/$pkg.tar`; die if $?;
system "gpg", "--armor", "--detach-sig", "-o", "$dd/$pkg.tar.sig", "$dd/$pkg.tar"; die if $?;
if ($r->{"do_upload"}) {
	print "Uploading to kernel.org\n";
	print "<confirm> "; <STDIN>;
	system '/home/mj/tree/kup/kup', 'put', "$dd/$pkg.tar", "$dd/$pkg.tar.sig", "/pub/software/utils/pciutils/$pkg.tar.gz"; die if $?;
}