aboutsummaryrefslogtreecommitdiffstats
path: root/repoctl
blob: cea6ebb7fdfaa07b3684265e7504c116fa3b961b (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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#!/bin/bash

# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide.
# This software is distributed without any warranty.

# You should have received a copy of the CC0 Public Domain Dedication
# along with this software.
# If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.

REPOCTL_FUNCTIONS='/usr/share/repoctl/functions'
[ -f /etc/repoctl_functions ] && REPOCTL_FUNCTIONS=$(cat /etc/repoctl_functions)
. $REPOCTL_FUNCTIONS

function usage_cmd()
{
    case "$1" in
	mvpkg)
	    cat <<EOF
Usage: repoctl mvpkg [options] --srcrepo distribution/section/sectionrepo \\
			       --dstrepo distribution/section/sectionrepo \\
			       --srcpkg|--binpkg name

Options:
  --dry-run : don't do anything, but show what would have been done.
  --no-genhdlists : don't regenerate hdlists
  --srcpkg name : name of a source package. All the binary packages
                   generated by this source package will also be moved.
  --binpkg name : name of a binary package.

Example :
  Move emacs packages from 1/core/updates_testing to 1/core/updates :
  repoctl mvpkg --srcrepo 1/core/updates_testing --dstrepo 1/core/updates \
                  --srcpkg emacs
EOF
	    ;;
	rmpkg)
	    cat <<EOF
Usage: repoctl rmpkg [options] --srcrepo distribution/section/sectionrepo \\
			       --srcpkg|--binpkg name

Options:
  rmpkg can take the same options as mvpkg. See repoctl mvpkg --help
  for details.

Example :
  Remove emacs package from 1/core/updates_testing repository :
  repoctl rmpkg --srcrepo 1/core/updates_testing --srcpkg emacs

EOF
	    ;;
	lspkg)
	    cat <<EOF
Usage: repoctl lspkg --srcrepo distribution/section/sectionrepo \\
		     --srcpkg|--binpkg name

Example :
  List emacs packages from 1/core/updates_testing repository :
  repoctl lspkg --srcrepo 1/core/updates_testing --srcpkg emacs
EOF
	    ;;
	repolock)
	    cat <<EOF
Usage: getrepolock|rmrepolock --srcrepo distribution/section/sectionrepo

Get or release lock on a repository.

Warning: one process should not try to get a lock on more than one
repository at the same time. It is however possible to lock all
repositories of a distribution using getdistrolock/rmdistrolock.

EOF
    esac
}

function mvpkg()
{
    args=$(getopt -o hn -l srcrepo:,dstrepo:,dry-run,remove,help,no-genhdlists,no-mirror,srcpkg:,binpkg: -- "$@")
    [ $? -ne 0 ] && usage_cmd mvpkg && exit 1
    eval set -- "$args"
    [ $# -lt 1 ] && exit 1
    while [ $# -gt 0 ]
    do
	case $1 in
	    -h|--help)
		if [ -z "$remove" ]
		then
		    usage_cmd mvpkg
		else
		    usage_cmd rmpkg
		fi
		exit 0
		;;
	    -n|--dry-run)
		dryrun=echo
		shift;;
	    --remove)
		remove=1
		shift;;
	    --no-genhdlists)
		nogenhdlists=1
		shift;;
	    --no-mirror)
		nomirror=1
		shift;;
	    --srcrepo)
		IFS='/' read -ra srcrepo <<< "$2"
		shift;shift;;
	    --dstrepo)
		IFS='/' read -ra dstrepo <<< "$2"
		shift;shift;;
	    --srcpkg)
		srcpkg="$2"
		shift;shift;;
	    --binpkg)
		binpkg="$2"
		shift;shift;;
	    --)
		shift;break;;
	    -*)
		usage
		exit 1
		;;
	    *)
		break
		;;
	esac
    done
    if [ -z "$srcrepo" -o -z "$remove$dstrepo" -o \( -z "$srcpkg" -a -z "$binpkg" \) ]
    then
	usage
	exit 1
    fi
    if [ -n "$srcpkg" ]
    then
	move_pkg "${srcrepo[0]}" "${srcrepo[1]}" "${srcrepo[2]}" \
	         "${dstrepo[0]}" "${dstrepo[1]}" "${dstrepo[2]}" \
		 "$srcpkg" "/dev/stdout"
	if [ -z "$nogenhdlists" ]
	then
	    update_hdlists "${srcrepo[0]}" "${srcrepo[1]}" "${srcrepo[2]}"
	    [ -n "$dstrepo" ] &&
		update_hdlists "${dstrepo[0]}" "${dstrepo[1]}" "${dstrepo[2]}"
	    if [ -z "$nomirror" ]
	    then
		mirror_repository "${srcrepo[0]}"
		[ -n "${dstrepo[0]}" ] && [ "${srcrepo[0]}" != "${dstrepo[0]}" ] &&
		    mirror_repository "${dstrepo[0]}"
	    fi
	fi
    else
	echo "The --binpkg option is not supported yet"
    fi
}

