* [Buildroot] [git commit] stunnel: bump to version 4.44 @ 2011-10-15 21:23 Peter Korsgaard 2011-10-16 8:47 ` Maxime Ripard 0 siblings, 1 reply; 6+ messages in thread From: Peter Korsgaard @ 2011-10-15 21:23 UTC (permalink / raw) To: buildroot commit: http://git.buildroot.net/buildroot/commit/?id=5222067783a0b4f20f5a68e6aa57817cca5c35a3 branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> --- package/stunnel/stunnel.mk | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package/stunnel/stunnel.mk b/package/stunnel/stunnel.mk index 1f40397..6088e58 100644 --- a/package/stunnel/stunnel.mk +++ b/package/stunnel/stunnel.mk @@ -4,10 +4,9 @@ # ############################################################# -STUNNEL_VERSION = 4.36 -STUNNEL_SITE = http://ftp.nluug.nl/pub/networking/stunnel/obsolete/4.x/ +STUNNEL_VERSION = 4.44 +STUNNEL_SITE = http://ftp.nluug.nl/pub/networking/stunnel STUNNEL_DEPENDENCIES = openssl - STUNNEL_CONF_OPT += \ --with-ssl=$(STAGING_DIR)/usr \ --with-threads=fork ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [git commit] stunnel: bump to version 4.44 2011-10-15 21:23 [Buildroot] [git commit] stunnel: bump to version 4.44 Peter Korsgaard @ 2011-10-16 8:47 ` Maxime Ripard 2011-10-16 12:53 ` Gustavo Zacarias 0 siblings, 1 reply; 6+ messages in thread From: Maxime Ripard @ 2011-10-16 8:47 UTC (permalink / raw) To: buildroot Hi, Le 15/10/2011 23:23, Peter Korsgaard a ?crit : > commit: http://git.buildroot.net/buildroot/commit/?id=5222067783a0b4f20f5a68e6aa57817cca5c35a3 > branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master > > Signed-off-by: Gustavo Zacarias<gustavo@zacarias.com.ar> > Signed-off-by: Peter Korsgaard<jacmet@sunsite.dk> > --- > package/stunnel/stunnel.mk | 5 ++--- > 1 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/package/stunnel/stunnel.mk b/package/stunnel/stunnel.mk > index 1f40397..6088e58 100644 > --- a/package/stunnel/stunnel.mk > +++ b/package/stunnel/stunnel.mk > @@ -4,10 +4,9 @@ > # > ############################################################# > > -STUNNEL_VERSION = 4.36 > -STUNNEL_SITE = http://ftp.nluug.nl/pub/networking/stunnel/obsolete/4.x/ > +STUNNEL_VERSION = 4.44 > +STUNNEL_SITE = http://ftp.nluug.nl/pub/networking/stunnel > STUNNEL_DEPENDENCIES = openssl > - There's a problem with that. They have a kind of silly policy to store the archives. In the "main" folder, there is only the latest version, while every other version are in obsolete/4.x/. So this will break as soon as a new version will be released, and that was why I put obsolete in the first place. Maxime ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [git commit] stunnel: bump to version 4.44 2011-10-16 8:47 ` Maxime Ripard @ 2011-10-16 12:53 ` Gustavo Zacarias 2011-10-16 17:39 ` Maxime Ripard 0 siblings, 1 reply; 6+ messages in thread From: Gustavo Zacarias @ 2011-10-16 12:53 UTC (permalink / raw) To: buildroot On 16.10.2011 05:47, Maxime Ripard wrote: > There's a problem with that. They have a kind of silly policy to > store the archives. In the "main" folder, there is only the latest > version, while every other version are in obsolete/4.x/. So this will > break as soon as a new version will be released, and that was why I > put obsolete in the first place. > > Maxime Yes, i've noticed, however they don't keep a copy of the latest version in obsolete. As long as it's mirrored in sources.buildroot.net it should be safe. Maybe fallback/alternate download URLs could be implemented? Regards. ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [git commit] stunnel: bump to version 4.44 2011-10-16 12:53 ` Gustavo Zacarias @ 2011-10-16 17:39 ` Maxime Ripard 2011-10-18 7:04 ` Peter Korsgaard 2011-10-18 14:18 ` Gustavo Zacarias 0 siblings, 2 replies; 6+ messages in thread From: Maxime Ripard @ 2011-10-16 17:39 UTC (permalink / raw) To: buildroot On 16/10/2011 14:53, Gustavo Zacarias wrote: > On 16.10.2011 05:47, Maxime Ripard wrote: > >> There's a problem with that. They have a kind of silly policy to >> store the archives. In the "main" folder, there is only the latest >> version, while every other version are in obsolete/4.x/. So this will >> break as soon as a new version will be released, and that was why I >> put obsolete in the first place. >> >> Maxime > > Yes, i've noticed, however they don't keep a copy of the latest version > in obsolete. > As long as it's mirrored in sources.buildroot.net it should be safe. But do we really need the latest version here ? Also, how the mirror is generated ? At each release or at a given frequency ? Because, in the first case, if a new version is released between this commit and the release, we're screwed. > Maybe fallback/alternate download URLs could be implemented? Indeed, that's a good idea. -- Maxime Ripard, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [git commit] stunnel: bump to version 4.44 2011-10-16 17:39 ` Maxime Ripard @ 2011-10-18 7:04 ` Peter Korsgaard 2011-10-18 14:18 ` Gustavo Zacarias 1 sibling, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2011-10-18 7:04 UTC (permalink / raw) To: buildroot >>>>> "Maxime" == Maxime Ripard <maxime.ripard@free-electrons.com> writes: Hi, Maxime> Also, how the mirror is generated ? At each release or at a given Maxime> frequency ? Because, in the first case, if a new version is released Maxime> between this commit and the release, we're screwed. I try to update the mirror often. I used to do it manually, but now it's done from a cronjob every Wednesday night. We unfortunately don't have a good way of downloading ALL source tarballs for all configuration possibilities so I do: make allyesconfig; make source for i in $(seq 50); do make randconfig; make source done Which covers most, but not all. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [git commit] stunnel: bump to version 4.44 2011-10-16 17:39 ` Maxime Ripard 2011-10-18 7:04 ` Peter Korsgaard @ 2011-10-18 14:18 ` Gustavo Zacarias 1 sibling, 0 replies; 6+ messages in thread From: Gustavo Zacarias @ 2011-10-18 14:18 UTC (permalink / raw) To: buildroot On 16.10.2011 14:39, Maxime Ripard wrote: > Also, how the mirror is generated ? At each release or at a given > frequency ? Because, in the first case, if a new version is released > between this commit and the release, we're screwed. > >> Maybe fallback/alternate download URLs could be implemented? > > Indeed, that's a good idea. I've just sent a patch for mirror support in the package infrastructure and for stunnel to use it. Open to comments now :) Regards. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-10-18 14:18 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-10-15 21:23 [Buildroot] [git commit] stunnel: bump to version 4.44 Peter Korsgaard 2011-10-16 8:47 ` Maxime Ripard 2011-10-16 12:53 ` Gustavo Zacarias 2011-10-16 17:39 ` Maxime Ripard 2011-10-18 7:04 ` Peter Korsgaard 2011-10-18 14:18 ` Gustavo Zacarias
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox