Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/hiredis: do not install nuget packaging file
@ 2024-01-20 13:28 Yann E. MORIN
  2024-01-27 16:44 ` Yann E. MORIN
  2024-02-28 16:29 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-01-20 13:28 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E. MORIN, Fabrice Fontaine

The NuGet packaging description file is installed as:
    $(DEST_DIR)/build/native/hiredis.targets

This is a sprurious file that has nothing to do on a Linux system,
whether that be in host/, staging/, or target/.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...ption-to-not-install-NuGet-packaging.patch | 51 +++++++++++++++++++
 package/hiredis/hiredis.mk                    |  4 +-
 2 files changed, 53 insertions(+), 2 deletions(-)
 create mode 100644 package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch

diff --git a/package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch b/package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch
new file mode 100644
index 0000000000..3997e78a07
--- /dev/null
+++ b/package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch
@@ -0,0 +1,51 @@
+From 3b7956ef4140df78cb65e253744782587e3b66e4 Mon Sep 17 00:00:00 2001
+From: "Yann E. MORIN" <yann.morin.1998@free.fr>
+Date: Sat, 20 Jan 2024 13:53:39 +0100
+Subject: [PATCH] CMakeList: add option to not install NuGet packaging
+
+The NuGet hiredis.target packaging description file is of no use on
+systems that are not using NuGet, like Linux systems, and the spurious
+presence of that file is not "clean".
+
+Add a cmake option to allow users to disable installation of that file.
+As some people may have relied on that file to be installed, continue to
+install it by default.
+
+Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
+Upstream: https://github.com/redis/hiredis/pull/1246
+---
+ CMakeLists.txt | 11 ++++++++---
+ 1 file changed, 8 insertions(+), 3 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index b7d6ee8..0fcf29b 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -6,6 +6,9 @@ OPTION(DISABLE_TESTS "If tests should be compiled or not" OFF)
+ OPTION(ENABLE_SSL_TESTS "Should we test SSL connections" OFF)
+ OPTION(ENABLE_EXAMPLES "Enable building hiredis examples" OFF)
+ OPTION(ENABLE_ASYNC_TESTS "Should we run all asynchronous API tests" OFF)
++# Historically, the NuGet file was always install; default
++# to ON for those who rely on that historical behaviour.
++OPTION(ENABLE_NUGET "Install NuGET packaging details" ON)
+
+ MACRO(getVersionBit name)
+   SET(VERSION_REGEX "^#define ${name} (.+)$")
+@@ -105,9 +108,11 @@ if (MSVC AND BUILD_SHARED_LIBS)
+         CONFIGURATIONS Debug RelWithDebInfo)
+ endif()
+
+-# For NuGet packages
+-INSTALL(FILES hiredis.targets
+-    DESTINATION build/native)
++if (ENABLE_NUGET)
++    # For NuGet packages
++    INSTALL(FILES hiredis.targets
++        DESTINATION build/native)
++endif()
+
+ INSTALL(FILES hiredis.h read.h sds.h async.h alloc.h sockcompat.h
+     DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/hiredis)
+--
+2.43.0
+
diff --git a/package/hiredis/hiredis.mk b/package/hiredis/hiredis.mk
index a7a6d639e6..476b079336 100644
--- a/package/hiredis/hiredis.mk
+++ b/package/hiredis/hiredis.mk
@@ -12,8 +12,8 @@ HIREDIS_LICENSE_FILES = COPYING
 HIREDIS_CPE_ID_VENDOR = redislabs
 HIREDIS_INSTALL_STAGING = YES
 
-HIREDIS_CONF_OPTS = -DDISABLE_TESTS=ON
-HOST_HIREDIS_CONF_OPTS = -DDISABLE_TESTS=ON -DENABLE_SSL=OFF
+HIREDIS_CONF_OPTS = -DENABLE_NUGET=OFF -DDISABLE_TESTS=ON
+HOST_HIREDIS_CONF_OPTS = -DENABLE_NUGET=OFF -DDISABLE_TESTS=ON -DENABLE_SSL=OFF
 
 # Set CMAKE_BUILD_TYPE to Release or the libraries will be suffixed with "d"
 # resulting in build failures when linking.
-- 
2.43.0

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

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

* Re: [Buildroot] [PATCH] package/hiredis: do not install nuget packaging file
  2024-01-20 13:28 [Buildroot] [PATCH] package/hiredis: do not install nuget packaging file Yann E. MORIN
@ 2024-01-27 16:44 ` Yann E. MORIN
  2024-02-28 16:29 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-01-27 16:44 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

All,

