Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-07 | Remove separate creation of file databases | Pierre Schmitz | |
With pacman 5.0 repo-add and repo-remove handle file databases by default. | |||
2014-11-01 | disallow packages without a valid PACKAGER | Dave Reisner | |
Shame. Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2014-11-01 | cron-jobs: Fix issues with empty repositories | Pierre Schmitz | |
2013-11-02 | Add lastupdate file | Florian Pritz | |
This allows for faster checking if an update might be needed and helps to let reporead run when something changed. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||
2013-11-02 | sourceballs: fix ACL issues on nymeria | Jan Alexander Steffens (heftig) | |
ACLs from the WORKDIR were used, leading to problems as these weren't world-readable. Fix follows ftpdir-cleanup. Signed-off-by: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2013-01-31 | db-update: Ignore forgeign staging packages | Pierre Schmitz | |
2013-01-20 | ftpdir-cleanup: fix ACL issues on nymeria | Florian Pritz | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2012-11-25 | Fix sourceballs permissions | Pierre Schmitz | |
2012-11-04 | Grant the SVNUSER access to the working directory | Pierre Schmitz | |
2012-11-03 | Adjust configuration for use on nymeria.archlinux.org | Pierre Schmitz | |
2012-10-27 | Add the possibility to run all svn commands with a different user | Pierre Schmitz | |
* A SVNUSER can be configured in the config file * This user needs to be able to call svn without a password | |||
2012-10-03 | Use pacman-key to check signatures as it now uses a correct exit value | Pierre Schmitz | |
2012-10-03 | test: Do not suppress devtools output | Pierre Schmitz | |
2012-08-05 | grep has been moved to /usr | Pierre Schmitz | |
2012-07-28 | db-move: Remove double space in tag_list | Florian Pritz | |
This fixes this message which shouldn't have one space after the opening brace and two space before x86_64. "db-move: moved cups-filters from [testing] to [extra] ( i686, x86_64)" Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2012-06-16 | Fix handling of package sources containg files with an @ character | Pierre Schmitz | |
2012-06-11 | Reduce output when downloading sources | Pierre Schmitz | |
2012-06-10 | Make repositories for testing2x configurable | Pierre Schmitz | |
2012-06-10 | Use our own copy of makepkg.conf instead of depending on the host one | Pierre Schmitz | |
2012-06-10 | Remove support for packages that are not in the package pool | Pierre Schmitz | |
2012-06-10 | Remove support for packages in legacy $repo/os/any directories | Pierre Schmitz | |
2012-06-10 | db-move: commit all arches at once | Florian Pritz | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Pierre Schmitz <pierre@archlinux.de> | |||
2012-04-29 | Source the config before the functions as the latter references the former | Pierre Schmitz | |
2012-04-29 | Respect TMPDIR config when creating the working directory | Pierre Schmitz | |
2012-03-26 | Use gpg status-file instead of status-fd | Pierre Schmitz | |
2012-03-07 | Update sourceballs.skip | Pierre Schmitz | |
2012-03-07 | sourceballs: If ALLOWED_LICENSES is empty create source packages for every ↵ | Pierre Schmitz | |
package | |||
2012-02-19 | Do not check source gpg signatures | Pierre Schmitz | |
2012-02-19 | Sourceballs: Output details if fetching the sources failed | Pierre Schmitz | |
2012-02-19 | Fix typo and leftover shm usage | Pierre Schmitz | |
2012-02-19 | Add at least one positive signing test | Pierre Schmitz | |
2012-01-14 | Add [multilib-staging] to sigurd config | Pierre Schmitz | |
2011-12-19 | Avoid calls to basename | Pierre Schmitz | |
2011-12-18 | Validate package signatures on db-update | Pierre Schmitz | |
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-11-05 | Add simple tests for db-repo-add and db-repo-remove | Pierre Schmitz | |
2011-11-05 | db-repo-add: At least check if the package to be added is available in the ↵ | Pierre Schmitz | |
correct directory | |||
2011-11-05 | Add test for moving multiple packages at once | Pierre Schmitz | |
2011-11-05 | Split package database test functions from check* functions | Pierre Schmitz | |
This way we can check consitency of databases independent from a svn repo | |||
2011-11-05 | check svn entry for any packages | Pierre Schmitz | |
2011-11-05 | db-remove: support removing multiple packages at once | Pierre Schmitz | |
2011-11-05 | Adjust tests to use new db-remove interface | Pierre Schmitz | |
2011-11-05 | db-repo-{add, remove}: allow specifying multiple packages | Dan McGee | |
This allows invoking these commands for more than one package at a time which is incredibly more efficient as the database doesn't need to be locked, unpacked, modified, changed, and unlocked for every single passed package name or file if you have more than one. Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-11-05 | db-*: always handle pkgname/pkgbase/pkgfile argument last | Dan McGee | |
This matches what we do in db-update, and makes the most sense if we want to expand these commands to take multiple arguments at the same time. Especially in the case of db-repo-add and db-repo-remove, these wrapper commands should be no more limiting than repo-add and repo-remove which always allow multiple arguments and are more efficient that way. This patch simply reorders the arguments; a later patch will support multiple pkgname/pkgbase/pkgfile arguments on the command line. Although this does break backwards compatibility and requires some changing of muscle memory, I think it is a worthwhile change to make as the functionality of these commands becomes more powerful and the order of arguments becomes the same in all of them. Signed-off-by: Dan McGee <dan@archlinux.org> | |||
2011-10-30 | Require a signature file for new packages | Pierre Schmitz | |
2011-10-14 | Rebuilt alpm.so for pacman 4.0 soname bump | Pierre Schmitz | |
2011-08-13 | update shunit to 2.1.6 | Pierre Schmitz | |
2011-08-13 | db-move: Fix svn rm call | Pierre Schmitz | |