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 51 52 53 54
|
= Compiling ACE+TAO Debian packages =
= Repackaged source =
This version of ACE was downloaded as a big tarball from the ACE FTP
and repackaged as using uscan:
$ uscan --force-download --repack --verbose --watchfile debian/watch
* ACE+TAO-src-<version>.tar.bz2 is retrieved from:
http://download.dre.vanderbilt.edu/previous_versions/
The -src version does not contain pre-generated Makefiles. They are
regenerated in the buid process.
-- Thomas Girard <thomas.g.girard@free.fr>, Tue, 1 Jan 2013 20:32:49 +0100
-- Pau Garcia i Quiles <pgquiles@elpauer.org>, Mon, 18 Aug 2014 22:58:18 +0200
= New releases =
When preparing a new release, there are several things to remember:
- Refresh reduce-doxygen-doc.diff patch by invoking the following command
from toplevel directory:
$ debian/fix_doxygen.sh
- Regenerate the list of include files for libace-inet-dev and
libace-inet-ssl-dev:
From debian/tmp:
$ find . -type f | grep -vi https | grep -vi ssl --> These go to libace-inet-dev
The ones matching HTTPS or SSL go in libace-inet-ssl-dev.install:
usr/include/ace/INet/*SSL*
usr/include/ace/INet/*HTTPS*
But that might need updating if ACE_INet_SSL starts supporting FTPS or others
libace-inet-ssl-dev requires libace-inet-dev
Also, make sure none of the files in libace-inet-dev include anything from
libace-inet-ssl-dev. Test with:
From debian/tmp/usr/include/ace/INet:
$ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*ssl"
$ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*https"
(both should return nothing)
|