Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] cryptodev-dkms: add version 1.12
@ 2022-10-16 18:35 wiktorciurej
  2022-10-17  9:05 ` [PR PATCH] [Updated] " wiktorciurej
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-16 18:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

cryptodev-dkms: add version 1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 2145 bytes --]

From 2b4bda9e3f96971b433faa7f7d4ac3dd1ad9c028 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH] cryptodev-dkms: add version 1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 34 ++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..b6261ab4a1ad
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,34 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+short_desc="Kernel module providing access to Linux kernel cryptographic drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS 
+	vdoc INSTALL 
+	vdoc NEWS
+	vdoc README
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] cryptodev-dkms: add version 1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
@ 2022-10-17  9:05 ` wiktorciurej
  2022-10-17  9:18 ` [PR PATCH] [Updated] New package: cryptodev-dkms-1.12 wiktorciurej
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-17  9:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

cryptodev-dkms: add version 1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 2145 bytes --]

From 98d0d7a9d4645d32017c85cde08a846e257cb212 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH] New package: cryptodev-dkms-1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 34 ++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..b6261ab4a1ad
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,34 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+short_desc="Kernel module providing access to Linux kernel cryptographic drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS 
+	vdoc INSTALL 
+	vdoc NEWS
+	vdoc README
+	vlicense COPYING
+}
+

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

* Re: [PR PATCH] [Updated] New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
  2022-10-17  9:05 ` [PR PATCH] [Updated] " wiktorciurej
@ 2022-10-17  9:18 ` wiktorciurej
  2022-10-17  9:40 ` wiktorciurej
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-17  9:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

New package: cryptodev-dkms-1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 2133 bytes --]

From 2758802677c4d8e2a2369e4b0236b5550df90b07 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH] New package: cryptodev-dkms-1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 33 ++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..94f54100c9ba
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,33 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0-only"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS
+	vdoc INSTALL
+	vdoc NEWS
+	vdoc README
+	vlicense COPYING
+}

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

* Re: [PR PATCH] [Updated] New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
  2022-10-17  9:05 ` [PR PATCH] [Updated] " wiktorciurej
  2022-10-17  9:18 ` [PR PATCH] [Updated] New package: cryptodev-dkms-1.12 wiktorciurej
@ 2022-10-17  9:40 ` wiktorciurej
  2022-10-17 17:06 ` wiktorciurej
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-17  9:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

New package: cryptodev-dkms-1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 2114 bytes --]

From c30f74734136a1a75d6b213c61ff7a828f53f647 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH] New package: cryptodev-dkms-1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 32 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..17a6503c2ff6
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,32 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0-only"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS
+	vdoc INSTALL
+	vdoc NEWS
+	vdoc README
+}

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

* Re: New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
                   ` (2 preceding siblings ...)
  2022-10-17  9:40 ` wiktorciurej
@ 2022-10-17 17:06 ` wiktorciurej
  2022-10-29 17:05 ` [PR PATCH] [Updated] " wiktorciurej
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-17 17:06 UTC (permalink / raw)
  To: ml

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

New comment by wiktorciurej on void-packages repository

https://github.com/void-linux/void-packages/pull/39993#issuecomment-1281182134

Comment:
@classabbyamp @paper42 I fixed all syntax issues, please trigger the checks, thanks.

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

* Re: [PR PATCH] [Updated] New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
                   ` (3 preceding siblings ...)
  2022-10-17 17:06 ` wiktorciurej
@ 2022-10-29 17:05 ` wiktorciurej
  2022-10-30 12:16 ` wiktorciurej
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-29 17:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

New package: cryptodev-dkms-1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 3296 bytes --]

From a8f9c46276101fbad8757ea59e7b87253c525b53 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH 1/2] New package: cryptodev-dkms-1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 32 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..17a6503c2ff6
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,32 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0-only"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS
+	vdoc INSTALL
+	vdoc NEWS
+	vdoc README
+}

From 2c76eb0dece3d731857e8297b7017b22543dd831 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sat, 29 Oct 2022 19:04:20 +0200
Subject: [PATCH 2/2] Add do_check, remove installing cryptodev.h.

---
 srcpkgs/cryptodev-dkms/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
index 17a6503c2ff6..4387029cf7a3 100644
--- a/srcpkgs/cryptodev-dkms/template
+++ b/srcpkgs/cryptodev-dkms/template
@@ -2,8 +2,8 @@
 pkgname=cryptodev-dkms
 version=1.12
 revision=1
-archs="i686 x86_64*"
 wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+checkdepends="openssl-devel"
 short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
 maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
 license="GPL-2.0-only"
