From 8601b971af4604e106c46348e26c5b08a18de04d Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sat, 17 Jan 2009 19:09:55 -0600 Subject: Use pacman to download core packages This uses the configured mirror, so it makes things faster when building. Yay! Signed-off-by: Aaron Griffin --- configs/install-iso/Makefile | 6 ++--- configs/install-iso/download-repo.sh | 45 ++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 3 deletions(-) create mode 100755 configs/install-iso/download-repo.sh (limited to 'configs') diff --git a/configs/install-iso/Makefile b/configs/install-iso/Makefile index 7f98605..4d867cb 100644 --- a/configs/install-iso/Makefile +++ b/configs/install-iso/Makefile @@ -1,5 +1,5 @@ -ver=2008.12 -kver=2.6.27-ARCH +ver=2009.01 +kver=2.6.28-ARCH WORKDIR=work @@ -47,7 +47,7 @@ base-iso: root-image core-pkgs: base-iso mkdir $(WORKDIR)/core-pkgs/ - wget --mirror -P $(WORKDIR)/core-pkgs -nH --cut-dirs=3 ftp://ftp.archlinux.org/core/os/$(ARCH) + ./download-repo.sh core "$(WORKDIR)/core-pkgs" # Bootloaders grub-gfx: diff --git a/configs/install-iso/download-repo.sh b/configs/install-iso/download-repo.sh new file mode 100755 index 0000000..b5a09bd --- /dev/null +++ b/configs/install-iso/download-repo.sh @@ -0,0 +1,45 @@ +#!/bin/sh +# This script downloads a entire pacman repo to a dir +# using the locally configured best mirror. +# +# Copyright (c) 2009 Aaron Griffin +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +REPO="$1" +DEST="$2" + +if [ -z "$REPO" -o -z "$DEST" ]; then + echo "usage: $(basename $0) " + exit 1 +fi + +if [ $EUID -ne 0 ]; then + echo "This script must be run as root (for pacman -Sp)" + exit 1 +fi + +[ -d "$DEST" ] || mkdir -p "$DEST" + +PKGS=$(/usr/bin/pacman -Slq $REPO) + +if [ -n "$PKGS" ]; then + for url in $(/usr/bin/pacman -Sp $PKGS | grep '://'); do + pkgname="$(basename "$url")" + wget -nv "$url" -O "$DEST/$pkgname" + done +else + echo "No packages to download... what'd you break?" + exit 1 +fi -- cgit v1.2.3-54-g00ecf