From 50d2db5c271537d78ea0037fe285d081df38fa02 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 03:40:56 -0300 Subject: add copy from the master repo --- extra/legacy/db-update | 118 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100755 extra/legacy/db-update (limited to 'extra/legacy/db-update') diff --git a/extra/legacy/db-update b/extra/legacy/db-update new file mode 100755 index 0000000..4830791 --- /dev/null +++ b/extra/legacy/db-update @@ -0,0 +1,118 @@ +#!/bin/bash + +. "$(dirname "$(readlink -e "$0")")/config" +. "$(dirname "$(readlink -e "$0")")/db-functions" + +if [ $# -ge 1 ]; then + warning "Calling %s with a specific repository is no longer supported" "${0##*/}" + exit 1 +fi + +# Find repos with packages to release +staging_repos=($(find "${STAGING}" -mindepth 1 -type f -name "*${PKGEXT}" -printf '%h\n' | sort -u)) +if [ $? -ge 1 ]; then + die "Could not read %s" "${STAGING}" +fi + +repos=() +for staging_repo in "${staging_repos[@]##*/}"; do + if in_array "${staging_repo}" "${PKGREPOS[@]}"; then + repos+=("${staging_repo}") + fi +done + +# TODO: this might lock too much (architectures) +for repo in "${repos[@]}"; do + for pkgarch in "${ARCHES[@]}"; do + repo_lock "${repo}" "${pkgarch}" || exit 1 + done +done + +# check if packages are valid +for repo in "${repos[@]}"; do + if ! check_repo_permission "${repo}"; then + die "You don't have permission to update packages in %s" "${repo}" + fi + pkgs=($(getpkgfiles "${STAGING}/${repo}/"*${PKGEXT})) + if [ $? -eq 0 ]; then + for pkg in "${pkgs[@]}"; do + if [ -h "${pkg}" ]; then + die "Package %s is a symbolic link" "${repo}/${pkg##*/}" + fi + if ! check_pkgfile "${pkg}"; then + die "Package %s is not consistent with its meta data" "${repo}/${pkg##*/}" + fi + if ! check_pkgrepos "${pkg}"; then + die "Package %s already exists in another repository" "${repo}/${pkg##*/}" + fi + done + # This is fucking obnoxious + #if ! check_splitpkgs ${repo} "${pkgs[@]}"; then + # die "Missing split packages for %s" "${repo}" + #fi + else + die "Could not read %s" "${STAGING}" + fi +done + +dirs=() +for repo in "${repos[@]}"; do + msg "Updating [%s]..." "${repo}" + any_pkgs=($(getpkgfiles "${STAGING}/${repo}/"*-any${PKGEXT} 2>/dev/null)) + for pkgarch in "${ARCHES[@]}"; do + add_dirs=() + add_pkgs=() + arch_pkgs=($(getpkgfiles "${STAGING}/${repo}/"*-"${pkgarch}"${PKGEXT} 2>/dev/null)) + for pkg in "${arch_pkgs[@]}" "${any_pkgs[@]}"; do + pkgfile="${pkg##*/}" + msg2 "%s (%s)" "${pkgfile}" "${pkgarch}" + # any packages might have been moved by the previous run + if [ -f "${pkg}" ]; then + mv "${pkg}" "$FTP_BASE/${PKGPOOL}" + fi + ln -s "../../../${PKGPOOL}/${pkgfile}" "$FTP_BASE/$repo/os/${pkgarch}" + # also move signatures + if [ -f "${pkg}.sig" ]; then + mv "${pkg}.sig" "$FTP_BASE/${PKGPOOL}" + fi + if [ -f "$FTP_BASE/${PKGPOOL}/${pkgfile}.sig" ]; then + ln -s "../../../${PKGPOOL}/${pkgfile}.sig" "$FTP_BASE/$repo/os/${pkgarch}" + fi + add_dirs+=("${STAGING}/abslibre/$(getpkgarch "$FTP_BASE/$PKGPOOL/$pkgfile")/$repo/$(getpkgbase "$FTP_BASE/$PKGPOOL/$pkgfile")") + add_pkgs+=("${pkgfile}") + done + for add_dir in "${add_dirs[@]}"; do + (cd "${add_dir}" && xbs release-server "${repo}" "${pkgarch}") || + error 'cd %q && xbs release-server %q %q' "${add_dir}" "${repo}" "${pkgarch}" + done + if [ ${#add_pkgs[@]} -ge 1 ]; then + arch_repo_add "${repo}" "${pkgarch}" "${add_pkgs[@]}" + fi + dirs+=("${add_dirs[@]}") + done +done + +for repo in "${repos[@]}"; do + for pkgarch in "${ARCHES[@]}"; do + repo_unlock "${repo}" "${pkgarch}" + done +done + +cd "${STAGING}" + +# Remove left over XBS files +rm -rf -- "${dirs[@]}" +dirname -z -- "${dirs[@]}" | + xargs -0 realpath -zm --relative-to="${STAGING}" -- | + xargs -0 rmdir -p -- 2>/dev/null + +# Stage generated source files +while read -r file; do + pub="${FTP_BASE}/${file}" + if [[ -f "$pub" ]]; then + warning "file already exists: %s" "${file}" + else + mkdir -p -- "${pub%/*}" + mv -vn "$file" "$pub" + fi +done < <(find other sources -type f 2>/dev/null) -- cgit v1.2.3-2-g168b