mirror of https://github.com/Chizi123/Arch-autobuild-repo.git

Chizi123
2019-07-09 99cd84265229a8963899270f32abcec43660984f
commit | author | age
00a98f 1 #!/bin/bash
C 2
3 function newest_matching_file
4 {
5     # Use ${1-} instead of $1 in case 'nounset' is set
6     local -r glob_pattern=${1-}
7
8     if (( $# != 1 )) ; then
9         echo 'usage: newest_matching_file GLOB_PATTERN' >&2
10         return 1
11     fi
12
13     # To avoid printing garbage if no files match the pattern, set
14     # 'nullglob' if necessary
15     local -i need_to_unset_nullglob=0
16     if [[ ":$BASHOPTS:" != *:nullglob:* ]] ; then
17         shopt -s nullglob
18         need_to_unset_nullglob=1
19     fi
20
21     newest_file=
22     for file in $glob_pattern ; do
23         [[ -z $newest_file || $file -nt $newest_file ]] \
24             && newest_file=$file
25     done
26
27     # To avoid unexpected behaviour elsewhere, unset nullglob if it was
28     # set by this function
29     (( need_to_unset_nullglob )) && shopt -u nullglob
30
31     # Use printf instead of echo in case the file name begins with '-'
32     [[ -n $newest_file ]] && printf '%s\n' "$newest_file"
33
34     return 0
35 }
36
99cd84 37 #update system
C 38 sudo pacman -Syu --noconfirm
39
40 #go to build directory
48a8a8 41 cd $(dirname "$(realpath $0)")
99cd84 42
C 43 #Remove old packages
44 #git rm -r x86_64/*.pkg.tar.xz
48a8a8 45
01b1e0 46 for d in `find . -maxdepth 1 -not -path '*/\.*' -type d`
00a98f 47 do
99cd84 48     #Only do package directories
01b1e0 49     if [ "$d" = "./x86_64" ] || [ "$d" = "." ]; then
0969d0 50         continue
C 51     fi
00a98f 52     cd $d
99cd84 53     #update package to latest from AUR
00a98f 54     git pull
01b1e0 55     makepkg -s --noconfirm
00a98f 56     latest=$(newest_matching_file '*.pkg.tar.xz')
C 57     cd ..
99cd84 58     ln $d/$latest x86_64/$latest
01b1e0 59     repo-add ./Chizi123.db.tar.xz x86_64/$latest
00a98f 60 done
C 61
99cd84 62 ln Chizi123.db.tar.xz x86_64/Chizi123.db
C 63 ln Chizi123.files.tar.xz x86_64/Chizi123.files
48a8a8 64 git add x86_64
C 65 git commit -m "'$(date +%d/%m/%y-%H:%M)'"
66 git push