blob: 36243a9554b5cfcb0f64c581672f192c4086bc4d (
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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
#!/bin/sh
## You can set these variables here or in your enviroment
#SRC_PATH='/path/to/packages/sources'
#REPO_PATH='/path/to/archlinux/repo'
#REPO_NAME='repo_name'
## Search variables
URL_PREFIX='https://aur.archlinux.org/'
SEARCH_STR='rpc/?v=5&type=search&by=name-desc&arg='
add_package() {
if [ ! -d "${SRC_PATH}/$1" ]; then
cd ${SRC_PATH}
git clone ${URL_PREFIX}$1.git
else
echo 'WARNING: Package already present.'
fi
}
clone_package() {
if [ ! -d "${SRC_PATH}/$(echo $1 | awk -F '/' '{print $NF}' | cut -d '.' -f 1)" ]; then
cd ${SRC_PATH}
git clone $1
else
echo 'WARNING: Package already present.'
fi
}
rm_package() {
if [ -d "${SRC_PATH}/$1" ]; then
rm -rf ${SRC_PATH}/$1
else
echo 'WARNING: Package not present.'
fi
}
check_package() {
if [ -d "${SRC_PATH}/$1" ]; then
${EDITOR} ${SRC_PATH}/$1/PKGBUILD
else
echo 'WARNING: Package not found.'
fi
}
list_packages() {
find ${SRC_PATH}/* -type d -prune | awk -F '/' '{print $NF}'
}
clean_packages() {
if [ "$1" != '' ]; then
find ${SRC_PATH} -type f -iname "*$1*.pkg.tar.xz" -exec rm {} \;
else
find ${SRC_PATH} -type f -iname "*.pkg.tar.xz" -exec rm {} \;
fi
}
build_packages() {
if [ "$1" != '' ]; then
cd $(find ${SRC_PATH}/* -type d -prune -iname "*$1")
makepkg -Cs
else
for i in $(find ${SRC_PATH}/* -type d -prune)
do
cd $i
makepkg -Cs
done
fi
}
upgrade_packages() {
if [ "$1" != '' ]; then
cd $(find ${SRC_PATH}/* -type d -prune -iname "*$1")
git pull
makepkg -Cs
else
for i in $(find ${SRC_PATH}/* -type d -prune)
do
cd $i
git pull
makepkg -Cs
done
fi
}
install_package() {
if [ -d "${SRC_PATH}/$1" ]; then
cd $(find ${SRC_PATH}/* -type d -prune -iname "*$1")
git pull
makepkg -Csi
else
echo 'WARNING: Package not found.'
fi
}
update_repo() {
if [ "$1" != '' ]; then
find ${SRC_PATH} -type f -iname "*$1*pkg.tar.xz" -exec cp {} ${REPO_PATH}/x86_64/ \;
repo-add ${REPO_PATH}/x86_64/${REPO_NAME}.db.tar.gz ${REPO_PATH}/x86_64/*$1*.pkg.tar.xz
else
find ${SRC_PATH} -type f -iname "*pkg.tar.xz" -exec cp {} ${REPO_PATH}/x86_64/ \;
repo-add ${REPO_PATH}/x86_64/${REPO_NAME}.db.tar.gz ${REPO_PATH}/x86_64/*.pkg.tar.xz
fi
}
search_packages() {
declare -a key=("${!1}")
CURL_JSN=$(curl -s $(echo ${URL_PREFIX}${SEARCH_STR}"${key[@]}" | sed -e 's/ /+/g'))
OUT_STR=$(jq -r '.results | .[] | [.Name, .Version], .Description' <<< ${CURL_JSN})
printf 'You searched using the following keywords (matching package name and/or description): "'
printf '%s ' "${key[@]}"
printf '\b"\n'
echo ${OUT_STR} | sed -e 's/\[ /\n/g' -e 's/ *\] /\n\t/g' -e 's/"*, /\//g' -e 's/"//g'
}
set_variables() {
echo "WARNING: SRC_PATH variable not set."
echo
echo "You need to set the following variables in your profile:"
echo
echo " export SRC_PATH='/path/to/packages/sources'"
echo " export REPO_PATH='/path/to/archlinux/repo'"
echo " export REPO_NAME='repo_name'"
echo
echo "The REPO_PATH and REPO_NAME variables are only needed if you use the local repo feature."
echo "Just set the SRC_PATH if you don't intend to use it."
}
print_help() {
echo 'repo.sh SEPPIOFISH repo tool'
echo
echo ' USAGE: repo.sh COMMAND PKGNAME (default ALL)'
echo
echo ' add adds package from from AUR'
echo ' clone (url) clones git package repository'
echo ' rm remove package'
echo ' check check PKGBUILD'
echo ' list lists availables packages'
echo ' update updates the packages in the repo'
echo ' build builds the packages'
echo ' upgrade upgrades the packages'
echo ' install builds and installs the package'
echo ' clean cleans the packages'
echo ' search searches packages in AUR'
echo ' help prints this help'
echo
if [ "${SRC_PATH}" == '' ];then
set_variables
fi
}
if [ "$1" == 'help' ]; then
if [ "$2" != '' ]; then
echo 'ERROR: too many arguments.'
else
print_help
fi
elif [ "${SRC_PATH}" == '' ];then
set_variables
elif [ ! -d "${SRC_PATH}" ]; then
echo 'ERROR: SRC_PATH variable set to invalid path.'
elif [ "$1" == '' ]; then
echo 'warning: no command called.'
elif [ "$1" == 'add' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" == '' ]; then
echo 'ERROR: missing argument.'
else
add_package $2
fi
elif [ "$1" == 'clone' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" == '' ]; then
echo 'ERROR: missing argument.'
else
clone_package $2
fi
elif [ "$1" == 'rm' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" == '' ]; then
echo 'ERROR: missing argument.'
else
rm_package $2
fi
elif [ "$1" == 'check' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" == '' ]; then
echo 'ERROR: missing argument.'
else
check_package $2
fi
elif [ "$1" == 'list' ]; then
if [ "$2" != '' ]; then
echo 'ERROR: too many arguments.'
else
list_packages
fi
elif [ "$1" == 'update' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "${REPO_PATH}" == '' ];then
echo 'ERROR: REPO_PATH variable not set.'
elif [ ! -d "${REPO_PATH}" ]; then
echo 'ERROR: REPO_PATH variable set to invalid path.'
elif [ "${REPO_NAME}" == '' ];then
echo 'ERROR: REPO_NAME variable not set.'
elif [ "$2" != '' ]; then
update_repo $2
else
update_repo
fi
elif [ "$1" == 'build' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" != '' ]; then
build_packages $2
else
build_packages
fi
elif [ "$1" == 'upgrade' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" != '' ]; then
upgrade_packages $2
else
upgrade_packages
fi
elif [ "$1" == 'install' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" == '' ]; then
echo 'ERROR: missing argument.'
else
install_package $2
fi
elif [ "$1" == 'clean' ]; then
if [ "$3" != '' ]; then
echo 'ERROR: too many arguments.'
elif [ "$2" != '' ]; then
clean_packages $2
else
clean_packages
fi
elif [ "$1" == 'search' ]; then
if [ "$2" == '' ]; then
echo 'ERROR: missing argument(s).'
else
N=2
while [ "${!N}" != '' ]; do
keywords[$((N-2))]=${!N}
let N=N+1
done
search_packages keywords[@]
fi
else
echo 'ERROR: unrecocnized command.'
fi
|