Adding upstream version 2.0.24.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e508fcfeb9
commit
afb0a8fea7
118 changed files with 45084 additions and 0 deletions
17
distro/scripts/make-archive.sh
Executable file
17
distro/scripts/make-archive.sh
Executable file
|
@ -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=libnetconf2-$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
|
Loading…
Add table
Add a link
Reference in a new issue