Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] perl-Crypt-CBC: update to 3.04
@ 2021-05-19 14:26 newbluemoon
  2021-05-19 23:08 ` [PR REVIEW] " ericonr
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: newbluemoon @ 2021-05-19 14:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2058 bytes --]

There is a new pull request by newbluemoon against master on the void-packages repository

https://github.com/newbluemoon/void-packages perl-Crypt-CBC
https://github.com/void-linux/void-packages/pull/30990

perl-Crypt-CBC: update to 3.04
There is a change which requires the perl-Math-Int128 module when using 'ctr' (Counter Mode) as block chaining mode, because it’s much faster than the previsously used Math::BigInt (default mode is still 'cbc').

However, Math::Int128 is not available on 32-bit architectures, so this update would break such setups, though probably not many are using it, if anyone at all. But still I’m not sure how to proceed on this.

Tested on x86_64.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/30990.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-perl-Crypt-CBC-30990.patch --]
[-- Type: text/x-diff, Size: 3521 bytes --]

From c0d9709f4bced38404cb66d1e7b2e48b3ecb52e0 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:01 +0200
Subject: [PATCH 1/3] New package: perl-Math-Int64-0.54

---
 srcpkgs/perl-Math-Int64/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int64/template

diff --git a/srcpkgs/perl-Math-Int64/template b/srcpkgs/perl-Math-Int64/template
new file mode 100644
index 000000000000..f5554054e6f5
--- /dev/null
+++ b/srcpkgs/perl-Math-Int64/template
@@ -0,0 +1,15 @@
+# Template file for 'perl-Math-Int64'
+pkgname=perl-Math-Int64
+version=0.54
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl"
+short_desc="Add support for 64 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int64-${version}.tar.gz"
+checksum=dcfc51e698437ea6b9cefe0276215c56cdb6a7f85e3e24a2b6b4189f1960d351

From 74e9d2420c1c857500ca4c49511c9187c3649c14 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:28 +0200
Subject: [PATCH 2/3] New package: perl-Math-Int128-0.22

---
 srcpkgs/perl-Math-Int128/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int128/template

diff --git a/srcpkgs/perl-Math-Int128/template b/srcpkgs/perl-Math-Int128/template
new file mode 100644
index 000000000000..047522700d9b
--- /dev/null
+++ b/srcpkgs/perl-Math-Int128/template
@@ -0,0 +1,18 @@
+# Template file for 'perl-Math-Int128'
+pkgname=perl-Math-Int128
+version=0.22
+revision=1
+# not supported on 32-bit architectures
+archs="aarch64* ppc64* x86_64*"
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl perl-Math-Int64"
+checkdepends="perl-Math-Int64"
+short_desc="Add support for 128 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int128-${version}.tar.gz"
+checksum=a630ca401753866955f1173848ab5b4ac4ad5ca6ad9087f11cdf91dde85119bc

From 08643eeca42e835f672247089be13b2651f5f50c Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:10:55 +0200
Subject: [PATCH 3/3] perl-Crypt-CBC: update to 3.04

---
 srcpkgs/perl-Crypt-CBC/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index 5ddc77f0674e..f15cfc6013cb 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -1,6 +1,6 @@
 # Template file for 'perl-Crypt-CBC'
 pkgname=perl-Crypt-CBC
-version=3.01
+version=3.04
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
@@ -12,6 +12,6 @@ maintainer="newbluemoon <blaumolch@mailbox.org>"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Crypt-CBC"
 distfiles="${CPAN_SITE}/Crypt/Crypt-CBC-${version}.tar.gz"
-checksum=de259c1c94fc1fd2731dfd276e8b05e31edfd2150848afdff09ac6ae9a03e624
+checksum=4026c57d0dbf6496c0d561a26f161b763d3b8edf351139c073492e21b5fbce07
 # check requires a lot of new cascading dependencies
 make_check=no

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

* Re: [PR REVIEW] perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
@ 2021-05-19 23:08 ` ericonr
  2021-05-20  4:27 ` [PR PATCH] [Updated] " newbluemoon
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: ericonr @ 2021-05-19 23:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 251 bytes --]

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/30990#discussion_r635640149

Comment:
You can do a conditional on `$XBPS_TARGET_WORDSIZE = 64` and mark the others as broken, mkes it simpler.

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

* Re: [PR PATCH] [Updated] perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
  2021-05-19 23:08 ` [PR REVIEW] " ericonr
