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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
- The documents under doc/ can be auto-updated if you have a local
website CVS copy from e.g.
:pserver:anonymous@anonscm.debian.org:/cvs/webwml . (See
https://www.debian.org/devel/website/using_cvs .)
Once you've set up some symlinks, and you've updated doc/Makefile,
you should be able to run e.g.
% make -C doc constitution.1.6.wml
to get a copy of constitution.1.6.wml. Once that's there, run
% svn add constitution.1.6.wml
% svn commit -m 'imported constitution.1.6.wml'
. Or use the "update" make target.
--Joost van Baal-Ilić, august 2016
- The updating of documents under doc/ currently (2008) only works for english but
could be easily expanded to provide all translations. Do we
want to do this or should this be handled by the doc-debian-XX
packages ?
Note: some of the doc-debian-XX packages are really out of date
and don't provide the same content that is available in doc-debian
--Javier Fernandez-Sanguino, 2008
Build instructions:
root@nagy:~# aptitude update && aptitude -V install wml
joostvb@nagy:~/debian% ln -s ../cvs/cvs.debian.org/webwml www
joostvb@nagy:~/sv...ackages/trunk/doc-debian% cat ~/bin/svn-prebuild
#!/bin/sh
test -d $buildArea/doc-debian-3.1.6/doc || mkdir -p $buildArea/doc-debian-3.1.6/doc
cp doc/Makefile $buildArea/doc-debian-3.1.6/doc
make -C $buildArea/doc-debian-3.1.6/doc
svn-buildpackage -uc -us -rfakeroot --svn-ignore --svn-dont-purge --svn-lintian --svn-linda --svn-prebuild=svn-prebuild --svn-reuse
--Joost van Baal-Ilić
|