All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: new package
@ 2019-12-18 20:18 Thomas De Schampheleire
  2019-12-18 20:18 ` [Buildroot] [PATCH 2/3] package/perl-math-bigint: " Thomas De Schampheleire
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Thomas De Schampheleire @ 2019-12-18 20:18 UTC (permalink / raw)
  To: buildroot

From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Standard generated with utils/scancpan, manually updating _LICENSE and
adding openssl dependency.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 DEVELOPERS                                        |  1 +
 package/Config.in                                 |  1 +
 package/perl-crypt-openssl-aes/Config.in          | 11 +++++++++++
 .../perl-crypt-openssl-aes.hash                   |  6 ++++++
 .../perl-crypt-openssl-aes.mk                     | 15 +++++++++++++++
 5 files changed, 34 insertions(+)
 create mode 100644 package/perl-crypt-openssl-aes/Config.in
 create mode 100644 package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.hash
 create mode 100644 package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index d9b4864b9f..19c66948f8 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2329,6 +2329,7 @@ F:	package/opkg-utils/
 F:	package/perl-convert-asn1/
 F:	package/perl-crypt-blowfish/
 F:	package/perl-crypt-cbc/
+F:	package/perl-crypt-openssl-aes/
 F:	package/perl-digest-md5/
 F:	package/perl-mime-base64-urlsafe/
 F:	package/perl-mojolicious-plugin-authentication/
diff --git a/package/Config.in b/package/Config.in
index f304a8fbd3..fc5228447a 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -705,6 +705,7 @@ menu "Perl libraries/modules"
 	source "package/perl-cookie-baker/Config.in"
 	source "package/perl-crypt-blowfish/Config.in"
 	source "package/perl-crypt-cbc/Config.in"
+	source "package/perl-crypt-openssl-aes/Config.in"
 	source "package/perl-crypt-openssl-random/Config.in"
 	source "package/perl-crypt-openssl-rsa/Config.in"
 	source "package/perl-data-dump/Config.in"
diff --git a/package/perl-crypt-openssl-aes/Config.in b/package/perl-crypt-openssl-aes/Config.in
new file mode 100644
index 0000000000..ab408d0a2c
--- /dev/null
+++ b/package/perl-crypt-openssl-aes/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_PERL_CRYPT_OPENSSL_AES
+	bool "perl-crypt-openssl-aes"
+	depends on !BR2_STATIC_LIBS
+	select BR2_PACKAGE_OPENSSL
+	help
+	  A Perl wrapper around OpenSSL's AES library.
+
+	  https://metacpan.org/release/Crypt-OpenSSL-AES
+
+comment "perl-crypt-openssl-aes needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.hash b/package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.hash
new file mode 100644
index 0000000000..07064dfbbe
--- /dev/null
+++ b/package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    269db65cbf580c3174471a2cbc9a9d95 Crypt-OpenSSL-AES-0.02.tar.gz
+sha256 b66fab514edf97fc32f58da257582704a210c2b35e297d5c31b7fa2ffd08e908 Crypt-OpenSSL-AES-0.02.tar.gz
+
+# computed by scancpan
+sha256 a60b8c187cc5d90f7a43adc6be3c127abaa4c739e1e7fdcff16be358533d037f README
diff --git a/package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.mk b/package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.mk
new file mode 100644
index 0000000000..c05f3a9c3d
--- /dev/null
+++ b/package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# perl-crypt-openssl-aes
+#
+################################################################################
+
+PERL_CRYPT_OPENSSL_AES_VERSION = 0.02
+PERL_CRYPT_OPENSSL_AES_SOURCE = Crypt-OpenSSL-AES-$(PERL_CRYPT_OPENSSL_AES_VERSION).tar.gz
+PERL_CRYPT_OPENSSL_AES_SITE = $(BR2_CPAN_MIRROR)/authors/id/T/TT/TTAR
+PERL_CRYPT_OPENSSL_AES_LICENSE = Artistic or GPL-1.0+
+PERL_CRYPT_OPENSSL_AES_LICENSE_FILES = README
+PERL_CRYPT_OPENSSL_AES_DISTNAME = Crypt-OpenSSL-AES
+PERL_CRYPT_OPENSSL_AES_DEPENDENCIES = openssl
+
+$(eval $(perl-package))
-- 
2.23.0

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

* [Buildroot] [PATCH 2/3] package/perl-math-bigint: new package
  2019-12-18 20:18 [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: new package Thomas De Schampheleire
@ 2019-12-18 20:18 ` Thomas De Schampheleire
  2019-12-22 12:07   ` François Perrad
  2019-12-18 20:18 ` [Buildroot] [PATCH 3/3] package/perl-math-prime-util: " Thomas De Schampheleire
  2019-12-22 10:02 ` [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: " Thomas Petazzoni
  2 siblings, 1 reply; 9+ messages in thread
From: Thomas De Schampheleire @ 2019-12-18 20:18 UTC (permalink / raw)
  To: buildroot

From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Standard generated with utils/scancpan.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 DEVELOPERS                                     |  1 +
 package/Config.in                              |  1 +
 package/perl-math-bigint/Config.in             |  6 ++++++
 package/perl-math-bigint/perl-math-bigint.hash |  6 ++++++
 package/perl-math-bigint/perl-math-bigint.mk   | 14 ++++++++++++++
 5 files changed, 28 insertions(+)
 create mode 100644 package/perl-math-bigint/Config.in
 create mode 100644 package/perl-math-bigint/perl-math-bigint.hash
 create mode 100644 package/perl-math-bigint/perl-math-bigint.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 19c66948f8..92105aae98 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2331,6 +2331,7 @@ F:	package/perl-crypt-blowfish/
 F:	package/perl-crypt-cbc/
 F:	package/perl-crypt-openssl-aes/
 F:	package/perl-digest-md5/
+F:	package/perl-math-bigint/
 F:	package/perl-mime-base64-urlsafe/
 F:	package/perl-mojolicious-plugin-authentication/
 F:	package/perl-net-ping/
diff --git a/package/Config.in b/package/Config.in
index fc5228447a..6d10df8561 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -755,6 +755,7 @@ menu "Perl libraries/modules"
 	source "package/perl-lwp-mediatypes/Config.in"
 	source "package/perl-mail-dkim/Config.in"
 	source "package/perl-mailtools/Config.in"
+	source "package/perl-math-bigint/Config.in"
 	source "package/perl-mime-base64/Config.in"
 	source "package/perl-mime-base64-urlsafe/Config.in"
 	source "package/perl-mime-tools/Config.in"
diff --git a/package/perl-math-bigint/Config.in b/package/perl-math-bigint/Config.in
new file mode 100644
index 0000000000..89722e7b10
--- /dev/null
+++ b/package/perl-math-bigint/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_MATH_BIGINT
+	bool "perl-math-bigint"
+	help
+	  Pure Perl module to test Math::BigInt with scalars.
+
+	  https://metacpan.org/release/Math-BigInt
diff --git a/package/perl-math-bigint/perl-math-bigint.hash b/package/perl-math-bigint/perl-math-bigint.hash
new file mode 100644
index 0000000000..ad3d66bbf8
--- /dev/null
+++ b/package/perl-math-bigint/perl-math-bigint.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    a6e5a6c391b453e04c2b60506e1b5342 Math-BigInt-1.999818.tar.gz
+sha256 b27634356ce2af9b7c0123ac8395a89a32fb15aeae82fcd39de8156cad278c15 Math-BigInt-1.999818.tar.gz
+
+# computed by scancpan
+sha256 b857edab549ac6893e2df5e1ec768ee46b62bcf1607a55e876f4d23f079eacce LICENSE
diff --git a/package/perl-math-bigint/perl-math-bigint.mk b/package/perl-math-bigint/perl-math-bigint.mk
new file mode 100644
index 0000000000..156c6ce38d
--- /dev/null
+++ b/package/perl-math-bigint/perl-math-bigint.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-math-bigint
+#
+################################################################################
+
+PERL_MATH_BIGINT_VERSION = 1.999818
+PERL_MATH_BIGINT_SOURCE = Math-BigInt-$(PERL_MATH_BIGINT_VERSION).tar.gz
+PERL_MATH_BIGINT_SITE = $(BR2_CPAN_MIRROR)/authors/id/P/PJ/PJACKLAM
+PERL_MATH_BIGINT_LICENSE = Artistic or GPL-1.0+
+PERL_MATH_BIGINT_LICENSE_FILES = LICENSE
+PERL_MATH_BIGINT_DISTNAME = Math-BigInt
+
+$(eval $(perl-package))
-- 
2.23.0

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

* [Buildroot] [PATCH 3/3] package/perl-math-prime-util: new package
  2019-12-18 20:18 [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: new package Thomas De Schampheleire
  2019-12-18 20:18 ` [Buildroot] [PATCH 2/3] package/perl-math-bigint: " Thomas De Schampheleire