@ 2021-05-20  4:27 ` newbluemoon
  2021-05-20  4:30 ` [PR REVIEW] " newbluemoon
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: newbluemoon @ 2021-05-20  4:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]

There is an updated pull request by newbluemoon against master on the void-packages repository

https://github.com/newbluemoon/void-packages perl-Crypt-CBC
https://github.com/void-linux/void-packages/pull/30990

perl-Crypt-CBC: update to 3.04
There is a change which requires the perl-Math-Int128 module when using 'ctr' (Counter Mode) as block chaining mode, because it’s much faster than the previsously used Math::BigInt (default mode is still 'cbc').

However, Math::Int128 is not available on 32-bit architectures, so this update would break such setups, though probably not many are using it, if anyone at all. But still I’m not sure how to proceed on this.

Tested on x86_64.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/30990.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-perl-Crypt-CBC-30990.patch --]
[-- Type: text/x-diff, Size: 3550 bytes --]

From acc0af80a166146ee60076b2720e2b97b6eb0b7f Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:01 +0200
Subject: [PATCH 1/3] New package: perl-Math-Int64-0.54

---
 srcpkgs/perl-Math-Int64/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int64/template

diff --git a/srcpkgs/perl-Math-Int64/template b/srcpkgs/perl-Math-Int64/template
new file mode 100644
index 000000000000..f5554054e6f5
--- /dev/null
+++ b/srcpkgs/perl-Math-Int64/template
@@ -0,0 +1,15 @@
+# Template file for 'perl-Math-Int64'
+pkgname=perl-Math-Int64
+version=0.54
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl"
+short_desc="Add support for 64 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int64-${version}.tar.gz"
+checksum=dcfc51e698437ea6b9cefe0276215c56cdb6a7f85e3e24a2b6b4189f1960d351

From e9f8909cf3c4da7b574c92dd6ea4232a37eaf331 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:28 +0200
Subject: [PATCH 2/3] New package: perl-Math-Int128-0.22

---
 srcpkgs/perl-Math-Int128/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int128/template

diff --git a/srcpkgs/perl-Math-Int128/template b/srcpkgs/perl-Math-Int128/template
new file mode 100644
index 000000000000..eb4fb2e68fdc
--- /dev/null
+++ b/srcpkgs/perl-Math-Int128/template
@@ -0,0 +1,20 @@
+# Template file for 'perl-Math-Int128'
+pkgname=perl-Math-Int128
+version=0.22
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl perl-Math-Int64"
+checkdepends="perl-Math-Int64"
+short_desc="Add support for 128 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int128-${version}.tar.gz"
+checksum=a630ca401753866955f1173848ab5b4ac4ad5ca6ad9087f11cdf91dde85119bc
+
+if [ "$XBPS_TARGET_WORDSIZE" == "32" ]; then
+	broken="not supported on 32-bit architectures"
+fi

From 4f15f43563b1c083692e155b406b4a6b2650d521 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:10:55 +0200
Subject: [PATCH 3/3] perl-Crypt-CBC: update to 3.04

---
 srcpkgs/perl-Crypt-CBC/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index 5ddc77f0674e..f15cfc6013cb 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -1,6 +1,6 @@
 # Template file for 'perl-Crypt-CBC'
 pkgname=perl-Crypt-CBC
-version=3.01
+version=3.04
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
@@ -12,6 +12,6 @@ maintainer="newbluemoon <blaumolch@mailbox.org>"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Crypt-CBC"
 distfiles="${CPAN_SITE}/Crypt/Crypt-CBC-${version}.tar.gz"
