Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/haproxy: install only binary
@ 2020-02-03 20:52 Fabrice Fontaine
  2020-02-03 20:52 ` [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2 Fabrice Fontaine
  2020-02-03 21:39 ` [Buildroot] [PATCH 1/2] package/haproxy: install only binary Thomas Petazzoni
  0 siblings, 2 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2020-02-03 20:52 UTC (permalink / raw)
  To: buildroot

Use install-bin instead of install target to avoid installing doc and
man pages

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/haproxy/haproxy.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/haproxy/haproxy.mk b/package/haproxy/haproxy.mk
index 9f6f2818ae..88247d8e63 100644
--- a/package/haproxy/haproxy.mk
+++ b/package/haproxy/haproxy.mk
@@ -82,7 +82,7 @@ endef
 
 define HAPROXY_INSTALL_TARGET_CMDS
 	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
-		$(HAPROXY_MAKE_OPTS) -C $(@D) DESTDIR=$(TARGET_DIR) install
+		$(HAPROXY_MAKE_OPTS) -C $(@D) DESTDIR=$(TARGET_DIR) install-bin
 endef
 
 $(eval $(generic-package))
-- 
2.24.1

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

* [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2
  2020-02-03 20:52 [Buildroot] [PATCH 1/2] package/haproxy: install only binary Fabrice Fontaine
@ 2020-02-03 20:52 ` Fabrice Fontaine
  2020-02-03 21:43   ` Thomas Petazzoni
  2020-02-03 22:27   ` Peter Korsgaard
  2020-02-03 21:39 ` [Buildroot] [PATCH 1/2] package/haproxy: install only binary Thomas Petazzoni
  1 sibling, 2 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2020-02-03 20:52 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/haproxy/haproxy.hash | 4 ++--
 package/haproxy/haproxy.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/haproxy/haproxy.hash b/package/haproxy/haproxy.hash
index 87a29eeba1..7f03e88d43 100644
--- a/package/haproxy/haproxy.hash
+++ b/package/haproxy/haproxy.hash
@@ -1,5 +1,5 @@
-# From: http://www.haproxy.org/download/2.0/src/haproxy-2.0.10.tar.gz.sha256
-sha256 1d38ab3dd45e930b209e922a360ee8c636103e21e5b5a2656d3795401316a4ea haproxy-2.0.10.tar.gz
+# From: http://www.haproxy.org/download/2.1/src/haproxy-2.1.2.tar.gz.sha256
+sha256	6079b08a8905ade5a9a2835ead8963ee10a855d8508a85efb7181eea2d310b77	haproxy-2.1.2.tar.gz
 # Locally computed:
 sha256	0717ca51fceaa25ac9e5ccc62e0c727dcf27796057201fb5fded56a25ff6ca28	LICENSE
 sha256	5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a	doc/lgpl.txt
diff --git a/package/haproxy/haproxy.mk b/package/haproxy/haproxy.mk
index 88247d8e63..5485954a1f 100644
--- a/package/haproxy/haproxy.mk
+++ b/package/haproxy/haproxy.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-HAPROXY_VERSION_MAJOR = 2.0
-HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).10
+HAPROXY_VERSION_MAJOR = 2.1
+HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).2
 HAPROXY_SITE = http://www.haproxy.org/download/$(HAPROXY_VERSION_MAJOR)/src
 HAPROXY_LICENSE = GPL-2.0+ and LGPL-2.1+ with exceptions
 HAPROXY_LICENSE_FILES = LICENSE doc/lgpl.txt doc/gpl.txt
-- 
2.24.1

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

* [Buildroot] [PATCH 1/2] package/haproxy: install only binary
  2020-02-03 20:52 [Buildroot] [PATCH 1/2] package/haproxy: install only binary Fabrice Fontaine
  2020-02-03 20:52 ` [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2 Fabrice Fontaine
@ 2020-02-03 21:39 ` Thomas Petazzoni
  1 sibling, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2020-02-03 21:39 UTC (permalink / raw)
  To: buildroot

