Adding upstream version 3.1.0+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
64dbec996d
commit
cfcebb1a7d
569 changed files with 205393 additions and 0 deletions
14
distro/scripts/make-archive.sh
Executable file
14
distro/scripts/make-archive.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
# create archive from current source using git
|
||||
|
||||
VERSION=$(git log --oneline -n1 --grep="^VERSION" | rev | cut -d' ' -f1 | rev)
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue