#!/bin/bash set -e FTP_BASE=/srv/repo/main ABSLIBRE=/srv/abslibre ABSGIT=/srv/git/abslibre/abslibre.git # Remote # ABSGIT=http://projects.parabolagnulinux.org/abslibre.git SYNCARGS='-mrtv --no-motd --delete-after --no-p --no-o --no-g --quiet' BLFILE=/tmp/blacklist.txt # Variables from abs.conf ABSROOT="/srv/abs/" # DON'T CHANGE. WE NEED IT FOR ABSLIBRE SYNCSERVER="rsync.archlinux.org" ARCH="i686" MIRRORLIST="/etc/pacman.d/mirrorlist" REPOS=(core extra community testing community-testing !staging !community-staging) # Steps # * Sync abs # * Download blacklist.txt # * Sync abslibre from abs excluding from blacklist # * Create repo.abs.tar.gz tarballs function sync_abs() { for ARCH in any i686 x86_64; do rsync ${SYNCARGS} ${SYNCSERVER}::abs/${ARCH}/ ${ABSROOT}/${ARCH} || return $? done # fix some permissions find "${ABSROOT}" -type d -print0 | xargs -0 chmod 755 find "${ABSROOT}" -type f -print0 | xargs -0 chmod 644 } function get_blacklist() { libreblacklist update libreblacklist get-pkg | sort -u | \ sed "s/^/**\//" > ${BLFILE} || { printf "[FAILED]\n" return 1 } # Prevent using an empty blacklist [ $(wc -l ${BLFILE} | cut -d " " -f1) -eq 0 ] && return 1 printf "[OK]\n" } function sync_abs_libre() { # Clone ABSLibre git repo rm -rf /tmp/abslibre git clone "$ABSGIT" /tmp/abslibre # Sync from ABS and then sync from ABSLibre printf ":: Syncing ABSLibre...\t" if ! rsync ${SYNCARGS} --delete-excluded --exclude-from=${BLFILE} ${ABSROOT} ${ABSLIBRE}; then printf "[FAILED]\n" return 1 fi for ARCH in i686 x86_64; do if ! rsync -v -mrtq --no-motd --no-p --no-o --no-g --quiet --exclude=.git/ /tmp/abslibre/ ${ABSLIBRE}/${ARCH}/; then printf "[FAILED]\n" return 1 fi done # fix some permissions find "${ABSLIBRE}" -type d -print0 | xargs -0 chmod 755 find "${ABSLIBRE}" -type f -print0 | xargs -0 chmod 644 printf "[OK]\n" } # Create .abs.tar.gz tarballs create_tarballs() { for repo in ${ABSLIBRE}/{i686,x86_64}/*; do baserepo=${repo##*/} arch=$(basename $(dirname $repo)) # Remove the old one mkdir -p $FTP_BASE/$baserepo/os/$arch/ rm -fv $FTP_BASE/$baserepo/os/$arch/$baserepo.abs.tar.gz # Create a new one joining arch and any # Remove the first part of the path (it could be $repo but any isn't hit) bsdtar -czf $FTP_BASE/$baserepo/os/$arch/$baserepo.abs.tar.gz \ -s ":${ABSLIBRE}/[a-z0-9_]\+/[a-z]\+::" \ $repo/* ${ABSLIBRE}/any/${baserepo}/* done } sync_abs get_blacklist sync_abs_libre create_tarballs