fixes; use renamed scripts

This commit is contained in:
udeved 2014-10-04 09:59:40 +02:00
parent c58b12ff7d
commit b54266cc9e
7 changed files with 13 additions and 13 deletions

View file

@ -42,12 +42,12 @@ chroot_clean(){
chroot_create(){
mkdir -p "${chrootdir}"
setarch ${arch} \
mkmanjaroroot ${mkmanjaroroot_args[*]} ${chrootdir}/root ${base_packages[*]} || abort
mkchroot ${mkmanjaroroot_args[*]} ${chrootdir}/root ${base_packages[*]} || abort
}
chroot_update(){
setarch "${arch}" \
mkmanjaroroot ${mkmanjaroroot_args[*]} -u ${chrootdir}/$(get_user) || abort
mkchroot ${mkmanjaroroot_args[*]} -u ${chrootdir}/$(get_user) || abort
}
chroot_init(){
@ -70,7 +70,7 @@ chroot_build_set(){
for pkg in $(cat ${profiledir}/${profile}.set); do
cd $pkg
setarch ${arch} \
makechrootpkg ${makechrootpkg_args[*]} -- "${makepkg_args[*]}" || break
mkchrootpkg ${makechrootpkg_args[*]} -- "${makepkg_args[*]}" || break
if [[ $pkg == 'eudev' ]]; then
local blacklist=('libsystemd')
pacman -Rdd "${blacklist[@]}" -r ${chrootdir}/$(get_user) --noconfirm
@ -91,7 +91,7 @@ chroot_build(){
cd ${profile}
chroot_init
setarch ${arch} \
makechrootpkg ${makechrootpkg_args[*]} -- "${makepkg_args[*]}" || abort
mkchrootpkg ${makechrootpkg_args[*]} -- "${makepkg_args[*]}" || abort
cd ..
}

View file

@ -2,7 +2,7 @@
#m4_include(lib/common.sh)
source @libdir@/shared_lib.sh
source @libdir@/functions.sh
# Source makepkg.conf; fail if it is not found
if [[ -r '/etc/makepkg.conf' ]]; then

View file

@ -2,7 +2,7 @@
#m4_include(lib/common.sh)
source @libdir@/shared_lib.sh
source @libdir@/functions.sh
set -e
shopt -s extglob

View file

@ -5,7 +5,7 @@
# m4_include(lib/common.sh)
source @libdir@/shared_lib.sh
source @libdir@/functions.sh
match=$1

View file

@ -5,7 +5,7 @@
# m4_include(lib/common.sh)
source @libdir@/shared_lib.sh
source @libdir@/functions.sh
ifs=$IFS
IFS="${IFS}:"

View file

@ -10,7 +10,7 @@
# m4_include(lib/common.sh)
source @libdir@/shared_lib.sh
source @libdir@/functions.sh
CHROOT_VERSION='v3'

View file

@ -10,7 +10,7 @@
# m4_include(lib/common.sh)
source @libdir@/shared_lib.sh
source @libdir@/functions.sh
shopt -s nullglob
@ -167,7 +167,7 @@ if [[ -n "${install_pkgs[*]}" ]]; then
pkgname="${install_pkg##*/}"
cp "$install_pkg" "$copydir/$pkgname"
mkmanjaroroot -b "${branch}" -r "pacman -U /$pkgname --noconfirm" "$copydir"
mkchroot -b "${branch}" -r "pacman -U /$pkgname --noconfirm" "$copydir"
(( ret += !! $? ))
rm "$copydir/$pkgname"
@ -177,7 +177,7 @@ if [[ -n "${install_pkgs[*]}" ]]; then
[[ -f PKGBUILD ]] || exit $ret
fi
$update_first && mkmanjaroroot -b "${branch}" -u "$copydir"
$update_first && mkchroot -b "${branch}" -u "$copydir"
mkdir -p "$copydir/build"
@ -293,7 +293,7 @@ exit 0
EOF
chmod +x "$copydir/chrootbuild"
if mkmanjaroroot -b "${branch}" -r "/chrootbuild" "$copydir"; then
if mkchroot -b "${branch}" -r "/chrootbuild" "$copydir"; then
for pkgfile in "$copydir"/pkgdest/*.pkg.tar.?z; do
if $add_to_db; then
mkdir -p "$copydir/repo"