Skip to content
Commits on Source (2)
openldap (2.4.46+dfsg-4) unstable; urgency=medium
* Disable building the smbk5pwd plugin temporarily.
-- Ryan Tandy <ryan@nardis.ca> Fri, 04 May 2018 08:06:58 -0700
openldap (2.4.46+dfsg-3) unstable; urgency=medium
* Build without heimdal temporarily to resolve BD-Uninstallable loop.
-- Ryan Tandy <ryan@nardis.ca> Fri, 04 May 2018 07:36:58 -0700
openldap (2.4.46+dfsg-2) unstable; urgency=medium
* Remove version constraint from libldap-2.4-2 dependency on libldap-common.
......
......@@ -8,7 +8,7 @@ Uploaders: Steve Langasek <vorlon@debian.org>,
Build-Depends: debhelper (>= 10),
dpkg-dev (>= 1.17.14),
groff-base,
heimdal-multidev (>= 7.4.0.dfsg.1-1~) <!stage1>,
# heimdal-multidev (>= 7.4.0.dfsg.1-1~) <!stage1>,
libdb5.3-dev <!stage1>,
libgnutls28-dev,
libltdl-dev <!stage1>,
......@@ -43,15 +43,15 @@ Description: OpenLDAP server (slapd)
(slapd). The server can be used to provide a standalone directory
service.
Package: slapd-smbk5pwd
Architecture: any
Build-Profiles: <!stage1>
Depends: slapd (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Description: Keeps Samba and Kerberos passwords in sync within slapd.
Extends the PasswordModify Extended Operation to update Kerberos keys
and Samba password hashes for an LDAP user. The Kerberos support is
written for Heimdal using its hdb-ldap backend. The Samba support is
written using the Samba 3.0 LDAP schema.
#Package: slapd-smbk5pwd
#Architecture: any
#Build-Profiles: <!stage1>
#Depends: slapd (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
#Description: Keeps Samba and Kerberos passwords in sync within slapd.
# Extends the PasswordModify Extended Operation to update Kerberos keys
# and Samba password hashes for an LDAP user. The Kerberos support is
# written for Heimdal using its hdb-ldap backend. The Samba support is
# written using the Samba 3.0 LDAP schema.
Package: ldap-utils
Architecture: any
......
......@@ -103,7 +103,7 @@ override_dh_auto_configure:
override_dh_auto_build:
dh_auto_build -- $(MAKEVARS)
ifeq ($(filter stage1,$(DEB_BUILD_PROFILES)),)
$(MAKE) -C contrib/slapd-modules/smbk5pwd CC=$(CC)
# $(MAKE) -C contrib/slapd-modules/smbk5pwd CC=$(CC)
$(MAKE) -C contrib/slapd-modules/autogroup CC=$(CC)
$(MAKE) -C contrib/slapd-modules/lastbind CC=$(CC)
$(MAKE) -C contrib/slapd-modules/passwd/sha2 CC=$(CC)
......@@ -119,7 +119,7 @@ endif
override_dh_auto_install:
dh_auto_install -- $(MAKEVARS)
ifeq ($(filter stage1,$(DEB_BUILD_PROFILES)),)
$(MAKE) -C contrib/slapd-modules/smbk5pwd install DESTDIR=$(installdir)
# $(MAKE) -C contrib/slapd-modules/smbk5pwd install DESTDIR=$(installdir)
$(MAKE) -C contrib/slapd-modules/autogroup install DESTDIR=$(installdir)
$(MAKE) -C contrib/slapd-modules/lastbind install DESTDIR=$(installdir)
$(MAKE) -C contrib/slapd-modules/passwd/sha2 install DESTDIR=$(installdir)
......