summaryrefslogtreecommitdiff
path: root/cron-jobs
AgeCommit message (Collapse)Author
2016-04-17mv cron-jobs/repo-sanity-check db-check-repo-sanityLuke Shumaker
2016-04-17Backport changes from the lukeshu/xbs branch.Luke Shumaker
Notable, remove the files.db stuff that became extraneous with pacman 5.
2016-04-17tidyLuke Shumaker
2016-04-17more config file cleanupLuke Shumaker
2016-04-17begone with db-libremessagesLuke Shumaker
2016-04-17Give things more consistent namesLuke Shumaker
2016-04-17remove editor backup fileLuke Shumaker
2015-09-26import changes from repoAndré Fabian Silva Delgado
2015-06-05Remove cron-jobs/sourceballs2.Luke Shumaker
It was "simpler" than cron-jobs/sourceballs because it iterated over the files in $SVNREPO directly, rather than getting the list from $FTP_BASE, and then getting the corresponding files from $SVNREPO. This fails with XBS because there is no single `abstree` path, there is one for each architecture.
2015-06-05Use XBS instead of the SVN/ABS grossness.Luke Shumaker
* config: drop SVNREPO * cron-jobs/sourceballs: Replace commented out SVN code and active ABS code with XBS code. The XBS code is fairly similar to the SVN code, the difference being that it uses `xbs releasepath` instead of `svn export`. * db-functions: - Rename check_pkgsvn to check_pkgxbs - check_pkgxbs: Drop the `svn export` bit, as `xbs releasepath` assumes that a working directory already exists. Replace the paths created by the `svn export` with calls to `xbs releasepath`. - check_splitpkgs: Drop the ABS `cp` -r bit, as `xbs releasepath` assumes that a working directory already exists. Replace the paths created by the `cp -r` with calls to `xbs releasepath`. Rename the variables and temporary files s/svn/xbs/ . * db-move: - First loop: Rename the variable svnrepo_from to xbsrepo_from, and get the value from `xbs releasepath`. - Second loop: Run `xbs move` before the inner loop to get a list of architectures. Rename the variable `svnrepo_from` to `xbsrepo_to`, and get the value for it from `xbs releasepath`. Because xbs guarantees that the PKGBUILD exists for the architectures listed, replace the check for whether the PKGBUILD exists with `if true`, to keep merging easy (as opposed to removing the if, and de-indenting the whole thing). * db-remove: Get the location of the PKGBUILD from `xbs releasepath`, call `xbs unrelease`, and adjust a message to use `xbs name` and mention the appropriate repo/arch pair.
2015-05-25Clean up shebangsLuke Shumaker
2015-05-25repo-sanity-check: expand on the comment at the top.Luke Shumaker
2015-05-25cron-jobs/update-abs-tarballs: Remove; everything is on the same server now.Luke Shumaker
It just ran `rsync` to sync things between servers.
2014-10-03Fixed typo in commentsJoseph Graham
2014-09-30Fix make_repo_torrents for the new server.Michał Masłowski
2014-07-27fixed loads of mistakes I makeJoseph Graham
2014-07-27Dividing make_repo_torrents into two scripts, one to make the actual torrent ↵Joseph Graham
and a wrapper to find any updated packages and call the first script for each...
2014-07-26make_repo_torrents: load the location from the common config fileLuke Shumaker
2014-07-26Merge pacman2pacman_server_sideLuke Shumaker
2014-06-29Added an additional tracker.Joseph Graham
2014-06-18sourceballs: Only show makepkg output on errors.Luke Shumaker
Also, set SRCPKGDEST.
2014-06-18remove extra whitespaceLuke Shumaker
2014-06-18sourceballs: (from Arch): create the workdir with mode 0770Luke Shumaker
2014-06-18cron-jobs/repo-sanity-check: re-arrange redirectorys to be more clearLuke Shumaker
2014-06-18silly whitespace and similar fidlingLuke Shumaker
2014-06-18use mv_aclLuke Shumaker
2014-06-18Use printf formatters instead of string interpolation.Luke Shumaker
I used this command to find them: egrep -r --exclude-dir={test,.git} '(plain|msg|msg2|warning|error|stat_busy|stat_done|abort|die)\s+"?[^"]*\$'
2014-06-18Clean up quoting.Luke Shumaker
2014-06-18use tab indentLuke Shumaker
2014-06-17remove more scripts that I know to be obsoleteLuke Shumaker
2014-06-17cron-jobs/ftpdir-cleanup: remove old /any/ cleanup codeLuke Shumaker
2014-06-16removed all mirrors but one since pacman2pacman now re-writes the webseeds ↵Joseph Graham
list to just point to the user's chosen mirror.
2014-06-06Made it only give output on an error.Joseph Graham
2014-06-02Added encyclomundi's mirror to the webseeds array.Joseph Graham
2014-06-02Made it randomize the order of the webseed list for every torrent.Joseph Graham
2014-06-01Added the script `make_repo_torrents' which makes torrents for all the packages.Joseph Graham
2014-01-08Avoid using $(basename $var) , use ${var##*/} insteadLuke Shumaker
2014-01-08Fix some array quoting.Luke Shumaker
2014-01-08Normalize to load config then local_config then db-functionsLuke Shumaker
2014-01-08fix comments, indentationLuke Shumaker
2014-01-08Get rid of $ARCH_BASE; these days it is the same as $FTP_BASELuke Shumaker
2014-01-08Be very careful about using $0.Luke Shumaker
2013-08-26removed unnecessary codeIcarious
2012-01-08remove locksNicolás Reynolds
2012-01-08Merge branch 'master' of https://projects.archlinux.org/git/dbscriptsNicolás Reynolds
Conflicts: db-remove
2011-11-05The README file is no longer usefulRémy Oudompheng
2011-11-05Move 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-05Use 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-30Merge branch 'master' of https://projects.archlinux.org/git/dbscriptsNicolás Reynolds
2011-10-14Rebuilt alpm.so for pacman 4.0 soname bumpPierre Schmitz