diff options
Diffstat (limited to 'distro/scripts')
-rwxr-xr-x | distro/scripts/make-archive.sh | 17 | ||||
-rwxr-xr-x | distro/scripts/upstream-version.sh | 7 |
2 files changed, 24 insertions, 0 deletions
diff --git a/distro/scripts/make-archive.sh b/distro/scripts/make-archive.sh new file mode 100755 index 0000000..9b6295d --- /dev/null +++ b/distro/scripts/make-archive.sh @@ -0,0 +1,17 @@ +#!/bin/bash +# create archive from current source using git + +VERSION=$(git describe --tags --always) +# skip "v" from start of version number (if it exists) and replace - with . +VERSION=${VERSION#v} +VERSION=${VERSION//[-]/.} + +NAMEVER=libyang-$VERSION +ARCHIVE=$NAMEVER.tar.gz + +git archive --format tgz --output $ARCHIVE --prefix $NAMEVER/ HEAD +mkdir -p pkg/archives/dev/ +mv $ARCHIVE pkg/archives/dev/ + +# apkg expects stdout to list archive files +echo pkg/archives/dev/$ARCHIVE diff --git a/distro/scripts/upstream-version.sh b/distro/scripts/upstream-version.sh new file mode 100755 index 0000000..4489c8e --- /dev/null +++ b/distro/scripts/upstream-version.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# get latest upstream libyang version from github + +RLS_URL=https://api.github.com/repos/CESNET/libyang/releases +VERSION=$(curl -s $RLS_URL | grep tag_name | cut -d '"' -f 4 | sort --version-sort | tail -n 1) +VERSION=${VERSION#v} +echo $VERSION |