Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0
@ 2011-07-11 13:34 Daniel Mack
  2011-07-11 13:34 ` [Buildroot] [PATCH 2/2] Add new package gnutls Daniel Mack
  2011-07-12 20:22 ` [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Daniel Mack @ 2011-07-11 13:34 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Daniel Mack <zonque@gmail.com>
---
 package/libgcrypt/libgcrypt.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/libgcrypt/libgcrypt.mk b/package/libgcrypt/libgcrypt.mk
index a7163ea..8b08c3e 100644
--- a/package/libgcrypt/libgcrypt.mk
+++ b/package/libgcrypt/libgcrypt.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-LIBGCRYPT_VERSION = 1.4.6
+LIBGCRYPT_VERSION = 1.5.0
 LIBGCRYPT_SOURCE = libgcrypt-$(LIBGCRYPT_VERSION).tar.bz2
 LIBGCRYPT_SITE = ftp://ftp.gnupg.org/gcrypt/libgcrypt
 LIBGCRYPT_INSTALL_STAGING = YES
-- 
1.7.5.4

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

* [Buildroot] [PATCH 2/2] Add new package gnutls
  2011-07-11 13:34 [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0 Daniel Mack
@ 2011-07-11 13:34 ` Daniel Mack
  2011-07-12 20:28   ` Peter Korsgaard
  2011-07-12 20:22 ` [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel Mack @ 2011-07-11 13:34 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Daniel Mack <zonque@gmail.com>
---
 package/Config.in        |    1 +
 package/gnutls/Config.in |    8 ++++++++
 package/gnutls/gnutls.mk |   14 ++++++++++++++
 3 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 package/gnutls/Config.in
 create mode 100644 package/gnutls/gnutls.mk

diff --git a/package/Config.in b/package/Config.in
index b06c669..60cf222 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -313,6 +313,7 @@ endmenu
 endif
 
 menu "Networking"
+source "package/gnutls/Config.in"
 source "package/libcgi/Config.in"
 source "package/libcgicc/Config.in"
 source "package/libcurl/Config.in"
diff --git a/package/gnutls/Config.in b/package/gnutls/Config.in
new file mode 100644
index 0000000..cedf120
--- /dev/null
+++ b/package/gnutls/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_GNUTLS
+	bool "gnutls"
+	select BR2_PACKAGE_LIBGCRYPT
+	help
+	  GnuTLS is a secure communications library implementing the SSL
+	  and TLS protocols and technologies around them.
+
+	  http://www.gnu.org/software/gnutls/gnutls.html
diff --git a/package/gnutls/gnutls.mk b/package/gnutls/gnutls.mk
new file mode 100644
index 0000000..5f31e1e
--- /dev/null
+++ b/package/gnutls/gnutls.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# gnutls
+#
+#############################################################
+
+GNUTLS_VERSION = 2.8.6
+GNUTLS_SOURCE = gnutls-$(GNUTLS_VERSION).tar.bz2
+GNUTLS_SITE = http://ftp.gnu.org/gnu/gnutls/
+GNUTLS_DEPENDENCIES = libgcrypt
+GNUTLS_CONF_OPT += --without-libgcrypt-prefix
+GNUTLS_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS,package,gnutls))
-- 
1.7.5.4

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

* [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0
  2011-07-11 13:34 [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0 Daniel Mack
  2011-07-11 13:34 ` [Buildroot] [PATCH 2/2] Add new package gnutls Daniel Mack
@ 2011-07-12 20:22 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2011-07-12 20:22 UTC (permalink / raw)
  To: buildroot

>>>>> "Daniel" == Daniel Mack <zonque@gmail.com> writes:

 Daniel> Signed-off-by: Daniel Mack <zonque@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] Add new package gnutls
  2011-07-11 13:34 ` [Buildroot] [PATCH 2/2] Add new package gnutls Daniel Mack
@ 2011-07-12 20:28   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2011-07-12 20:28 UTC (permalink / raw)
  To: buildroot

>>>>> "Daniel" == Daniel Mack <zonque@gmail.com> writes:

 Daniel> Signed-off-by: Daniel Mack <zonque@gmail.com>

 Daniel>  menu "Networking"
 Daniel> +source "package/gnutls/Config.in"

This should be in the crypto section, otherwise it looks good. I'll fix
that - Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2011-07-12 20:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-11 13:34 [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0 Daniel Mack
2011-07-11 13:34 ` [Buildroot] [PATCH 2/2] Add new package gnutls Daniel Mack
2011-07-12 20:28   ` Peter Korsgaard
2011-07-12 20:22 ` [Buildroot] [PATCH 1/2] libgcrypt: bump version to 1.5.0 Peter Korsgaard

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