Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-05 | The README file is no longer useful | Rémy Oudompheng | |
2011-11-05 | Move global code under a if __name__ == '__main__' block. | Rémy Oudompheng | |
This allows running python2 -m doctest on the script. Signed-off-by: Rémy Oudompheng <remy@archlinux.org> | |||
2011-11-05 | Use ctypes module to access alpm_pkg_vercmp() instead of the C module. | Rémy Oudompheng | |
Signed-off-by: Rémy Oudompheng <remy@archlinux.org> | |||
2011-10-14 | Rebuilt alpm.so for pacman 4.0 soname bump | Pierre Schmitz | |
2011-07-24 | Add epoch support to integrity check cron job | Eric Bélanger | |
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2011-04-02 | Add signature files to update/move/remove targets | Rémy Oudompheng | |
Signature files are optional and the previous behaviour is unchanged when signatures files do not exist. Signed-off-by: Rémy Oudompheng <remy@archlinux.org> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2011-04-01 | Recompiled alpm python module against pacman 3.5 | Pierre Schmitz | |
2011-03-26 | Use repo-add to create the files database for each repo | Pierre Schmitz | |
2011-01-30 | Make sure to only remove package files from the cleanup dirs | Pierre Schmitz | |
2011-01-08 | archweb update: source virtualenv if it exists | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2010-12-18 | Remove old files from the cleanup dirs | Pierre Schmitz | |
2010-12-18 | Touch old packages after moving them to the cleanup dirs | Pierre Schmitz | |
This updates the mtime of those files and will help us to remove them later. | |||
2010-12-09 | check_packages.py: remove obsolete klibc workaround | Pierre Schmitz | |
2010-12-09 | Call integrity-check with specific repo list for each architecture | Pierre Schmitz | |
2010-12-05 | Only emit a warning when a repository does not exist. | Rémy Oudompheng | |
Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2010-12-05 | Add support for the [multilib] repo. | Rémy Oudompheng | |
Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2010-12-05 | Style changes: add parentheses around print "...". | Rémy Oudompheng | |
Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2010-12-05 | Style changes: remove usage of the 'has_key' method. | Rémy Oudompheng | |
Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2010-11-25 | create-filelists: Improve performance by reading package list from db ↵ | Pierre Schmitz | |
instead from fs | |||
2010-11-25 | update-web-db: Lock db and script | Pierre Schmitz | |
* usage of db-functions * Lock the db and work on a copy to avoid long lock times * Lock the script itself to avoid multiple calls * Adjust to coding style to other dbscripts | |||
2010-11-25 | sourceballs: be nice | Pierre Schmitz | |
2010-11-25 | Rewrote create-filelists | Pierre Schmitz | |
* use correct locking of the repos * added test case * removes file lists of deleted packages * add compression independent symlink to files db | |||
2010-11-25 | Add FILESEXT variable for use in create-filelists | Pierre Schmitz | |
2010-11-25 | Make ftpdir-cleanup less verbose | Eric Bélanger | |
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2010-11-25 | Added seperate dryrun options for the packages and sources cleanup scripts | Eric Bélanger | |
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2010-11-24 | sourceballs: fix working directory | Pierre Schmitz | |
2010-11-23 | sourceballs: Move to our workdir first to fix warning with sudo usage | Pierre Schmitz | |
2010-11-23 | sourceballs: avoid failing twice | Pierre Schmitz | |
2010-11-23 | sourceballs: fix output | Pierre Schmitz | |
2010-11-23 | sourceballs: be less verbose | Pierre Schmitz | |
2010-11-23 | Rewrite sourceballs to increase performance and reliability | Pierre Schmitz | |
* Decrease file stats as much as possible * Create a list of all packages and meta data only once * Create a list of available source packages only once * Create a list of expected packages only once * Combine all three scripts into one to share data and code * Use as much information from the db files as possible and avoid using svn * Avoid attempting to create the same source package twice Logic works as follows: 1) create a list of all packages 2) Check for each package if we need a src package and create one 3) During this process create a list of all src packages that should be there 4) Diff both lists for the cleanup | |||
2010-11-22 | Attempt to fix integrity-check | Pierre Schmitz | |
2010-11-22 | check_archlinux: fix for python2 usage | Pierre Schmitz | |
2010-11-21 | texlive sources are already on ftp.archlinux.org | Pierre Schmitz | |
2010-11-21 | sourceballs: Of course sort does only operate on lines | Pierre Schmitz | |
2010-11-21 | Blacklist more duplicate data packages | Pierre Schmitz | |
2010-11-21 | sourceballs.skip: ufoai-data has the same sources as ufoai | Pierre Schmitz | |
2010-11-21 | sourceballs.skip: tremulous-data has the same sources as tremulous | Pierre Schmitz | |
2010-11-21 | sourceballs.skip: torcs-data has the same sources as torcs | Pierre Schmitz | |
2010-11-21 | sourceballs.skip: nexuiz-data has the same sources as nexuiz | Pierre Schmitz | |
2010-11-21 | sourceballs: Don't write any log | Pierre Schmitz | |
This is consistent with the other dbscripts. The output will be send to the mailinglist. | |||
2010-11-20 | sourceballs: Lock the repo while reading the db file | Pierre Schmitz | |
2010-11-20 | Simplify sourceballs creation | Pierre Schmitz | |
* Read package lists directly from DB file * Make SVNREPO configurable | |||
2010-11-20 | Fix sourceballs cron job | Pierre Schmitz | |
* add unit test for sourceballs and cleanup * introduce SRCPOOL and LOGDIR variables in config | |||
2010-10-12 | Dont try to index empty repos | Pierre Schmitz | |
2010-10-11 | Fix missing output redirection | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2010-09-16 | Move output redirection | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2010-09-13 | Fix typos | Pierre Schmitz | |
2010-09-12 | Add multilib-testing to web update script | Dan McGee | |
Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2010-09-11 | Use local config instead of guessing by hostname | Pierre Schmitz | |
Using the hostname to decide which repos to use is not releiable and hard to test. Instead use config.local to configure these. config files for sigurd and gerolde were added which can be copied or symlinked to config.local on the specific host. |