rebuild: split packages to another file

master
an 2019-05-18 11:40:07 -04:00
parent 9b90f296e6
commit 03cf94490e
2 changed files with 88 additions and 82 deletions

View File

@ -1,84 +1,22 @@
m64pncp=mupen64plus-noncore-plugins-git
all_pkgs=(
# deps
cef-standard
cereal
libsodium-git
mozc
vim-runtime-git
#!/usr/bin/env bash
# packages
chocolate-doom
chromium-vaapi-bin
chromium-widevine
desmume-git
dolphin-emu-git
eternity-engine-git
fceux-git
gdcc
godot
gopherus
gvim-git
gzdoom-legacy
higan
maxcso
mednaffe
megatools
mgba-git
motsognir
mupen64plus-git
mupen64plus-gui-git
$m64pncp
nicotine-plus-git
obs-linuxbrowser-bin
obs-studio-git
pcsx2-git
plasma5-applets-mpdnowplaying
ppsspp-git
prboom-plus
ripcord
rpcs3-git
sharenix-git
slade
squirrel-sql
uim-mozc
xf86-input-xwiimote-git
xf86-video-amdgpu-git
xwiimote-git
zdoom
)
declare -A options=(
[cef-standard]="--asdeps"
[cereal]="--asdeps"
[libsodium-git]="--asdeps"
[mozc]="--asdeps"
[vim-runtime-git]="--asdeps"
[higan]="--handle Higan --url https://gitlab.com/higan/higan.git/"
[$m64pncp]="-f --url https://git.greyserv.net/marrub/$m64pncp.git"
[motsognir]="--url https://git.greyserv.net/marrub/motsognir.git"
[ppsspp-git]="--install-as ppsspp-git"
)
. rebuild_pkgs.sh
pkg_ver() {
sed '/^pkgver\=/!d;s/pkgver\=\(.*\)/\1/' PKGBUILD
}
exit_on_err() {
local res=$1
if (( $res ))
then
echo "error in rebuild, aborting"
exit $res
fi
local res=$?
echo "error in rebuild, aborting"
exit "$res"
}
higan_make() {
make -j12 -C $@ uninstall
make -j12 -C $@ clean; exit_on_err $?
make -j12 -C $@ all; exit_on_err $?
make -j12 -C $@ install; exit_on_err $?
make -j12 -C $@ clean || exit_on_err
make -j12 -C $@ all || exit_on_err
make -j12 -C $@ install || exit_on_err
}
build_package() {
cd ~/bin
cd ~/bin || exit_on_err
local pkg=$1
shift
@ -116,18 +54,21 @@ build_package() {
if [[ ! -d ~/bin/$pkg ]]
then
git clone $pull_url
git clone "$pull_url"
fi
cd $pkg
cd "$pkg" || exit_on_err
git pull
local new_tag
case $special_handling in
None)
;;
Higan)
new_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
git fetch --tags
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
git checkout "$new_tag"
higan_make higan target=higan
higan_make higan target=bsnes
higan_make icarus
@ -145,16 +86,15 @@ build_package() {
makepkg_args+=" -i"
fi
makepkg $makepkg_args
exit_on_err $?
makepkg $makepkg_args || exit_on_err
local pkgver
if [[ $install_as ]]
then
pkgver=$(pkg_ver)
sudo pacman --noconfirm --needed -U $install_as-$pkgver*.pkg.tar
exit_on_err $?
sudo pacman --noconfirm --needed -U "$install_as-$pkgver*.pkg.tar" ||
exit_on_err
fi
}
resume_from() {
@ -162,8 +102,8 @@ resume_from() {
for pkg in ${all_pkgs[*]}
do
[[ $pkg = $1 ]] && resume=1
[[ $resume ]] && echo $pkg
[[ $pkg = "$1" ]] && resume=1
[[ $resume ]] && echo "$pkg"
done
}
main() {
@ -174,7 +114,7 @@ main() {
do
case $1 in
--resume-from)
pkgs+=" $(resume_from $2)"
pkgs+=" $(resume_from "$2")"
shift 2
;;
*)
@ -191,7 +131,7 @@ main() {
for pkg in $pkgs
do
build_package $pkg ${options[$pkg]}
build_package "$pkg" ${options[$pkg]}
done
}

66
rebuild_pkgs.sh Normal file
View File

@ -0,0 +1,66 @@
#!/usr/bin/env bash
m64pncp=mupen64plus-noncore-plugins-git
all_pkgs=(
# deps
cef-standard
cereal
libsodium-git
mozc
vim-runtime-git
# packages
chocolate-doom
chromium-vaapi-bin
chromium-widevine
desmume-git
dolphin-emu-git
eternity-engine-git
fceux-git
gdcc
godot
gopherus
gvim-git
gzdoom-legacy
higan
maxcso
mednaffe
megatools
mgba-git
motsognir
mupen64plus-git
mupen64plus-gui-git
"$m64pncp"
nicotine-plus-git
obs-linuxbrowser-bin
obs-studio-git
pcsx2-git
plasma5-applets-mpdnowplaying
powershell-bin
ppsspp-git
prboom-plus
ripcord
rpcs3-git
sharenix-git
slade
squirrel-sql
teamviewer
uim-mozc
xf86-input-xwiimote-git
xwiimote-git
zdoom
)
declare -A options=(
[cef-standard]="--asdeps"
[cereal]="--asdeps"
[libsodium-git]="--asdeps"
[mozc]="--asdeps"
[vim-runtime-git]="--asdeps"
[higan]="--handle Higan --url https://gitlab.com/higan/higan.git/"
[$m64pncp]="-f --url https://git.greyserv.net/marrub/$m64pncp.git"
[motsognir]="--url https://git.greyserv.net/marrub/motsognir.git"
[ppsspp-git]="--install-as ppsspp-git"
)
## EOF