]> mj.ucw.cz Git - pciutils.git/blobdiff - maint/release
lspci: Add test case for CXL device
[pciutils.git] / maint / release
index 930180de15309569a73e50e2a6a986bc159567a1..9c2521b6f45106dc2c7b363332f740242d1648be 100755 (executable)
@@ -1,10 +1,21 @@
 #!/usr/bin/perl
 # A simple script for making releases of the pciutils
-# (c) 2003--2004 Martin Mares <mj@ucw.cz>
+# (c) 2003--2012 Martin Mares <mj@ucw.cz>
 
 use strict;
 use warnings;
-require "maint/release.pm";
+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=(.*)");
@@ -18,14 +29,10 @@ if ($ver =~ /-/) {
        $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"}
+       "url" => "scp://jabberwock.ucw.cz/home/ftp/pub/mj/linux/pci/" . $r->{"ALPHADIR"}
+##     },{
+##     "url" => "scp://master.kernel.org/pub/software/utils/pciutils/" . $r->{"ALPHADIR"}
        };
-push @{$r->{"uploads"}}, {
-       "url" => "ftp://metalab.unc.edu/incoming/linux/",
-       "filter" => '(\.tar\.gz|\.lsm)$'
-       } if !defined $r->{"ALPHADIR"};
 $r->ParseOptions;
 $r->InitDist("maint/dist");
 my $reldir = $r->GenPackage;
@@ -37,3 +44,15 @@ if ($r->{"do_upload"}) {
        `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 $?;
+}