function rmpkg()
{
    mvpkg --remove $@
}

function lspkg()
{
    args=$(getopt -o hn -l srcrepo:,help,srcpkg:,binpkg: -- "$@")
    [ $? -ne 0 ] && usage_cmd mvpkg && exit 1
    eval set -- "$args"
    [ $# -lt 1 ] && exit 1
    while [ $# -gt 0 ]
    do
	case $1 in
	    -h|--help)
		usage_cmd lspkg
		exit 0
		;;
	    --srcrepo)
		IFS='/' read -ra srcrepo <<< "$2"
		shift;shift;;
	    --srcpkg)
		srcpkg="$2"
		shift;shift;;
	    --binpkg)
		binpkg="$2"
		shift;shift;;
	    --)
		shift;break;;
	    -*)
		usage
		exit 1
		;;
	    *)
		break
		;;
	esac
    done
    if [ -z "$srcrepo" -o -z "$srcpkg$binpkg" ]
    then
	usage
	exit 1
    fi
    if [ -n "$srcpkg" ]
    then
	ls_pkg "${srcrepo[0]}" "${srcrepo[1]}" "${srcrepo[2]}" "$srcpkg" "/dev/stdout"
    else
	echo "The --binpkg option is not supported yet"
    fi

}

function repolock()
{
    args=$(getopt -o h -l srcrepo:,help,get,rm -- "$@")
    [ $? -ne 0 ] && usage_cmd repolock && exit 1
    eval set -- "$args"
    [ $# -lt 1 ] && exit 1
    while [ $# -gt 0 ]
    do
	case $1 in
	    -h|--help)
		usage_cmd repolock
		exit 0
		;;
	    --srcrepo)
		IFS='/' read -ra srcrepo <<< "$2"
		shift;shift;;
	    --get)
		command=get_repo_lock
		shift;;
	    --rm)
		command=rm_repo_lock
		shift;;
	    --)
		shift;break;;
	    -*)
		usage
		exit 1
		;;
	    *)
		break
		;;
	esac
    done
    if [ -z "$srcrepo" ]
    then
	usage_cmd repolock
    fi
    $command "${srcrepo[0]}" "${srcrepo[1]}" "${srcrepo[2]}"
}

function usage()
{
    cat <<EOF
  Usage: repoctl COMMAND [COMMAND ARGUMENTS]

  Useful commands :
     mvpkg
     lnpkg
     rmpkg
     lspkg
     genhdlists
     mirrordistro
     getrepolock
     rmrepolock
     getdistrolock
     rmdistrolock

  For more infos about a command, use :
    repoctl COMMAND --help

EOF
}

case "$1" in
    mvpkg)
	shift
	mvpkg $@
	;;
    rmpkg)
	shift
	rmpkg $@
	;;
    lspkg)
	shift
	lspkg $@
	;;
    getrepolock)
	shift
	repolock --get $@
	;;
    rmrepolock)
	shift
	repolock --rm $@
	;;
    *)
	usage
	exit 1
	;;
esac