-checksum=de259c1c94fc1fd2731dfd276e8b05e31edfd2150848afdff09ac6ae9a03e624
+checksum=4026c57d0dbf6496c0d561a26f161b763d3b8edf351139c073492e21b5fbce07
 # check requires a lot of new cascading dependencies
 make_check=no

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

* Re: [PR REVIEW] perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
  2021-05-19 23:08 ` [PR REVIEW] " ericonr
  2021-05-20  4:27 ` [PR PATCH] [Updated] " newbluemoon
@ 2021-05-20  4:30 ` newbluemoon
  2021-05-20  4:35 ` newbluemoon
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: newbluemoon @ 2021-05-20  4:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 191 bytes --]

New review comment by newbluemoon on void-packages repository

https://github.com/void-linux/void-packages/pull/30990#discussion_r635756156

Comment:
Yes, that’s much better, thank you. :)

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

* Re: perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
                   ` (2 preceding siblings ...)
  2021-05-20  4:30 ` [PR REVIEW] " newbluemoon
@ 2021-05-20  4:35 ` newbluemoon
  2021-09-10  7:33 ` [PR PATCH] [Updated] " newbluemoon
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: newbluemoon @ 2021-05-20  4:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 356 bytes --]

New comment by newbluemoon on void-packages repository

https://github.com/void-linux/void-packages/pull/30990#issuecomment-844680378

Comment:
However, I didn’t add perl-Math-Int128 as a hard dependency, because it is only required in that special case. Everything else should work without it. Did some limited testing on i686, no problems encountered.

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

* Re: [PR PATCH] [Updated] perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
                   ` (3 preceding siblings ...)
  2021-05-20  4:35 ` newbluemoon
@ 2021-09-10  7:33 ` newbluemoon
  2022-02-25 18:41 ` newbluemoon
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: newbluemoon @ 2021-09-10  7:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]

There is an updated pull request by newbluemoon against master on the void-packages repository

https://github.com/newbluemoon/void-packages perl-Crypt-CBC
https://github.com/void-linux/void-packages/pull/30990

perl-Crypt-CBC: update to 3.04
There is a change which requires the perl-Math-Int128 module when using 'ctr' (Counter Mode) as block chaining mode, because it’s much faster than the previsously used Math::BigInt (default mode is still 'cbc').

However, Math::Int128 is not available on 32-bit architectures, so this update would break such setups, though probably not many are using it, if anyone at all. But still I’m not sure how to proceed on this.

Tested on x86_64.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/30990.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-perl-Crypt-CBC-30990.patch --]
[-- Type: text/x-diff, Size: 3550 bytes --]

From 07e12d9762d30aff4f248ef1aa3b23688eb09c4a Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:01 +0200
Subject: [PATCH 1/3] New package: perl-Math-Int64-0.54

---
 srcpkgs/perl-Math-Int64/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int64/template

diff --git a/srcpkgs/perl-Math-Int64/template b/srcpkgs/perl-Math-Int64/template
new file mode 100644
index 000000000000..f5554054e6f5
--- /dev/null
+++ b/srcpkgs/perl-Math-Int64/template
@@ -0,0 +1,15 @@
+# Template file for 'perl-Math-Int64'
+pkgname=perl-Math-Int64
+version=0.54
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl"
+short_desc="Add support for 64 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int64-${version}.tar.gz"
+checksum=dcfc51e698437ea6b9cefe0276215c56cdb6a7f85e3e24a2b6b4189f1960d351

From d1e7403ca78e6d67c998d9ccc83c5aef5aafad4e Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:28 +0200
Subject: [PATCH 2/3] New package: perl-Math-Int128-0.22

---
 srcpkgs/perl-Math-Int128/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int128/template

