[Collab-qa-commits] r569 - bapase

lucas at alioth.debian.org lucas at alioth.debian.org
Tue Dec 11 07:48:17 UTC 2007


Author: lucas
Date: 2007-12-11 07:48:17 +0000 (Tue, 11 Dec 2007)
New Revision: 569

Added:
   bapase/getremovals.rb
Modified:
   bapase/Makefile
Log:
get packages that are going to be removed

Modified: bapase/Makefile
===================================================================
--- bapase/Makefile	2007-12-10 19:17:00 UTC (rev 568)
+++ bapase/Makefile	2007-12-11 07:48:17 UTC (rev 569)
@@ -84,6 +84,6 @@
 	./getremovals.rb > removals.txt
 
 clean:
-	rm -f testing-status.txt *-Sources popcon_sources.txt scores.txt Sources_ok bts2ldap-fullindex RC+patch.txt bugsummary wnppsummary orphaned_packages.txt scores-buggy.html scores-orphaned.html upload-history.txt scores-useless.html
+	rm -f testing-status.txt *-Sources popcon_sources.txt scores.txt Sources_ok bts2ldap-fullindex RC+patch.txt bugsummary wnppsummary orphaned_packages.txt scores-buggy.html scores-orphaned.html upload-history.txt scores-useless.html removals.txt
 
 .PHONY: clean scores-html

Added: bapase/getremovals.rb
===================================================================
--- bapase/getremovals.rb	                        (rev 0)
+++ bapase/getremovals.rb	2007-12-11 07:48:17 UTC (rev 569)
@@ -0,0 +1,7 @@
+#!/usr/bin/ruby -w
+
+`lynx -dump 'http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=ftp.debian.org;dist=unstable;pend-exc=done' |grep RM | awk '{print $4}'`.chomp.split(/\n/).each do |e|
+  next if e == 'RM:'
+  next if e =~ /\/experimental/
+  puts e.chomp(',')
+end


Property changes on: bapase/getremovals.rb
___________________________________________________________________
Name: svn:executable
   + *




More information about the Collab-qa-commits mailing list