All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/jack2: bump to version 1.9.14
@ 2020-02-03 16:57 titouan.christophe at railnova.eu
  2020-02-03 17:21 ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: titouan.christophe at railnova.eu @ 2020-02-03 16:57 UTC (permalink / raw)
  To: buildroot

From: Titouan Christophe <titouan.christophe@railnova.eu>

Amongst other things, the jack2 waf script has been made
compatible with Python3 in this latest release, which makes
it possible to be built on py3

See also upstream release notes:
- https://github.com/jackaudio/jack2/releases/tag/v1.9.13
- https://github.com/jackaudio/jack2/releases/tag/v1.9.14

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
 package/jack2/jack2.hash | 2 +-
 package/jack2/jack2.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/jack2/jack2.hash b/package/jack2/jack2.hash
index f6f2345eb5..aec56e24a4 100644
--- a/package/jack2/jack2.hash
+++ b/package/jack2/jack2.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256 deefe2f936dc32f59ad3cef7e37276c2035ef8a024ca92118f35c9a292272e33  jack2-1.9.12.tar.gz
+sha256 a20a32366780c0061fd58fbb5f09e514ea9b7ce6e53b080a44b11a558a83217c  jack2-1.9.14.tar.gz
diff --git a/package/jack2/jack2.mk b/package/jack2/jack2.mk
index c4cad32ed6..b08c45cce7 100644
--- a/package/jack2/jack2.mk
+++ b/package/jack2/jack2.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-JACK2_VERSION = 1.9.12
+JACK2_VERSION = 1.9.14
 JACK2_SITE = $(call github,jackaudio,jack2,v$(JACK2_VERSION))
 JACK2_LICENSE = GPL-2.0+ (jack server), LGPL-2.1+ (jack library)
 JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python
-- 
2.24.1

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

* [Buildroot] [PATCH 1/1] package/jack2: bump to version 1.9.14
  2020-02-03 16:57 [Buildroot] [PATCH 1/1] package/jack2: bump to version 1.9.14 titouan.christophe at railnova.eu
@ 2020-02-03 17:21 ` Peter Korsgaard
  2020-02-03 18:10   ` Titouan Christophe
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-03 17:21 UTC (permalink / raw)
  To: buildroot

>>>>> "titouan" == titouan christophe <titouan.christophe@railnova.eu> writes:

 > From: Titouan Christophe <titouan.christophe@railnova.eu>
 > Amongst other things, the jack2 waf script has been made
 > compatible with Python3 in this latest release, which makes
 > it possible to be built on py3

This presumably doesn't help much as long as it has host-python in its
_DEPENDENCIES and our pkg-waf.mk hard codes python2?

Still, bumping the version is fine - So committed, thanks.

 > See also upstream release notes:
 > - https://github.com/jackaudio/jack2/releases/tag/v1.9.13
 > - https://github.com/jackaudio/jack2/releases/tag/v1.9.14


 > Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
 > ---
 >  package/jack2/jack2.hash | 2 +-
 >  package/jack2/jack2.mk   | 2 +-
 >  2 files changed, 2 insertions(+), 2 deletions(-)

 > diff --git a/package/jack2/jack2.hash b/package/jack2/jack2.hash
 > index f6f2345eb5..aec56e24a4 100644
 > --- a/package/jack2/jack2.hash
 > +++ b/package/jack2/jack2.hash
 > @@ -1,2 +1,2 @@
 >  # Locally calculated
 > -sha256 deefe2f936dc32f59ad3cef7e37276c2035ef8a024ca92118f35c9a292272e33  jack2-1.9.12.tar.gz
 > +sha256 a20a32366780c0061fd58fbb5f09e514ea9b7ce6e53b080a44b11a558a83217c  jack2-1.9.14.tar.gz
 > diff --git a/package/jack2/jack2.mk b/package/jack2/jack2.mk
 > index c4cad32ed6..b08c45cce7 100644
 > --- a/package/jack2/jack2.mk
 > +++ b/package/jack2/jack2.mk
 > @@ -4,7 +4,7 @@
 >  #
 >  ################################################################################
 
 > -JACK2_VERSION = 1.9.12
 > +JACK2_VERSION = 1.9.14
 >  JACK2_SITE = $(call github,jackaudio,jack2,v$(JACK2_VERSION))
 >  JACK2_LICENSE = GPL-2.0+ (jack server), LGPL-2.1+ (jack library)
 >  JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python

