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
|
gpib-user for Debian
======================
Since upstreams tarball
1) consists of both the kernel tools *and* the userspace tools as two seperate tarballs
2) and is not equal to the git repositories contents (contains prebuilt docs)
it's created manually instead of relying of uscan. First, the latest tag is cloned:
$ git clone https://git.code.sf.net/p/linux-gpib/git linux-gpib-git -b v4_3_6
(substitute accordingly)
Then, the unneeded kernel parts are discarded, as they are in staging now:
$ cd linux-gpib-git && git rm -r README.txt linux-gpib-kernel
A git archive is created:
$ cd linux-gpib-user && cp ../ChangeLog . && git archive --format=tar > linux-gpib-user_4.3.6.tar
Finally the tarball is ready:
$ gzip linux-gpib-user_4.3.6.tar
Now it can be fed to gbp:
$ gbp --import-orig ../linux-gpib-user_4.3.6.tar
-- Matthias Geiger <werdahias@debian.org>
|