diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-08-05 15:51:27 -0700 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-08-05 15:51:27 -0700 |
commit | e1dbcca48922a1ad29f7a8131497db3bab2d7de5 (patch) | |
tree | 43b74f9892876ceea1ad91f277f12d2f855e8cfe | |
parent | 747c58ab578a3f808c4e38bd70b46cfd47ece5ca (diff) | |
parent | cd45a4e2e000312d86b072eef9349b9494cd6d36 (diff) |
Merge branch 'master' of http://projects.parabolagnulinux.org/dbscripts into stable
Conflicts:
config
-rw-r--r-- | config | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -3,8 +3,15 @@ FTP_BASE="/home/parabolavnx/parabolagnulinux.org/repo" ARCH_BASE="/home/parabolavnx/parabolagnulinux.org/repo" SVNREPO="/home/parabolavnx/parabolagnulinux.org/abslibre" +# Repos from Arch ARCHREPOS=('core' 'extra' 'community' 'testing' 'multilib') -PKGREPOS=(${ARCHREPOS[@]} 'libre-testing' 'libre' 'security' 'social' 'sugar' 'elementary' '~fauno' '~xihh' '~smv') +# Official Parabola repos +OURREPOS=('libre' 'libre-testing') +# User repos +USERREPOS=('~fauno' '~smv' '~xihh') +# Community project repos +PROJREPOS=('social' 'elementary' 'kernels' 'radio' 'security' 'social') +PKGREPOS=(${ARCHREPOS[@]} ${OURREPOS[@]} ${USERREPOS[@]} ${PROJREPOS[@]}) PKGPOOL='pool/packages' SRCPOOL='sources/packages' |