So if it can 

 > -- 
 > 2.24.1

 > _______________________________________________
 > buildroot mailing list
 > buildroot at busybox.net
 > http://lists.busybox.net/mailman/listinfo/buildroot

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/1] package/jack2: bump to version 1.9.14
  2020-02-03 17:21 ` Peter Korsgaard
@ 2020-02-03 18:10   ` Titouan Christophe
  2020-02-03 18:44     ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Titouan Christophe @ 2020-02-03 18:10 UTC (permalink / raw)
  To: buildroot

Hello Peter and all,

On 2/3/20 6:21 PM, Peter Korsgaard wrote:
>>>>>> "titouan" == titouan christophe <titouan.christophe@railnova.eu> writes:
> 
>   > From: Titouan Christophe <titouan.christophe@railnova.eu>
>   > Amongst other things, the jack2 waf script has been made
>   > compatible with Python3 in this latest release, which makes
>   > it possible to be built on py3
> 
> This presumably doesn't help much as long as it has host-python in its
> _DEPENDENCIES and our pkg-waf.mk hard codes python2?

I actually came up with this version bump while testing to switch the 
waf-package infrastructure to python3 [1], and in this context jack2 
1.9.12 raised some errors from the waf script.

I'll look if it's possible to remove that host-python dependency as well 
later tonight or tomorrow.

> 
> Still, bumping the version is fine - So committed, thanks.
> 
>   
>   > -JACK2_VERSION = 1.9.12
>   > +JACK2_VERSION = 1.9.14
>   >  JACK2_SITE = $(call github,jackaudio,jack2,v$(JACK2_VERSION))
>   >  JACK2_LICENSE = GPL-2.0+ (jack server), LGPL-2.1+ (jack library)
>   >  JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python
> 
> So if it can

Yes we can :-)

> 
>   > --
>   > 2.24.1
> 
>   > _______________________________________________
>   > buildroot mailing list
>   > buildroot at busybox.net
>   > http://lists.busybox.net/mailman/listinfo/buildroot
> 


[1] http://paste.awesom.eu/Ypoa

Kind regards,

Titouan

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

* [Buildroot] [PATCH 1/1] package/jack2: bump to version 1.9.14
  2020-02-03 18:10   ` Titouan Christophe
@ 2020-02-03 18:44     ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-03 18:44 UTC (permalink / raw)
  To: buildroot

>>>>> "Titouan" == Titouan Christophe <titouan.christophe@railnova.eu> writes:

 > Hello Peter and all,
 > On 2/3/20 6:21 PM, Peter Korsgaard wrote:
 >>>>>>> "titouan" == titouan christophe <titouan.christophe@railnova.eu> writes:
 >> 
 >> > From: Titouan Christophe <titouan.christophe@railnova.eu>
 >> > Amongst other things, the jack2 waf script has been made
 >> > compatible with Python3 in this latest release, which makes
 >> > it possible to be built on py3
 >> 
 >> This presumably doesn't help much as long as it has host-python in its
 >> _DEPENDENCIES and our pkg-waf.mk hard codes python2?

 > I actually came up with this version bump while testing to switch the
 > waf-package infrastructure to python3 [1], and in this context jack2
 > 1.9.12 raised some errors from the waf script.

 > I'll look if it's possible to remove that host-python dependency as
 > well later tonight or tomorrow.

Great, thanks ;)

 >> 
 >> Still, bumping the version is fine - So committed, thanks.
 >> 
 >> > -JACK2_VERSION = 1.9.12
 >> > +JACK2_VERSION = 1.9.14
 >> >  JACK2_SITE = $(call github,jackaudio,jack2,v$(JACK2_VERSION))
 >> >  JACK2_LICENSE = GPL-2.0+ (jack server), LGPL-2.1+ (jack library)
 >> >  JACK2_DEPENDENCIES = libsamplerate libsndfile alsa-lib host-python
 >> 
 >> So if it can

 > Yes we can :-)

Heh - I was going to write something about this host-python
dependency. I guess it comes from the use of waf, but it seems redundant
as pkg-waf.mk already pulls in host-python (or perhaps host-python3 in
the future).

-- 
Bye, Peter Korsgaard

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-03 16:57 [Buildroot] [PATCH 1/1] package/jack2: bump to version 1.9.14 titouan.christophe at railnova.eu
2020-02-03 17:21 ` Peter Korsgaard
2020-02-03 18:10   ` Titouan Christophe
2020-02-03 18:44     ` Peter Korsgaard

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.