blob: 97aa044ded9ea9eb552220b8fef5715f1a3a97cc (
plain) (
blame)
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
|
#!/bin/sh
# Creates and updates a git checkout in ${BASE_DIRECTORY} for libkolabxml.
# After that, a new distfile for the ports tree is created.
PROJECT=libkolabxml
BASE_DIRECTORY="$1"
VERSION="$2"
# Remote libkolabxml git repository
REPO="https://git.kolab.org/diffusion/LKX/${PROJECT}.git"
# Local checkout
CHECKOUT="${BASE_DIRECTORY}/${PROJECT}"
# Use the default branch
BRANCH=master
# Make sure we can use ${BASE_DIRECTORY}
if [ ! -d "${BASE_DIRECTORY}" ] || [ ! -w "${BASE_DIRECTORY}" ] ; then
echo "Directory '${BASE_DIRECTORY}' does not exist"
exit 1
fi
# Init a new git checkout if it is missing
if [ ! -d "${CHECKOUT}" ] ; then
git -C "${BASE_DIRECTORY}" clone "${REPO}"
fi
# Update the checkout of the required branch
git -C "${CHECKOUT}" checkout "${BRANCH}" && \
git -C "${CHECKOUT}" pull --ff-only --rebase --autostash && \
git -C "${CHECKOUT}" fetch --tags
if [ $? -ne 0 ] ; then
echo "Failed to update ${CHECKOUT}"
exit 1
fi
# Set up information for the distfile
DISTNAME="${PROJECT}-${VERSION}"
DISTFILE="${BASE_DIRECTORY}/${DISTNAME}.tar.xz"
# Tar and compress distfile
git -C ${CHECKOUT} archive --format=tar --prefix="${DISTNAME}/" "${DISTNAME}" | xz > "${DISTFILE}"
if [ $? -ne 0 ] ; then
echo "Failed to create tarball ${DISTFILE}"
exit 1
fi
# Print out distfile information
echo -e "Distfile:\t${DISTFILE}"
|