summaryrefslogtreecommitdiffstats
path: root/changes2changelog
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2014-04-17 13:22:25 +0200
committerJean Delvare <jdelvare@suse.de>2014-04-17 13:22:25 +0200
commitde85d19348f29c06c35af5b412aaa04a6494386a (patch)
tree19b95ccb01b5be00abf17e0d6718ccc595bd7ffe /changes2changelog
parent66e02b00680eca4345023272acf2edecd11c3c97 (diff)
downloadquilt-de85d19348f29c06c35af5b412aaa04a6494386a.tar.gz
Delete quilt.changes
File quilt.changes is essentially redundant with git log. It is close to useless to packagers and users as it contains too much details while at the same time some important changes can be missing when we forget to include them in the file. A new file, NEWS, was created to list the user-visible change summary for each version. This is much more useful for the target audience. NEWS is now used instead of quilt.changes to generate the %changelog section of the rpm spec file. Thus we can delete quilt.changes, as well as changes2changelog.
Diffstat (limited to 'changes2changelog')
-rwxr-xr-xchanges2changelog20
1 files changed, 0 insertions, 20 deletions
diff --git a/changes2changelog b/changes2changelog
deleted file mode 100755
index 409bf72..0000000
--- a/changes2changelog
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /usr/bin/perl
-
-$ENV{"LC_ALL"} = "C";
-
-while (<>) {
- if (/^(|-+)$/) {
- next;
- } elsif (/^(\S.*) - (.*@.*)$/) {
- # print "[" . $1 . "]\n";
- open FH, 'date -u +"* %a %b %d %Y" -d "' . $1 . '" |';
- while (<FH>) {
- chomp;
- print $_ . " - " . $2 . "\n";
- }
- close FH;
- next;
- } elsif (/(- | +)(?!\s)/) {
- print;
- }
-}