diff --git a/srcpkgs/perl-Math-Int128/template b/srcpkgs/perl-Math-Int128/template
new file mode 100644
index 000000000000..eb4fb2e68fdc
--- /dev/null
+++ b/srcpkgs/perl-Math-Int128/template
@@ -0,0 +1,20 @@
+# Template file for 'perl-Math-Int128'
+pkgname=perl-Math-Int128
+version=0.22
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl perl-Math-Int64"
+checkdepends="perl-Math-Int64"
+short_desc="Add support for 128 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int128-${version}.tar.gz"
+checksum=a630ca401753866955f1173848ab5b4ac4ad5ca6ad9087f11cdf91dde85119bc
+
+if [ "$XBPS_TARGET_WORDSIZE" == "32" ]; then
+	broken="not supported on 32-bit architectures"
+fi

From 16f2b7ae73452ebc9dbd20552dd146f6dd2891ef Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:10:55 +0200
Subject: [PATCH 3/3] perl-Crypt-CBC: update to 3.04

---
 srcpkgs/perl-Crypt-CBC/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index 5ddc77f0674e..f15cfc6013cb 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -1,6 +1,6 @@
 # Template file for 'perl-Crypt-CBC'
 pkgname=perl-Crypt-CBC
-version=3.01
+version=3.04
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
@@ -12,6 +12,6 @@ maintainer="newbluemoon <blaumolch@mailbox.org>"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Crypt-CBC"
 distfiles="${CPAN_SITE}/Crypt/Crypt-CBC-${version}.tar.gz"
-checksum=de259c1c94fc1fd2731dfd276e8b05e31edfd2150848afdff09ac6ae9a03e624
+checksum=4026c57d0dbf6496c0d561a26f161b763d3b8edf351139c073492e21b5fbce07
 # check requires a lot of new cascading dependencies
 make_check=no

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

* Re: [PR PATCH] [Updated] perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
                   ` (4 preceding siblings ...)
  2021-09-10  7:33 ` [PR PATCH] [Updated] " newbluemoon
