summaryrefslogtreecommitdiff
path: root/pbs-package-new
blob: bd76f8ade4f9fb3ee57b76019de85ea88973e6a5 (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
#!/bin/bash -euE

. libremessages

cmd=${0##*/}
usage() {
	echo "Usage: $cmd [OPTIONS] REPO/PACKAGE"
	echo 'Creates a new package'
	echo ''
	echo 'Options:'
	echo '  -h            Show this message'
}

main() {
	while getopts 'h' arg; do
		case $arg in
			h) usage; return 0;;
			*) usage; return 1;;
		esac
	done
	shift $(($OPTIND - 1))
	if [[ $# > 0 ]]; then
		usage
		return 1
	fi

	local dest=$1
	local package="${dest##*/}"

	git submodule add ./ "${dest}"
	cd "${dest}"
	git checkout --orphan "packages/${package}"
}

main "$@"