All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1
@ 2017-07-06 17:54 Francois Perrad
  2017-07-06 18:25 ` Thomas Petazzoni
  0 siblings, 1 reply; 5+ messages in thread
From: Francois Perrad @ 2017-07-06 17:54 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/libtomcrypt/libtomcrypt.hash | 2 +-
 package/libtomcrypt/libtomcrypt.mk   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/libtomcrypt/libtomcrypt.hash b/package/libtomcrypt/libtomcrypt.hash
index 562016d5..932052e8 100644
--- a/package/libtomcrypt/libtomcrypt.hash
+++ b/package/libtomcrypt/libtomcrypt.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256  e33b47d77a495091c8703175a25c8228aff043140b2554c08a3c3cd71f79d116  crypt-1.17.tar.bz2
+sha256  943af136e6c624371659dc6c98a2d749ea45912628717b72e4f8894339709b20  crypt-1.18.0-rc1.tar.xz
diff --git a/package/libtomcrypt/libtomcrypt.mk b/package/libtomcrypt/libtomcrypt.mk
index 8cc02b28..ee0c68e8 100644
--- a/package/libtomcrypt/libtomcrypt.mk
+++ b/package/libtomcrypt/libtomcrypt.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-LIBTOMCRYPT_VERSION = 1.17
-LIBTOMCRYPT_SITE = https://github.com/libtom/libtomcrypt/releases/download/$(LIBTOMCRYPT_VERSION)
-LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.bz2
+LIBTOMCRYPT_VERSION = 1.18.0-rc1
+LIBTOMCRYPT_SITE = https://github.com/libtom/libtomcrypt/releases/download/v$(LIBTOMCRYPT_VERSION)
+LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.xz
 LIBTOMCRYPT_LICENSE = WTFPL
 LIBTOMCRYPT_LICENSE_FILES = LICENSE
 LIBTOMCRYPT_INSTALL_STAGING = YES
-- 
2.11.0

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

* [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1
  2017-07-06 17:54 [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1 Francois Perrad
@ 2017-07-06 18:25 ` Thomas Petazzoni
  2017-07-06 18:45   ` François Perrad
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2017-07-06 18:25 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu,  6 Jul 2017 19:54:56 +0200, Francois Perrad wrote:

> -LIBTOMCRYPT_VERSION = 1.17
> -LIBTOMCRYPT_SITE = https://github.com/libtom/libtomcrypt/releases/download/$(LIBTOMCRYPT_VERSION)
> -LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.bz2
> +LIBTOMCRYPT_VERSION = 1.18.0-rc1

Why would we upgrade to a release candidate version?

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1
  2017-07-06 18:25 ` Thomas Petazzoni
@ 2017-07-06 18:45   ` François Perrad
  2017-07-06 18:57     ` Thomas Petazzoni
  0 siblings, 1 reply; 5+ messages in thread
From: François Perrad @ 2017-07-06 18:45 UTC (permalink / raw)
  To: buildroot

2017-07-06 20:25 GMT+02:00 Thomas Petazzoni <
thomas.petazzoni@free-electrons.com>:

> Hello,
>
> On Thu,  6 Jul 2017 19:54:56 +0200, Francois Perrad wrote:
>
> > -LIBTOMCRYPT_VERSION = 1.17
> > -LIBTOMCRYPT_SITE = https://github.com/libtom/
> libtomcrypt/releases/download/$(LIBTOMCRYPT_VERSION)
> > -LIBTOMCRYPT_SOURCE = crypt-$(LIBTOMCRYPT_VERSION).tar.bz2
> > +LIBTOMCRYPT_VERSION = 1.18.0-rc1
>
> Why would we upgrade to a release candidate version?
>
>
It's a good way to test it (with autobuilder).
The dev of libtomcrypt is very slow, 1.17 was released on 25 Dec 2015.

Note: in BR, many packages use a Git hash commit as version/tag.

Fran?ois


> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20170706/f5dfee5c/attachment.html>

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

* [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1
  2017-07-06 18:45   ` François Perrad
@ 2017-07-06 18:57     ` Thomas Petazzoni
  2017-07-06 21:56       ` Arnout Vandecappelle
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2017-07-06 18:57 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 6 Jul 2017 20:45:35 +0200, Fran?ois Perrad wrote:

> > Why would we upgrade to a release candidate version?
> >
> It's a good way to test it (with autobuilder).

Buildroot is not really meant to test release candidates of upstream
packages, especially when the final release is unlikely to be released
before the next Buildroot release will be cut.

> Note: in BR, many packages use a Git hash commit as version/tag.

And every time because there's a good reason: no stable release at all,
or the last stable release has some issue that cannot be fixed by just
backporting a few patches.

Here there are no issues, and you propose to bump to a release
candidate. I really don't think we want to do this.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1
  2017-07-06 18:57     ` Thomas Petazzoni
@ 2017-07-06 21:56       ` Arnout Vandecappelle
  0 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2017-07-06 21:56 UTC (permalink / raw)
  To: buildroot



On 06-07-17 20:57, Thomas Petazzoni wrote:
> Hello,
> 
> On Thu, 6 Jul 2017 20:45:35 +0200, Fran?ois Perrad wrote:
> 
>>> Why would we upgrade to a release candidate version?
>>>
>> It's a good way to test it (with autobuilder).

 If you want to invest is something like that, you can set up an autobuilder
instance and define some _OVERRIDE_SRCDIR in your local.mk. But don't push those
build results to autobuild.buildroot.org!

 Regards,
 Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

end of thread, other threads:[~2017-07-06 21:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-06 17:54 [Buildroot] [PATCH] libtomcrypt: bump to version 1.18.0-rc1 Francois Perrad
2017-07-06 18:25 ` Thomas Petazzoni
2017-07-06 18:45   ` François Perrad
2017-07-06 18:57     ` Thomas Petazzoni
2017-07-06 21:56       ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.