On 2024-01-20 14:28 +0100, Yann E. MORIN spake thusly:
> The NuGet packaging description file is installed as:
>     $(DEST_DIR)/build/native/hiredis.targets
> 
> This is a sprurious file that has nothing to do on a Linux system,
> whether that be in host/, staging/, or target/.
> 
> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  ...ption-to-not-install-NuGet-packaging.patch | 51 +++++++++++++++++++
>  package/hiredis/hiredis.mk                    |  4 +-
>  2 files changed, 53 insertions(+), 2 deletions(-)
>  create mode 100644 package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch
> 
> diff --git a/package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch b/package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch
> new file mode 100644
> index 0000000000..3997e78a07
> --- /dev/null
> +++ b/package/hiredis/0001-CMakeList-add-option-to-not-install-NuGet-packaging.patch
> @@ -0,0 +1,51 @@
> +From 3b7956ef4140df78cb65e253744782587e3b66e4 Mon Sep 17 00:00:00 2001
> +From: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +Date: Sat, 20 Jan 2024 13:53:39 +0100
> +Subject: [PATCH] CMakeList: add option to not install NuGet packaging
> +
> +The NuGet hiredis.target packaging description file is of no use on
> +systems that are not using NuGet, like Linux systems, and the spurious
> +presence of that file is not "clean".
> +
> +Add a cmake option to allow users to disable installation of that file.
> +As some people may have relied on that file to be installed, continue to
> +install it by default.
> +
> +Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> +Upstream: https://github.com/redis/hiredis/pull/1246

The patch was accepted upstream, so: applied to master, thanks.

Regards,
Yann E. MORIN.

> +---
> + CMakeLists.txt | 11 ++++++++---
> + 1 file changed, 8 insertions(+), 3 deletions(-)
> +
> +diff --git a/CMakeLists.txt b/CMakeLists.txt
> +index b7d6ee8..0fcf29b 100644
> +--- a/CMakeLists.txt
> ++++ b/CMakeLists.txt
> +@@ -6,6 +6,9 @@ OPTION(DISABLE_TESTS "If tests should be compiled or not" OFF)
> + OPTION(ENABLE_SSL_TESTS "Should we test SSL connections" OFF)
> + OPTION(ENABLE_EXAMPLES "Enable building hiredis examples" OFF)
> + OPTION(ENABLE_ASYNC_TESTS "Should we run all asynchronous API tests" OFF)
> ++# Historically, the NuGet file was always install; default
> ++# to ON for those who rely on that historical behaviour.
> ++OPTION(ENABLE_NUGET "Install NuGET packaging details" ON)
> +
> + MACRO(getVersionBit name)
> +   SET(VERSION_REGEX "^#define ${name} (.+)$")
> +@@ -105,9 +108,11 @@ if (MSVC AND BUILD_SHARED_LIBS)
> +         CONFIGURATIONS Debug RelWithDebInfo)
> + endif()
> +
> +-# For NuGet packages
> +-INSTALL(FILES hiredis.targets
> +-    DESTINATION build/native)
> ++if (ENABLE_NUGET)
> ++    # For NuGet packages
> ++    INSTALL(FILES hiredis.targets
> ++        DESTINATION build/native)
> ++endif()
> +
> + INSTALL(FILES hiredis.h read.h sds.h async.h alloc.h sockcompat.h
> +     DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/hiredis)
> +--
> +2.43.0
> +
> diff --git a/package/hiredis/hiredis.mk b/package/hiredis/hiredis.mk
> index a7a6d639e6..476b079336 100644
> --- a/package/hiredis/hiredis.mk
> +++ b/package/hiredis/hiredis.mk
> @@ -12,8 +12,8 @@ HIREDIS_LICENSE_FILES = COPYING
>  HIREDIS_CPE_ID_VENDOR = redislabs
>  HIREDIS_INSTALL_STAGING = YES
>  
> -HIREDIS_CONF_OPTS = -DDISABLE_TESTS=ON
> -HOST_HIREDIS_CONF_OPTS = -DDISABLE_TESTS=ON -DENABLE_SSL=OFF
> +HIREDIS_CONF_OPTS = -DENABLE_NUGET=OFF -DDISABLE_TESTS=ON
> +HOST_HIREDIS_CONF_OPTS = -DENABLE_NUGET=OFF -DDISABLE_TESTS=ON -DENABLE_SSL=OFF
>  
>  # Set CMAKE_BUILD_TYPE to Release or the libraries will be suffixed with "d"
>  # resulting in build failures when linking.
> -- 
> 2.43.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/hiredis: do not install nuget packaging file
  2024-01-20 13:28 [Buildroot] [PATCH] package/hiredis: do not install nuget packaging file Yann E. MORIN
  2024-01-27 16:44 ` Yann E. MORIN
@ 2024-02-28 16:29 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-02-28 16:29 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: Fabrice Fontaine, buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > The NuGet packaging description file is installed as:
 >     $(DEST_DIR)/build/native/hiredis.targets

 > This is a sprurious file that has nothing to do on a Linux system,
 > whether that be in host/, staging/, or target/.

 > Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2023.11.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-02-28 16:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-20 13:28 [Buildroot] [PATCH] package/hiredis: do not install nuget packaging file Yann E. MORIN
2024-01-27 16:44 ` Yann E. MORIN
2024-02-28 16:29 ` Peter Korsgaard

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