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
|
doc-rfc for Debian
------------------
This package has multiple upstream sources:
- the actual tarball of all non-draft RFCs
- many draft RFCs, downloaded from upstream rsync
- html files showing each RFC's status, download from upstream website
Creating a new version:
The script debian/update-package.sh works on a local subdirectory tmp/
to retrieve the various materials used to create this package. (This
directory should *not* go into either source or binary package!)
The RFC-all.tar.gz should be used as doc-rfc_<filedate>.orig.tar.gz (the
touch command creates a flag file that shows the date). The other files
(*.txt, *.html, rfc-index.xml) which are put under tmp/extra go into
debian/extra.
-- Iustin Pop <iustin@debian.org>, Mon, 2 Aug 2010 16:02:47 -0400
If you run git-import-orig make sure your /tmp partition is large enough.
Otherwise pristine-tar may fail. See also bug #600724. My tmpfs was ~600MB and
still too small. So I ran pristine tar manually:
mkdir -p ~/tmp && TMPDIR=~/tmp \
pristine-tar debian/tmp/doc-rfc_20111105.orig.tar.gz upstream
|