On Mon,  3 Feb 2020 21:52:55 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Use install-bin instead of install target to avoid installing doc and
> man pages
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/haproxy/haproxy.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

doc and man pages get removed by target-finalize, so we're not really
interested in doing "special" things to avoid their installation, even
if admittedly in this case the "special" thing is pretty basic.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2
  2020-02-03 20:52 ` [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2 Fabrice Fontaine
@ 2020-02-03 21:43   ` Thomas Petazzoni
  2020-02-03 22:27   ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2020-02-03 21:43 UTC (permalink / raw)
  To: buildroot

On Mon,  3 Feb 2020 21:52:56 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/haproxy/haproxy.hash | 4 ++--
>  package/haproxy/haproxy.mk   | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2
  2020-02-03 20:52 ` [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2 Fabrice Fontaine
  2020-02-03 21:43   ` Thomas Petazzoni
@ 2020-02-03 22:27   ` Peter Korsgaard
  2020-02-03 22:32     ` Fabrice Fontaine
  2020-02-03 22:37     ` Peter Korsgaard
  1 sibling, 2 replies; 7+ messages in thread
From: Peter Korsgaard @ 2020-02-03 22:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 > ---
 >  package/haproxy/haproxy.hash | 4 ++--
 >  package/haproxy/haproxy.mk   | 4 ++--
 >  2 files changed, 4 insertions(+), 4 deletions(-)

 > diff --git a/package/haproxy/haproxy.hash b/package/haproxy/haproxy.hash
 > index 87a29eeba1..7f03e88d43 100644
 > --- a/package/haproxy/haproxy.hash
 > +++ b/package/haproxy/haproxy.hash
 > @@ -1,5 +1,5 @@
 > -# From: http://www.haproxy.org/download/2.0/src/haproxy-2.0.10.tar.gz.sha256
 > -sha256 1d38ab3dd45e930b209e922a360ee8c636103e21e5b5a2656d3795401316a4ea haproxy-2.0.10.tar.gz
 > +# From: http://www.haproxy.org/download/2.1/src/haproxy-2.1.2.tar.gz.sha256
 > +sha256	6079b08a8905ade5a9a2835ead8963ee10a855d8508a85efb7181eea2d310b77	haproxy-2.1.2.tar.gz
 >  # Locally computed:
 >  sha256	0717ca51fceaa25ac9e5ccc62e0c727dcf27796057201fb5fded56a25ff6ca28	LICENSE
 >  sha256	5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a	doc/lgpl.txt
 > diff --git a/package/haproxy/haproxy.mk b/package/haproxy/haproxy.mk
 > index 88247d8e63..5485954a1f 100644
 > --- a/package/haproxy/haproxy.mk
 > +++ b/package/haproxy/haproxy.mk
 > @@ -4,8 +4,8 @@
 >  #
 >  ################################################################################
 
 > -HAPROXY_VERSION_MAJOR = 2.0
 > -HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).10
 > +HAPROXY_VERSION_MAJOR = 2.1
 > +HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).2

Sorry, I wasn't fast enough to reply to this before it was merged - But
according to the website, the 2.0.x series is a LTS series, and 2.1.x
isn't - So moving away from 2.0.x just before our new LTS series is
perhaps not such a great idea?

See the table on https://www.haproxy.org/

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2
  2020-02-03 22:27   ` Peter Korsgaard
