Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/liblinear: bump to version 2.45
@ 2022-10-30  9:52 Fabrice Fontaine
  2022-10-30 11:08 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2022-10-30  9:52 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour, Fabrice Fontaine

Version 2.45 released on August 11, 2022. Some minor bugs are fixed.

Drop first patch (not needed since
https://github.com/cjlin1/liblinear/commit/7cf5d6e1c05d3147ee7890865c900757fc42d9ef)

https://github.com/cjlin1/liblinear/compare/v244...v245

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...0001-blas-don-t-overwrite-ar-options.patch | 36 -------------------
 ...-lib.patch => 0001-build-static-lib.patch} |  0
 package/liblinear/liblinear.hash              |  2 +-
 package/liblinear/liblinear.mk                |  2 +-
 4 files changed, 2 insertions(+), 38 deletions(-)
 delete mode 100644 package/liblinear/0001-blas-don-t-overwrite-ar-options.patch
 rename package/liblinear/{0002-build-static-lib.patch => 0001-build-static-lib.patch} (100%)

diff --git a/package/liblinear/0001-blas-don-t-overwrite-ar-options.patch b/package/liblinear/0001-blas-don-t-overwrite-ar-options.patch
deleted file mode 100644
index 23ed6dd227..0000000000
--- a/package/liblinear/0001-blas-don-t-overwrite-ar-options.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From cae4c3b80fee0f3637d70f6d33946888c8105637 Mon Sep 17 00:00:00 2001
-From: Romain Naour <romain.naour@openwide.fr>
-Date: Sat, 13 Dec 2014 17:16:58 +0100
-Subject: [PATCH] blas: don't overwrite ar options
-
-ar's rcv options get lost when AR is passed on
-the command line.
-
-Signed-off-by: Romain Naour <romain.naour@openwide.fr>
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- blas/Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/blas/Makefile b/blas/Makefile
-index 895fd24..78cec9a 100644
---- a/blas/Makefile
-+++ b/blas/Makefile
-@@ -1,4 +1,4 @@
--AR     = ar rcv
-+AR     = ar
- RANLIB = ranlib
- 
- HEADERS = blas.h blasp.h
-@@ -8,7 +8,7 @@ CFLAGS = $(OPTFLAGS)
- FFLAGS = $(OPTFLAGS)
- 
- blas: $(FILES) $(HEADERS)
--	$(AR) blas.a $(FILES)
-+	$(AR) rcv blas.a $(FILES)  
- 	$(RANLIB) blas.a
- 
- clean:
--- 
-1.9.3
-
diff --git a/package/liblinear/0002-build-static-lib.patch b/package/liblinear/0001-build-static-lib.patch
similarity index 100%
rename from package/liblinear/0002-build-static-lib.patch
rename to package/liblinear/0001-build-static-lib.patch
diff --git a/package/liblinear/liblinear.hash b/package/liblinear/liblinear.hash
index 27aa4e3e87..6bc72909d0 100644
--- a/package/liblinear/liblinear.hash
+++ b/package/liblinear/liblinear.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  45572b99d4eeffc3e8ad7b72c27370be867edf3523c396d8b278a2c873bfbb5c  liblinear-2.44.tar.gz
+sha256  3c64eec45c01943a656baac7aeb8ffd782fe0aea53629aa9f5fdb8eec177c92f  liblinear-2.45.tar.gz
 sha256  d49b7898fd9ea7c29f0478e8c409ee7c0f621533d5eca7b7912e80391dc564e3  COPYRIGHT
diff --git a/package/liblinear/liblinear.mk b/package/liblinear/liblinear.mk
index c100ccc6c5..014f9e2de4 100644
--- a/package/liblinear/liblinear.mk
+++ b/package/liblinear/liblinear.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBLINEAR_VERSION = 2.44
+LIBLINEAR_VERSION = 2.45
 LIBLINEAR_SITE = http://www.csie.ntu.edu.tw/~cjlin/liblinear
 LIBLINEAR_LICENSE = BSD-3-Clause
 LIBLINEAR_LICENSE_FILES = COPYRIGHT
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/liblinear: bump to version 2.45
  2022-10-30  9:52 [Buildroot] [PATCH 1/1] package/liblinear: bump to version 2.45 Fabrice Fontaine
@ 2022-10-30 11:08 ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-10-30 11:08 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Romain Naour, buildroot

On Sun, 30 Oct 2022 10:52:28 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Version 2.45 released on August 11, 2022. Some minor bugs are fixed.
> 
> Drop first patch (not needed since
> https://github.com/cjlin1/liblinear/commit/7cf5d6e1c05d3147ee7890865c900757fc42d9ef)
> 
> https://github.com/cjlin1/liblinear/compare/v244...v245
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  ...0001-blas-don-t-overwrite-ar-options.patch | 36 -------------------
>  ...-lib.patch => 0001-build-static-lib.patch} |  0
>  package/liblinear/liblinear.hash              |  2 +-
>  package/liblinear/liblinear.mk                |  2 +-
>  4 files changed, 2 insertions(+), 38 deletions(-)
>  delete mode 100644 package/liblinear/0001-blas-don-t-overwrite-ar-options.patch
>  rename package/liblinear/{0002-build-static-lib.patch => 0001-build-static-lib.patch} (100%)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-10-30 11:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-30  9:52 [Buildroot] [PATCH 1/1] package/liblinear: bump to version 2.45 Fabrice Fontaine
2022-10-30 11:08 ` Thomas Petazzoni via buildroot

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