mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH v3] jimtcl: Fixes + Version bump. 0.81 -> 0.82
@ 2023-04-07 19:43 Christian Melki
  2023-04-12  6:29 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2023-04-07 19:43 UTC (permalink / raw)
  To: ptxdist

http://jim.tcl.tk/index.html/doc/www/www/articles/jim-release-0-82/

* Add ZLIB dependency in .in as jimtcl actively searches for it.
* Correct negation options. The jimtcl "configure" script
has stuff enabled as default so negate the options to
actually build stuff as specified.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/jimtcl.in   |  1 +
 rules/jimtcl.make | 12 ++++++------
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/rules/jimtcl.in b/rules/jimtcl.in
index 1e052d3e4..93b869536 100644
--- a/rules/jimtcl.in
+++ b/rules/jimtcl.in
@@ -4,6 +4,7 @@ menuconfig JIMTCL
 	tristate
 	prompt "jimtcl                        "
 	select HOST_JIMTCL
+	select ZLIB
 	select LIBC_M		if JIMTCL_MATH
 	select OPENSSL		if JIMTCL_SSL
 	help
diff --git a/rules/jimtcl.make b/rules/jimtcl.make
index 05b6cc16d..3c99a4115 100644
--- a/rules/jimtcl.make
+++ b/rules/jimtcl.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JIMTCL) += jimtcl
 #
 # Paths and names
 #
-JIMTCL_VERSION	:= 0.81
-JIMTCL_MD5	:= a6d232ed12f47c28b56c97a955448e34
+JIMTCL_VERSION	:= 0.82
+JIMTCL_MD5	:= 7d6be6bff1079778bf27d50ba9185388
 JIMTCL		:= jimtcl-$(JIMTCL_VERSION)
 JIMTCL_SUFFIX	:= tar.gz
 JIMTCL_URL	:= https://github.com/msteveb/jimtcl/archive/refs/tags/$(JIMTCL_VERSION).$(JIMTCL_SUFFIX)
@@ -39,12 +39,12 @@ JIMTCL_CONF_ENV		:= \
 	autosetup_tclsh=$(PTXDIST_SYSROOT_HOST)/usr/bin/jimsh
 JIMTCL_CONF_OPT		:= \
 	$(CROSS_AUTOCONF_USR) \
-	$(call ptx/ifdef, PTXCONF_JIMTCL_UTF8,--utf8,) \
+	$(call ptx/ifdef, PTXCONF_JIMTCL_UTF8,,--disable-utf8) \
 	$(call ptx/ifdef, PTXCONF_JIMTCL_LINEEDIT,,--disable-lineedit) \
 	$(call ptx/ifdef, PTXCONF_JIMTCL_REFERENCES,,--disable-references) \
-	$(call ptx/ifdef, PTXCONF_JIMTCL_MATH,--math,) \
-	$(call ptx/ifdef, PTXCONF_JIMTCL_SSL,--ssl,) \
-	$(call ptx/ifdef, PTXCONF_GLOBAL_IPV6,--ipv6,) \
+	$(call ptx/ifdef, PTXCONF_JIMTCL_MATH,,--disable-math) \
+	$(call ptx/ifdef, PTXCONF_JIMTCL_SSL,,--disable-ssl) \
+	$(call ptx/ifdef, PTXCONF_GLOBAL_IPV6,,--disable-ipv6) \
 	--shared \
 	$(call ptx/ifdef, PTXCONF_JIMTCL_POSIX_REGEX,--disable-jim-regexp,) \
 	--disable-docs \
-- 
2.34.1




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

* Re: [ptxdist] [APPLIED] jimtcl: Fixes + Version bump. 0.81 -> 0.82
  2023-04-07 19:43 [ptxdist] [PATCH v3] jimtcl: Fixes + Version bump. 0.81 -> 0.82 Christian Melki
@ 2023-04-12  6:29 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2023-04-12  6:29 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as df268e8b231cd04fc4d03fd59429638b87cb799e.

Michael

[sent from post-receive hook]

On Wed, 12 Apr 2023 08:29:55 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> http://jim.tcl.tk/index.html/doc/www/www/articles/jim-release-0-82/
> 
> * Add ZLIB dependency in .in as jimtcl actively searches for it.
> * Correct negation options. The jimtcl "configure" script
> has stuff enabled as default so negate the options to
> actually build stuff as specified.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20230407194311.2036233-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/jimtcl.in b/rules/jimtcl.in
> index 1e052d3e41f6..93b869536df1 100644
> --- a/rules/jimtcl.in
> +++ b/rules/jimtcl.in
> @@ -4,6 +4,7 @@ menuconfig JIMTCL
>  	tristate
>  	prompt "jimtcl                        "
>  	select HOST_JIMTCL
> +	select ZLIB
>  	select LIBC_M		if JIMTCL_MATH
>  	select OPENSSL		if JIMTCL_SSL
>  	help
> diff --git a/rules/jimtcl.make b/rules/jimtcl.make
> index 05b6cc16daff..3c99a4115589 100644
> --- a/rules/jimtcl.make
> +++ b/rules/jimtcl.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JIMTCL) += jimtcl
>  #
>  # Paths and names
>  #
> -JIMTCL_VERSION	:= 0.81
> -JIMTCL_MD5	:= a6d232ed12f47c28b56c97a955448e34
> +JIMTCL_VERSION	:= 0.82
> +JIMTCL_MD5	:= 7d6be6bff1079778bf27d50ba9185388
>  JIMTCL		:= jimtcl-$(JIMTCL_VERSION)
>  JIMTCL_SUFFIX	:= tar.gz
>  JIMTCL_URL	:= https://github.com/msteveb/jimtcl/archive/refs/tags/$(JIMTCL_VERSION).$(JIMTCL_SUFFIX)
> @@ -39,12 +39,12 @@ JIMTCL_CONF_ENV		:= \
>  	autosetup_tclsh=$(PTXDIST_SYSROOT_HOST)/usr/bin/jimsh
>  JIMTCL_CONF_OPT		:= \
>  	$(CROSS_AUTOCONF_USR) \
> -	$(call ptx/ifdef, PTXCONF_JIMTCL_UTF8,--utf8,) \
> +	$(call ptx/ifdef, PTXCONF_JIMTCL_UTF8,,--disable-utf8) \
>  	$(call ptx/ifdef, PTXCONF_JIMTCL_LINEEDIT,,--disable-lineedit) \
>  	$(call ptx/ifdef, PTXCONF_JIMTCL_REFERENCES,,--disable-references) \
> -	$(call ptx/ifdef, PTXCONF_JIMTCL_MATH,--math,) \
> -	$(call ptx/ifdef, PTXCONF_JIMTCL_SSL,--ssl,) \
> -	$(call ptx/ifdef, PTXCONF_GLOBAL_IPV6,--ipv6,) \
> +	$(call ptx/ifdef, PTXCONF_JIMTCL_MATH,,--disable-math) \
> +	$(call ptx/ifdef, PTXCONF_JIMTCL_SSL,,--disable-ssl) \
> +	$(call ptx/ifdef, PTXCONF_GLOBAL_IPV6,,--disable-ipv6) \
>  	--shared \
>  	$(call ptx/ifdef, PTXCONF_JIMTCL_POSIX_REGEX,--disable-jim-regexp,) \
>  	--disable-docs \



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

end of thread, other threads:[~2023-04-12  6:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-07 19:43 [ptxdist] [PATCH v3] jimtcl: Fixes + Version bump. 0.81 -> 0.82 Christian Melki
2023-04-12  6:29 ` [ptxdist] [APPLIED] " Michael Olbrich

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