@ 2019-12-18 20:18 ` Thomas De Schampheleire
  2019-12-22 10:02 ` [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: " Thomas Petazzoni
  2 siblings, 0 replies; 9+ messages in thread
From: Thomas De Schampheleire @ 2019-12-18 20:18 UTC (permalink / raw)
  To: buildroot

From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Standard generated with utils/scancpan.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 DEVELOPERS                                         |  1 +
 package/Config.in                                  |  1 +
 package/perl-math-prime-util/Config.in             | 11 +++++++++++
 .../perl-math-prime-util/perl-math-prime-util.hash |  6 ++++++
 .../perl-math-prime-util/perl-math-prime-util.mk   | 14 ++++++++++++++
 5 files changed, 33 insertions(+)
 create mode 100644 package/perl-math-prime-util/Config.in
 create mode 100644 package/perl-math-prime-util/perl-math-prime-util.hash
 create mode 100644 package/perl-math-prime-util/perl-math-prime-util.mk

diff --git a/DEVELOPERS b/DEVELOPERS
index 92105aae98..8785f0fdf8 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2332,6 +2332,7 @@ F:	package/perl-crypt-cbc/
 F:	package/perl-crypt-openssl-aes/
 F:	package/perl-digest-md5/
 F:	package/perl-math-bigint/
+F:	package/perl-math-prime-util/
 F:	package/perl-mime-base64-urlsafe/
 F:	package/perl-mojolicious-plugin-authentication/
 F:	package/perl-net-ping/
diff --git a/package/Config.in b/package/Config.in
index 6d10df8561..ec76b58bc3 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -756,6 +756,7 @@ menu "Perl libraries/modules"
 	source "package/perl-mail-dkim/Config.in"
 	source "package/perl-mailtools/Config.in"
 	source "package/perl-math-bigint/Config.in"
+	source "package/perl-math-prime-util/Config.in"
 	source "package/perl-mime-base64/Config.in"
 	source "package/perl-mime-base64-urlsafe/Config.in"
 	source "package/perl-mime-tools/Config.in"
diff --git a/package/perl-math-prime-util/Config.in b/package/perl-math-prime-util/Config.in
new file mode 100644
index 0000000000..1c7b700ac7
--- /dev/null
+++ b/package/perl-math-prime-util/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_PERL_MATH_PRIME_UTIL
+	bool "perl-math-prime-util"
+	depends on !BR2_STATIC_LIBS
+	help
+	  Utilities related to prime numbers, including fast sieves and
+	  factoring.
+
+	  https://github.com/danaj/Math-Prime-Util
+
+comment "perl-math-prime-util needs a toolchain w/ dynamic library"
+	depends on BR2_STATIC_LIBS
diff --git a/package/perl-math-prime-util/perl-math-prime-util.hash b/package/perl-math-prime-util/perl-math-prime-util.hash
new file mode 100644
index 0000000000..789f3a35fc
--- /dev/null
+++ b/package/perl-math-prime-util/perl-math-prime-util.hash
@@ -0,0 +1,6 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    26496630990db586dfede6551de79cbe Math-Prime-Util-0.73.tar.gz
+sha256 4afa6dd8cdb97499bd4eca6925861812c29d9f5a0f1ac27ad9d2d9c9b5602894 Math-Prime-Util-0.73.tar.gz
+
+# computed by scancpan
+sha256 475b5f12062de0e197fb8cfa44eef3b032342d097752868e72c1239fe52a8942 LICENSE
diff --git a/package/perl-math-prime-util/perl-math-prime-util.mk b/package/perl-math-prime-util/perl-math-prime-util.mk
new file mode 100644
index 0000000000..5781fe75d6
--- /dev/null
+++ b/package/perl-math-prime-util/perl-math-prime-util.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-math-prime-util
+#
+################################################################################
+
+PERL_MATH_PRIME_UTIL_VERSION = 0.73
+PERL_MATH_PRIME_UTIL_SOURCE = Math-Prime-Util-$(PERL_MATH_PRIME_UTIL_VERSION).tar.gz
+PERL_MATH_PRIME_UTIL_SITE = $(BR2_CPAN_MIRROR)/authors/id/D/DA/DANAJ
+PERL_MATH_PRIME_UTIL_LICENSE = Artistic or GPL-1.0+
+PERL_MATH_PRIME_UTIL_LICENSE_FILES = LICENSE
+PERL_MATH_PRIME_UTIL_DISTNAME = Math-Prime-Util
+
+$(eval $(perl-package))
-- 
2.23.0

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

* [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: new package
  2019-12-18 20:18 [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: new package Thomas De Schampheleire
  2019-12-18 20:18 ` [Buildroot] [PATCH 2/3] package/perl-math-bigint: " Thomas De Schampheleire
  2019-12-18 20:18 ` [Buildroot] [PATCH 3/3] package/perl-math-prime-util: " Thomas De Schampheleire
@ 2019-12-22 10:02 ` Thomas Petazzoni
  2 siblings, 0 replies; 9+ messages in thread
From: Thomas Petazzoni @ 2019-12-22 10:02 UTC (permalink / raw)
  To: buildroot

On Wed, 18 Dec 2019 21:18:42 +0100
Thomas De Schampheleire <patrickdepinguin@gmail.com> wrote:

> From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
> 
> Standard generated with utils/scancpan, manually updating _LICENSE and
> adding openssl dependency.
> 
> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
> ---
>  DEVELOPERS                                        |  1 +
>  package/Config.in                                 |  1 +
>  package/perl-crypt-openssl-aes/Config.in          | 11 +++++++++++
>  .../perl-crypt-openssl-aes.hash                   |  6 ++++++
>  .../perl-crypt-openssl-aes.mk                     | 15 +++++++++++++++
>  5 files changed, 34 insertions(+)
>  create mode 100644 package/perl-crypt-openssl-aes/Config.in
>  create mode 100644 package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.hash
>  create mode 100644 package/perl-crypt-openssl-aes/perl-crypt-openssl-aes.mk

All three patches applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 2/3] package/perl-math-bigint: new package
  2019-12-18 20:18 ` [Buildroot] [PATCH 2/3] package/perl-math-bigint: " Thomas De Schampheleire
@ 2019-12-22 12:07   ` François Perrad
  2019-12-22 13:27     ` Thomas De Schampheleire
  0 siblings, 1 reply; 9+ messages in thread
From: François Perrad @ 2019-12-22 12:07 UTC (permalink / raw)
  To: buildroot

Math::BigInt is a core module.
Perl 5.30.1 includes the version 1.999816.
From my point of view, this package is useless.

Fran?ois

Le mer. 18 d?c. 2019 ? 21:15, Thomas De Schampheleire <
patrickdepinguin@gmail.com> a ?crit :

> From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
>
> Standard generated with utils/scancpan.
>
> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
> ---
>  DEVELOPERS                                     |  1 +
>  package/Config.in                              |  1 +
>  package/perl-math-bigint/Config.in             |  6 ++++++
>  package/perl-math-bigint/perl-math-bigint.hash |  6 ++++++
>  package/perl-math-bigint/perl-math-bigint.mk   | 14 ++++++++++++++
>  5 files changed, 28 insertions(+)
>  create mode 100644 package/perl-math-bigint/Config.in
>  create mode 100644 package/perl-math-bigint/perl-math-bigint.hash
>  create mode 100644 package/perl-math-bigint/perl-math-bigint.mk
>
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 19c66948f8..92105aae98 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -2331,6 +2331,7 @@ F:        package/perl-crypt-blowfish/
>  F:     package/perl-crypt-cbc/
>  F:     package/perl-crypt-openssl-aes/
>  F:     package/perl-digest-md5/
> +F:     package/perl-math-bigint/
>  F:     package/perl-mime-base64-urlsafe/
>  F:     package/perl-mojolicious-plugin-authentication/
>  F:     package/perl-net-ping/
> diff --git a/package/Config.in b/package/Config.in
> index fc5228447a..6d10df8561 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -755,6 +755,7 @@ menu "Perl libraries/modules"
>         source "package/perl-lwp-mediatypes/Config.in"
>         source "package/perl-mail-dkim/Config.in"
>         source "package/perl-mailtools/Config.in"
> +       source "package/perl-math-bigint/Config.in"
>         source "package/perl-mime-base64/Config.in"
>         source "package/perl-mime-base64-urlsafe/Config.in"
>         source "package/perl-mime-tools/Config.in"
> diff --git a/package/perl-math-bigint/Config.in
> b/package/perl-math-bigint/Config.in
> new file mode 100644
> index 0000000000..89722e7b10
> --- /dev/null
> +++ b/package/perl-math-bigint/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_PERL_MATH_BIGINT
> +       bool "perl-math-bigint"
> +       help
> +         Pure Perl module to test Math::BigInt with scalars.
> +
> +         https://metacpan.org/release/Math-BigInt
> diff --git a/package/perl-math-bigint/perl-math-bigint.hash
> b/package/perl-math-bigint/perl-math-bigint.hash
> new file mode 100644
> index 0000000000..ad3d66bbf8
> --- /dev/null
> +++ b/package/perl-math-bigint/perl-math-bigint.hash
> @@ -0,0 +1,6 @@
> +# retrieved by scancpan from http://cpan.metacpan.org/
> +md5    a6e5a6c391b453e04c2b60506e1b5342 Math-BigInt-1.999818.tar.gz
> +sha256 b27634356ce2af9b7c0123ac8395a89a32fb15aeae82fcd39de8156cad278c15
> Math-BigInt-1.999818.tar.gz
> +
> +# computed by scancpan
> +sha256 b857edab549ac6893e2df5e1ec768ee46b62bcf1607a55e876f4d23f079eacce
> LICENSE
> diff --git a/package/perl-math-bigint/perl-math-bigint.mk
> b/package/perl-math-bigint/perl-math-bigint.mk
> new file mode 100644
> index 0000000000..156c6ce38d
> --- /dev/null
> +++ b/package/perl-math-bigint/perl-math-bigint.mk
> @@ -0,0 +1,14 @@
>
> +################################################################################
> +#
> +# perl-math-bigint
> +#
>
> +################################################################################
> +
> +PERL_MATH_BIGINT_VERSION = 1.999818
> +PERL_MATH_BIGINT_SOURCE = Math-BigInt-$(PERL_MATH_BIGINT_VERSION).tar.gz
> +PERL_MATH_BIGINT_SITE = $(BR2_CPAN_MIRROR)/authors/id/P/PJ/PJACKLAM
> +PERL_MATH_BIGINT_LICENSE = Artistic or GPL-1.0+
> +PERL_MATH_BIGINT_LICENSE_FILES = LICENSE
> +PERL_MATH_BIGINT_DISTNAME = Math-BigInt
> +
> +$(eval $(perl-package))
> --
> 2.23.0
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20191222/48a4ce3f/attachment.html>

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

* [Buildroot] [PATCH 2/3] package/perl-math-bigint: new package
  2019-12-22 12:07   ` François Perrad
@ 2019-12-22 13:27     ` Thomas De Schampheleire
  2019-12-22 13:32       ` Thomas De Schampheleire
  2019-12-22 14:49       ` François Perrad
  0 siblings, 2 replies; 9+ messages in thread
From: Thomas De Schampheleire @ 2019-12-22 13:27 UTC (permalink / raw)
  To: buildroot

Hi Fran?ois,

On Sun, Dec 22, 2019, 13:07 Fran?ois Perrad <francois.perrad@gadz.org>
wrote:

>
> Math::BigInt is a core module.
> Perl 5.30.1 includes the version 1.999816.
> From my point of view, this package is useless.
>


How do you know this?
The cpan page does not give such detail, it seems.
https://metacpan.org/pod/Math::BigInt
And what about math-prime-util?

Do you know since which perl release this is a core package?

Thanks
Thomas
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20191222/7d98e9aa/attachment.html>

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

* [Buildroot] [PATCH 2/3] package/perl-math-bigint: new package
  2019-12-22 13:27     ` Thomas De Schampheleire
@ 2019-12-22 13:32       ` Thomas De Schampheleire
  2019-12-22 14:53         ` François Perrad
  2019-12-22 14:49       ` François Perrad
  1 sibling, 1 reply; 9+ messages in thread
From: Thomas De Schampheleire @ 2019-12-22 13:32 UTC (permalink / raw)
  To: buildroot

On Sun, Dec 22, 2019, 14:27 Thomas De Schampheleire <
patrickdepinguin@gmail.com> wrote:

> Hi Fran?ois,
>
> On Sun, Dec 22, 2019, 13:07 Fran?ois Perrad <francois.perrad@gadz.org>
> wrote:
>
>>
>> Math::BigInt is a core module.
>> Perl 5.30.1 includes the version 1.999816.
>> From my point of view, this package is useless.
>>
>
>
> How do you know this?
> The cpan page does not give such detail, it seems.
> https://metacpan.org/pod/Math::BigInt
> And what about math-prime-util?
>
> Do you know since which perl release this is a core package?
>

And also: can we make scancpan detect this?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20191222/a281fff7/attachment.html>

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

* [Buildroot] [PATCH 2/3] package/perl-math-bigint: new package
  2019-12-22 13:27     ` Thomas De Schampheleire
  2019-12-22 13:32       ` Thomas De Schampheleire
@ 2019-12-22 14:49       ` François Perrad
  1 sibling, 0 replies; 9+ messages in thread
From: François Perrad @ 2019-12-22 14:49 UTC (permalink / raw)
  To: buildroot

Le dim. 22 d?c. 2019 ? 14:27, Thomas De Schampheleire <
patrickdepinguin@gmail.com> a ?crit :

> Hi Fran?ois,
>
> On Sun, Dec 22, 2019, 13:07 Fran?ois Perrad <francois.perrad@gadz.org>
> wrote:
>
>>
>> Math::BigInt is a core module.
>> Perl 5.30.1 includes the version 1.999816.
>> From my point of view, this package is useless.
>>
>
>
> How do you know this?
>

Perl comes with the module Module::CoreList which contains all these data,
and the utility `corelist`.


> The cpan page does not give such detail, it seems.
> https://metacpan.org/pod/Math::BigInt
> And what about math-prime-util?
>
>
$ corelist Math::Prime::Util

Data for 2017-09-22
Math::Prime::Util was not in CORE (or so I think)


> Do you know since which perl release this is a core package?
>
>
$ corelist Math::BigInt

Data for 2017-09-22
Math::BigInt was first released with perl 5

Fran?ois


> Thanks
> Thomas
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20191222/b2bbff90/attachment.html>

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

* [Buildroot] [PATCH 2/3] package/perl-math-bigint: new package
  2019-12-22 13:32       ` Thomas De Schampheleire
@ 2019-12-22 14:53         ` François Perrad
  0 siblings, 0 replies; 9+ messages in thread
From: François Perrad @ 2019-12-22 14:53 UTC (permalink / raw)
  To: buildroot

Le dim. 22 d?c. 2019 ? 14:32, Thomas De Schampheleire <
patrickdepinguin@gmail.com> a ?crit :

>
>
> On Sun, Dec 22, 2019, 14:27 Thomas De Schampheleire <
> patrickdepinguin at gmail.com> wrote:
>
>> Hi Fran?ois,
>>
>> On Sun, Dec 22, 2019, 13:07 Fran?ois Perrad <francois.perrad@gadz.org>
>> wrote:
>>
>>>
>>> Math::BigInt is a core module.
>>> Perl 5.30.1 includes the version 1.999816.
>>> From my point of view, this package is useless.
>>>
>>
>>
>> How do you know this?
>> The cpan page does not give such detail, it seems.
>> https://metacpan.org/pod/Math::BigInt
>> And what about math-prime-util?
>>
>> Do you know since which perl release this is a core package?
>>
>
> And also: can we make scancpan detect this?
>

scancpan already detects and skips core dependencies of a module.
I will add a warning when the top module is itself a core module.

Fran?ois
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20191222/054bb23e/attachment.html>

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

end of thread, other threads:[~2019-12-22 14:53 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 20:18 [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: new package Thomas De Schampheleire
2019-12-18 20:18 ` [Buildroot] [PATCH 2/3] package/perl-math-bigint: " Thomas De Schampheleire
2019-12-22 12:07   ` François Perrad
2019-12-22 13:27     ` Thomas De Schampheleire
2019-12-22 13:32       ` Thomas De Schampheleire
2019-12-22 14:53         ` François Perrad
2019-12-22 14:49       ` François Perrad
2019-12-18 20:18 ` [Buildroot] [PATCH 3/3] package/perl-math-prime-util: " Thomas De Schampheleire
2019-12-22 10:02 ` [Buildroot] [PATCH 1/3] package/perl-crypt-openssl-aes: " Thomas Petazzoni

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.