summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-29 15:57:33 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-29 15:57:33 -0300
commitaae1b41ea2644da980a1645ee9e27dfe7560ec2e (patch)
tree5a444e1c8b69ce6637b140912dacd1a9c82023e9
parentfd0ffed60b3b3ed1a138e516b166884dbe12c9a3 (diff)
parent5ae7257fca114a6174c070556745a40fe0ca4ff5 (diff)
Merge branch 'master' of gparabola:libretools
-rwxr-xr-xlibremkchroot13
-rwxr-xr-xupdate-cleansystem66
2 files changed, 57 insertions, 22 deletions
diff --git a/libremkchroot b/libremkchroot
index c1f2072..b576209 100755
--- a/libremkchroot
+++ b/libremkchroot
@@ -2,7 +2,7 @@
# LibreMkChroot
# Creates a chroot
-# Copyright 2011 Luke Shumaker
+# Copyright 2011, 2012 Luke Shumaker
# ---------- GNU General Public License 3 ----------
@@ -27,10 +27,7 @@ if [ -e "$XDG_CONFIG_HOME/libretools/libretools.conf" ]; then
source "$XDG_CONFIG_HOME/libretools/libretools.conf"
fi
-#CHROOTNAME="${CHROOT:-${SUDO_USER:-root}}"
-
cmd=${0##*/}
-
function usage {
echo "Usage: $cmd [OPTIONS]"
echo 'This script will create a chroot to build packages in.'
@@ -47,12 +44,12 @@ function usage {
echo ' -M <file> Location of makepkg config file.'
}
-mkchroot_args='';
+mkchroot_args=();
while getopts 'hfd:c:C:M:' arg; do
case "$arg" in
h) usage; exit 0 ;;
- f) mkchroot_args="$mkchroot_args -$arg" ;;
- c|C|M) mkchroot_args="$mkchroot_args -$arg $OPTARG" ;;
+ f) mkchroot_args+=("-$arg");;
+ c|C|M) mkchroot_args+=("-$arg" "$OPTARG");;
d) CHROOTDIR=$OPTARG ;;
?) usage; exit 1 ;;
esac
@@ -64,4 +61,4 @@ if (( EUID )); then
fi
mkdir -p "${CHROOTDIR}"
-xargs -d'\n' mkarchroot $mkchroot_args "${CHROOTDIR}/root" < /etc/libretools.d/cleansystem
+xargs -d'\n' mkarchroot "${mkchroot_args[@]}" "${CHROOTDIR}/root" < /etc/libretools.d/cleansystem
diff --git a/update-cleansystem b/update-cleansystem
index 97c2922..4ea6a24 100755
--- a/update-cleansystem
+++ b/update-cleansystem
@@ -1,24 +1,62 @@
#!/bin/bash
# Updates the cleansystem file
-# Creates a fake Parabola root and prints all packages installable from base
-# and base-devel plus extras
+# Creates a fake Parabola root and writes to cleansystem all
+# packages installable from base and base-devel plus extras.
-set -E
+# Copyright 2012 Nicolás Reynolds, Luke Shumaker
-if [ ! -w / ]; then
- echo "Run as root."
- exit 1
+# ---------- GNU General Public License 3 ----------
+
+# This file is part of Parabola.
+
+# Parabola 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 3 of the License, or
+# (at your option) any later version.
+
+# Parabola 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 Parabola. If not, see <http://www.gnu.org/licenses/>.
+
+source /etc/libretools.conf
+
+cleansystem=/etc/libretools.d/cleansystem
+
+cmd=${0##*/}
+usage() {
+ echo "Usage: $cmd [<EXTRA_PACKAGES>]"
+ echo " $cmd -h"
+ echo "Creates a fake Parabola root and writes to \`$cleansystem' all"
+ echo "packages installable from base and base-devel plus extras."
+ echo ''
+ echo 'Options:'
+ echo ' -h Show this message'
+}
+
+if [ "$1" == '-h' ]; then
+ usage
+ exit 0
fi
-tmpdir=/tmp/cleansystem.${RANDOM}
+if [ ! -w "$cleansystem" ]; then
+ error 'This script must be run as root'
+ exit 1
+fi
-mkdir -p ${tmpdir}/var/lib/pacman
+tmpdir="`mktemp -d --tmpdir cleansystem.XXXXXXXXXX`"
+mkdir -p "${tmpdir}"/var/lib/pacman
# We sync first because updating info gets printed to stdout too
-pacman -r ${tmpdir} --config /etc/pacman.conf -Sy 2>/dev/null
-pacman -r ${tmpdir} \
- --config /etc/pacman.conf \
- -Sp --print-format "%n" \
- base base-devel sudo ${@} | sort > /etc/libretools.d/cleansystem
+pacman -r "${tmpdir}" --config /etc/pacman.conf -Sy 2>/dev/null
+pacman -r "${tmpdir}" --config /etc/pacman.conf \
+ -Sp --print-format "%n" \
+ base base-devel sudo "$@" | sort > "$cleansystem"
+exitcode=$?
+
+rm -rf "$tmpdir"
-exit $?
+exit $exitcode