@ 2020-02-03 22:32     ` Fabrice Fontaine
  2020-02-03 22:37     ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Fabrice Fontaine @ 2020-02-03 22:32 UTC (permalink / raw)
  To: buildroot

Dear Peter,

Le lun. 3 f?vr. 2020 ? 23:27, Peter Korsgaard <peter@korsgaard.com> a ?crit :
>
> >>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
>
>  > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>  > ---
>  >  package/haproxy/haproxy.hash | 4 ++--
>  >  package/haproxy/haproxy.mk   | 4 ++--
>  >  2 files changed, 4 insertions(+), 4 deletions(-)
>
>  > diff --git a/package/haproxy/haproxy.hash b/package/haproxy/haproxy.hash
>  > index 87a29eeba1..7f03e88d43 100644
>  > --- a/package/haproxy/haproxy.hash
>  > +++ b/package/haproxy/haproxy.hash
>  > @@ -1,5 +1,5 @@
>  > -# From: http://www.haproxy.org/download/2.0/src/haproxy-2.0.10.tar.gz.sha256
>  > -sha256 1d38ab3dd45e930b209e922a360ee8c636103e21e5b5a2656d3795401316a4ea haproxy-2.0.10.tar.gz
>  > +# From: http://www.haproxy.org/download/2.1/src/haproxy-2.1.2.tar.gz.sha256
>  > +sha256      6079b08a8905ade5a9a2835ead8963ee10a855d8508a85efb7181eea2d310b77        haproxy-2.1.2.tar.gz
>  >  # Locally computed:
>  >  sha256      0717ca51fceaa25ac9e5ccc62e0c727dcf27796057201fb5fded56a25ff6ca28        LICENSE
>  >  sha256      5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a        doc/lgpl.txt
>  > diff --git a/package/haproxy/haproxy.mk b/package/haproxy/haproxy.mk
>  > index 88247d8e63..5485954a1f 100644
>  > --- a/package/haproxy/haproxy.mk
>  > +++ b/package/haproxy/haproxy.mk
>  > @@ -4,8 +4,8 @@
>  >  #
>  >  ################################################################################
>
>  > -HAPROXY_VERSION_MAJOR = 2.0
>  > -HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).10
>  > +HAPROXY_VERSION_MAJOR = 2.1
>  > +HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).2
>
> Sorry, I wasn't fast enough to reply to this before it was merged - But
> according to the website, the 2.0.x series is a LTS series, and 2.1.x
> isn't - So moving away from 2.0.x just before our new LTS series is
> perhaps not such a great idea?
Nope, indeed, we can revert and postpone this bump.
>
> See the table on https://www.haproxy.org/
>
> --
> Bye, Peter Korsgaard
Best Regards,

Fabrice

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

* [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2
  2020-02-03 22:27   ` Peter Korsgaard
  2020-02-03 22:32     ` Fabrice Fontaine
@ 2020-02-03 22:37     ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2020-02-03 22:37 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
 
 >> -HAPROXY_VERSION_MAJOR = 2.0
 >> -HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).10
 >> +HAPROXY_VERSION_MAJOR = 2.1
 >> +HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).2

 > Sorry, I wasn't fast enough to reply to this before it was merged - But
 > according to the website, the 2.0.x series is a LTS series, and 2.1.x
 > isn't - So moving away from 2.0.x just before our new LTS series is
 > perhaps not such a great idea?

 > See the table on https://www.haproxy.org/

On the other hand, 2.1 is supposed to be supported until Q1 2021, so
that might be good enough:

https://www.mail-archive.com/haproxy at formilux.org/msg35491.html

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-02-03 22:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-03 20:52 [Buildroot] [PATCH 1/2] package/haproxy: install only binary Fabrice Fontaine
2020-02-03 20:52 ` [Buildroot] [PATCH 2/2] package/haproxy: bump to version 2.1.2 Fabrice Fontaine
2020-02-03 21:43   ` Thomas Petazzoni
2020-02-03 22:27   ` Peter Korsgaard
2020-02-03 22:32     ` Fabrice Fontaine
2020-02-03 22:37     ` Peter Korsgaard
2020-02-03 21:39 ` [Buildroot] [PATCH 1/2] package/haproxy: install only binary Thomas Petazzoni

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