summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'projects/gentoolkit-nichoj/trunk/changelog.rb')
-rwxr-xr-xprojects/gentoolkit-nichoj/trunk/changelog.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/projects/gentoolkit-nichoj/trunk/changelog.rb b/projects/gentoolkit-nichoj/trunk/changelog.rb
deleted file mode 100755
index 4eeb5d3..0000000
--- a/projects/gentoolkit-nichoj/trunk/changelog.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/ruby -w
-module ChangeLog
- def ChangeLog.getLastEntry()
- f = File.new('ChangeLog')
- entry=''
-
- while line = f.gets
- # TODO parametize this
- if(line.match(/nichoj@gentoo.org/))
-
- while ! line.match(/:$/)
- line = f.gets
- end
-
- while (line = f.gets) && line.strip != ''
- entry += line.strip + ' '
- end
-
- break
- end
- end
-
- f.close
- return entry.rstrip
- end
-end