From 23e3c4852649a8803d049f81a6eab660f036f9cd Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 13 May 2015 15:46:33 +1000 Subject: libmakepkg: move more functions for extracting information from PKGBIULDs Signed-off-by: Allan McRae --- scripts/makepkg.sh.in | 45 --------------------------------------------- 1 file changed, 45 deletions(-) (limited to 'scripts/makepkg.sh.in') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index f88ec3cc..cc1fea49 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -739,36 +739,6 @@ extract_svn() { cp -au "$dir" "$srcdir" } -get_all_sources() { - local aggregate l a - - if array_build l 'source'; then - aggregate+=("${l[@]}") - fi - - for a in "${arch[@]}"; do - if array_build l "source_$a"; then - aggregate+=("${l[@]}") - fi - done - - array_build "$1" "aggregate" -} - -get_all_sources_for_arch() { - local aggregate l - - if array_build l 'source'; then - aggregate+=("${l[@]}") - fi - - if array_build l "source_$CARCH"; then - aggregate+=("${l[@]}") - fi - - array_build "$1" "aggregate" -} - download_sources() { local netfile all_sources local get_source_fn=get_all_sources_for_arch get_vcs=1 @@ -2357,21 +2327,6 @@ run_split_packaging() { pkgname=${pkgname_backup[@]} } -print_all_package_names() { - local version=$(get_full_version) - local architecture pkg opts a - for pkg in ${pkgname[@]}; do - get_pkgbuild_attribute "$pkg" 'arch' 1 architecture - get_pkgbuild_attribute "$pkg" 'options' 1 opts - for a in ${architecture[@]}; do - printf "%s-%s-%s\n" "$pkg" "$version" "$a" - if in_opt_array "debug" ${opts[@]} && in_opt_array "strip" ${opts[@]}; then - printf "%s-%s-%s-%s\n" "$pkg" "@DEBUGSUFFIX@" "$version" "$a" - fi - done - done -} - m4_include(library/parseopts.sh) usage() { -- cgit v1.2.3-24-g4f1b