@ 2022-02-25 18:41 ` newbluemoon
  2022-03-13 19:29 ` newbluemoon
  2022-03-27 20:47 ` [PR PATCH] [Merged]: " leahneukirchen
  7 siblings, 0 replies; 9+ messages in thread
From: newbluemoon @ 2022-02-25 18:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]

There is an updated pull request by newbluemoon against master on the void-packages repository

https://github.com/newbluemoon/void-packages perl-Crypt-CBC
https://github.com/void-linux/void-packages/pull/30990

perl-Crypt-CBC: update to 3.04
There is a change which requires the perl-Math-Int128 module when using 'ctr' (Counter Mode) as block chaining mode, because it’s much faster than the previsously used Math::BigInt (default mode is still 'cbc').

However, Math::Int128 is not available on 32-bit architectures, so this update would break such setups, though probably not many are using it, if anyone at all. But still I’m not sure how to proceed on this.

Tested on x86_64.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/30990.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-perl-Crypt-CBC-30990.patch --]
[-- Type: text/x-diff, Size: 3550 bytes --]

From cbb4b0f42aaea3669fc461c858e1a1be9a3d5685 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:01 +0200
Subject: [PATCH 1/3] New package: perl-Math-Int64-0.54

---
 srcpkgs/perl-Math-Int64/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int64/template

diff --git a/srcpkgs/perl-Math-Int64/template b/srcpkgs/perl-Math-Int64/template
new file mode 100644
index 000000000000..f5554054e6f5
--- /dev/null
+++ b/srcpkgs/perl-Math-Int64/template
@@ -0,0 +1,15 @@
+# Template file for 'perl-Math-Int64'
+pkgname=perl-Math-Int64
+version=0.54
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl"
+short_desc="Add support for 64 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int64-${version}.tar.gz"
+checksum=dcfc51e698437ea6b9cefe0276215c56cdb6a7f85e3e24a2b6b4189f1960d351

From 6d1b0f9b15f4edc4b6a9355fbe2cfe6e8a0ba5a2 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:28 +0200
Subject: [PATCH 2/3] New package: perl-Math-Int128-0.22

---
 srcpkgs/perl-Math-Int128/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int128/template

diff --git a/srcpkgs/perl-Math-Int128/template b/srcpkgs/perl-Math-Int128/template
new file mode 100644
index 000000000000..eb4fb2e68fdc
--- /dev/null
+++ b/srcpkgs/perl-Math-Int128/template
@@ -0,0 +1,20 @@
+# Template file for 'perl-Math-Int128'
+pkgname=perl-Math-Int128
+version=0.22
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl perl-Math-Int64"
+checkdepends="perl-Math-Int64"
+short_desc="Add support for 128 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int128-${version}.tar.gz"
+checksum=a630ca401753866955f1173848ab5b4ac4ad5ca6ad9087f11cdf91dde85119bc
+
+if [ "$XBPS_TARGET_WORDSIZE" == "32" ]; then
+	broken="not supported on 32-bit architectures"
+fi

From 8e32299c1ab076ec5349cb332dff5271a70ccee4 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:10:55 +0200
Subject: [PATCH 3/3] perl-Crypt-CBC: update to 3.04

---
 srcpkgs/perl-Crypt-CBC/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index 5ddc77f0674e..f15cfc6013cb 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -1,6 +1,6 @@
 # Template file for 'perl-Crypt-CBC'
 pkgname=perl-Crypt-CBC
-version=3.01
+version=3.04
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
@@ -12,6 +12,6 @@ maintainer="newbluemoon <blaumolch@mailbox.org>"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Crypt-CBC"
 distfiles="${CPAN_SITE}/Crypt/Crypt-CBC-${version}.tar.gz"
-checksum=de259c1c94fc1fd2731dfd276e8b05e31edfd2150848afdff09ac6ae9a03e624
+checksum=4026c57d0dbf6496c0d561a26f161b763d3b8edf351139c073492e21b5fbce07
 # check requires a lot of new cascading dependencies
 make_check=no

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

* Re: [PR PATCH] [Updated] perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
                   ` (5 preceding siblings ...)
  2022-02-25 18:41 ` newbluemoon
@ 2022-03-13 19:29 ` newbluemoon
  2022-03-27 20:47 ` [PR PATCH] [Merged]: " leahneukirchen
  7 siblings, 0 replies; 9+ messages in thread
From: newbluemoon @ 2022-03-13 19:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]

There is an updated pull request by newbluemoon against master on the void-packages repository

https://github.com/newbluemoon/void-packages perl-Crypt-CBC
https://github.com/void-linux/void-packages/pull/30990

perl-Crypt-CBC: update to 3.04
There is a change which requires the perl-Math-Int128 module when using 'ctr' (Counter Mode) as block chaining mode, because it’s much faster than the previsously used Math::BigInt (default mode is still 'cbc').

However, Math::Int128 is not available on 32-bit architectures, so this update would break such setups, though probably not many are using it, if anyone at all. But still I’m not sure how to proceed on this.

Tested on x86_64.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/30990.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-perl-Crypt-CBC-30990.patch --]
[-- Type: text/x-diff, Size: 3550 bytes --]

From a4e8ff224d7238f78c5dacd627fb7b7ca925b6cc Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:01 +0200
Subject: [PATCH 1/3] New package: perl-Math-Int64-0.54

---
 srcpkgs/perl-Math-Int64/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int64/template

diff --git a/srcpkgs/perl-Math-Int64/template b/srcpkgs/perl-Math-Int64/template
new file mode 100644
index 000000000000..f5554054e6f5
--- /dev/null
+++ b/srcpkgs/perl-Math-Int64/template
@@ -0,0 +1,15 @@
+# Template file for 'perl-Math-Int64'
+pkgname=perl-Math-Int64
+version=0.54
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl"
+short_desc="Add support for 64 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int64-${version}.tar.gz"
+checksum=dcfc51e698437ea6b9cefe0276215c56cdb6a7f85e3e24a2b6b4189f1960d351

From 359d5e3d4c8f2c534c28f8811fbd5568c7d9f938 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:09:28 +0200
Subject: [PATCH 2/3] New package: perl-Math-Int128-0.22

---
 srcpkgs/perl-Math-Int128/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/perl-Math-Int128/template

diff --git a/srcpkgs/perl-Math-Int128/template b/srcpkgs/perl-Math-Int128/template
new file mode 100644
index 000000000000..eb4fb2e68fdc
--- /dev/null
+++ b/srcpkgs/perl-Math-Int128/template
@@ -0,0 +1,20 @@
+# Template file for 'perl-Math-Int128'
+pkgname=perl-Math-Int128
+version=0.22
+revision=1
+wrksrc="${pkgname#perl-}-${version}"
+build_style=perl-module
+hostmakedepends="perl"
+makedepends="perl"
+depends="perl perl-Math-Int64"
+checkdepends="perl-Math-Int64"
+short_desc="Add support for 128 bit integers, signed and unsigned, to Perl"
+maintainer="newbluemoon <blaumolch@mailbox.org>"
+license="Artistic-1.0-Perl, GPL-1.0-or-later"
+homepage="https://metacpan.org/release/Math-Int64"
+distfiles="${CPAN_SITE}/Math/Math-Int128-${version}.tar.gz"
+checksum=a630ca401753866955f1173848ab5b4ac4ad5ca6ad9087f11cdf91dde85119bc
+
+if [ "$XBPS_TARGET_WORDSIZE" == "32" ]; then
+	broken="not supported on 32-bit architectures"
+fi

From 42384775e12ced6a9c759b48b6b411b6c9538a19 Mon Sep 17 00:00:00 2001
From: newbluemoon <blaumolch@mailbox.org>
Date: Wed, 19 May 2021 16:10:55 +0200
Subject: [PATCH 3/3] perl-Crypt-CBC: update to 3.04

---
 srcpkgs/perl-Crypt-CBC/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index 5ddc77f0674e..f15cfc6013cb 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -1,6 +1,6 @@
 # Template file for 'perl-Crypt-CBC'
 pkgname=perl-Crypt-CBC
-version=3.01
+version=3.04
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
@@ -12,6 +12,6 @@ maintainer="newbluemoon <blaumolch@mailbox.org>"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Crypt-CBC"
 distfiles="${CPAN_SITE}/Crypt/Crypt-CBC-${version}.tar.gz"
-checksum=de259c1c94fc1fd2731dfd276e8b05e31edfd2150848afdff09ac6ae9a03e624
+checksum=4026c57d0dbf6496c0d561a26f161b763d3b8edf351139c073492e21b5fbce07
 # check requires a lot of new cascading dependencies
 make_check=no

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

* Re: [PR PATCH] [Merged]: perl-Crypt-CBC: update to 3.04
  2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
                   ` (6 preceding siblings ...)
  2022-03-13 19:29 ` newbluemoon
@ 2022-03-27 20:47 ` leahneukirchen
  7 siblings, 0 replies; 9+ messages in thread
