Files needed to build LDAP Tool Box OpenLDAP Debian packages
See http://ltb-project.org/wiki/documentation/openldap-deb
See http://ltb-project.org/wiki/download#packages_for_debianubuntu
Install dependencies:
apt install build-essential
apt install autoconf automake autotools-dev debhelper dh-make devscripts fakeroot file gnupg git lintian patch patchutils pbuilder curl
apt install libltdl7 libltdl-dev libsasl2-2 libsasl2-dev zlib1g zlib1g-dev openssl libssl-dev mime-support mawk libcrack2-dev libwrap0-dev libevent-dev libsodium23 libsodium-dev pandoc
Get the sources:
cd /opt
git clone [email protected]:ltb-project/openldap-deb.git
Get latest slapd release: (replace Y by slapd version)
curl -O ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.5.Y.tgz
tar xvzf openldap-2.5.Y.tgz
cp -r openldap-2.5.Y/* openldap-ltb/
Get the source of the latest slapd-cli release: (replace N by slapd-cli version)
cd 3rdparty
curl -O https://codeload.github.com/ltb-project/slapd-cli/tar.gz/refs/tags/vN
tar xvzf slapd-cli-vN.tar.gz
Get the source of explockout overlay: (replace N by explockout version)
cd 3rdparty
curl -O https://codeload.github.com/ltb-project/explockout/tar.gz/refs/tags/vN
tar xvzf explockout-vN.tar.gz
Get the source of ppm release: (replace N by ppm version)
cd 3rdparty
curl -O https://codeload.github.com/ltb-project/ppm/tar.gz/refs/tags/vN
tar xvzf ppm-vN.tar.gz
Import some variables:
DEBEMAIL="[email protected]"
DEBFULLNAME="David Coutadeur"
export DEBEMAIL DEBFULLNAME
general parameters for building a package (being in the package directory):
debian/rules clean
debian/rules build
debian/rules binary
building the source package (with no signing). Take care to create openldap-ltb_2.5.Y.orig.tar.gz
from original OpenLDAP package:
dpkg-buildpackage -us -uc
On one environment, prepare the move to the new version and write the changes in the changelog file:
cd openldap-ltb
dch -v 2.5.Y.1
Update to new version in variable file:
cd debian
sed -i "s/2\.5\.X/2.5.Y/g" openldap-ltb.vars
On every environment, get the previous changes, and do the following:
Update distribution:
apt update
apt upgrade
Get the new archive, and extract it into the directory:
curl -O ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.5.Y.tgz
tar xvzf openldap-2.5.Y.tgz
cp -r openldap-2.5.Y/* openldap-ltb/
Adapt control files for libsodium:
For Debian 9:
- in
debian/control
file, delete any reference to libsodium in Depends and Build-depends lines - in
debian/openldap-ltb-contrib-overlays.install
, delete the lineusr/local/openldap/libexec/openldap/pw-argon2.*
Optionally, update the 3dparty directory with new release of other tools (slapd-cli)
Regenerate the package thanks to the usual procedure
Test package
If package is ok, create tag:
git tag v2.5.Y
git push --tags origin