From f1156fdb3557f844be973888c7220a82ed7b5f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Wed, 26 Aug 2015 01:02:00 -0300 Subject: rename abslibre -> xbslibre --- abslibre | 93 ---------------------------------------------------------------- xbslibre | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+), 93 deletions(-) delete mode 100755 abslibre create mode 100755 xbslibre diff --git a/abslibre b/abslibre deleted file mode 100755 index e40865a..0000000 --- a/abslibre +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/bash - -set -e - -# Steps -# * Sync bs derivation (abs) -# * Download blacklist.txt -# * Sync bs (abslibre) from bs derivation (abs) excluding from blacklist -# * Create repo.abs.tar.gz tarballs - -source "$(dirname "$(readlink -e "$0")")/config_platforms" - -for 'platform' in "${DERIVATIVE_PLATFORMS[@]}"; do - - source "$(dirname "$(readlink -e "$0")")/config_${platform}" - - function sync_bs_derivation() { - for 'ARCH' in 'any' "${ARCHES[@]}"; do - rsync "${SYNC_ARGS}" "${SYNC_DERIVATION_SERVER}::${BS_DERIVATION_NAME}/${ARCH}" "${BS_DERIVATION_DIR}/${ARCH}" || return $? - done - - # fix some permissions - find "${BS_DERIVATION_DIR}" -type d -print0 | xargs -0 chmod 755 - find "${BS_DERIVATION_DIR}" -type f -print0 | xargs -0 chmod 644 - } - - function get_blacklist() { - printf ":: Updating blacklist...\t" - cat "${BLACKLIST_FILE}" | cut -d':' -f1 | sort -u | \ - sed "s/^/**\//" > "${BLACKLIST_TMP}" || { - printf "[FAILED]\n" - return 1 - } - - # Prevent using an empty blacklist - [ $(wc -l "${BLACKLIST_TMP}" | cut -d " " -f1) -eq 0 ] && return 1 - - printf "[OK]\n" - } - - function sync_bs() { - - # Clone BS git repo - if [ -d "${BS_GIT_TMP}"/.git ]; then - pushd "${BS_GIT_TMP}" >/dev/null 2>&1 - git pull - popd >/dev/null 2>&1 - else - git clone "${BS_GIT}" "${BS_GIT_TMP}" - fi - - # Sync from BS_DERIVATION and then sync from BS - printf ":: Syncing ${BS_MAIN_NAME}...\t" - (rsync "${SYNC_ARGS}" --delete-excluded \ - --exclude-from="${BLACKLIST_TMP}" \ - "${BS_DERIVATION_DIR}" \ - "${BS_MAIN_DIR}" \ - && - for 'ARCH' in "${ARCHES[@]}"; do rsync -v -mrtq --no-motd --no-p --no-o --no-g --quiet --exclude=.git/ "${BS_GIT_TMP}" "${BS_MAIN_DIR}/${ARCH}/"; done) || { - printf "[FAILED]\n" - return 1 - } - - # fix some permissions - find "${BS_MAIN_DIR}" -type d -print0 | xargs -0 chmod 755 - find "${BS_MAIN_DIR}" -type f -print0 | xargs -0 chmod 644 - - printf "[OK]\n" - } - - # Create .abs.tar.gz tarballs - create_tarballs() { - for 'repo' in "${BS_MAIN_DIR}/${ARCHES[@]}/"*; do - baserepo="${repo##*/}" - arch="$(basename $(dirname ${repo}))" - - # Remove the old one - mkdir -p "${REPO_DIR}/${baserepo}/os/${arch}" - rm -fv "${REPO_DIR}/${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 "${REPO_DIR}/${baserepo}/os/${arch}/${baserepo}.abs.tar.gz" \ - -s ":${BS_MAIN_DIR}/[a-z0-9_]\+/[a-z]\+::" \ - "${repo}"/* "${BS_MAIN_DIR}/any/${baserepo}"/* - - done - } - - sync_bs_derivation - get_blacklist - sync_bs - create_tarballs -done diff --git a/xbslibre b/xbslibre new file mode 100755 index 0000000..e40865a --- /dev/null +++ b/xbslibre @@ -0,0 +1,93 @@ +#!/bin/bash + +set -e + +# Steps +# * Sync bs derivation (abs) +# * Download blacklist.txt +# * Sync bs (abslibre) from bs derivation (abs) excluding from blacklist +# * Create repo.abs.tar.gz tarballs + +source "$(dirname "$(readlink -e "$0")")/config_platforms" + +for 'platform' in "${DERIVATIVE_PLATFORMS[@]}"; do + + source "$(dirname "$(readlink -e "$0")")/config_${platform}" + + function sync_bs_derivation() { + for 'ARCH' in 'any' "${ARCHES[@]}"; do + rsync "${SYNC_ARGS}" "${SYNC_DERIVATION_SERVER}::${BS_DERIVATION_NAME}/${ARCH}" "${BS_DERIVATION_DIR}/${ARCH}" || return $? + done + + # fix some permissions + find "${BS_DERIVATION_DIR}" -type d -print0 | xargs -0 chmod 755 + find "${BS_DERIVATION_DIR}" -type f -print0 | xargs -0 chmod 644 + } + + function get_blacklist() { + printf ":: Updating blacklist...\t" + cat "${BLACKLIST_FILE}" | cut -d':' -f1 | sort -u | \ + sed "s/^/**\//" > "${BLACKLIST_TMP}" || { + printf "[FAILED]\n" + return 1 + } + + # Prevent using an empty blacklist + [ $(wc -l "${BLACKLIST_TMP}" | cut -d " " -f1) -eq 0 ] && return 1 + + printf "[OK]\n" + } + + function sync_bs() { + + # Clone BS git repo + if [ -d "${BS_GIT_TMP}"/.git ]; then + pushd "${BS_GIT_TMP}" >/dev/null 2>&1 + git pull + popd >/dev/null 2>&1 + else + git clone "${BS_GIT}" "${BS_GIT_TMP}" + fi + + # Sync from BS_DERIVATION and then sync from BS + printf ":: Syncing ${BS_MAIN_NAME}...\t" + (rsync "${SYNC_ARGS}" --delete-excluded \ + --exclude-from="${BLACKLIST_TMP}" \ + "${BS_DERIVATION_DIR}" \ + "${BS_MAIN_DIR}" \ + && + for 'ARCH' in "${ARCHES[@]}"; do rsync -v -mrtq --no-motd --no-p --no-o --no-g --quiet --exclude=.git/ "${BS_GIT_TMP}" "${BS_MAIN_DIR}/${ARCH}/"; done) || { + printf "[FAILED]\n" + return 1 + } + + # fix some permissions + find "${BS_MAIN_DIR}" -type d -print0 | xargs -0 chmod 755 + find "${BS_MAIN_DIR}" -type f -print0 | xargs -0 chmod 644 + + printf "[OK]\n" + } + + # Create .abs.tar.gz tarballs + create_tarballs() { + for 'repo' in "${BS_MAIN_DIR}/${ARCHES[@]}/"*; do + baserepo="${repo##*/}" + arch="$(basename $(dirname ${repo}))" + + # Remove the old one + mkdir -p "${REPO_DIR}/${baserepo}/os/${arch}" + rm -fv "${REPO_DIR}/${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 "${REPO_DIR}/${baserepo}/os/${arch}/${baserepo}.abs.tar.gz" \ + -s ":${BS_MAIN_DIR}/[a-z0-9_]\+/[a-z]\+::" \ + "${repo}"/* "${BS_MAIN_DIR}/any/${baserepo}"/* + + done + } + + sync_bs_derivation + get_blacklist + sync_bs + create_tarballs +done -- cgit v1.2.3