From: leahneukirchen @ 2022-03-27 20:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1892 bytes --]

There's a merged pull request on the void-packages repository

perl-Crypt-CBC: update to 3.04
https://github.com/void-linux/void-packages/pull/30990

Description:
There is a change which requires the perl-Math-Int128 module when using 'ctr' (Counter Mode) as block chaining mode, because it’s much faster than the previsously used Math::BigInt (default mode is still 'cbc').

However, Math::Int128 is not available on 32-bit architectures, so this update would break such setups, though probably not many are using it, if anyone at all. But still I’m not sure how to proceed on this.

Tested on x86_64.

<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

end of thread, other threads:[~2022-03-27 20:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-19 14:26 [PR PATCH] perl-Crypt-CBC: update to 3.04 newbluemoon
2021-05-19 23:08 ` [PR REVIEW] " ericonr
2021-05-20  4:27 ` [PR PATCH] [Updated] " newbluemoon
2021-05-20  4:30 ` [PR REVIEW] " newbluemoon
2021-05-20  4:35 ` newbluemoon
2021-09-10  7:33 ` [PR PATCH] [Updated] " newbluemoon
2022-02-25 18:41 ` newbluemoon
2022-03-13 19:29 ` newbluemoon
2022-03-27 20:47 ` [PR PATCH] [Merged]: " leahneukirchen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).