]> mj.ucw.cz Git - eval.git/blob - maint/release
Detect breakpoint instructions, which are reported as syscall #-1.
[eval.git] / maint / release
1 #!/usr/bin/perl
2 # A simple script for making releases of mo-eval
3 # (c) 2005--2008 Martin Mares <mj@ucw.cz>
4
5 use strict;
6 use warnings;
7 require "maint/release.pm";
8
9 my $r = new UCW::Release("mo-eval");
10 my $ver = $r->GetVersionFromFile("Makefile", "VERSION=(.*)");
11 #$r->GetVersionsFromChangelog("ChangeLog", "Released as (.*)\.");
12 unshift @{$r->{"rules"}}, '^(problems|testing|solutions|maint|certs)/.*' => '-';
13 push @{$r->{"directories"}}, "problems", "testing", "solutions";
14 push @{$r->{"uploads"}}, {
15                 "url" => "scp://atrey.karlin.mff.cuni.cz/~ftp/pub/local/mj/eval/"
16         }, {
17                 "url" => "scp://jabberwock.ucw.cz/~ftp/pub/mj/eval/"
18         };
19 $r->ParseOptions;
20 $r->InitDist("maint/dist");
21 $r->GenPackage;
22 $r->GenFile("README");
23 $r->Dispatch;
24
25 if ($r->{"do_upload"}) {
26         print "Updating documentation at Jabberwock\n";
27         `rsync -a doc/. jabberwock.ucw.cz:www/mo-eval/`; die if $?;
28 }