[Collab-qa-commits] r1880 - bapase

2011-01-08 Thread Marco Rodrigues
Author: gothicx-guest
Date: 2011-01-08 12:01:59 + (Sat, 08 Jan 2011)
New Revision: 1880

Removed:
   bapase/rm_pkgs/
Log:
The mass-close-bugs scripts are now implemented into dak.


___
Collab-qa-commits mailing list
Collab-qa-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/collab-qa-commits


[Collab-qa-commits] r1881 - bapase

2011-01-08 Thread Marco Rodrigues
Author: gothicx-guest
Date: 2011-01-08 17:28:15 + (Sat, 08 Jan 2011)
New Revision: 1881

Removed:
   bapase/bugs_rm_pkgs.rb
Log:
This script is now at UDD scripts database

Deleted: bapase/bugs_rm_pkgs.rb
===
--- bapase/bugs_rm_pkgs.rb  2011-01-08 12:01:59 UTC (rev 1880)
+++ bapase/bugs_rm_pkgs.rb  2011-01-08 17:28:15 UTC (rev 1881)
@@ -1,109 +0,0 @@
-#!/usr/bin/ruby -w
-
-# see merkel:/org/bugs.debian.org/etc/pseudo-packages.description
-PSEUDO_PKGS = ['base', 'cdrom', 'spam', 'press', 'kernel', 'project',
-'general', 'listarchives', 'nm.debian.org', 'qa.debian.org',
-'ftp.debian.org', 'www.debian.org', 'bugs.debian.org', 'lists.debian.org',
-'wnpp', 'cdimage.debian.org', 'tech-ctte', 'mirrors', 'security.debian.org',
-'installation-reports', 'upgrade-reports', 'release-notes', 'wiki.debian.org', 
'security-tracker', 'release.debian.org', 'debian-policy', 'debian-i18n', 
'buildd.emdebian.org', 'buildd.debian.org' ]
-
-EXCLUDED = [
-  /^(linux|kernel)-(image|source)-/, # we don't care about those bugs for now
-]
-
-#STDERR.puts #{Time::now} Reading LDAP dump
-bugid = nil
-bugsrcpkg = nil
-bugpkg = nil
-bugtitle = nil
-bugstate = nil
-bugaffect = []
-
-ibugs = []
-IO::read('bts2ldap-fullindex').each_line do |l|
-  l.chomp!
-  key, val = l.split(' ', 2)
-  if key == 'dn:' and bugid != nil
-# fin du bug en cours
-if not (bugaffect.include?('unstable') or bugaffect.include?('testing') or 
bugaffect.include?('experimental')) and bugstate != 'done' and not 
PSEUDO_PKGS.include?(bugpkg)
-  ibugs  [bugid, bugpkg, bugsrcpkg, bugtitle]
-end
-
-bugid = nil
-bugsrcpkg = nil
-bugpkg = nil
-bugtitle = nil
-bugstate = nil
-bugaffect = []
-bugaffect = []
-
-  elsif key == 'debbugsID:'
-bugid = val
-  elsif key == 'debbugsSourcePackage:'
-bugsrcpkg = val
-  elsif key == 'debbugsPackage:'
-bugpkg = val
-  elsif key == 'debbugsState:'
-bugstate = val
-  elsif key == 'debbugsTitle:'
-bugtitle = val
-  elsif key == 'debbugsAffected:'
-bugaffect  val
-  end
-end
-
-#STDERR.puts #{Time::now} End reading LDAP dump
-#STDERR.puts #{Time::now} Reading *Sources
-f = []
-[ 'testing-*-Sources', 'unstable-*-Sources', 'experimental-*-Sources'].each do 
|m|
-  f += Dir::glob(m)
-end
-srcs = {}
-bins = {}
-f.each do |s|
-  IO::read(s).each_line do |l|
-if l =~ /^Package: /
-  srcs[l.chomp.split(' ')[1]] = true
-elsif l =~ /^Binary: /
-  l.chomp.split(' ',2)[1].split(/, /).each do |b|
-bins[b] = true
-  end
-end
-  end
-end
-## reading stable sources
-f = Dir::glob('stable-*-Sources')
-stablesrcs = {}
-stablebins = {}
-f.each do |s|
-  IO::read(s).each_line do |l|
-if l =~ /^Package: /
-  stablesrcs[l.chomp.split(' ')[1]] = true
-elsif l =~ /^Binary: /
-  l.chomp.split(' ',2)[1].split(/, /).each do |b|
-stablebins[b] = true
-  end
-end
-  end
-end
-#
-#STDERR.puts #{Time::now} End reading *Sources
-
-ibugs.each do |l|
-  # could be made stricter at some point
-  next if srcs[l[2]] or bins[l[1]] or srcs[l[1]] or bins[l[2]]
-
-  tags = 
-  if stablebins[l[1]] or stablesrcs[l[2]] or stablebins[l[2]] or 
stablesrcs[l[1]]
-tags +=  (IN_STABLE)
-  end
-
-  excluded = false
-  EXCLUDED.each do |re|
-if l[1] =~ re or l[2] =~ re
-  excluded = true
-end
-  end
-  tags +=  (EXCLUDED) if excluded
-  puts l.join(' ') + tags
-end


