]> git.decadent.org.uk Git - dak.git/commitdiff
Remove split-done.
authorAnsgar Burchardt <ansgar@43-1.org>
Mon, 21 May 2012 22:12:11 +0000 (00:12 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Mon, 28 May 2012 08:45:23 +0000 (10:45 +0200)
Since 0ce7303ebc8d854fa8061669d39aba933665af6c we store changes files directly
into date-based directories.

config/backports/cron.weekly
config/debian/cron.weekly
dak/dak.py
dak/split_done.py [deleted file]

index 097aa63cf7fcc3672e9efc3091d946857ebb1c5d..1929e10faa617e64fd26e26adce60fb3dbb35710 100755 (executable)
@@ -29,11 +29,6 @@ if [ ! -z "$(find $ftpdir/pool/ -type d -empty)" ]; then
    find $ftpdir/pool/ -type d -empty | xargs rmdir;
 fi
 
-# Clean up apt-ftparchive's databases
-
-echo "Splitting queue/done"
-dak split-done
-
 # Clean up apt-ftparchive's databases
 cd $configdir
 #echo "Cleanup apt-ftparchive's database"
index 06d3f90a93d6e3a54e81a2afd6f571b93127237a..b75539ed055a46d646a9466fdd90f0fc9cffd12b 100755 (executable)
@@ -31,10 +31,6 @@ if [ ! -z "$(find $ftpdir/pool/ -type d -empty)" ]; then
    find $ftpdir/pool/ -type d -empty | xargs rmdir;
 fi
 
-# Split queue/done
-echo "Splitting queue/done"
-dak split-done > /dev/null
-
 # Do git cleanup stuff
 echo "Doing git stuff"
 cd /srv/ftp.debian.org/git/dak.git
index 1e36d82d7ea4e2d15fd63e101f9dd82d12c8ecb5..b6e77ad493689773f96b929c90a1dc679bc58b8c 100755 (executable)
@@ -131,8 +131,6 @@ def init():
          "Generates override files"),
         ("new-security-install",
          "New way to install a security upload into the archive"),
-        ("split-done",
-         "Split queue/done into a date-based hierarchy"),
         ("stats",
          "Generate statistics"),
         ("bts-categorize",
diff --git a/dak/split_done.py b/dak/split_done.py
deleted file mode 100755 (executable)
index 3d07287..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/usr/bin/env python
-
-""" Split queue/done into date based subdirectories """
-# Copyright (C) 2004, 2005, 2006  James Troup <james@nocrew.org>
-# Copyright (C) 2008  Joerg Jaspert <joerg@debian.org>
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-################################################################################
-
-import glob, os, stat, time
-from daklib import utils
-
-################################################################################
-
-def main():
-    Cnf = utils.get_conf()
-    count = 0
-    move_date = int(time.time())
-    os.chdir(Cnf["Dir::Done"])
-    files = glob.glob("%s/*" % (Cnf["Dir::Done"]))
-    for filename in files:
-        if os.path.isfile(filename):
-            filemtime = os.stat(filename)[stat.ST_MTIME]
-            if filemtime > move_date:
-                continue
-            mtime = time.gmtime(filemtime)
-            dirname = time.strftime("%Y/%m/%d", mtime)
-            if not os.path.exists(dirname):
-                print "Creating: %s" % (dirname)
-                os.makedirs(dirname)
-            dest = dirname + '/' + os.path.basename(filename)
-            if os.path.exists(dest):
-                utils.warn("%s already exists." % (dest))
-                continue
-            print "Move: %s -> %s" % (filename, dest)
-            os.rename(filename, dest)
-            count = count + 1
-    print "Moved %d files." % (count)
-
-############################################################
-
-if __name__ == '__main__':
-    main()