Track and download the new releases from GitHub
Emmanuel Bourg
2 years ago
2 | 2 |
* Standards-Version updated to 4.5.1
|
3 | 3 |
* Switch to debhelper level 13
|
4 | 4 |
* Use salsa.debian.org Vcs-* URLs
|
|
5 |
* Track and download the new releases from GitHub
|
5 | 6 |
|
6 | 7 |
-- Emmanuel Bourg <ebourg@apache.org> Mon, 18 Jan 2021 00:34:47 +0100
|
7 | 8 |
|
0 | 0 |
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
1 | 1 |
Upstream-Name: Simple Logging Facade for Java (SLF4J)
|
2 | 2 |
Source: http://www.slf4j.org/dist/
|
3 | |
Comment:
|
4 | |
The upstream supplied source package contains binary jar files and
|
5 | |
pre-built documentation, and hence upstream sources have been
|
6 | |
repackaged. Please use the get-orig-source target from
|
7 | |
debian/rules to create the orig.tar.gz used for Debian
|
8 | |
packaging. For more details on repackaging of upstream sources
|
9 | |
please see the debian/orig-tar.sh file.
|
|
3 |
Files-Excluded: *.jar
|
|
4 |
*/site/*
|
10 | 5 |
|
11 | 6 |
Files: *
|
12 | 7 |
Copyright: 2004-2016, QOS.ch
|
0 | |
#!/bin/sh -e
|
1 | |
|
2 | |
PACKAGE=$(dpkg-parsechangelog -S Source)
|
3 | |
VERSION=$2
|
4 | |
DIR=${PACKAGE}-${VERSION}
|
5 | |
TAR=../${PACKAGE}_${VERSION}.orig.tar.xz
|
6 | |
|
7 | |
mkdir $DIR
|
8 | |
tar -xf $3 --strip-components=1 -C $DIR
|
9 | |
rm $3
|
10 | |
XZ_OPT=--best tar -c -v -J -f $TAR \
|
11 | |
--exclude '*.jar' \
|
12 | |
--exclude 'site' \
|
13 | |
$DIR
|
14 | |
rm -Rf $DIR
|
0 | |
version=3
|
1 | |
http://www.slf4j.org/dist/ slf4j-(.*).tar.gz debian debian/orig-tar.sh
|
|
0 |
version=4
|
|
1 |
opts="mode=git,repack,compression=xz" \
|
|
2 |
https://github.com/qos-ch/slf4j refs/tags/v_([\d\.]+)
|