├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE.md ├── LICENSE_STATUS.md ├── Makefile ├── README.md ├── config ├── config.local.svn-community ├── config.local.svn-packages ├── cron-jobs ├── check_archlinux │ ├── check_packages.py │ └── parse_pkgbuilds.sh ├── devlist-mailer ├── ftpdir-cleanup ├── integrity-check ├── makepkg.conf ├── sourceballs ├── sourceballs.force └── sourceballs.skip ├── db-archive ├── db-functions ├── db-functions-svn ├── db-move ├── db-remove ├── db-repo-add ├── db-repo-remove ├── db-update ├── test ├── Dockerfile ├── Makefile ├── cases │ ├── common.bats │ ├── db-move.bats │ ├── db-remove.bats │ ├── db-repo-add.bats │ ├── db-repo-remove.bats │ ├── db-update.bats │ ├── ftpdir-cleanup.bats │ ├── sourceballs.bats │ └── testing2x.bats ├── fixtures │ ├── pkg-any-a │ │ └── PKGBUILD │ ├── pkg-any-b │ │ └── PKGBUILD │ ├── pkg-debuginfo-a │ │ └── PKGBUILD │ ├── pkg-debuginfo-b │ │ └── PKGBUILD │ ├── pkg-debuginfo │ │ └── PKGBUILD │ ├── pkg-simple-a │ │ └── PKGBUILD │ ├── pkg-simple-b │ │ └── PKGBUILD │ ├── pkg-simple-epoch │ │ └── PKGBUILD │ ├── pkg-single-arch │ │ └── PKGBUILD │ ├── pkg-single-epoch │ │ └── PKGBUILD │ ├── pkg-split-a │ │ └── PKGBUILD │ ├── pkg-split-b │ │ └── PKGBUILD │ └── pkg-split-debuginfo │ │ └── PKGBUILD └── lib │ └── common.bash └── testing2x /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /config.local 3 | /.idea 4 | /coverage 5 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/LICENSE_STATUS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/config -------------------------------------------------------------------------------- /config.local.svn-community: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/config.local.svn-community -------------------------------------------------------------------------------- /config.local.svn-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/config.local.svn-packages -------------------------------------------------------------------------------- /cron-jobs/check_archlinux/check_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/check_archlinux/check_packages.py -------------------------------------------------------------------------------- /cron-jobs/check_archlinux/parse_pkgbuilds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/check_archlinux/parse_pkgbuilds.sh -------------------------------------------------------------------------------- /cron-jobs/devlist-mailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/devlist-mailer -------------------------------------------------------------------------------- /cron-jobs/ftpdir-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/ftpdir-cleanup -------------------------------------------------------------------------------- /cron-jobs/integrity-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/integrity-check -------------------------------------------------------------------------------- /cron-jobs/makepkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/makepkg.conf -------------------------------------------------------------------------------- /cron-jobs/sourceballs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/sourceballs -------------------------------------------------------------------------------- /cron-jobs/sourceballs.force: -------------------------------------------------------------------------------- 1 | faad2 2 | wxgtk 3 | wxpython 4 | glhack 5 | -------------------------------------------------------------------------------- /cron-jobs/sourceballs.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/cron-jobs/sourceballs.skip -------------------------------------------------------------------------------- /db-archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-archive -------------------------------------------------------------------------------- /db-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-functions -------------------------------------------------------------------------------- /db-functions-svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-functions-svn -------------------------------------------------------------------------------- /db-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-move -------------------------------------------------------------------------------- /db-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-remove -------------------------------------------------------------------------------- /db-repo-add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-repo-add -------------------------------------------------------------------------------- /db-repo-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-repo-remove -------------------------------------------------------------------------------- /db-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/db-update -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/cases/common.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/common.bats -------------------------------------------------------------------------------- /test/cases/db-move.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/db-move.bats -------------------------------------------------------------------------------- /test/cases/db-remove.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/db-remove.bats -------------------------------------------------------------------------------- /test/cases/db-repo-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/db-repo-add.bats -------------------------------------------------------------------------------- /test/cases/db-repo-remove.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/db-repo-remove.bats -------------------------------------------------------------------------------- /test/cases/db-update.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/db-update.bats -------------------------------------------------------------------------------- /test/cases/ftpdir-cleanup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/ftpdir-cleanup.bats -------------------------------------------------------------------------------- /test/cases/sourceballs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/sourceballs.bats -------------------------------------------------------------------------------- /test/cases/testing2x.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/cases/testing2x.bats -------------------------------------------------------------------------------- /test/fixtures/pkg-any-a/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-any-a/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-any-b/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-any-b/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-debuginfo-a/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-debuginfo-a/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-debuginfo-b/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-debuginfo-b/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-debuginfo/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-debuginfo/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-simple-a/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-simple-a/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-simple-b/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-simple-b/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-simple-epoch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-simple-epoch/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-single-arch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-single-arch/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-single-epoch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-single-epoch/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-split-a/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-split-a/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-split-b/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-split-b/PKGBUILD -------------------------------------------------------------------------------- /test/fixtures/pkg-split-debuginfo/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/fixtures/pkg-split-debuginfo/PKGBUILD -------------------------------------------------------------------------------- /test/lib/common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/test/lib/common.bash -------------------------------------------------------------------------------- /testing2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archlinux/dbscripts/HEAD/testing2x --------------------------------------------------------------------------------