Merge version 2.4.46+dfsg-5+rpi1 and 2.4.47+dfsg-3 to produce 2.4.47+dfsg-3+rpi1 archive/raspbian/2.4.47+dfsg-3+rpi1 raspbian/2.4.47+dfsg-3+rpi1
authorRaspbian automatic forward porter <root@raspbian.org>
Thu, 21 Feb 2019 17:10:11 +0000 (17:10 +0000)
committerRaspbian automatic forward porter <root@raspbian.org>
Thu, 21 Feb 2019 17:10:11 +0000 (17:10 +0000)
1  2 
debian/changelog
debian/rules

index 34b048efc2ef4fe03239e86220237a09dde73cde,d3748973af5c0f3cedab111d65f46fff92d582e9..4175bdaf9bdaa467f7cd03ffb3d37f91a35ad19e
@@@ -1,9 -1,54 +1,61 @@@
- openldap (2.4.46+dfsg-5+rpi1) buster-staging; urgency=medium
++openldap (2.4.47+dfsg-3+rpi1) buster-staging; urgency=medium
 +
 +  [changes brought forward from 2.4.42+dfsg-1+rpi1 by Peter Michael Green <plugwash@raspbian.org> at Mon, 31 Aug 2015 16:17:47 +0000]
 +  * Disable testsuite.
 +
-  -- Raspbian forward porter <root@raspbian.org>  Mon, 14 May 2018 23:36:11 +0000
++ -- Raspbian forward porter <root@raspbian.org>  Thu, 21 Feb 2019 17:10:11 +0000
++
+ openldap (2.4.47+dfsg-3) unstable; urgency=medium
+   * Restore patches to contrib Makefiles to set CFLAGS, CPPFLAGS, and LDFLAGS
+     individually in the relevant command lines instead of overriding OPT. The
+     change to use OPT caused FTBFS on some ports arches where PIE enablement
+     uses spec files, by mixing compile-time and link-time flags.
+     (Closes: #919136)
+   * Fix architecture-specific path in smbk5pwd's binary-or-shlib-defines-rpath
+     Lintian override.
+   * Skip exporting cn=config to LDIF in preinst for upgrades where nothing
+     needs to be checked in it.
+   * Update Standards-Version to 4.3.0.
+  -- Ryan Tandy <ryan@nardis.ca>  Sat, 02 Feb 2019 10:30:10 -0800
+ openldap (2.4.47+dfsg-2) unstable; urgency=medium
+   * Reintroduce slapi-dev binary package. (Closes: #711469)
+     Thanks to Florian Schlichting.
+   * Do not call gnutls_global_set_mutex(). (Closes: #803197)
+   * Use dh_auto_* to build and install contrib modules.
+     - Stop patching the clean rule in smbk5pwd's Makefile.
+   * Explicitly list overlays and man pages installed by slapd package in
+     slapd.install and slapd.manpages files.
+   * Set common variables for contrib Makefiles by make(1) command line instead
+     of patching every Makefile.
+   * Build and install more contrib plugins in a new slapd-contrib package:
+     - pw-apr1 and pw-netscape (Closes: #592362)
+     - pw-pbkdf2 (Closes: #794999)
+   * Import the slapo-pw-pbkdf2 man page from upstream git master and install
+     it with the slapd-contrib package.
+   * Add smbk5pwd to slapd-contrib and turn slapd-smbk5pwd into a transitional
+     package. Drop smbk5pwd README since it now has a man page which is a
+     better resource for users.
+     - Use Breaks to ensure that slapd is not upgraded in between removing the
+       old smbk5pwd module and installing the new one.
+   * Include the apr1-atol.pl and apr1-lota.pl helper scripts in the
+     slapd-contrib package as examples.
+   * Merge remaining contrib Makefile patches into a single contrib-makefiles
+     patch.
+  -- Ryan Tandy <ryan@nardis.ca>  Sat, 12 Jan 2019 11:18:03 -0800
+ openldap (2.4.47+dfsg-1) unstable; urgency=medium
+   * New upstream release.
+     - reverted GnuTLS handshake change in libldap as it regressed slapd
+       (Reopens: #861838)
+   * Update Standards-Version to 4.2.1.
+  -- Ryan Tandy <ryan@nardis.ca>  Sun, 23 Dec 2018 12:50:40 -0800
  
  openldap (2.4.46+dfsg-5) unstable; urgency=medium
  
diff --cc debian/rules
index 02565d15cf657aac6fe8111683e4f88893400347,b6283e2b3c3e8c54fa5c6334bdbd33460d7b32aa..336c93ff735d97b6118331d98203d3fd40e81174
@@@ -218,25 -220,7 +220,10 @@@ ifeq ($(filter stage1,$(DEB_BUILD_PROFI
        fi
  
        # Clean the contrib directory
-       rm -rf contrib/slapd-modules/smbk5pwd/.libs \
-               contrib/slapd-modules/smbk5pwd/smbk5pwd.lo \
-               contrib/slapd-modules/smbk5pwd/smbk5pwd.la \
-               contrib/slapd-modules/smbk5pwd/smbk5pwd.o
-       rm -rf contrib/slapd-modules/autogroup/.libs \
-               contrib/slapd-modules/autogroup/autogroup.lo \
-               contrib/slapd-modules/autogroup/autogroup.la \
-               contrib/slapd-modules/autogroup/autogroup.o
-       rm -rf contrib/slapd-modules/lastbind/.libs \
-               contrib/slapd-modules/lastbind/lastbind.lo \
-               contrib/slapd-modules/lastbind/lastbind.la \
-               contrib/slapd-modules/lastbind/lastbind.o
-       rm -rf contrib/slapd-modules/passwd/sha2/.libs \
-               contrib/slapd-modules/passwd/sha2/pw-sha2.la \
-               contrib/slapd-modules/passwd/sha2/sha2.lo \
-               contrib/slapd-modules/passwd/sha2/sha2.o \
-               contrib/slapd-modules/passwd/sha2/slapd-sha2.lo \
-               contrib/slapd-modules/passwd/sha2/slapd-sha2.o
+       for mod in $(CONTRIB_MODULES); do \
+               dh_auto_clean -Dcontrib/slapd-modules/$$mod -Bcontrib/slapd-modules/$$mod || exit $?; \
+       done
  endif
 +
 +override_dh_auto_test:
 +      echo testsuite disabled.