Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46
@ 2018-04-02 11:27 Bernd Kuhls
  2018-04-02 11:27 ` [Buildroot] [PATCH 2/2] package/openldap: add support for libressl Bernd Kuhls
  2018-04-02 15:40 ` [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46 Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2018-04-02 11:27 UTC (permalink / raw)
  To: buildroot

Changelog: https://www.openldap.org/software/release/changes.html

Added sha256 hashes for tarball and license.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/openldap/openldap.hash | 11 +++++++----
 package/openldap/openldap.mk   |  2 +-
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/package/openldap/openldap.hash b/package/openldap/openldap.hash
index aec4aaebfd..37e2673c4b 100644
--- a/package/openldap/openldap.hash
+++ b/package/openldap/openldap.hash
@@ -1,4 +1,7 @@
-# From http://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.4.45.md5
-md5 00ff8301277cdfd0af728a6927042a13  openldap-2.4.45.tgz
-# From http://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.4.45.sha1
-sha1 c98437385d3eaee80c9e2c09f3f0d4b7c140233d  openldap-2.4.45.tgz
+# From http://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.4.46.md5
+md5 829016c5a9f45c51adc50073ac6f9fd7  openldap-2.4.46.tgz
+# From http://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.4.46.sha1
+sha1 a9ae2273eb9bdd70090dafe0d018a3132606bef6  openldap-2.4.46.tgz
+# Locally computed
+sha256 9a90dcb86b99ae790ccab93b7585a31fbcbeec8c94bf0f7ab0ca0a87ea0c4b2d  openldap-2.4.46.tgz
+sha256 310fe25c858a9515fc8c8d7d1f24a67c9496f84a91e0a0e41ea9975b1371e569  LICENSE
diff --git a/package/openldap/openldap.mk b/package/openldap/openldap.mk
index 2bf6fc3f27..6dd2390923 100644
--- a/package/openldap/openldap.mk
+++ b/package/openldap/openldap.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-OPENLDAP_VERSION = 2.4.45
+OPENLDAP_VERSION = 2.4.46
 OPENLDAP_SOURCE = openldap-$(OPENLDAP_VERSION).tgz
 OPENLDAP_SITE = http://www.openldap.org/software/download/OpenLDAP/openldap-release
 OPENLDAP_LICENSE = OpenLDAP Public License
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/2] package/openldap: add support for libressl
  2018-04-02 11:27 [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46 Bernd Kuhls
@ 2018-04-02 11:27 ` Bernd Kuhls
  2018-04-02 15:40 ` [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46 Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Bernd Kuhls @ 2018-04-02 11:27 UTC (permalink / raw)
  To: buildroot

Openldap builds fine with current libressl 2.7.2.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/openldap/openldap.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/openldap/openldap.mk b/package/openldap/openldap.mk
index 6dd2390923..3f00f2b7df 100644
--- a/package/openldap/openldap.mk
+++ b/package/openldap/openldap.mk
@@ -12,9 +12,9 @@ OPENLDAP_LICENSE_FILES = LICENSE
 OPENLDAP_INSTALL_STAGING = YES
 OPENLDAP_DEPENDENCIES = host-pkgconf
 
-ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
 OPENLDAP_TLS = openssl
-OPENLDAP_DEPENDENCIES += libopenssl
+OPENLDAP_DEPENDENCIES += openssl
 else ifeq ($(BR2_PACKAGE_GNUTLS),y)
 OPENLDAP_TLS = gnutls
 OPENLDAP_DEPENDENCIES += gnutls
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46
  2018-04-02 11:27 [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46 Bernd Kuhls
  2018-04-02 11:27 ` [Buildroot] [PATCH 2/2] package/openldap: add support for libressl Bernd Kuhls
@ 2018-04-02 15:40 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-04-02 15:40 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  2 Apr 2018 13:27:06 +0200, Bernd Kuhls wrote:
> Changelog: https://www.openldap.org/software/release/changes.html
> 
> Added sha256 hashes for tarball and license.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/openldap/openldap.hash | 11 +++++++----
>  package/openldap/openldap.mk   |  2 +-
>  2 files changed, 8 insertions(+), 5 deletions(-)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-04-02 15:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-02 11:27 [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46 Bernd Kuhls
2018-04-02 11:27 ` [Buildroot] [PATCH 2/2] package/openldap: add support for libressl Bernd Kuhls
2018-04-02 15:40 ` [Buildroot] [PATCH 1/2] package/openldap: bump version to 2.4.46 Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox