Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Bump libasplib and change source to original maintainer
@ 2016-02-27  3:08 Stanislav Vlasic
  2016-02-27 15:32 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Stanislav Vlasic @ 2016-02-27  3:08 UTC (permalink / raw)
  To: buildroot

Since maintainer of kodi-adsp maintainer forked asplib
from original source (https://github.com/AchimTuran/asplib)
and did not maintain it, asplib became obsolete.

New version does not depend on cpuinfo.h and builds on other
platforms too (e.g. arm and aarch64)

Signed-off-by: Stanislav Vlasic <svlasic@gmail.com>
---
 .../0001-Fix-linux-detection-with-buildroot.patch  | 31 ----------------------
 package/libasplib/Config.in                        |  8 +-----
 package/libasplib/libasplib.hash                   |  2 +-
 package/libasplib/libasplib.mk                     |  4 +--
 4 files changed, 4 insertions(+), 41 deletions(-)
 delete mode 100644 package/libasplib/0001-Fix-linux-detection-with-buildroot.patch

diff --git a/package/libasplib/0001-Fix-linux-detection-with-buildroot.patch b/package/libasplib/0001-Fix-linux-detection-with-buildroot.patch
deleted file mode 100644
index 66f5185..0000000
--- a/package/libasplib/0001-Fix-linux-detection-with-buildroot.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 1dc4480e5157e7ac8eb0364446787128f0a156aa Mon Sep 17 00:00:00 2001
-From: Bernd Kuhls <bernd.kuhls@t-online.de>
-Date: Sun, 20 Dec 2015 22:25:52 +0100
-Subject: [PATCH 1/1] Fix linux detection with buildroot
-
-Inspired by
-http://lists.busybox.net/pipermail/buildroot/2015-July/133312.html
-
-Patch sent upstream: https://github.com/kodi-adsp/asplib/pull/2
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
----
- asplib_utils/os/asplib_base_os.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/asplib_utils/os/asplib_base_os.h b/asplib_utils/os/asplib_base_os.h
-index a2d3b98..9a90b54 100644
---- a/asplib_utils/os/asplib_base_os.h
-+++ b/asplib_utils/os/asplib_base_os.h
-@@ -27,7 +27,7 @@
-   #define TARGET_WINDOWS
- #endif
-   #include "windows/windows_definitions.h"
--#elif defined(__gnu_linux__)
-+#elif (defined(__gnu_linux__) || defined(__linux__))
- #if !defined(TARGET_WINDOWS)
-   #define TARGET_LINUX
- #endif
--- 
-2.6.4
-
diff --git a/package/libasplib/Config.in b/package/libasplib/Config.in
index 71ccfa0..a0dfef5 100644
--- a/package/libasplib/Config.in
+++ b/package/libasplib/Config.in
@@ -1,14 +1,8 @@
 config BR2_PACKAGE_LIBASPLIB
 	bool "libasplib"
 	depends on BR2_INSTALL_LIBSTDCPP
-	# needs <cpuid.h> from the compiler
-	depends on BR2_i386 || BR2_x86_64
 	help
 	  asplib (Achim's Signal Processing LIBrary), is a small and
 	  lightweight C++ library for digital signal processing.
 
-	  https://github.com/kodi-adsp/asplib
-
-comment "asplib needs a toolchain w/ C++"
-	depends on !BR2_INSTALL_LIBSTDCPP
-	depends on BR2_i386 || BR2_x86_64
+	  https://github.com/AchimTuran/asplib
diff --git a/package/libasplib/libasplib.hash b/package/libasplib/libasplib.hash
index 96c6a2c..bbd027d 100644
--- a/package/libasplib/libasplib.hash
+++ b/package/libasplib/libasplib.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256 8979cbd1620dde0603f596d2d05d300355f07e42637bb41ecd564541fa1332f4 libasplib-2fac1bf34efd210b95949fddcbd4a12d287d3e82.tar.gz
+sha256 ccc2718c79a8d684317cc1987ede88b198e1602df47d0f18f03d474eda00af9c libasplib-f7219142e790a329b002a94f3db943abcb183739.tar.gz
diff --git a/package/libasplib/libasplib.mk b/package/libasplib/libasplib.mk
index 27629f5..41aeaeb 100644
--- a/package/libasplib/libasplib.mk
+++ b/package/libasplib/libasplib.mk
@@ -4,8 +4,8 @@
 #
 ################################################################################
 
-LIBASPLIB_VERSION = 2fac1bf34efd210b95949fddcbd4a12d287d3e82
-LIBASPLIB_SITE = $(call github,kodi-adsp,asplib,$(LIBASPLIB_VERSION))
+LIBASPLIB_VERSION = f7219142e790a329b002a94f3db943abcb183739
+LIBASPLIB_SITE = $(call github,AchimTuran,asplib,$(LIBASPLIB_VERSION))
 LIBASPLIB_LICENSE = GPLv3+
 LIBASPLIB_LICENSE_FILES = LICENSE
 LIBASPLIB_INSTALL_STAGING = YES
-- 
1.9.1

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

* [Buildroot] [PATCH 1/1] Bump libasplib and change source to original maintainer
  2016-02-27  3:08 [Buildroot] [PATCH 1/1] Bump libasplib and change source to original maintainer Stanislav Vlasic
@ 2016-02-27 15:32 ` Thomas Petazzoni
  2016-02-29 10:08   ` Stanislav Vlasic
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-02-27 15:32 UTC (permalink / raw)
  To: buildroot

Dear Stanislav Vlasic,

Thanks for your contribution! I have a few comments/questions.

First, the commit title should always have the following format:

	<package>: <description>

So in your case, it should be:

	libasplib: bump version and change source location

(or something like that)

On Sat, 27 Feb 2016 04:08:32 +0100, Stanislav Vlasic wrote:
> Since maintainer of kodi-adsp maintainer forked asplib
> from original source (https://github.com/AchimTuran/asplib)
> and did not maintain it, asplib became obsolete.

Do we still need a separate libasplib package then? Are you using
libasplib for your project, outside of Kodi?

> diff --git a/package/libasplib/Config.in b/package/libasplib/Config.in
> index 71ccfa0..a0dfef5 100644
> --- a/package/libasplib/Config.in
> +++ b/package/libasplib/Config.in
> @@ -1,14 +1,8 @@
>  config BR2_PACKAGE_LIBASPLIB
>  	bool "libasplib"
>  	depends on BR2_INSTALL_LIBSTDCPP

You still have a C++ dependency.

> -	# needs <cpuid.h> from the compiler
> -	depends on BR2_i386 || BR2_x86_64
>  	help
>  	  asplib (Achim's Signal Processing LIBrary), is a small and
>  	  lightweight C++ library for digital signal processing.
>  
> -	  https://github.com/kodi-adsp/asplib
> -
> -comment "asplib needs a toolchain w/ C++"
> -	depends on !BR2_INSTALL_LIBSTDCPP
> -	depends on BR2_i386 || BR2_x86_64

So why are you removing the comment about this dependency?

Other than that, looks good. Could you fix the minor issues above, and
resubmit an updated version?

Thanks!

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

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

* [Buildroot] [PATCH 1/1] Bump libasplib and change source to original maintainer
  2016-02-27 15:32 ` Thomas Petazzoni
@ 2016-02-29 10:08   ` Stanislav Vlasic
  0 siblings, 0 replies; 3+ messages in thread
From: Stanislav Vlasic @ 2016-02-29 10:08 UTC (permalink / raw)
  To: buildroot

Hi,

On 02/27/2016 04:32 PM, Thomas Petazzoni wrote:
> Dear Stanislav Vlasic,
>
> Thanks for your contribution! I have a few comments/questions.
>
> First, the commit title should always have the following format:
>
> 	<package>: <description>
>
> So in your case, it should be:
>
> 	libasplib: bump version and change source location
>
> (or something like that)
> On Sat, 27 Feb 2016 04:08:32 +0100, Stanislav Vlasic wrote:
>> Since maintainer of kodi-adsp maintainer forked asplib
>> from original source (https://github.com/AchimTuran/asplib)
>> and did not maintain it, asplib became obsolete.
>
> Do we still need a separate libasplib package then? Are you using
> libasplib for your project, outside of Kodi?

Yes, libadsplib is still required for Biquad filter addon for Kodi's 
AudioDSP-System.

>> diff --git a/package/libasplib/Config.in b/package/libasplib/Config.in
>> index 71ccfa0..a0dfef5 100644
>> --- a/package/libasplib/Config.in
>> +++ b/package/libasplib/Config.in
>> @@ -1,14 +1,8 @@
>>   config BR2_PACKAGE_LIBASPLIB
>>   	bool "libasplib"
>>   	depends on BR2_INSTALL_LIBSTDCPP
>
> You still have a C++ dependency.
>
>> -	# needs <cpuid.h> from the compiler
>> -	depends on BR2_i386 || BR2_x86_64
>>   	help
>>   	  asplib (Achim's Signal Processing LIBrary), is a small and
>>   	  lightweight C++ library for digital signal processing.
>>
>> -	  https://github.com/kodi-adsp/asplib
>> -
>> -comment "asplib needs a toolchain w/ C++"
>> -	depends on !BR2_INSTALL_LIBSTDCPP
>> -	depends on BR2_i386 || BR2_x86_64
>
> So why are you removing the comment about this dependency?

Well, that happens when you're trying to make some work in 4am... :)

> Other than that, looks good. Could you fix the minor issues above, and
> resubmit an updated version?

I'll resubmit patch, no problem.

> Thanks!
>
> Thomas
>

Stanislav

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

end of thread, other threads:[~2016-02-29 10:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-27  3:08 [Buildroot] [PATCH 1/1] Bump libasplib and change source to original maintainer Stanislav Vlasic
2016-02-27 15:32 ` Thomas Petazzoni
2016-02-29 10:08   ` Stanislav Vlasic

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