All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
@ 2021-10-01 11:54 Jianhui Zhao
  2021-10-11 21:18 ` Arnout Vandecappelle
  0 siblings, 1 reply; 7+ messages in thread
From: Jianhui Zhao @ 2021-10-01 11:54 UTC (permalink / raw)
  To: buildroot; +Cc: Jianhui Zhao

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
---
 package/rtty/rtty.hash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
index b2e9db2436..1b46aff47c 100644
--- a/package/rtty/rtty.hash
+++ b/package/rtty/rtty.hash
@@ -1,2 +1,2 @@
-sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802  rtty-7.4.0.tar.gz
+sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49  rtty-8.0.0.tar.gz
 sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55  LICENSE
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
  2021-10-01 11:54 [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0 Jianhui Zhao
@ 2021-10-11 21:18 ` Arnout Vandecappelle
  0 siblings, 0 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2021-10-11 21:18 UTC (permalink / raw)
  To: Jianhui Zhao, buildroot

  Hi Jianhui,

On 01/10/2021 13:54, Jianhui Zhao wrote:
> Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
> ---
>   package/rtty/rtty.hash | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
> index b2e9db2436..1b46aff47c 100644
> --- a/package/rtty/rtty.hash
> +++ b/package/rtty/rtty.hash
> @@ -1,2 +1,2 @@
> -sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802  rtty-7.4.0.tar.gz
> +sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49  rtty-8.0.0.tar.gz
>   sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55  LICENSE

  As Peter already observed, the update of the .mk file is missing so this can 
never work.

  I wanted to fix that while committing, but it turns out that a basic build 
also fails with:

-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the 
system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY 
OPENSSL_INCLUDE_DIR)
-- Checking for module 'openssl'
--   Package 'openssl', required by 'virtual:world', not found
-- Could NOT find WolfSSL (missing: WOLFSSL_LIBRARY WOLFSSL_INCLUDE_DIR)
-- Could NOT find MbedTLS (missing: MBEDTLS_LIBRARY MBEDX509_LIBRARY 
MBEDCRYPTO_LIBRARY MBEDTLS_INCLUDE_DIR)
-- Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
CMake Warning at src/ssl/CMakeLists.txt:46 (message):
   No available SSL libraries found


So clearly from this version onwards, an SSL library is required. That means you 
need to update Config.in with a select:

	select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS && !BR2_PACKAGE_WOLFSSL


You'll need to test a little with menuconfig and randconfig if this works correctly.

  With that, I've set the patch to Changes Requested in patchwork.

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

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

* Re: [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
  2021-10-03 20:01 ` Peter Seiderer
@ 2021-10-04  6:48   ` Jianhui zhao
  0 siblings, 0 replies; 7+ messages in thread
From: Jianhui zhao @ 2021-10-04  6:48 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

Yes, that's it.

Peter Seiderer <ps.report@gmx.net> 于2021年10月4日周一 上午4:01写道:
>
> Hello Jianhui,
>
> On Fri, 1 Oct 2021 15:20:26 +0800, Jianhui zhao <zhaojh329@gmail.com> wrote:
>
> > Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
> > ---
> >  package/rtty/rtty.hash | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
> > index b2e9db2436..1b46aff47c 100644
> > --- a/package/rtty/rtty.hash
> > +++ b/package/rtty/rtty.hash
> > @@ -1,2 +1,2 @@
> > -sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802
> >  rtty-7.4.0.tar.gz
> > +sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49
> >  rtty-8.0.0.tar.gz
> >  sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55
> >  LICENSE
>
> Change to package/rtty/rtty.mk RTTY_VERSION missing?
>
> Regards,
> Peter
>
> > --
> > 2.25.1
> > _______________________________________________
> > buildroot mailing list
> > buildroot@buildroot.org
> > https://lists.buildroot.org/mailman/listinfo/buildroot
>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
  2021-10-01  7:20 Jianhui zhao
@ 2021-10-03 20:01 ` Peter Seiderer
  2021-10-04  6:48   ` Jianhui zhao
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Seiderer @ 2021-10-03 20:01 UTC (permalink / raw)
  To: Jianhui zhao; +Cc: buildroot

Hello Jianhui,

On Fri, 1 Oct 2021 15:20:26 +0800, Jianhui zhao <zhaojh329@gmail.com> wrote:

> Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
> ---
>  package/rtty/rtty.hash | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
> index b2e9db2436..1b46aff47c 100644
> --- a/package/rtty/rtty.hash
> +++ b/package/rtty/rtty.hash
> @@ -1,2 +1,2 @@
> -sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802
>  rtty-7.4.0.tar.gz
> +sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49
>  rtty-8.0.0.tar.gz
>  sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55
>  LICENSE

Change to package/rtty/rtty.mk RTTY_VERSION missing?

Regards,
Peter

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

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

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

* [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
@ 2021-10-01 11:46 Jianhui zhao
  0 siblings, 0 replies; 7+ messages in thread
From: Jianhui zhao @ 2021-10-01 11:46 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
---
 package/rtty/rtty.hash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
index b2e9db2436..1b46aff47c 100644
--- a/package/rtty/rtty.hash
+++ b/package/rtty/rtty.hash
@@ -1,2 +1,2 @@
-sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802
 rtty-7.4.0.tar.gz
+sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49
 rtty-8.0.0.tar.gz
 sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55
 LICENSE
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
@ 2021-10-01  7:20 Jianhui zhao
  2021-10-03 20:01 ` Peter Seiderer
  0 siblings, 1 reply; 7+ messages in thread
From: Jianhui zhao @ 2021-10-01  7:20 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
---
 package/rtty/rtty.hash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
index b2e9db2436..1b46aff47c 100644
--- a/package/rtty/rtty.hash
+++ b/package/rtty/rtty.hash
@@ -1,2 +1,2 @@
-sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802
 rtty-7.4.0.tar.gz
+sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49
 rtty-8.0.0.tar.gz
 sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55
 LICENSE
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0
@ 2021-09-27 15:55 Jianhui Zhao
  0 siblings, 0 replies; 7+ messages in thread
From: Jianhui Zhao @ 2021-09-27 15:55 UTC (permalink / raw)
  To: buildroot; +Cc: Jianhui Zhao

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
---
 package/rtty/rtty.hash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
index b2e9db2436..1b46aff47c 100644
--- a/package/rtty/rtty.hash
+++ b/package/rtty/rtty.hash
@@ -1,2 +1,2 @@
-sha256  9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802  rtty-7.4.0.tar.gz
+sha256  b9c555005b76c1ad0f5af891964375bbdf50ee22b9a9f53ddd48d2cdb4e53b49  rtty-8.0.0.tar.gz
 sha256  99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55  LICENSE
-- 
2.25.1

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

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

end of thread, other threads:[~2021-10-11 21:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01 11:54 [Buildroot] [PATCH 1/1] package/rtty: bump version to 8.0.0 Jianhui Zhao
2021-10-11 21:18 ` Arnout Vandecappelle
  -- strict thread matches above, loose matches on Subject: below --
2021-10-01 11:46 Jianhui zhao
2021-10-01  7:20 Jianhui zhao
2021-10-03 20:01 ` Peter Seiderer
2021-10-04  6:48   ` Jianhui zhao
2021-09-27 15:55 Jianhui Zhao

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.