All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libsolv: bump to version 0.7.25
@ 2023-11-05 21:46 Fabrice Fontaine
  2023-11-06 19:40 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2023-11-05 21:46 UTC (permalink / raw)
  To: buildroot; +Cc: TIAN Yuanhao, Fabrice Fontaine

Drop patch (already in version)

https://github.com/openSUSE/libsolv/blob/0.7.25/NEWS

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 .checkpackageignore                           |  1 -
 .../libsolv/0001-Fix-build-without-C.patch    | 49 -------------------
 package/libsolv/libsolv.hash                  |  2 +-
 package/libsolv/libsolv.mk                    |  2 +-
 4 files changed, 2 insertions(+), 52 deletions(-)
 delete mode 100644 package/libsolv/0001-Fix-build-without-C.patch

diff --git a/.checkpackageignore b/.checkpackageignore
index 2ea44d79f4..0c67afdd7e 100644
--- a/.checkpackageignore
+++ b/.checkpackageignore
@@ -743,7 +743,6 @@ package/libsigrok/0001-Support-glibmm-2.68.patch Upstream
 package/libsigrokdecode/0001-configure-ac-Add-support-for-Python-3-9.patch Upstream
 package/libsigrokdecode/0002-configure-Add-python-3-10-support.patch Upstream
 package/libsigrokdecode/0003-configure-ac-Use-python3-embed-pc-as-a-fallback.patch Upstream
-package/libsolv/0001-Fix-build-without-C.patch Upstream
 package/libsoup/0001-meson.build-set-c_std-to-gnu99.patch Upstream
 package/libsoxr/0001-Add-Libs.private-for-static-linking.patch Upstream
 package/libspatialindex/0001-allow-building-static-libs.patch Upstream
diff --git a/package/libsolv/0001-Fix-build-without-C.patch b/package/libsolv/0001-Fix-build-without-C.patch
deleted file mode 100644
index 2389aebcde..0000000000
--- a/package/libsolv/0001-Fix-build-without-C.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 5691f58d1f8ce1332b02536e48f1ac5864629c6c Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Sun, 12 Feb 2023 15:27:27 +0100
-Subject: [PATCH] Fix build without C++
-
-Fix the following build failure without C++:
-
-CMake Error at CMakeLists.txt:1 (PROJECT):
-  No CMAKE_CXX_COMPILER could be found.
-
-  Tell CMake where to find the compiler by setting either the environment
-  variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path
-  to the compiler, or to the compiler name if it is in the PATH.
-
-Fixes:
- - http://autobuild.buildroot.org/results/a7f2176d40f156c319754ef5d3b7fd0decfe754f
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-[Upstream status: https://github.com/openSUSE/libsolv/pull/520]
----
- CMakeLists.txt     | 2 +-
- ext/CMakeLists.txt | 1 +
- 2 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 3541f496..f899c49a 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,4 +1,4 @@
--PROJECT (libsolv)
-+PROJECT (libsolv C)
- 
- CMAKE_MINIMUM_REQUIRED (VERSION 2.8.5)
- 
-diff --git a/ext/CMakeLists.txt b/ext/CMakeLists.txt
-index f01c0238..589fa946 100644
---- a/ext/CMakeLists.txt
-+++ b/ext/CMakeLists.txt
-@@ -103,6 +103,7 @@ IF (ENABLE_CUDFREPO)
- ENDIF (ENABLE_CUDFREPO)
- 
- IF (ENABLE_HAIKU)
-+    enable_language(CXX)
-     SET (libsolvext_SRCS ${libsolvext_SRCS}
- 	repo_haiku.cpp)
-     SET (libsolvext_HEADERS ${libsolvext_HEADERS}
--- 
-2.39.0
-
diff --git a/package/libsolv/libsolv.hash b/package/libsolv/libsolv.hash
index 162e46e54d..b18a682ccf 100644
--- a/package/libsolv/libsolv.hash
+++ b/package/libsolv/libsolv.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  968aef452b5493751fa0168cd58745a77c755e202a43fe8d549d791eb16034d5  libsolv-0.7.22.tar.gz
+sha256  b382bba4196b19c36eb34e0ef02546c0b922be601c6f73390c9ab643895b656a  libsolv-0.7.25.tar.gz
 sha256  57f15acfb29fbef7749779e096a5885c60b716633e34484a21bb717554c0198f  LICENSE.BSD
diff --git a/package/libsolv/libsolv.mk b/package/libsolv/libsolv.mk
index 04fdb387fd..2a9f1bf208 100644
--- a/package/libsolv/libsolv.mk
+++ b/package/libsolv/libsolv.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBSOLV_VERSION = 0.7.22
+LIBSOLV_VERSION = 0.7.25
 LIBSOLV_SITE = $(call github,openSUSE,libsolv,$(LIBSOLV_VERSION))
 LIBSOLV_LICENSE = BSD-3-Clause
 LIBSOLV_LICENSE_FILES = LICENSE.BSD
-- 
2.42.0

_______________________________________________
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/libsolv: bump to version 0.7.25
  2023-11-05 21:46 [Buildroot] [PATCH 1/1] package/libsolv: bump to version 0.7.25 Fabrice Fontaine
@ 2023-11-06 19:40 ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-11-06 19:40 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: TIAN Yuanhao, buildroot

On Sun,  5 Nov 2023 22:46:27 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Drop patch (already in version)
> 
> https://github.com/openSUSE/libsolv/blob/0.7.25/NEWS
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  .checkpackageignore                           |  1 -
>  .../libsolv/0001-Fix-build-without-C.patch    | 49 -------------------
>  package/libsolv/libsolv.hash                  |  2 +-
>  package/libsolv/libsolv.mk                    |  2 +-
>  4 files changed, 2 insertions(+), 52 deletions(-)
>  delete mode 100644 package/libsolv/0001-Fix-build-without-C.patch

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:[~2023-11-06 19:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-05 21:46 [Buildroot] [PATCH 1/1] package/libsolv: bump to version 0.7.25 Fabrice Fontaine
2023-11-06 19:40 ` Thomas Petazzoni via buildroot

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.