blob: 9bb6bbfb4fab082e472825904e109630db4c4cfa (
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
|
#!/bin/sh
usage () {
cat << "EOF"
Usage: xi [options] command...
Available Options:
-r [path]
specify the installation root [default: /]
-c [path]
specify the config file to use [default: /etc/xipkg.conf]
-q
supress unecessary outputs
-v
be more verbose
-n
do not resolve package dependenceies
-l
do not sync databases (ignored when explicitly running sync)
-u
do not validate against keychain
-y
skip prompts
-h
show help and exists
Available Commands:
sync
sync the local package database with the remote repositories
install [packages..]
install package(s) into the system
update
update all packages on the system
remove [packages...]
remove packages from the system
reinstall [packages..]
remove and reinstall package(s) into the system
fetch [package]
download a .xipkg file
keyimport [name] [url]
import a key from a url
clean
clean cached files and data
search [query]
search the database for a package
files [package]
list files belonging to a package
verify [package]
verify that a package's files are intact
list
list available packages
list-installed
lists installed packages
file [path]
shows which package a file belongs to
bootstrap [additional packages...]
installs base packages and system files to an empty system
help
shows this message
EOF
}
[ -z "${LIBDIR}" ] && LIBDIR=/usr/lib/xipkg
[ -f ${LIBDIR}/VERSION ] && VERSION=$(cat ${LIBDIR}/VERSION) || VERSION=
export VERSION
export SYSROOT=/
export CONF_FILE="/etc/xipkg.conf"
export VERBOSE=false
export QUIET=false
export RESOLVE_DEPS=true
export DO_SYNC=true
export UNSAFE=false
export NOCONFIRM=false
while getopts ":r:c:qnluyvh" opt; do
case "${opt}" in
r)
SYSROOT=$(realpath ${OPTARG})
;;
c)
CONF_FILE="${OPTARG}"
;;
n)
RESOLVE_DEPS=false
;;
l)
DO_SYNC=false
;;
u)
UNSAFE=true
;;
y)
NOCONFIRM=true
;;
v)
VERBOSE=true
;;
q)
QUIET=true
;;
h)
usage
exit 0
;;
esac
done
# TODO only load these modules when needed
. ${LIBDIR}/profile.sh
. ${LIBDIR}/util.sh
. ${LIBDIR}/validate.sh
. ${LIBDIR}/query.sh
. ${LIBDIR}/sync.sh
. ${LIBDIR}/install.sh
. ${LIBDIR}/get.sh
. ${LIBDIR}/remove.sh
shift $((OPTIND-1))
if [ "$#" = "0" ]; then
. ${LIBDIR}/stats.sh
show_xipkg_stats
else
case "$1" in
"sync")
sync
;;
"install" | "update")
shift
$DO_SYNC && sync
install $@
;;
"search")
shift
search $@
;;
"fetch")
shift
$DO_SYNC && sync
fetch $@
;;
"remove")
shift
remove $@
;;
"reinstall")
shift
reinstall $@
;;
"files")
shift
files $@
;;
"keyimport")
shift
set -o noglob
keyimport $@
;;
"clean")
shift
. ${LIBDIR}/remove.sh
clean $@
;;
"list")
list
;;
"list-installed")
list_installed
;;
"file")
shift
file_info $@
;;
"verify")
shift
[ -z "$*" ] && set -- $(ls ${INSTALLED_DIR})
while [ ! -z "$*" ]; do
validate_files $1 || printf "${LIGHT_RED}Failed to verify $1\n"
shift
done
;;
"bootstrap")
shift
. ${LIBDIR}/bootstrap.sh
bootstrap $@
;;
"help")
usage
;;
*)
$DO_SYNC && sync
install $@
;;
esac
fi
printf "${RESET}"
|