All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/jsmn: bump to version 1.1.0
@ 2020-01-08 21:44 Fabrice Fontaine
  2020-01-08 22:11 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2020-01-08 21:44 UTC (permalink / raw)
  To: buildroot

- jsmn is a single-header, header-only library since version 1.1.0 and
  https://github.com/zserge/jsmn/commit/fdcef3ebf886fa210d14956d3c068a653e76a24e
- Add hash for license file

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/jsmn/jsmn.hash |  3 ++-
 package/jsmn/jsmn.mk   | 11 +++--------
 2 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/package/jsmn/jsmn.hash b/package/jsmn/jsmn.hash
index 91f64201e7..b5a78f6ebf 100644
--- a/package/jsmn/jsmn.hash
+++ b/package/jsmn/jsmn.hash
@@ -1,2 +1,3 @@
 # Locally computed
-sha256  e08993848b2abab62aa9572a560bb6e5ed4762f8537cd67c4de6cb17e17090a0    jsmn-6021415cc75e7922d45b12935f56348b064d8a7f.tar.gz
+sha256  5f0913a10657fe7ec8d5794ccf00a01000e3e1f2f1e1f143c34a0f7b47edcb38    jsmn-1.1.0.tar.gz
+sha256  4675b94a50d2afe811c52785463c854f1156056632cce17cc7133939eac8ed55    LICENSE
diff --git a/package/jsmn/jsmn.mk b/package/jsmn/jsmn.mk
index c98f2798ee..750e8cf82c 100644
--- a/package/jsmn/jsmn.mk
+++ b/package/jsmn/jsmn.mk
@@ -4,20 +4,15 @@
 #
 ################################################################################
 
-JSMN_VERSION = 6021415cc75e7922d45b12935f56348b064d8a7f
-JSMN_SITE = $(call github,zserge,jsmn,$(JSMN_VERSION))
+JSMN_VERSION = 1.1.0
+JSMN_SITE = $(call github,zserge,jsmn,v$(JSMN_VERSION))
 JSMN_LICENSE = MIT
 JSMN_LICENSE_FILES = LICENSE
-# static library only
+# single-header, header-only library
 JSMN_INSTALL_STAGING = YES
 JSMN_INSTALL_TARGET = NO
 
-define JSMN_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
-endef
-
 define JSMN_INSTALL_STAGING_CMDS
-	$(INSTALL) -D -m 0644 $(@D)/libjsmn.a $(STAGING_DIR)/usr/lib/libjsmn.a
 	$(INSTALL) -D -m 0644 $(@D)/jsmn.h $(STAGING_DIR)/usr/include/jsmn.h
 endef
 
-- 
2.24.1

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

* [Buildroot] [PATCH 1/1] package/jsmn: bump to version 1.1.0
  2020-01-08 21:44 [Buildroot] [PATCH 1/1] package/jsmn: bump to version 1.1.0 Fabrice Fontaine
@ 2020-01-08 22:11 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2020-01-08 22:11 UTC (permalink / raw)
  To: buildroot

Fabrice, All,

On 2020-01-08 22:44 +0100, Fabrice Fontaine spake thusly:
> - jsmn is a single-header, header-only library since version 1.1.0 and
>   https://github.com/zserge/jsmn/commit/fdcef3ebf886fa210d14956d3c068a653e76a24e
> - Add hash for license file
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/jsmn/jsmn.hash |  3 ++-
>  package/jsmn/jsmn.mk   | 11 +++--------
>  2 files changed, 5 insertions(+), 9 deletions(-)
> 
> diff --git a/package/jsmn/jsmn.hash b/package/jsmn/jsmn.hash
> index 91f64201e7..b5a78f6ebf 100644
> --- a/package/jsmn/jsmn.hash
> +++ b/package/jsmn/jsmn.hash
> @@ -1,2 +1,3 @@
>  # Locally computed
> -sha256  e08993848b2abab62aa9572a560bb6e5ed4762f8537cd67c4de6cb17e17090a0    jsmn-6021415cc75e7922d45b12935f56348b064d8a7f.tar.gz
> +sha256  5f0913a10657fe7ec8d5794ccf00a01000e3e1f2f1e1f143c34a0f7b47edcb38    jsmn-1.1.0.tar.gz
> +sha256  4675b94a50d2afe811c52785463c854f1156056632cce17cc7133939eac8ed55    LICENSE
> diff --git a/package/jsmn/jsmn.mk b/package/jsmn/jsmn.mk
> index c98f2798ee..750e8cf82c 100644
> --- a/package/jsmn/jsmn.mk
> +++ b/package/jsmn/jsmn.mk
> @@ -4,20 +4,15 @@
>  #
>  ################################################################################
>  
> -JSMN_VERSION = 6021415cc75e7922d45b12935f56348b064d8a7f
> -JSMN_SITE = $(call github,zserge,jsmn,$(JSMN_VERSION))
> +JSMN_VERSION = 1.1.0
> +JSMN_SITE = $(call github,zserge,jsmn,v$(JSMN_VERSION))
>  JSMN_LICENSE = MIT
>  JSMN_LICENSE_FILES = LICENSE
> -# static library only
> +# single-header, header-only library
>  JSMN_INSTALL_STAGING = YES
>  JSMN_INSTALL_TARGET = NO
>  
> -define JSMN_BUILD_CMDS
> -	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
> -endef
> -
>  define JSMN_INSTALL_STAGING_CMDS
> -	$(INSTALL) -D -m 0644 $(@D)/libjsmn.a $(STAGING_DIR)/usr/lib/libjsmn.a
>  	$(INSTALL) -D -m 0644 $(@D)/jsmn.h $(STAGING_DIR)/usr/include/jsmn.h
>  endef
>  
> -- 
> 2.24.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2020-01-08 22:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-08 21:44 [Buildroot] [PATCH 1/1] package/jsmn: bump to version 1.1.0 Fabrice Fontaine
2020-01-08 22:11 ` 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.