-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupgrade.sh
107 lines (90 loc) · 3.64 KB
/
upgrade.sh
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/sh
rm -f all.pkgs
rm -rf ./debs/tmp
if [[ -e changelog.log ]]; then
rm changelog.log
fi
echo "[" > all.pkgs
if [[ -e compatity.txt ]]; then
compatity=$(cat compatity.txt)
fi
for i in ./debs/*.deb
do
debInfo=`dpkg -f $i`
dep=`echo "$debInfo" | grep "Depiction: " | cut -c 12- | tr -d "\n\r"`
home=`echo "$debInfo" | grep "Homepage: " | cut -c 11- | tr -d "\n\r"`
pkg=`echo "$debInfo" | grep "Package: " | cut -c 10- | tr -d "\n\r"`
maintainer=`echo "$debInfo" | grep "Maintainer: " | cut -c 13- | tr -d "\n\r"`
sponsor=`echo "$debInfo" | grep "Sponsor: " | cut -c 10- | tr -d "\n\r"`
#Maintainer: nguyenthanh
#Author: nguyenthanh
#Sponsor: nguyenthanh
if [[ -z $dep || -z $home || -z $maintainer || -z $sponsor ]];then
dpkg-deb -R $i ./debs/tmp
fi
buildDEBIAN=0
if [[ -z $dep ]]; then
echo "Depiction: https://bonthoi.com/description.html?goto=${pkg}" >> ./debs/tmp/DEBIAN/control
buildDEBIAN=1
fi
if [[ -z $home ]]; then
echo "Homepage: https://bonthoi.com/" >> ./debs/tmp/DEBIAN/control
buildDEBIAN=1
fi
if [[ -z $maintainer ]]; then
echo "Maintainer: bonthoi <bonthoi@gmail.com>" >> ./debs/tmp/DEBIAN/control
buildDEBIAN=1
fi
if [[ -z $sponsor ]]; then
echo "Sponsor: BonThoi <https://bonthoi.com>" >> ./debs/tmp/DEBIAN/control
buildDEBIAN=1
fi
#binary 0 or 1
if [[ $buildDEBIAN == 1 ]]; then
bsname=$(basename "$i")
dpkg -bR ./debs/tmp "./debs/$bsname"
debInfo=`dpkg -f $i`
echo "$i" >> changelog.log
fi
#no sign =====================
#add Depiction done ==========
section=`echo "$debInfo" | grep "Section: " | cut -c 10- | tr -d "\n\r"`
section="${section//'"'/\\\"}"
name=`echo "$debInfo" | grep "Name: " | cut -c 7- | tr -d "\n\r"`
name="${name//'"'/\\\"}"
vers=`echo "$debInfo" | grep "Version: " | cut -c 10- | tr -d "\n\r"`
vers="${vers//'"'/\\\"}"
author=`echo "$debInfo" | grep "Author: " | cut -c 9- | tr -d "\n\r"`
author="${author//'"'/\\\"}"
depends=`echo "$debInfo" | grep "Depends: " | cut -c 10- | tr -d "\n\r"`
depends="${depends//'"'/\\\"}"
description=`echo "$debInfo" | grep "Description: " | cut -c 14- | tr -d "\n\r"`
description="${description//'"'/\\\"}"
arch=`echo "$debInfo" | grep "Architecture: " | cut -c 15- | tr -d "\n\r"`
arch="${arch//'"'/\\\"}"
size=$(du -b $i | cut -f1)
time=$(date +%s -r $i)
echo '{"Name": "'$name'", "Version": "'$vers'", "Section": "'$section'", "Package": "'$pkg'", "Author": "'$author'", "Depends": "'$depends'", "Descript": "'$description'", "Arch": "'$arch'", "Size": "'$size'", "Time": "'$time'000"},' >> all.pkgs
#Building to json done==============
leng=${#pkg}
leng=`expr $leng + 1`
exists=`echo "$compatity" | grep "$pkg" | cut -c "$leng"- | tr -d "\n\r"`
if [[ -z $exists ]]; then
echo "$pkg support for iOS..."
read tmp
echo "$pkg $tmp" >> compatity.txt;
fi
rm -rf ./debs/tmp
done
echo "{}]" >> all.pkgs
echo "------------------"
echo "Building Packages...."
apt-ftparchive packages ./debs > ./Packages;
#sed -i -e '/^SHA/d' ./Packages;
bzip2 -c9k ./Packages > ./Packages.bz2;
echo "------------------"
echo "Building Release...."
printf "Origin: BonThoi\nLabel: BonThoi\nSuite: stable\nVersion: 1.0\nCodename: ios\nArchitecture: iphoneos-arm\nComponents: main\nDescription: Source Cydia Repo by BonThoi\nMD5Sum:\n "$(cat ./Packages | md5sum | cut -d ' ' -f 1)" "$(stat ./Packages --printf="%s")" Packages\n "$(cat ./Packages.bz2 | md5sum | cut -d ' ' -f 1)" "$(stat ./Packages.bz2 --printf="%s")" Packages.bz2\n" >Release;
echo "------------------"
echo "Done!"
exit 0;