blob: 5b5c57586e12991db0188232a613b6160484c9ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/bash
host=parabola
dir=parabolagnulinux.org/repo/free
batchfile=/tmp/librerelease_batchfile.$$
repo=${1}
if [ ${#repo} -eq 0 ]; then exit 1; fi
function to_sftp() {
echo "$@" >> $batchfile
}
if [ ! -e ./PKGBUILD ]; then exit 1; fi
source PKGBUILD
source /etc/makepkg.conf
if [ -e ~/.makepkg.conf ]; then source ~/.makepkg.conf; fi
# Init the batchfile
to_sftp "progress"
# Move out the old packages
for _arch in ${arch[@]}; do
for pkg in ${pkgname[@]}; do
pkgfile="$PKGDEST/$pkg-$pkgver-$pkgrel-$_arch$PKGEXT"
if [ -e "$pkgfile" ]; then
# This has to be moved to repo-maintainer
ssh parabola mv $dir/$repo/os/$_arch/$pkg-*-*-$_arch$PKGEXT $dir/old/
to_sftp "put $pkgfile $dir/$repo/os/$_arch/"
fi
done
done
sftp -b ${batchfile} $host
exit 0
|