@@ -22,11 +22,13 @@ do_build() {
 do_install() {
 	vmkdir usr/src/cryptodev-${version}
 	vcopy "*" usr/src/cryptodev-${version}
-	vmkdir usr/include/crypto
-	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
 
 	vdoc AUTHORS
 	vdoc INSTALL
 	vdoc NEWS
 	vdoc README
 }
+
+do_check() {
+	make check
+}

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

* Re: [PR PATCH] [Updated] New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
                   ` (4 preceding siblings ...)
  2022-10-29 17:05 ` [PR PATCH] [Updated] " wiktorciurej
@ 2022-10-30 12:16 ` wiktorciurej
  2022-10-30 12:23 ` wiktorciurej
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-30 12:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

New package: cryptodev-dkms-1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 5264 bytes --]

From a8f9c46276101fbad8757ea59e7b87253c525b53 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH 1/2] New package: cryptodev-dkms-1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 32 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..17a6503c2ff6
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,32 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0-only"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS
+	vdoc INSTALL
+	vdoc NEWS
+	vdoc README
+}

From f997a93f4ab26756e1bbf2cc687c55f3f1254b68 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sat, 29 Oct 2022 19:04:20 +0200
Subject: [PATCH 2/2] cryptodev: Split into dkms and headers subpackages.

---
 srcpkgs/cryptodev-dkms                        |  1 +
 srcpkgs/cryptodev-headers                     |  1 +
 .../files/dkms.conf                           |  0
 .../{cryptodev-dkms => cryptodev}/template    | 36 ++++++++++++++-----
 4 files changed, 29 insertions(+), 9 deletions(-)
 create mode 120000 srcpkgs/cryptodev-dkms
 create mode 120000 srcpkgs/cryptodev-headers
 rename srcpkgs/{cryptodev-dkms => cryptodev}/files/dkms.conf (100%)
 rename srcpkgs/{cryptodev-dkms => cryptodev}/template (56%)

diff --git a/srcpkgs/cryptodev-dkms b/srcpkgs/cryptodev-dkms
new file mode 120000
index 000000000000..fa898543b363
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms
@@ -0,0 +1 @@
+cryptodev
\ No newline at end of file
diff --git a/srcpkgs/cryptodev-headers b/srcpkgs/cryptodev-headers
new file mode 120000
index 000000000000..fa898543b363
--- /dev/null
+++ b/srcpkgs/cryptodev-headers
@@ -0,0 +1 @@
+cryptodev
\ No newline at end of file
diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev/files/dkms.conf
similarity index 100%
rename from srcpkgs/cryptodev-dkms/files/dkms.conf
rename to srcpkgs/cryptodev/files/dkms.conf
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev/template
similarity index 56%
rename from srcpkgs/cryptodev-dkms/template
rename to srcpkgs/cryptodev/template
index 17a6503c2ff6..a080b1bce36e 100644
--- a/srcpkgs/cryptodev-dkms/template
+++ b/srcpkgs/cryptodev/template
@@ -2,31 +2,49 @@
 pkgname=cryptodev-dkms
 version=1.12
 revision=1
-archs="i686 x86_64*"
 wrksrc="cryptodev-linux-cryptodev-linux-${version}"
-short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+checkdepends="openssl-devel"
+short_desc="Interface for kernel crypto drivers."
 maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
 license="GPL-2.0-only"
 homepage="https://github.com/cryptodev-linux/cryptodev-linux"
 distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
 checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+subpackages="cryptodev-dkms cryptodev-headers"
 
