forked from jengelh/openldap2
Accepting request 115043 from network:ldap
Update to 2.4.30, disabled testsuite OBS-URL: https://build.opensuse.org/request/show/115043 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openldap2?expand=0&rev=87
This commit is contained in:
commit
4ff42f7117
@ -1,4 +1,4 @@
|
||||
From e5b00828fc947aea5c6498ffffd4bfc29540c159 Mon Sep 17 00:00:00 2001
|
||||
From 2d683e4526fb4a2fe51c2db1ca9c3bf58a5b9108 Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Haferkamp <rhafer@suse.de>
|
||||
Date: Wed, 16 Jun 2010 14:04:07 +0200
|
||||
Subject: build-adjustments
|
||||
|
@ -1,4 +1,4 @@
|
||||
From e5dae6859ae9179c636531c94d1f86ba8821d4cc Mon Sep 17 00:00:00 2001
|
||||
From 3f6123db04734be9a355295db5163d6f61a60192 Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Haferkamp <rhafer@suse.de>
|
||||
Date: Wed, 16 Jun 2010 14:05:49 +0200
|
||||
Subject: slapd.conf
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 530f1d6f5af77523f041657021d49b177863861d Mon Sep 17 00:00:00 2001
|
||||
From 7dc48b5f81a7bccbffb64ce63d4af5b7cb220d71 Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Haferkamp <rhafer@suse.de>
|
||||
Date: Wed, 16 Jun 2010 14:06:42 +0200
|
||||
Subject: LDAPI socket location
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 3f733c7f1da53e613cf6d20f3886a679614a2d26 Mon Sep 17 00:00:00 2001
|
||||
From dbfd2d98e54c66bce8088c75a7f72c0436b83ae3 Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Haferkamp <rhafer@suse.de>
|
||||
Date: Wed, 16 Jun 2010 14:08:03 +0200
|
||||
Subject: libldap use gethostbyname_r
|
||||
|
@ -1,4 +1,4 @@
|
||||
From a40157559d5dc1658787d1cbbf5fa33a30d98880 Mon Sep 17 00:00:00 2001
|
||||
From fe4ee325a152e76be54786b4d25bad4e4f3f777e Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Haferkamp <rhafer@suse.de>
|
||||
Date: Fri, 12 Nov 2010 09:39:11 +0100
|
||||
Subject: pie compile
|
||||
|
@ -1,4 +1,4 @@
|
||||
From a994bf2d5f145d52ce7351468b4b897a4f65d3a4 Mon Sep 17 00:00:00 2001
|
||||
From 8cc8d5cf3ee9959c506449e0a0410c56d7e86693 Mon Sep 17 00:00:00 2001
|
||||
From: Cristian Rodriguez <cristian.rodriguez@opensuse.org>
|
||||
Date: Tue, 5 Oct 2010 13:59:40 +0200
|
||||
Subject: No Build date and time in binaries
|
||||
|
@ -1,4 +1,4 @@
|
||||
From ab9cfed7b0f7b77b9715ec01a267b523a12c63d0 Mon Sep 17 00:00:00 2001
|
||||
From ee929a83889bde9c657ccfce72880982a7f00d44 Mon Sep 17 00:00:00 2001
|
||||
From: Ralf Haferkamp <rhafer@suse.de>
|
||||
Date: Tue, 5 Oct 2010 14:20:22 +0200
|
||||
Subject: Recover on DB version change
|
||||
|
@ -1,227 +0,0 @@
|
||||
From 27f5cf4d4ebcef32c4102bbcc900b0d72383ddb9 Mon Sep 17 00:00:00 2001
|
||||
From: Howard Chu <hyc@openldap.org>
|
||||
Date: Sun, 12 Feb 2012 15:54:11 -0800
|
||||
Subject: syncrepl fixes post 2.4.29
|
||||
|
||||
ITS#6024 patch breaks MMR loop detection
|
||||
|
||||
diff --git a/servers/slapd/overlays/syncprov.c b/servers/slapd/overlays/syncprov.c
|
||||
index 8c6c296..e44c239 100644
|
||||
--- a/servers/slapd/overlays/syncprov.c
|
||||
+++ b/servers/slapd/overlays/syncprov.c
|
||||
@@ -822,7 +822,7 @@ syncprov_sendresp( Operation *op, opcookie *opc, syncops *so, int mode )
|
||||
{
|
||||
SlapReply rs = { REP_SEARCH };
|
||||
LDAPControl *ctrls[2];
|
||||
- struct berval cookie = BER_BVNULL, csns[2];
|
||||
+ struct berval cookie, csns[2];
|
||||
Entry e_uuid = {0};
|
||||
Attribute a_uuid = {0};
|
||||
|
||||
@@ -830,19 +830,17 @@ syncprov_sendresp( Operation *op, opcookie *opc, syncops *so, int mode )
|
||||
return SLAPD_ABANDON;
|
||||
|
||||
ctrls[1] = NULL;
|
||||
- if ( !BER_BVISNULL( &opc->sctxcsn )) {
|
||||
- csns[0] = opc->sctxcsn;
|
||||
- BER_BVZERO( &csns[1] );
|
||||
- slap_compose_sync_cookie( op, &cookie, csns, so->s_rid, slap_serverID ? slap_serverID : -1 );
|
||||
- }
|
||||
+ csns[0] = opc->sctxcsn;
|
||||
+ BER_BVZERO( &csns[1] );
|
||||
+ slap_compose_sync_cookie( op, &cookie, csns, so->s_rid, slap_serverID ? slap_serverID : -1 );
|
||||
|
||||
#ifdef LDAP_DEBUG
|
||||
if ( so->s_sid > 0 ) {
|
||||
Debug( LDAP_DEBUG_SYNC, "syncprov_sendresp: to=%03x, cookie=%s\n",
|
||||
- so->s_sid, cookie.bv_val ? cookie.bv_val : "", 0 );
|
||||
+ so->s_sid, cookie.bv_val, 0 );
|
||||
} else {
|
||||
Debug( LDAP_DEBUG_SYNC, "syncprov_sendresp: cookie=%s\n",
|
||||
- cookie.bv_val ? cookie.bv_val : "", 0, 0 );
|
||||
+ cookie.bv_val, 0, 0 );
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -851,9 +849,7 @@ syncprov_sendresp( Operation *op, opcookie *opc, syncops *so, int mode )
|
||||
a_uuid.a_nvals = &opc->suuid;
|
||||
rs.sr_err = syncprov_state_ctrl( op, &rs, &e_uuid,
|
||||
mode, ctrls, 0, 1, &cookie );
|
||||
- if ( !BER_BVISNULL( &cookie )) {
|
||||
- op->o_tmpfree( cookie.bv_val, op->o_tmpmemctx );
|
||||
- }
|
||||
+ op->o_tmpfree( cookie.bv_val, op->o_tmpmemctx );
|
||||
|
||||
rs.sr_ctrls = ctrls;
|
||||
rs.sr_entry = &e_uuid;
|
||||
diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c
|
||||
index 3938288..ff13ff9 100644
|
||||
--- a/servers/slapd/syncrepl.c
|
||||
+++ b/servers/slapd/syncrepl.c
|
||||
@@ -131,7 +131,7 @@ static int syncrepl_message_to_op(
|
||||
syncinfo_t *, Operation *, LDAPMessage * );
|
||||
static int syncrepl_message_to_entry(
|
||||
syncinfo_t *, Operation *, LDAPMessage *,
|
||||
- Modifications **, Entry **, int );
|
||||
+ Modifications **, Entry **, int, struct berval* );
|
||||
static int syncrepl_entry(
|
||||
syncinfo_t *, Operation*, Entry*,
|
||||
Modifications**,int, struct berval*,
|
||||
@@ -833,7 +833,7 @@ do_syncrep2(
|
||||
tout_p, &msg ) ) > 0 )
|
||||
{
|
||||
int match, punlock, syncstate;
|
||||
- struct berval *retdata, syncUUID, cookie = BER_BVNULL;
|
||||
+ struct berval *retdata, syncUUID[2], cookie = BER_BVNULL;
|
||||
char *retoid;
|
||||
LDAPControl **rctrls = NULL, *rctrlp = NULL;
|
||||
BerVarray syncUUIDs;
|
||||
@@ -885,7 +885,7 @@ do_syncrep2(
|
||||
goto done;
|
||||
}
|
||||
ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
|
||||
- if ( ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID )
|
||||
+ if ( ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID[0] )
|
||||
== LBER_ERROR ) {
|
||||
bdn.bv_val[bdn.bv_len] = '\0';
|
||||
Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s malformed message (%s)\n",
|
||||
@@ -896,7 +896,7 @@ do_syncrep2(
|
||||
}
|
||||
/* FIXME: what if syncUUID is NULL or empty?
|
||||
* (happens with back-sql...) */
|
||||
- if ( BER_BVISEMPTY( &syncUUID ) ) {
|
||||
+ if ( BER_BVISEMPTY( &syncUUID[0] ) ) {
|
||||
bdn.bv_val[bdn.bv_len] = '\0';
|
||||
Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
|
||||
"got empty syncUUID with LDAP_SYNC_%s (%s)\n",
|
||||
@@ -1007,10 +1007,10 @@ do_syncrep2(
|
||||
break;
|
||||
}
|
||||
} else if ( ( rc = syncrepl_message_to_entry( si, op, msg,
|
||||
- &modlist, &entry, syncstate ) ) == LDAP_SUCCESS )
|
||||
+ &modlist, &entry, syncstate, syncUUID ) ) == LDAP_SUCCESS )
|
||||
{
|
||||
if ( ( rc = syncrepl_entry( si, op, entry, &modlist,
|
||||
- syncstate, &syncUUID, syncCookie.ctxcsn ) ) == LDAP_SUCCESS &&
|
||||
+ syncstate, syncUUID, syncCookie.ctxcsn ) ) == LDAP_SUCCESS &&
|
||||
syncCookie.ctxcsn )
|
||||
{
|
||||
rc = syncrepl_updateCookie( si, op, &syncCookie );
|
||||
@@ -2415,7 +2415,8 @@ syncrepl_message_to_entry(
|
||||
LDAPMessage *msg,
|
||||
Modifications **modlist,
|
||||
Entry **entry,
|
||||
- int syncstate
|
||||
+ int syncstate,
|
||||
+ struct berval *syncUUID
|
||||
)
|
||||
{
|
||||
Entry *e = NULL;
|
||||
@@ -2457,6 +2458,14 @@ syncrepl_message_to_entry(
|
||||
return LDAP_OTHER;
|
||||
}
|
||||
|
||||
+ /* syncUUID[0] is normalized UUID received over the wire
|
||||
+ * syncUUID[1] is denormalized UUID, generated here
|
||||
+ */
|
||||
+ (void)slap_uuidstr_from_normalized( &syncUUID[1], &syncUUID[0], op->o_tmpmemctx );
|
||||
+ Debug( LDAP_DEBUG_SYNC,
|
||||
+ "syncrepl_message_to_entry: %s DN: %s, UUID: %s\n",
|
||||
+ si->si_ridtxt, bdn.bv_val, syncUUID[1].bv_val );
|
||||
+
|
||||
if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
|
||||
/* NOTE: this could be done even before decoding the DN,
|
||||
* although encoding errors wouldn't be detected */
|
||||
@@ -2677,7 +2686,6 @@ syncrepl_entry(
|
||||
Backend *be = op->o_bd;
|
||||
slap_callback cb = { NULL, NULL, NULL, NULL };
|
||||
int syncuuid_inserted = 0;
|
||||
- struct berval syncUUID_strrep = BER_BVNULL;
|
||||
|
||||
SlapReply rs_search = {REP_RESULT};
|
||||
Filter f = {0};
|
||||
@@ -2707,14 +2715,13 @@ syncrepl_entry(
|
||||
}
|
||||
}
|
||||
|
||||
- (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
|
||||
if ( syncstate != LDAP_SYNC_DELETE ) {
|
||||
Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
|
||||
|
||||
if ( a == NULL ) {
|
||||
/* add if missing */
|
||||
attr_merge_one( entry, slap_schema.si_ad_entryUUID,
|
||||
- &syncUUID_strrep, syncUUID );
|
||||
+ &syncUUID[1], syncUUID );
|
||||
|
||||
} else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
|
||||
/* replace only if necessary */
|
||||
@@ -2723,7 +2730,7 @@ syncrepl_entry(
|
||||
ber_dupbv( &a->a_nvals[0], syncUUID );
|
||||
}
|
||||
ber_memfree( a->a_vals[0].bv_val );
|
||||
- ber_dupbv( &a->a_vals[0], &syncUUID_strrep );
|
||||
+ ber_dupbv( &a->a_vals[0], &syncUUID[1] );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2734,16 +2741,16 @@ syncrepl_entry(
|
||||
|
||||
if ( syncuuid_inserted ) {
|
||||
Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s inserted UUID %s\n",
|
||||
- si->si_ridtxt, syncUUID_strrep.bv_val, 0 );
|
||||
+ si->si_ridtxt, syncUUID[1].bv_val, 0 );
|
||||
}
|
||||
op->ors_filter = &f;
|
||||
|
||||
- op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID_strrep.bv_len;
|
||||
+ op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID[1].bv_len;
|
||||
op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
|
||||
op->ors_filterstr.bv_len + 1, op->o_tmpmemctx );
|
||||
AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
|
||||
AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
|
||||
- syncUUID_strrep.bv_val, syncUUID_strrep.bv_len );
|
||||
+ syncUUID[1].bv_val, syncUUID[1].bv_len );
|
||||
op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
|
||||
op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
|
||||
|
||||
@@ -2820,23 +2827,6 @@ syncrepl_entry(
|
||||
*/
|
||||
op->o_csn = a->a_vals[0];
|
||||
freecsn = 0;
|
||||
- /* There was no cookie CSN attached to this op,
|
||||
- * make sure it's new enough
|
||||
- */
|
||||
- if ( !syncCSN ) {
|
||||
- int i, sid = slap_parse_csn_sid( &a->a_vals[0] );
|
||||
- for ( i = 0; i<si->si_cookieState->cs_num; i++ ) {
|
||||
- if ( sid < si->si_cookieState->cs_sids[i] )
|
||||
- break;
|
||||
- if ( sid == si->si_cookieState->cs_sids[i] ) {
|
||||
- if ( ber_bvcmp( &a->a_vals[0], &si->si_cookieState->cs_vals[i] ) <= 0 ) {
|
||||
- Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s entryCSN too old, ignoring %s (%s)\n",
|
||||
- si->si_ridtxt, a->a_vals[0].bv_val, entry->e_name.bv_val );
|
||||
- goto done;
|
||||
- }
|
||||
- }
|
||||
- }
|
||||
- }
|
||||
}
|
||||
}
|
||||
retry_add:;
|
||||
@@ -3229,10 +3219,8 @@ retry_modrdn:;
|
||||
}
|
||||
|
||||
done:
|
||||
- if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
|
||||
- slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
|
||||
- BER_BVZERO( &syncUUID_strrep );
|
||||
- }
|
||||
+ slap_sl_free( syncUUID[1].bv_val, op->o_tmpmemctx );
|
||||
+ BER_BVZERO( &syncUUID[1] );
|
||||
if ( !BER_BVISNULL( &dni.ndn ) ) {
|
||||
op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
|
||||
}
|
||||
--
|
||||
1.7.7
|
||||
|
@ -1,114 +0,0 @@
|
||||
From 867663c9b0f3468d16ba63340340edfadd8722bb Mon Sep 17 00:00:00 2001
|
||||
From: Howard Chu <hyc@openldap.org>
|
||||
Date: Mon, 20 Feb 2012 14:51:30 -0800
|
||||
Subject: ITS#7167 only poll sockets for write as needed
|
||||
|
||||
|
||||
diff --git a/libraries/libldap/ldap-int.h b/libraries/libldap/ldap-int.h
|
||||
index b4261a1..1ef15ad 100644
|
||||
--- a/libraries/libldap/ldap-int.h
|
||||
+++ b/libraries/libldap/ldap-int.h
|
||||
@@ -624,6 +624,7 @@ LDAP_F (void) ldap_free_select_info( void *sip );
|
||||
LDAP_F (void) ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
|
||||
LDAP_F (void) ldap_mark_select_read( LDAP *ld, Sockbuf *sb );
|
||||
LDAP_F (void) ldap_mark_select_clear( LDAP *ld, Sockbuf *sb );
|
||||
+LDAP_F (void) ldap_clear_select_write( LDAP *ld, Sockbuf *sb );
|
||||
LDAP_F (int) ldap_is_read_ready( LDAP *ld, Sockbuf *sb );
|
||||
LDAP_F (int) ldap_is_write_ready( LDAP *ld, Sockbuf *sb );
|
||||
|
||||
diff --git a/libraries/libldap/open.c b/libraries/libldap/open.c
|
||||
index 6b92ba6..a920953 100644
|
||||
--- a/libraries/libldap/open.c
|
||||
+++ b/libraries/libldap/open.c
|
||||
@@ -344,7 +344,6 @@ ldap_init_fd(
|
||||
|
||||
/* Add the connection to the *LDAP's select pool */
|
||||
ldap_mark_select_read( ld, conn->lconn_sb );
|
||||
- ldap_mark_select_write( ld, conn->lconn_sb );
|
||||
|
||||
*ldp = ld;
|
||||
return LDAP_SUCCESS;
|
||||
@@ -502,7 +501,6 @@ ldap_open_internal_connection( LDAP **ldp, ber_socket_t *fdp )
|
||||
|
||||
/* Add the connection to the *LDAP's select pool */
|
||||
ldap_mark_select_read( ld, c->lconn_sb );
|
||||
- ldap_mark_select_write( ld, c->lconn_sb );
|
||||
|
||||
/* Make this connection an LDAP V3 protocol connection */
|
||||
rc = LDAP_VERSION3;
|
||||
diff --git a/libraries/libldap/os-ip.c b/libraries/libldap/os-ip.c
|
||||
index daa765e..2864256 100644
|
||||
--- a/libraries/libldap/os-ip.c
|
||||
+++ b/libraries/libldap/os-ip.c
|
||||
@@ -966,6 +966,32 @@ ldap_mark_select_clear( LDAP *ld, Sockbuf *sb )
|
||||
#endif
|
||||
}
|
||||
|
||||
+void
|
||||
+ldap_clear_select_write( LDAP *ld, Sockbuf *sb )
|
||||
+{
|
||||
+ struct selectinfo *sip;
|
||||
+ ber_socket_t sd;
|
||||
+
|
||||
+ sip = (struct selectinfo *)ld->ld_selectinfo;
|
||||
+
|
||||
+ ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
|
||||
+
|
||||
+#ifdef HAVE_POLL
|
||||
+ /* for UNIX poll(2) */
|
||||
+ {
|
||||
+ int i;
|
||||
+ for(i=0; i < sip->si_maxfd; i++) {
|
||||
+ if( sip->si_fds[i].fd == sd ) {
|
||||
+ sip->si_fds[i].events &= ~POLL_WRITE;
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+#else
|
||||
+ /* for UNIX select(2) */
|
||||
+ FD_CLR( sd, &sip->si_writefds );
|
||||
+#endif
|
||||
+}
|
||||
+
|
||||
|
||||
int
|
||||
ldap_is_write_ready( LDAP *ld, Sockbuf *sb )
|
||||
diff --git a/libraries/libldap/request.c b/libraries/libldap/request.c
|
||||
index 88190a2..071391d 100644
|
||||
--- a/libraries/libldap/request.c
|
||||
+++ b/libraries/libldap/request.c
|
||||
@@ -202,6 +202,7 @@ ldap_int_flush_request(
|
||||
|
||||
/* sent -- waiting for a response */
|
||||
ldap_mark_select_read( ld, lc->lconn_sb );
|
||||
+ ldap_clear_select_write( ld, lc->lconn_sb );
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
diff --git a/libraries/libldap/result.c b/libraries/libldap/result.c
|
||||
index b6e8e75..7241df9 100644
|
||||
--- a/libraries/libldap/result.c
|
||||
+++ b/libraries/libldap/result.c
|
||||
@@ -302,7 +302,7 @@ wait4msg(
|
||||
if ( ber_sockbuf_ctrl( lc->lconn_sb,
|
||||
LBER_SB_OPT_DATA_READY, NULL ) )
|
||||
{
|
||||
- lc_ready = 1;
|
||||
+ lc_ready = 2; /* ready at ber level, not socket level */
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -373,8 +373,8 @@ wait4msg(
|
||||
}
|
||||
}
|
||||
LDAP_MUTEX_UNLOCK( &ld->ld_req_mutex );
|
||||
- /* Quit looping if no one handled any events */
|
||||
- if (!serviced)
|
||||
+ /* Quit looping if no one handled any socket events */
|
||||
+ if (!serviced && lc_ready == 1)
|
||||
rc = -1;
|
||||
}
|
||||
LDAP_MUTEX_UNLOCK( &ld->ld_conn_mutex );
|
||||
--
|
||||
1.7.7
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:44e95acab6c94b53723a451bd272c10f4f596f42bf26593ab84bb399d053c1e1
|
||||
size 5439978
|
3
openldap-2.4.30.tgz
Normal file
3
openldap-2.4.30.tgz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc013e528616f8578d9f221409c48af9b8937a62005e0bec88f6f1c4c8ff3d81
|
||||
size 5440261
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 23 07:08:13 UTC 2012 - rhafer@suse.de
|
||||
|
||||
- Disabled testsuite for now. Causes problems in the buildserivce
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 6 12:23:35 UTC 2012 - rhafer@suse.de
|
||||
|
||||
- Update to 2.4.30
|
||||
* Fixed libldap socket polling for writes (ITS#7167)
|
||||
* Fixed liblutil string modifications (ITS#7174)
|
||||
* Fixed slapd crash when attrsOnly is true (ITS#7143)
|
||||
* Fixed slapd syncrepl delete handling (ITS#7052,ITS#7162)
|
||||
* Fixed slapo-pcache time-to-refesh handling (ITS#7178)
|
||||
* Fixed slapo-syncprov loop detection (ITS#6024)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 27 14:14:23 UTC 2012 - rhafer@suse.de
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package openldap2-client
|
||||
# spec file for package openldap2
|
||||
#
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -15,34 +15,41 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define run_test_suite 1
|
||||
%define run_test_suite 0
|
||||
|
||||
Name: openldap2-client
|
||||
BuildRequires: cyrus-sasl-devel libopenssl-devel libtool
|
||||
%if %sles_version == 9 || %sles_version == 10
|
||||
BuildRequires: -libopenssl-devel -pwdutils openssl-devel
|
||||
%endif
|
||||
Version: 2.4.29
|
||||
Release: 1
|
||||
Url: http://www.openldap.org
|
||||
Name: openldap2-client
|
||||
License: OLDAP-2.8
|
||||
%if "%{name}" == "openldap2"
|
||||
BuildRequires: db-devel openslp-devel tcpd-devel unixODBC-devel
|
||||
BuildRequires: cyrus-sasl-devel
|
||||
BuildRequires: libopenssl-devel
|
||||
BuildRequires: libtool
|
||||
%if %sles_version == 9 || %sles_version == 10
|
||||
BuildRequires: -db-devel libdb-4_5-devel
|
||||
BuildRequires: -libopenssl-devel
|
||||
BuildRequires: -pwdutils
|
||||
BuildRequires: openssl-devel
|
||||
%endif
|
||||
Version: 2.4.30
|
||||
Release: 0
|
||||
Url: http://www.openldap.org
|
||||
%if "%{name}" == "openldap2"
|
||||
BuildRequires: db-devel
|
||||
BuildRequires: openslp-devel
|
||||
BuildRequires: tcpd-devel
|
||||
BuildRequires: unixODBC-devel
|
||||
%if %sles_version == 9 || %sles_version == 10
|
||||
BuildRequires: -db-devel
|
||||
BuildRequires: libdb-4_5-devel
|
||||
%endif
|
||||
Group: Productivity/Networking/LDAP/Clients
|
||||
Conflicts: openldap
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd /usr/bin/grep
|
||||
Summary: The OpenLDAP commandline client tools
|
||||
%else
|
||||
Summary: The OpenLDAP Server
|
||||
Group: Productivity/Networking/LDAP/Clients
|
||||
%else
|
||||
Conflicts: openldap-client
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
Summary: The OpenLDAP commandline client tools
|
||||
Group: Productivity/Networking/LDAP/Clients
|
||||
%endif
|
||||
Source: openldap-%{version}.tgz
|
||||
Source1: openldap-rc.tgz
|
||||
@ -60,8 +67,6 @@ Patch4: 0004-libldap-use-gethostbyname_r.dif
|
||||
Patch5: 0005-pie-compile.dif
|
||||
Patch6: 0006-No-Build-date-and-time-in-binaries.dif
|
||||
Patch7: 0007-Recover-on-DB-version-change.dif
|
||||
Patch8: 0008-syncrepl-fixes-post-2.4.29.dif
|
||||
Patch9: 0009-ITS-7167-only-poll-sockets-for-write-as-needed.dif
|
||||
Patch100: openldap-2.3.37.dif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "openldap2"
|
||||
@ -72,12 +77,11 @@ online directory services. It runs directly over TCP and can be used to
|
||||
access a stand-alone LDAP directory service or to access a directory
|
||||
service that has an X.500 back-end.
|
||||
|
||||
This package contains the OpenLDAP client utilities.
|
||||
|
||||
%package -n openldap2-back-perl
|
||||
Summary: OpenLDAP Perl Back-End
|
||||
Requires: openldap2 = %{version} perl = %{perl_version}
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Requires: openldap2 = %{version}
|
||||
Requires: perl = %{perl_version}
|
||||
|
||||
%description -n openldap2-back-perl
|
||||
The OpenLDAP Perl back-end allows you to execute Perl code specific to
|
||||
@ -85,8 +89,8 @@ different LDAP operations.
|
||||
|
||||
%package -n openldap2-back-meta
|
||||
Summary: OpenLDAP Meta Back-End
|
||||
Requires: openldap2 = %{version}
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Requires: openldap2 = %{version}
|
||||
Provides: openldap2:/usr/share/man/man5/slapd-meta.5.gz
|
||||
|
||||
%description -n openldap2-back-meta
|
||||
@ -97,8 +101,8 @@ Information Tree (DIT).
|
||||
|
||||
%package -n openldap2-back-sql
|
||||
Summary: OpenLDAP SQL Back-End
|
||||
Requires: openldap2 = %{version}
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Requires: openldap2 = %{version}
|
||||
|
||||
%description -n openldap2-back-sql
|
||||
The primary purpose of this OpenLDAP backend is to present information
|
||||
@ -119,15 +123,11 @@ The OpenLDAP Admin Guide plus a set of OpenLDAP related IETF internet drafts
|
||||
%else
|
||||
|
||||
%description
|
||||
The Lightweight Directory Access Protocol (LDAP) is used to access
|
||||
online directory services. It runs directly over TCP and can be used to
|
||||
access a stand-alone LDAP directory service or to access a directory
|
||||
service that has an X.500 back-end.
|
||||
|
||||
This package contains the OpenLDAP client utilities.
|
||||
|
||||
%package -n openldap2-devel
|
||||
Summary: Libraries, Header Files and Documentation for OpenLDAP
|
||||
Group: Development/Libraries/C and C++
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: openldap2-devel-64bit
|
||||
@ -135,11 +135,14 @@ Obsoletes: openldap2-devel-64bit
|
||||
#
|
||||
Conflicts: openldap-devel
|
||||
%if %suse_version >= 1110
|
||||
Requires: libldap-2_4-2 = %{version} cyrus-sasl-devel libopenssl-devel
|
||||
Requires: cyrus-sasl-devel
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
Requires: libopenssl-devel
|
||||
%else
|
||||
Requires: libldap-2_4-2 = %{version} cyrus-sasl-devel openssl-devel
|
||||
Requires: cyrus-sasl-devel
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
Requires: openssl-devel
|
||||
%endif
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description -n openldap2-devel
|
||||
This package provides the OpenLDAP libraries, header files, and
|
||||
@ -163,8 +166,6 @@ This package contains the OpenLDAP client libraries.
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
cp %{SOURCE5} .
|
||||
cp %{SOURCE6} .
|
||||
cd ../openldap-2.3.37
|
||||
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 23 07:08:13 UTC 2012 - rhafer@suse.de
|
||||
|
||||
- Disabled testsuite for now. Causes problems in the buildserivce
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 6 12:23:35 UTC 2012 - rhafer@suse.de
|
||||
|
||||
- Update to 2.4.30
|
||||
* Fixed libldap socket polling for writes (ITS#7167)
|
||||
* Fixed liblutil string modifications (ITS#7174)
|
||||
* Fixed slapd crash when attrsOnly is true (ITS#7143)
|
||||
* Fixed slapd syncrepl delete handling (ITS#7052,ITS#7162)
|
||||
* Fixed slapo-pcache time-to-refesh handling (ITS#7178)
|
||||
* Fixed slapo-syncprov loop detection (ITS#6024)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 27 14:14:23 UTC 2012 - rhafer@suse.de
|
||||
|
||||
|
@ -15,34 +15,41 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define run_test_suite 1
|
||||
%define run_test_suite 0
|
||||
|
||||
Name: openldap2
|
||||
BuildRequires: cyrus-sasl-devel libopenssl-devel libtool
|
||||
%if %sles_version == 9 || %sles_version == 10
|
||||
BuildRequires: -libopenssl-devel -pwdutils openssl-devel
|
||||
%endif
|
||||
Version: 2.4.29
|
||||
Release: 1
|
||||
Url: http://www.openldap.org
|
||||
License: OLDAP-2.8
|
||||
%if "%{name}" == "openldap2"
|
||||
BuildRequires: db-devel openslp-devel tcpd-devel unixODBC-devel
|
||||
BuildRequires: cyrus-sasl-devel
|
||||
BuildRequires: libopenssl-devel
|
||||
BuildRequires: libtool
|
||||
%if %sles_version == 9 || %sles_version == 10
|
||||
BuildRequires: -db-devel libdb-4_5-devel
|
||||
BuildRequires: -libopenssl-devel
|
||||
BuildRequires: -pwdutils
|
||||
BuildRequires: openssl-devel
|
||||
%endif
|
||||
Version: 2.4.30
|
||||
Release: 0
|
||||
Url: http://www.openldap.org
|
||||
%if "%{name}" == "openldap2"
|
||||
BuildRequires: db-devel
|
||||
BuildRequires: openslp-devel
|
||||
BuildRequires: tcpd-devel
|
||||
BuildRequires: unixODBC-devel
|
||||
%if %sles_version == 9 || %sles_version == 10
|
||||
BuildRequires: -db-devel
|
||||
BuildRequires: libdb-4_5-devel
|
||||
%endif
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Conflicts: openldap
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd /usr/bin/grep
|
||||
Summary: The OpenLDAP Server
|
||||
%else
|
||||
Group: Productivity/Networking/LDAP/Clients
|
||||
%else
|
||||
Conflicts: openldap-client
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
Summary: The OpenLDAP commandline client tools
|
||||
Group: Productivity/Networking/LDAP/Clients
|
||||
%endif
|
||||
Source: openldap-%{version}.tgz
|
||||
Source1: openldap-rc.tgz
|
||||
@ -60,8 +67,6 @@ Patch4: 0004-libldap-use-gethostbyname_r.dif
|
||||
Patch5: 0005-pie-compile.dif
|
||||
Patch6: 0006-No-Build-date-and-time-in-binaries.dif
|
||||
Patch7: 0007-Recover-on-DB-version-change.dif
|
||||
Patch8: 0008-syncrepl-fixes-post-2.4.29.dif
|
||||
Patch9: 0009-ITS-7167-only-poll-sockets-for-write-as-needed.dif
|
||||
Patch100: openldap-2.3.37.dif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if "%{name}" == "openldap2"
|
||||
@ -74,8 +79,9 @@ service that has an X.500 back-end.
|
||||
|
||||
%package -n openldap2-back-perl
|
||||
Summary: OpenLDAP Perl Back-End
|
||||
Requires: openldap2 = %{version} perl = %{perl_version}
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Requires: openldap2 = %{version}
|
||||
Requires: perl = %{perl_version}
|
||||
|
||||
%description -n openldap2-back-perl
|
||||
The OpenLDAP Perl back-end allows you to execute Perl code specific to
|
||||
@ -83,8 +89,8 @@ different LDAP operations.
|
||||
|
||||
%package -n openldap2-back-meta
|
||||
Summary: OpenLDAP Meta Back-End
|
||||
Requires: openldap2 = %{version}
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Requires: openldap2 = %{version}
|
||||
Provides: openldap2:/usr/share/man/man5/slapd-meta.5.gz
|
||||
|
||||
%description -n openldap2-back-meta
|
||||
@ -95,8 +101,8 @@ Information Tree (DIT).
|
||||
|
||||
%package -n openldap2-back-sql
|
||||
Summary: OpenLDAP SQL Back-End
|
||||
Requires: openldap2 = %{version}
|
||||
Group: Productivity/Networking/LDAP/Servers
|
||||
Requires: openldap2 = %{version}
|
||||
|
||||
%description -n openldap2-back-sql
|
||||
The primary purpose of this OpenLDAP backend is to present information
|
||||
@ -121,6 +127,7 @@ This package contains the OpenLDAP client utilities.
|
||||
|
||||
%package -n openldap2-devel
|
||||
Summary: Libraries, Header Files and Documentation for OpenLDAP
|
||||
Group: Development/Libraries/C and C++
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: openldap2-devel-64bit
|
||||
@ -128,11 +135,14 @@ Obsoletes: openldap2-devel-64bit
|
||||
#
|
||||
Conflicts: openldap-devel
|
||||
%if %suse_version >= 1110
|
||||
Requires: libldap-2_4-2 = %{version} cyrus-sasl-devel libopenssl-devel
|
||||
Requires: cyrus-sasl-devel
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
Requires: libopenssl-devel
|
||||
%else
|
||||
Requires: libldap-2_4-2 = %{version} cyrus-sasl-devel openssl-devel
|
||||
Requires: cyrus-sasl-devel
|
||||
Requires: libldap-2_4-2 = %{version}
|
||||
Requires: openssl-devel
|
||||
%endif
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description -n openldap2-devel
|
||||
This package provides the OpenLDAP libraries, header files, and
|
||||
@ -156,8 +166,6 @@ This package contains the OpenLDAP client libraries.
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
cp %{SOURCE5} .
|
||||
cp %{SOURCE6} .
|
||||
cd ../openldap-2.3.37
|
||||
|
Loading…
Reference in New Issue
Block a user