___
Collab-qa-commits mailing list
Collab-qa-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/collab-qa-commits


[Collab-qa-commits] r1882 - udd/web/cgi-bin

2011-01-08 Thread Marco Rodrigues
Author: gothicx-guest
Date: 2011-01-08 18:04:40 + (Sat, 08 Jan 2011)
New Revision: 1882

Modified:
   udd/web/cgi-bin/ubuntu_ftbfs.cgi
Log:
Fix mailto address extra space

Modified: udd/web/cgi-bin/ubuntu_ftbfs.cgi
===
--- udd/web/cgi-bin/ubuntu_ftbfs.cgi2011-01-08 17:28:15 UTC (rev 1881)
+++ udd/web/cgi-bin/ubuntu_ftbfs.cgi2011-01-08 18:04:40 UTC (rev 1882)
@@ -36,7 +36,7 @@
 body
 h1Ubuntu packages that FTBFS/h1
 
-Contact: a href=mailto: lu...@ubuntu.comLucas Nussbaum/abr
+Contact: a href=mailto:lu...@ubuntu.com;Lucas Nussbaum/abr
 EOF
 end
 


___
Collab-qa-commits mailing list
Collab-qa-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/collab-qa-commits


[Collab-qa-commits] r1883 - udd

2011-01-08 Thread Marco Rodrigues
Author: gothicx-guest
Date: 2011-01-08 19:01:05 + (Sat, 08 Jan 2011)
New Revision: 1883

Removed:
   udd/crontabs
Log:
not used anymore

Deleted: udd/crontabs
===
--- udd/crontabs2011-01-08 18:04:40 UTC (rev 1882)
+++ udd/crontabs2011-01-08 19:01:05 UTC (rev 1883)
@@ -1,41 +0,0 @@
-# m h  dom mon dow   command
-mailto=lu...@debian.org
-UAR=/org/udd.debian.org/udd/update-and-run.sh
-# Debian Sources/Packages
-0 */12 * * * $UAR debian-squeeze debian-sid debian-experimental
-0 3 * * * $UAR debian-etch debian-backports-etch debian-volatile-etch 
debian-etch-proposed-updates debian-etch-security
-0 15 * * * $UAR debian-lenny debian-backports-lenny debian-volatile-lenny 
debian-lenny-proposed-updates debian-lenny-security 
debian-squeeze-proposed-updates debian-squeeze-security
-# Ubuntu Sources/Packages
-30 2 * * * $UAR ubuntu-lucid ubuntu-karmic ubuntu-hardy ubuntu-intrepid 
ubuntu-jaunty
-# Various simple things
-0 4,16 * * * $UAR dehs debian-popcon ubuntu-popcon lintian debtags carnivore 
ldap removals | /org/udd.debian.org/udd/scripts/filter-output.rb
-49 */6 * * * $UAR upload-history | 
/org/udd.debian.org/udd/scripts/filter-output.rb
-0 */12 * * * $UAR testing-migrations
-11 */4 * * * $UAR wannabuild | /org/udd.debian.org/udd/scripts/filter-output.rb
-# Debian bugs
-0 1,7,13,19 * * * $UAR bugs orphaned-packages 21 | 
/org/udd.debian.org/udd/scripts/filter-bugs-output.sh | 
/org/udd.debian.org/udd/scripts/filter-output.rb
-30 14 * * * $UAR bugs-archive 21 | 
/org/udd.debian.org/udd/scripts/filter-bugs-output.sh
-
-# Ubuntu bugs
-57 9 * * * $UAR ubuntu-bugs
-
-# Dump DB
-0 8 */2 * * /org/udd.debian.org/udd/scripts/dump-db.sh
-0 4 */2 * * /org/udd.debian.org/udd/scripts/generate-schema.sh
-
-# checks
-*/5 * * * * /org/udd.debian.org/udd/scripts/monitor_locks
-0 * * * * /org/udd.debian.org/udd/scripts/check_timestamps
-0 * * * * crontab -l  /org/udd.debian.org/udd/web/crontabs.txt
-# test script for the removal gatherer
-0 1 2 * * python /org/udd.debian.org/udd/udd/removals_gatherer.py 
/org/udd.debian.org/mirrors/removals-full.txt  /dev/null
-
-mailto=ti...@debian.org
-# screenshots.debian.net
-30 3 * * * $UAR screenshots | /org/udd.debian.org/udd/scripts/filter-output.rb 
21 | mail -e -s 'UDD screenshots cron job' ti...@debian.org
-
-# DDTP
-0 2 * * * $UAR ddtp | /org/udd.debian.org/udd/scripts/filter-output.rb 21 | 
mail -e -s 'UDD ftpnew cron job' ti...@debian.org
-
-# FTP new queue
-0 3 * * * $UAR ftpnew | /org/udd.debian.org/udd/scripts/filter-output.rb 21 
| mail -e -s 'UDD ftpnew cron job' ti...@debian.org


___
Collab-qa-commits mailing list
Collab-qa-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/collab-qa-commits