All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/glm: Bump to 1.0.0
@ 2024-02-06 10:21 Andreas Naumann
  2024-02-06 14:03 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Naumann @ 2024-02-06 10:21 UTC (permalink / raw)
  To: buildroot; +Cc: fontaine.fabrice, Andreas Naumann

glm did not install headers since [1], at least in a per-package
build. Bumping to 1.0.0 fixes that.
The cmake option to avoid building the lib has changed

Partially fixes [2], where cegui failed to configure because of
the missing glm headers.

[1] 01ad113  package/glm: bump to version 0.9.9.8
[2] http://autobuild.buildroot.org/results/241/241a60f8ecb6fec5dc122d64dd438dd4249f8c3e/

Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>
---
note: 0.9.9.8 from 2020 was the latest tag until a 1.0.0 was cut about
two weeks ago (24th january 2024). I've seen commit 3a4b550 which might
have been responsible but didnt check since 1.0.0 was available.


 package/glm/glm.hash | 2 +-
 package/glm/glm.mk   | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/package/glm/glm.hash b/package/glm/glm.hash
index c4e21016047..0084bd0930c 100644
--- a/package/glm/glm.hash
+++ b/package/glm/glm.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  7d508ab72cb5d43227a3711420f06ff99b0a0cb63ee2f93631b162bfe1fe9592  glm-0.9.9.8.tar.gz
+sha256  e51f6c89ff33b7cfb19daafb215f293d106cd900f8d681b9b1295312ccadbd23  glm-1.0.0.tar.gz
 sha256  62d2d642c7d054d4fb4c9b42faad617d6c88fcd91e317f8035aa9f277cc159c3  copying.txt
diff --git a/package/glm/glm.mk b/package/glm/glm.mk
index ef549931f6a..ce8efc11a78 100644
--- a/package/glm/glm.mk
+++ b/package/glm/glm.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-GLM_VERSION = 0.9.9.8
+GLM_VERSION = 1.0.0
 GLM_SITE = $(call github,g-truc,glm,$(GLM_VERSION))
 GLM_LICENSE = MIT
 GLM_LICENSE_FILES = copying.txt
@@ -17,7 +17,6 @@ GLM_INSTALL_TARGET = NO
 # Don't build libraries as GLM is header-only
 GLM_CONF_OPTS = \
 	-DGLM_TEST_ENABLE=OFF \
-	-DBUILD_SHARED_LIBS=OFF \
-	-DBUILD_STATIC_LIBS=OFF
+	-DGLM_BUILD_LIBRARY=OFF
 
 $(eval $(cmake-package))
-- 
2.34.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/glm: Bump to 1.0.0
  2024-02-06 10:21 [Buildroot] [PATCH 1/1] package/glm: Bump to 1.0.0 Andreas Naumann
@ 2024-02-06 14:03 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2024-02-06 14:03 UTC (permalink / raw)
  To: Andreas Naumann; +Cc: fontaine.fabrice, buildroot

Andreas, All,

On 2024-02-06 11:21 +0100, Andreas Naumann spake thusly:
> glm did not install headers since [1], at least in a per-package
> build. Bumping to 1.0.0 fixes that.
> The cmake option to avoid building the lib has changed
> 
> Partially fixes [2], where cegui failed to configure because of
> the missing glm headers.
> 
> [1] 01ad113  package/glm: bump to version 0.9.9.8
> [2] http://autobuild.buildroot.org/results/241/241a60f8ecb6fec5dc122d64dd438dd4249f8c3e/
> 
> Signed-off-by: Andreas Naumann <anaumann@ultratronik.de>

Applied to master, thanks.

Bernd sent an earlier patch to bump to a random git sha1, and I grabbed
the failures from his commit log and added them to this patch when
applying.

Regards,
Yann E. MORIN.

> ---
> note: 0.9.9.8 from 2020 was the latest tag until a 1.0.0 was cut about
> two weeks ago (24th january 2024). I've seen commit 3a4b550 which might
> have been responsible but didnt check since 1.0.0 was available.
> 
> 
>  package/glm/glm.hash | 2 +-
>  package/glm/glm.mk   | 5 ++---
>  2 files changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/package/glm/glm.hash b/package/glm/glm.hash
> index c4e21016047..0084bd0930c 100644
> --- a/package/glm/glm.hash
> +++ b/package/glm/glm.hash
> @@ -1,3 +1,3 @@
>  # Locally calculated
> -sha256  7d508ab72cb5d43227a3711420f06ff99b0a0cb63ee2f93631b162bfe1fe9592  glm-0.9.9.8.tar.gz
> +sha256  e51f6c89ff33b7cfb19daafb215f293d106cd900f8d681b9b1295312ccadbd23  glm-1.0.0.tar.gz
>  sha256  62d2d642c7d054d4fb4c9b42faad617d6c88fcd91e317f8035aa9f277cc159c3  copying.txt
> diff --git a/package/glm/glm.mk b/package/glm/glm.mk
> index ef549931f6a..ce8efc11a78 100644
> --- a/package/glm/glm.mk
> +++ b/package/glm/glm.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -GLM_VERSION = 0.9.9.8
> +GLM_VERSION = 1.0.0
>  GLM_SITE = $(call github,g-truc,glm,$(GLM_VERSION))
>  GLM_LICENSE = MIT
>  GLM_LICENSE_FILES = copying.txt
> @@ -17,7 +17,6 @@ GLM_INSTALL_TARGET = NO
>  # Don't build libraries as GLM is header-only
>  GLM_CONF_OPTS = \
>  	-DGLM_TEST_ENABLE=OFF \
> -	-DBUILD_SHARED_LIBS=OFF \
> -	-DBUILD_STATIC_LIBS=OFF
> +	-DGLM_BUILD_LIBRARY=OFF
>  
>  $(eval $(cmake-package))
> -- 
> 2.34.1
> 
> _______________________________________________
> 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] 2+ messages in thread

end of thread, other threads:[~2024-02-06 14:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-06 10:21 [Buildroot] [PATCH 1/1] package/glm: Bump to 1.0.0 Andreas Naumann
2024-02-06 14:03 ` Yann E. MORIN

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.