-dkms_modules="cryptodev ${version}"
-depends="dkms"
-
-do_build() {
+pre_install() {
 	cp -f ${FILESDIR}/dkms.conf dkms.conf
-	make dkms.conf
 }
 
 do_install() {
 	vmkdir usr/src/cryptodev-${version}
 	vcopy "*" usr/src/cryptodev-${version}
-	vmkdir usr/include/crypto
-	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
 
 	vdoc AUTHORS
 	vdoc INSTALL
 	vdoc NEWS
 	vdoc README
 }
+
+cryptodev-dkms_package() {
+	short_desc="${_desc} - DKMS kernel module"
+	depends="dkms"
+	dkms_modules="cryptodev ${version}"
+
+	pkg_install() {
+		vmove usr/src
+	}
+}
+
+cryptodev-headers_package() {
+	short_desc="${_desc} - headers"
+
+	pkg_install() {
+		vmkdir usr/include/crypto/
+		vinstall crypto/cryptodev.h 0644 usr/include/crypto/
+	}
+}
+
+do_check() {
+	make check
+}

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

* Re: [PR PATCH] [Updated] New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
                   ` (5 preceding siblings ...)
  2022-10-30 12:16 ` wiktorciurej
@ 2022-10-30 12:23 ` wiktorciurej
  2023-01-29  2:01 ` github-actions
  2023-02-12  2:01 ` [PR PATCH] [Closed]: " github-actions
  8 siblings, 0 replies; 10+ messages in thread
From: wiktorciurej @ 2022-10-30 12:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/wiktorciurej/void-packages feature/cryptodev-support
https://github.com/void-linux/void-packages/pull/39993

New package: cryptodev-dkms-1.12
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- 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/39993.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-feature/cryptodev-support-39993.patch --]
[-- Type: text/x-diff, Size: 5684 bytes --]

From a8f9c46276101fbad8757ea59e7b87253c525b53 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sun, 16 Oct 2022 20:28:14 +0200
Subject: [PATCH 1/2] New package: cryptodev-dkms-1.12

---
 srcpkgs/cryptodev-dkms/files/dkms.conf |  7 ++++++
 srcpkgs/cryptodev-dkms/template        | 32 ++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)
 create mode 100644 srcpkgs/cryptodev-dkms/files/dkms.conf
 create mode 100644 srcpkgs/cryptodev-dkms/template

diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev-dkms/files/dkms.conf
new file mode 100644
index 000000000000..e4c7ead12786
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="cryptodev-linux"
+PACKAGE_VERSION="@@VERSION@@"
+BUILT_MODULE_NAME[0]="cryptodev"
+DEST_MODULE_LOCATION[0]="/kernel/misc"
+MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
+CLEAN="make clean"
+AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev-dkms/template
new file mode 100644
index 000000000000..17a6503c2ff6
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms/template
@@ -0,0 +1,32 @@
+# Template file for 'cryptodev-dkms'
+pkgname=cryptodev-dkms
+version=1.12
+revision=1
+archs="i686 x86_64*"
+wrksrc="cryptodev-linux-cryptodev-linux-${version}"
+short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
+license="GPL-2.0-only"
+homepage="https://github.com/cryptodev-linux/cryptodev-linux"
+distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
+checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+
+dkms_modules="cryptodev ${version}"
+depends="dkms"
+
+do_build() {
+	cp -f ${FILESDIR}/dkms.conf dkms.conf
+	make dkms.conf
+}
+
+do_install() {
+	vmkdir usr/src/cryptodev-${version}
+	vcopy "*" usr/src/cryptodev-${version}
+	vmkdir usr/include/crypto
+	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
+
+	vdoc AUTHORS
+	vdoc INSTALL
+	vdoc NEWS
+	vdoc README
+}

From b3397085fd137a030a4a45d64e8b5a4e31238939 Mon Sep 17 00:00:00 2001
From: Wiktor Ciurej <wiktor.ciurej@gmail.com>
Date: Sat, 29 Oct 2022 19:04:20 +0200
Subject: [PATCH 2/2] cryptodev: Split into dkms and headers subpackages.

---
 srcpkgs/cryptodev-dkms                        |  1 +
 srcpkgs/cryptodev-headers                     |  1 +
 .../files/dkms.conf                           |  2 +-
 .../{cryptodev-dkms => cryptodev}/template    | 36 ++++++++++++++-----
 4 files changed, 30 insertions(+), 10 deletions(-)
 create mode 120000 srcpkgs/cryptodev-dkms
 create mode 120000 srcpkgs/cryptodev-headers
 rename srcpkgs/{cryptodev-dkms => cryptodev}/files/dkms.conf (82%)
 rename srcpkgs/{cryptodev-dkms => cryptodev}/template (56%)

diff --git a/srcpkgs/cryptodev-dkms b/srcpkgs/cryptodev-dkms
new file mode 120000
index 000000000000..fa898543b363
--- /dev/null
+++ b/srcpkgs/cryptodev-dkms
@@ -0,0 +1 @@
+cryptodev
\ No newline at end of file
diff --git a/srcpkgs/cryptodev-headers b/srcpkgs/cryptodev-headers
new file mode 120000
index 000000000000..fa898543b363
--- /dev/null
+++ b/srcpkgs/cryptodev-headers
@@ -0,0 +1 @@
+cryptodev
\ No newline at end of file
diff --git a/srcpkgs/cryptodev-dkms/files/dkms.conf b/srcpkgs/cryptodev/files/dkms.conf
similarity index 82%
rename from srcpkgs/cryptodev-dkms/files/dkms.conf
rename to srcpkgs/cryptodev/files/dkms.conf
index e4c7ead12786..f7b7fe5b8635 100644
--- a/srcpkgs/cryptodev-dkms/files/dkms.conf
+++ b/srcpkgs/cryptodev/files/dkms.conf
@@ -1,7 +1,7 @@
 PACKAGE_NAME="cryptodev-linux"
 PACKAGE_VERSION="@@VERSION@@"
 BUILT_MODULE_NAME[0]="cryptodev"
-DEST_MODULE_LOCATION[0]="/kernel/misc"
+DEST_MODULE_LOCATION[0]="/kernel/crypto"
 MAKE[0]="make KERNEL_DIR=/lib/modules/${kernelver}/build"
 CLEAN="make clean"
 AUTOINSTALL="yes"
diff --git a/srcpkgs/cryptodev-dkms/template b/srcpkgs/cryptodev/template
similarity index 56%
rename from srcpkgs/cryptodev-dkms/template
rename to srcpkgs/cryptodev/template
index 17a6503c2ff6..a080b1bce36e 100644
--- a/srcpkgs/cryptodev-dkms/template
+++ b/srcpkgs/cryptodev/template
@@ -2,31 +2,49 @@
 pkgname=cryptodev-dkms
 version=1.12
 revision=1
-archs="i686 x86_64*"
 wrksrc="cryptodev-linux-cryptodev-linux-${version}"
-short_desc="Kernel module for accessing Linux kernel crypto drivers from userspace"
+checkdepends="openssl-devel"
+short_desc="Interface for kernel crypto drivers."
 maintainer="Wiktor Ciurej <wiktor.ciurej@gmail.com>"
 license="GPL-2.0-only"
 homepage="https://github.com/cryptodev-linux/cryptodev-linux"
 distfiles="https://github.com/cryptodev-linux/cryptodev-linux/archive/refs/tags/cryptodev-linux-${version}.tar.gz"
 checksum=f51c2254749233b1b1d7ec9445158bd709f124f88e1c650fe2faac83c3a81938
+subpackages="cryptodev-dkms cryptodev-headers"
 
-dkms_modules="cryptodev ${version}"
-depends="dkms"
-
-do_build() {
+pre_install() {
 	cp -f ${FILESDIR}/dkms.conf dkms.conf
-	make dkms.conf
 }
 
 do_install() {
 	vmkdir usr/src/cryptodev-${version}
 	vcopy "*" usr/src/cryptodev-${version}
-	vmkdir usr/include/crypto
-	install -m644 crypto/cryptodev.h ${DESTDIR}/usr/include/crypto/cryptodev.h
 
 	vdoc AUTHORS
 	vdoc INSTALL
 	vdoc NEWS
 	vdoc README
 }
+
+cryptodev-dkms_package() {
+	short_desc="${_desc} - DKMS kernel module"
+	depends="dkms"
+	dkms_modules="cryptodev ${version}"
+
+	pkg_install() {
+		vmove usr/src
+	}
+}
+
+cryptodev-headers_package() {
+	short_desc="${_desc} - headers"
+
+	pkg_install() {
+		vmkdir usr/include/crypto/
+		vinstall crypto/cryptodev.h 0644 usr/include/crypto/
+	}
+}
+
+do_check() {
+	make check
+}

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

* Re: New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
                   ` (6 preceding siblings ...)
  2022-10-30 12:23 ` wiktorciurej
@ 2023-01-29  2:01 ` github-actions
  2023-02-12  2:01 ` [PR PATCH] [Closed]: " github-actions
  8 siblings, 0 replies; 10+ messages in thread
From: github-actions @ 2023-01-29  2:01 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/39993#issuecomment-1407536249

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: New package: cryptodev-dkms-1.12
  2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
                   ` (7 preceding siblings ...)
  2023-01-29  2:01 ` github-actions
@ 2023-02-12  2:01 ` github-actions
  8 siblings, 0 replies; 10+ messages in thread
From: github-actions @ 2023-02-12  2:01 UTC (permalink / raw)
  To: ml

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

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

New package: cryptodev-dkms-1.12
https://github.com/void-linux/void-packages/pull/39993

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**


#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- It is required for the openssl cryptodev engine support.


<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
<!-- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->



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

end of thread, other threads:[~2023-02-12  2:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-16 18:35 [PR PATCH] cryptodev-dkms: add version 1.12 wiktorciurej
2022-10-17  9:05 ` [PR PATCH] [Updated] " wiktorciurej
2022-10-17  9:18 ` [PR PATCH] [Updated] New package: cryptodev-dkms-1.12 wiktorciurej
2022-10-17  9:40 ` wiktorciurej
2022-10-17 17:06 ` wiktorciurej
2022-10-29 17:05 ` [PR PATCH] [Updated] " wiktorciurej
2022-10-30 12:16 ` wiktorciurej
2022-10-30 12:23 ` wiktorciurej
2023-01-29  2:01 ` github-actions
2023-02-12  2:01 ` [PR PATCH] [Closed]: " github-actions

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).