* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-03-18 17:43 Göktürk Yüksek
0 siblings, 0 replies; 22+ messages in thread
From: Göktürk Yüksek @ 2017-03-18 17:43 UTC (permalink / raw
To: gentoo-commits
commit: e32f2e42e1f5e2db06923d443a6df37723ad0694
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 18 17:37:59 2017 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sat Mar 18 17:43:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e32f2e42
sys-kernel/cryptodev: remove redundant <description> tag from the metadata
Package-Manager: Portage-2.3.3, Repoman-2.3.1
sys-kernel/cryptodev/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys-kernel/cryptodev/metadata.xml b/sys-kernel/cryptodev/metadata.xml
index bab39e9ef86..a6622ec9ef6 100644
--- a/sys-kernel/cryptodev/metadata.xml
+++ b/sys-kernel/cryptodev/metadata.xml
@@ -4,7 +4,6 @@
<maintainer type="person">
<email>clabbe.montjoie@gmail.com</email>
<name>LABBE Corentin</name>
-<description>Maintainer. Assign bugs to him</description>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-03-18 17:43 Göktürk Yüksek
0 siblings, 0 replies; 22+ messages in thread
From: Göktürk Yüksek @ 2017-03-18 17:43 UTC (permalink / raw
To: gentoo-commits
commit: a74b182438dd9ce6c16ea02b2347200bf330614f
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 18 17:40:31 2017 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sat Mar 18 17:43:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a74b1824
sys-kernel/cryptodev: fix the license GPL2 -> GPL-2+
Package-Manager: Portage-2.3.3, Repoman-2.3.1
sys-kernel/cryptodev/cryptodev-1.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.7.ebuild b/sys-kernel/cryptodev/cryptodev-1.7.ebuild
index 528c6f172dc..aebe02b011f 100644
--- a/sys-kernel/cryptodev/cryptodev-1.7.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -9,7 +9,7 @@ HOMEPAGE="http://cryptodev-linux.org/index.html"
SRC_URI="http://download.gna.org/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
SLOT="0"
IUSE="examples"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-03-22 9:50 Marek Szuba
0 siblings, 0 replies; 22+ messages in thread
From: Marek Szuba @ 2017-03-22 9:50 UTC (permalink / raw
To: gentoo-commits
commit: 2d3c92e5d6daa6b96321c3392abc319cc8bb8098
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 22 09:38:26 2017 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Mar 22 09:38:26 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d3c92e5
sys-kernel/cryptodev: add live ebuild
Requested-By: Corentin Labbe <clabbe.montjoie <AT> gmail.com>
Package-Manager: Portage-2.3.3, Repoman-2.3.1
sys-kernel/cryptodev/cryptodev-9999.ebuild | 56 ++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
new file mode 100644
index 00000000000..1576432f236
--- /dev/null
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit linux-info linux-mod
+
+DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
+HOMEPAGE="http://cryptodev-linux.org/index.html"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="git://github.com/cryptodev-linux/cryptodev-linux.git"
+ S="${WORKDIR}/${PN}-${PV}"
+else
+ SRC_URI="http://download.gna.org/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~x86"
+ S=${WORKDIR}/${PN}-linux-${PV}
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples"
+
+DEPEND="virtual/linux-sources"
+RDEPEND=""
+#test now compile, but need the module to run
+RESTRICT="test"
+
+MODULE_NAMES="cryptodev(extra:${S})"
+
+pkg_pretend() {
+ if use kernel_linux ; then
+ CONFIG_CHECK="~CRYPTO ~CRYPTO_BLKCIPHER ~CRYPTO_AEAD"
+ check_extra_config
+ fi
+}
+
+pkg_setup() {
+ if use kernel_linux ; then
+ linux-mod_pkg_setup
+ else
+ die "cryptodev ebuild only support linux"
+ fi
+ BUILD_TARGETS="build"
+ export KERNEL_DIR
+}
+
+src_install() {
+ linux-mod_src_install
+ if use examples ; then
+ docinto examples
+ dodoc example/*
+ fi
+ insinto /usr/include/crypto
+ doins crypto/cryptodev.h
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-04-24 7:45 Jeroen Roovers
0 siblings, 0 replies; 22+ messages in thread
From: Jeroen Roovers @ 2017-04-24 7:45 UTC (permalink / raw
To: gentoo-commits
commit: 394807cb5c5578939124ee7b8d25b3ae57fa44d4
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 24 07:45:02 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Apr 24 07:45:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=394807cb
sys-kernel/cryptodev: Version bump (bug #613224).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
sys-kernel/cryptodev/Manifest | 1 +
sys-kernel/cryptodev/cryptodev-1.9.ebuild | 56 +++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/sys-kernel/cryptodev/Manifest b/sys-kernel/cryptodev/Manifest
index df55cb979b2..12308dd051f 100644
--- a/sys-kernel/cryptodev/Manifest
+++ b/sys-kernel/cryptodev/Manifest
@@ -1 +1,2 @@
DIST cryptodev-linux-1.7.tar.gz 52827 SHA256 41880533b53de4d7b3f054e230f576988dafb8eed7bef5ebcf6422bb2e3a3b25 SHA512 b0073bc547782973587654cb14205ec624059ef46f88ed2b36236d37203f9231ffb8124489b1b2fea735eb7f89bd1011f0d1546eae7b6f562e26ec7a72a59b6c WHIRLPOOL fdc3588949264a575bce7d88286b30663b3ce7232340c5065b9c8cf8f3759c9e3844dc11499cb68c529dd23dcd865f778ecdc2b8535e75e97df270c26df2cd84
+DIST cryptodev-linux-1.9.tar.gz 54409 SHA256 9f4c0b49b30e267d776f79455d09c70cc9c12c86eee400a0d0a0cd1d8e467950 SHA512 8aff822e834d7d77f2b954b3f6de22d7de9659dac27b8a185b7ca060ff4b17bd38e287bb5c19043a53f5015a3f000d31be961695152bad0fb9f55785b2753d29 WHIRLPOOL 575a6c7bac5cc5d0263493799ee9195b10d4f7d80136bf2838637e59bc9126ea197d36d3965b3ffe38e602fb775ac1d5f9b1d2aac264ad4b1cca751210d15c68
diff --git a/sys-kernel/cryptodev/cryptodev-1.9.ebuild b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
new file mode 100644
index 00000000000..fe0c8dfebf7
--- /dev/null
+++ b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit linux-info linux-mod
+
+DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
+HOMEPAGE="http://cryptodev-linux.org/index.html"
+SRC_URI="http://download.gna.org/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
+KEYWORDS="~amd64 ~arm ~x86"
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples"
+
+DEPEND="virtual/linux-sources"
+RDEPEND=""
+#test do not compile
+RESTRICT="test"
+S=${WORKDIR}/${PN}-linux-${PV}
+
+MODULE_NAMES="cryptodev(extra:${S})"
+
+pkg_pretend() {
+ if use kernel_linux ; then
+ CONFIG_CHECK="~CRYPTO ~CRYPTO_BLKCIPHER ~CRYPTO_AEAD"
+ check_extra_config
+ fi
+}
+
+pkg_setup() {
+ if use kernel_linux ; then
+ linux-mod_pkg_setup
+ else
+ die "cryptodev ebuild only support linux"
+ fi
+ BUILD_TARGETS="build"
+ export KERNEL_DIR
+}
+
+src_prepare() {
+ default
+
+ # get_unused_fd was removed in 3.19
+ sed -i 's,get_unused_fd(),get_unused_fd_flags(0),' ioctl.c || die
+}
+
+src_install() {
+ linux-mod_src_install
+ if use examples ; then
+ docinto examples
+ dodoc example/*
+ fi
+ insinto /usr/include/crypto
+ doins crypto/cryptodev.h
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-04-25 12:18 Jeroen Roovers
0 siblings, 0 replies; 22+ messages in thread
From: Jeroen Roovers @ 2017-04-25 12:18 UTC (permalink / raw
To: gentoo-commits
commit: 3ae5d31d85b344990f2e9ea950ac406459109a1e
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 12:17:44 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 12:17:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae5d31d
sys-kernel/cryptodev: Remove sed script, fix comment.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
sys-kernel/cryptodev/cryptodev-1.9.ebuild | 12 +++---------
sys-kernel/cryptodev/cryptodev-9999.ebuild | 4 ++--
2 files changed, 5 insertions(+), 11 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.9.ebuild b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
index fe0c8dfebf7..528204b8147 100644
--- a/sys-kernel/cryptodev/cryptodev-1.9.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
@@ -14,9 +14,10 @@ SLOT="0"
IUSE="examples"
DEPEND="virtual/linux-sources"
-RDEPEND=""
-#test do not compile
+
+#test requires that the module is already loaded
RESTRICT="test"
+
S=${WORKDIR}/${PN}-linux-${PV}
MODULE_NAMES="cryptodev(extra:${S})"
@@ -38,13 +39,6 @@ pkg_setup() {
export KERNEL_DIR
}
-src_prepare() {
- default
-
- # get_unused_fd was removed in 3.19
- sed -i 's,get_unused_fd(),get_unused_fd_flags(0),' ioctl.c || die
-}
-
src_install() {
linux-mod_src_install
if use examples ; then
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index 1576432f236..f921bf666ba 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -22,8 +22,8 @@ SLOT="0"
IUSE="examples"
DEPEND="virtual/linux-sources"
-RDEPEND=""
-#test now compile, but need the module to run
+
+#test requires that the module is already loaded
RESTRICT="test"
MODULE_NAMES="cryptodev(extra:${S})"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-07-30 9:23 Michał Górny
0 siblings, 0 replies; 22+ messages in thread
From: Michał Górny @ 2017-07-30 9:23 UTC (permalink / raw
To: gentoo-commits
commit: 947695789aab9fabd1233ea1134e2322514724b8
Author: David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 11:42:12 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 09:22:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94769578
sys-kernel/cryptodev: use HTTPS for GitHub, replace defunct SRC_URI
* Use HTTPS for accessing GitHub
* Replace SRC_URI with alternative official mirror due to gna.org no
longer existing
Package-Manager: Portage-2.3.6, Repoman-2.3.3
sys-kernel/cryptodev/cryptodev-1.7.ebuild | 2 +-
sys-kernel/cryptodev/cryptodev-1.9.ebuild | 2 +-
sys-kernel/cryptodev/cryptodev-9999.ebuild | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.7.ebuild b/sys-kernel/cryptodev/cryptodev-1.7.ebuild
index aebe02b011f..7a99d764ec4 100644
--- a/sys-kernel/cryptodev/cryptodev-1.7.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.7.ebuild
@@ -6,7 +6,7 @@ inherit linux-info linux-mod
DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
HOMEPAGE="http://cryptodev-linux.org/index.html"
-SRC_URI="http://download.gna.org/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
+SRC_URI="http://nwl.cc/pub/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="GPL-2+"
diff --git a/sys-kernel/cryptodev/cryptodev-1.9.ebuild b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
index 528204b8147..3f606909802 100644
--- a/sys-kernel/cryptodev/cryptodev-1.9.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
@@ -6,7 +6,7 @@ inherit linux-info linux-mod
DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
HOMEPAGE="http://cryptodev-linux.org/index.html"
-SRC_URI="http://download.gna.org/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
+SRC_URI="http://nwl.cc/pub/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="GPL-2+"
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index f921bf666ba..195433b5801 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -9,10 +9,10 @@ HOMEPAGE="http://cryptodev-linux.org/index.html"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
- EGIT_REPO_URI="git://github.com/cryptodev-linux/cryptodev-linux.git"
+ EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
S="${WORKDIR}/${PN}-${PV}"
else
- SRC_URI="http://download.gna.org/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
+ SRC_URI="http://nwl.cc/pub/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
S=${WORKDIR}/${PN}-linux-${PV}
fi
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2017-10-04 9:17 Michał Górny
0 siblings, 0 replies; 22+ messages in thread
From: Michał Górny @ 2017-10-04 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 7c6d5eef8ec7f75022067231abb1bcc3f9eed9e5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 4 07:32:46 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 4 09:17:06 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6d5eef
sys-kernel/cryptodev: Strip empty metadata.xml elements
sys-kernel/cryptodev/metadata.xml | 2 --
1 file changed, 2 deletions(-)
diff --git a/sys-kernel/cryptodev/metadata.xml b/sys-kernel/cryptodev/metadata.xml
index a6622ec9ef6..5f8b6780f55 100644
--- a/sys-kernel/cryptodev/metadata.xml
+++ b/sys-kernel/cryptodev/metadata.xml
@@ -9,6 +9,4 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
-<longdescription lang="en">
-</longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2018-06-26 22:22 Jonas Stein
0 siblings, 0 replies; 22+ messages in thread
From: Jonas Stein @ 2018-06-26 22:22 UTC (permalink / raw
To: gentoo-commits
commit: 18fcfa868d92cebcf17f9be82652f4424d3ffcce
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 26 22:18:06 2018 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Tue Jun 26 22:22:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18fcfa86
sys-kernel/cryptodev: Maintainer retired
Proxied maintainer retired due to inactivity.
Bug: https://bugs.gentoo.org/633218
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-kernel/cryptodev/metadata.xml | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/sys-kernel/cryptodev/metadata.xml b/sys-kernel/cryptodev/metadata.xml
index 5f8b6780f55..684b678e70f 100644
--- a/sys-kernel/cryptodev/metadata.xml
+++ b/sys-kernel/cryptodev/metadata.xml
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person">
-<email>clabbe.montjoie@gmail.com</email>
-<name>LABBE Corentin</name>
-</maintainer>
-<maintainer type="project">
-<email>proxy-maint@gentoo.org</email>
-<name>Proxy Maintainers</name>
-</maintainer>
+<!-- maintainer-needed -->
</pkgmetadata>
+
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2018-09-02 12:15 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2018-09-02 12:15 UTC (permalink / raw
To: gentoo-commits
commit: 0a21d1471199fa57dfc58d14625ccd0cd185f85d
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 2 12:09:51 2018 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sun Sep 2 12:14:31 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a21d147
sys-kernel/cryptodev: Use KV_OUT_DIR for building
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-kernel/cryptodev/cryptodev-1.9.ebuild | 1 +
sys-kernel/cryptodev/cryptodev-9999.ebuild | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.9.ebuild b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
index e4e62d997e6..db23339300e 100644
--- a/sys-kernel/cryptodev/cryptodev-1.9.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.9.ebuild
@@ -21,6 +21,7 @@ RESTRICT="test"
S=${WORKDIR}/${PN}-linux-${PV}
MODULE_NAMES="cryptodev(extra:${S})"
+BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
PATCHES="${FILESDIR}/cryptodev-1.9-fix-build-with-4.14-629958.patch"
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index 195433b5801..97182739422 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -27,6 +27,7 @@ DEPEND="virtual/linux-sources"
RESTRICT="test"
MODULE_NAMES="cryptodev(extra:${S})"
+BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
pkg_pretend() {
if use kernel_linux ; then
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2018-09-02 12:15 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2018-09-02 12:15 UTC (permalink / raw
To: gentoo-commits
commit: b4e205a6934747fda55e978f4db1ffc8016b88f8
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 2 12:09:45 2018 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sun Sep 2 12:14:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e205a6
sys-kernel/cryptodev: Cleanup
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-kernel/cryptodev/Manifest | 1 -
sys-kernel/cryptodev/cryptodev-1.7.ebuild | 54 -------------------------------
2 files changed, 55 deletions(-)
diff --git a/sys-kernel/cryptodev/Manifest b/sys-kernel/cryptodev/Manifest
index 1f879b991a4..5d057c080a6 100644
--- a/sys-kernel/cryptodev/Manifest
+++ b/sys-kernel/cryptodev/Manifest
@@ -1,2 +1 @@
-DIST cryptodev-linux-1.7.tar.gz 52827 BLAKE2B b64b317dfae942c0323acec6cf14b4bf7c6313b60b95d925f0c1c02b1d0b55d17ee8924d5fba1a4f18c5c9b3fd24d437103159986c03dc6c6251ee05d19f17dd SHA512 b0073bc547782973587654cb14205ec624059ef46f88ed2b36236d37203f9231ffb8124489b1b2fea735eb7f89bd1011f0d1546eae7b6f562e26ec7a72a59b6c
DIST cryptodev-linux-1.9.tar.gz 54409 BLAKE2B 48427235409c792001f420c8a66ab4320457a1cf22c1bf47c8d0a40ef82491ffe64a27b7f2e7ed92f3b8b426fc8425bd15b2bf9c875bb222de8b738022adf99f SHA512 8aff822e834d7d77f2b954b3f6de22d7de9659dac27b8a185b7ca060ff4b17bd38e287bb5c19043a53f5015a3f000d31be961695152bad0fb9f55785b2753d29
diff --git a/sys-kernel/cryptodev/cryptodev-1.7.ebuild b/sys-kernel/cryptodev/cryptodev-1.7.ebuild
deleted file mode 100644
index 7a99d764ec4..00000000000
--- a/sys-kernel/cryptodev/cryptodev-1.7.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit linux-info linux-mod
-
-DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
-HOMEPAGE="http://cryptodev-linux.org/index.html"
-SRC_URI="http://nwl.cc/pub/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
-KEYWORDS="~amd64 ~arm ~x86"
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="examples"
-
-DEPEND="virtual/linux-sources"
-RDEPEND=""
-#test do not compile
-RESTRICT="test"
-S=${WORKDIR}/${PN}-linux-${PV}
-
-MODULE_NAMES="cryptodev(extra:${S})"
-
-pkg_pretend() {
- if use kernel_linux ; then
- CONFIG_CHECK="~CRYPTO ~CRYPTO_BLKCIPHER ~CRYPTO_AEAD"
- check_extra_config
- fi
-}
-
-pkg_setup() {
- if use kernel_linux ; then
- linux-mod_pkg_setup
- else
- die "cryptodev ebuild only support linux"
- fi
- BUILD_TARGETS="build"
- export KERNEL_DIR
-}
-
-src_prepare() {
- # get_unused_fd was removed in 3.19
- sed -i 's,get_unused_fd(),get_unused_fd_flags(0),' ioctl.c || die
-}
-
-src_install() {
- linux-mod_src_install
- if use examples ; then
- docinto examples
- dodoc example/*
- fi
- insinto /usr/include/crypto
- doins crypto/cryptodev.h
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2018-09-02 12:15 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2018-09-02 12:15 UTC (permalink / raw
To: gentoo-commits
commit: a81e8571dd059a49cd0a0ef57f01747832a08306
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 2 12:12:41 2018 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sun Sep 2 12:14:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81e8571
sys-kernel/cryptodev: Take maintainership
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-kernel/cryptodev/metadata.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys-kernel/cryptodev/metadata.xml b/sys-kernel/cryptodev/metadata.xml
index 684b678e70f..c7bb627138c 100644
--- a/sys-kernel/cryptodev/metadata.xml
+++ b/sys-kernel/cryptodev/metadata.xml
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>swegener@gentoo.org</email>
+ <name>Sven Wegener</name>
+ </maintainer>
</pkgmetadata>
-
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2020-08-08 12:18 Mikle Kolyada
0 siblings, 0 replies; 22+ messages in thread
From: Mikle Kolyada @ 2020-08-08 12:18 UTC (permalink / raw
To: gentoo-commits
commit: d668026a4dbbb37b33a93a1972229a14760d23b7
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 7 10:51:09 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Aug 8 12:18:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d668026a
sys-kernel/cryptodev: migrate to sys-apps/kmod
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-kernel/cryptodev/{cryptodev-1.9.ebuild => cryptodev-1.9-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.9.ebuild b/sys-kernel/cryptodev/cryptodev-1.9-r1.ebuild
similarity index 96%
rename from sys-kernel/cryptodev/cryptodev-1.9.ebuild
rename to sys-kernel/cryptodev/cryptodev-1.9-r1.ebuild
index 7ac492ca811..6041c66cd1d 100644
--- a/sys-kernel/cryptodev/cryptodev-1.9.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2020-08-09 19:52 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2020-08-09 19:52 UTC (permalink / raw
To: gentoo-commits
commit: bb7fd41e21d968e9de582ccc8e3fb2a903940e3f
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 19:48:31 2020 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 19:50:17 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb7fd41e
sys-kernel/cryptodev: Version bump to 1.11, bug #736561
Closes: https://bugs.gentoo.org/736561
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/Manifest | 1 +
sys-kernel/cryptodev/cryptodev-1.11.ebuild | 56 ++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/sys-kernel/cryptodev/Manifest b/sys-kernel/cryptodev/Manifest
index 5d057c080a6..a747dd1bd80 100644
--- a/sys-kernel/cryptodev/Manifest
+++ b/sys-kernel/cryptodev/Manifest
@@ -1 +1,2 @@
+DIST cryptodev-linux-1.11.tar.gz 56876 BLAKE2B 97cf09c515c586372b2c5bd450e445afd5f80ed8ab39002545dc550c63480469a5318214f467444618e4e1783b9ab999b550cfb16d8ded6de26671a0727d06c2 SHA512 f7b76e9a154945514e2238cd7106cb50cea8120febc79228d6a8ba2dfaf98d5f0756d970df76fd63bda4755d7e0d78331aea394c3c5c18794b7ef1a8738fddba
DIST cryptodev-linux-1.9.tar.gz 54409 BLAKE2B 48427235409c792001f420c8a66ab4320457a1cf22c1bf47c8d0a40ef82491ffe64a27b7f2e7ed92f3b8b426fc8425bd15b2bf9c875bb222de8b738022adf99f SHA512 8aff822e834d7d77f2b954b3f6de22d7de9659dac27b8a185b7ca060ff4b17bd38e287bb5c19043a53f5015a3f000d31be961695152bad0fb9f55785b2753d29
diff --git a/sys-kernel/cryptodev/cryptodev-1.11.ebuild b/sys-kernel/cryptodev/cryptodev-1.11.ebuild
new file mode 100644
index 00000000000..08cf07fc623
--- /dev/null
+++ b/sys-kernel/cryptodev/cryptodev-1.11.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info linux-mod
+
+DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
+HOMEPAGE="http://cryptodev-linux.org/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
+ S="${WORKDIR}/${PN}-${PV}"
+else
+ SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~x86"
+ S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples"
+
+DEPEND="virtual/linux-sources"
+
+#test requires that the module is already loaded
+RESTRICT="test"
+
+MODULE_NAMES="cryptodev(extra:${S})"
+BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
+BUILD_TARGETS="build"
+
+pkg_pretend() {
+ use kernel_linux || die "cryptodev ebuild only support linux"
+
+ CONFIG_CHECK="~CRYPTO ~CRYPTO_AEAD"
+ if kernel_is -lt 4 8 0; then
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_BLKCIPHER"
+ else
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SKCIPHER"
+ fi
+ check_extra_config
+}
+
+src_install() {
+ linux-mod_src_install
+
+ insinto /usr/include/crypto
+ doins crypto/cryptodev.h
+
+ if use examples ; then
+ docinto examples
+ dodoc example/*
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2020-08-09 19:52 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2020-08-09 19:52 UTC (permalink / raw
To: gentoo-commits
commit: cb65575f0f19ce79f1c40ff5ef8063d3e3216498
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 19:45:23 2020 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 19:49:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb65575f
sys-kernel/cryptodev: Update live ebuild to EAPI 7
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/cryptodev-9999.ebuild | 35 +++++++++++++++---------------
1 file changed, 17 insertions(+), 18 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index 97182739422..08cf07fc623 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -1,20 +1,21 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
+
inherit linux-info linux-mod
DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
-HOMEPAGE="http://cryptodev-linux.org/index.html"
+HOMEPAGE="http://cryptodev-linux.org/"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
S="${WORKDIR}/${PN}-${PV}"
else
- SRC_URI="http://nwl.cc/pub/cryptodev-linux/${PN}-linux-${PV}.tar.gz"
+ SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
- S=${WORKDIR}/${PN}-linux-${PV}
+ S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
fi
LICENSE="GPL-2+"
@@ -28,30 +29,28 @@ RESTRICT="test"
MODULE_NAMES="cryptodev(extra:${S})"
BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
+BUILD_TARGETS="build"
pkg_pretend() {
- if use kernel_linux ; then
- CONFIG_CHECK="~CRYPTO ~CRYPTO_BLKCIPHER ~CRYPTO_AEAD"
- check_extra_config
- fi
-}
+ use kernel_linux || die "cryptodev ebuild only support linux"
-pkg_setup() {
- if use kernel_linux ; then
- linux-mod_pkg_setup
+ CONFIG_CHECK="~CRYPTO ~CRYPTO_AEAD"
+ if kernel_is -lt 4 8 0; then
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_BLKCIPHER"
else
- die "cryptodev ebuild only support linux"
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SKCIPHER"
fi
- BUILD_TARGETS="build"
- export KERNEL_DIR
+ check_extra_config
}
src_install() {
linux-mod_src_install
+
+ insinto /usr/include/crypto
+ doins crypto/cryptodev.h
+
if use examples ; then
docinto examples
dodoc example/*
fi
- insinto /usr/include/crypto
- doins crypto/cryptodev.h
}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2021-04-01 18:47 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2021-04-01 18:47 UTC (permalink / raw
To: gentoo-commits
commit: c2ab4e3a51936ffd97095cd5755fc516563ccab8
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 1 18:46:22 2021 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Thu Apr 1 18:46:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ab4e3a
sys-kernel/cryptodev: Version bump to 1.12
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/Manifest | 1 +
sys-kernel/cryptodev/cryptodev-1.12.ebuild | 56 ++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/sys-kernel/cryptodev/Manifest b/sys-kernel/cryptodev/Manifest
index a747dd1bd80..5fa4d78fc0b 100644
--- a/sys-kernel/cryptodev/Manifest
+++ b/sys-kernel/cryptodev/Manifest
@@ -1,2 +1,3 @@
DIST cryptodev-linux-1.11.tar.gz 56876 BLAKE2B 97cf09c515c586372b2c5bd450e445afd5f80ed8ab39002545dc550c63480469a5318214f467444618e4e1783b9ab999b550cfb16d8ded6de26671a0727d06c2 SHA512 f7b76e9a154945514e2238cd7106cb50cea8120febc79228d6a8ba2dfaf98d5f0756d970df76fd63bda4755d7e0d78331aea394c3c5c18794b7ef1a8738fddba
+DIST cryptodev-linux-1.12.tar.gz 56922 BLAKE2B ec3d6585cbc15027468c0d009dfad1437286e71f90247b6b07067e1355483d9a3184cb0134ab4cfb406168b1b506fb08d4a0ab6476b71305267769a33e5ed2de SHA512 75f4f20ee7474375fd515cfd4f247f9a61739ac766525cd8fe007adfa44129d90077568d59409f577202a4d8883539b0d533dd5e060a1065b61106f68ea5e4b3
DIST cryptodev-linux-1.9.tar.gz 54409 BLAKE2B 48427235409c792001f420c8a66ab4320457a1cf22c1bf47c8d0a40ef82491ffe64a27b7f2e7ed92f3b8b426fc8425bd15b2bf9c875bb222de8b738022adf99f SHA512 8aff822e834d7d77f2b954b3f6de22d7de9659dac27b8a185b7ca060ff4b17bd38e287bb5c19043a53f5015a3f000d31be961695152bad0fb9f55785b2753d29
diff --git a/sys-kernel/cryptodev/cryptodev-1.12.ebuild b/sys-kernel/cryptodev/cryptodev-1.12.ebuild
new file mode 100644
index 00000000000..3b2e81697ae
--- /dev/null
+++ b/sys-kernel/cryptodev/cryptodev-1.12.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info linux-mod
+
+DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
+HOMEPAGE="http://cryptodev-linux.org/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
+ S="${WORKDIR}/${PN}-${PV}"
+else
+ SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~x86"
+ S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples"
+
+DEPEND="virtual/linux-sources"
+
+#test requires that the module is already loaded
+RESTRICT="test"
+
+MODULE_NAMES="cryptodev(extra:${S})"
+BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
+BUILD_TARGETS="build"
+
+pkg_pretend() {
+ use kernel_linux || die "cryptodev ebuild only support linux"
+
+ CONFIG_CHECK="~CRYPTO ~CRYPTO_AEAD"
+ if kernel_is -lt 4 8 0; then
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_BLKCIPHER"
+ else
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SKCIPHER"
+ fi
+ check_extra_config
+}
+
+src_install() {
+ linux-mod_src_install
+
+ insinto /usr/include/crypto
+ doins crypto/cryptodev.h
+
+ if use examples ; then
+ docinto examples
+ dodoc example/*
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2021-04-01 18:47 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2021-04-01 18:47 UTC (permalink / raw
To: gentoo-commits
commit: 9ffaf443d0feb6dd9e00075ff23090c17a09c247
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 1 18:46:00 2021 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Thu Apr 1 18:46:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ffaf443
sys-kernel/cryptodev: Mark 1.11 stable on amd64/x86
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/cryptodev-1.11.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.11.ebuild b/sys-kernel/cryptodev/cryptodev-1.11.ebuild
index 08cf07fc623..89714e1aa6b 100644
--- a/sys-kernel/cryptodev/cryptodev-1.11.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
S="${WORKDIR}/${PN}-${PV}"
else
SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
- KEYWORDS="~amd64 ~arm ~x86"
+ KEYWORDS="amd64 ~arm x86"
S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
fi
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2022-01-22 18:23 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2022-01-22 18:23 UTC (permalink / raw
To: gentoo-commits
commit: 547b510b7bf1e85c3bf5b7bdea831356ef3a62b4
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 22 18:22:11 2022 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Jan 22 18:23:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547b510b
sys-kernel/cryptodev: Stabilize 1.12 on amd64/x86
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/cryptodev-1.12.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.12.ebuild b/sys-kernel/cryptodev/cryptodev-1.12.ebuild
index 3b2e81697ae5..33410090c5ff 100644
--- a/sys-kernel/cryptodev/cryptodev-1.12.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
S="${WORKDIR}/${PN}-${PV}"
else
SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
- KEYWORDS="~amd64 ~arm ~x86"
+ KEYWORDS="amd64 ~arm x86"
S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
fi
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2023-03-04 18:53 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2023-03-04 18:53 UTC (permalink / raw
To: gentoo-commits
commit: 2dc4324935695aad1281e854c5c805b0565cdf8f
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 18:52:29 2023 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 18:53:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc43249
sys-kernel/cryptodev: remove default value for S
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/cryptodev-1.12.ebuild | 3 +--
sys-kernel/cryptodev/cryptodev-9999.ebuild | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.12.ebuild b/sys-kernel/cryptodev/cryptodev-1.12.ebuild
index 33410090c5ff..4660f202faa1 100644
--- a/sys-kernel/cryptodev/cryptodev-1.12.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,6 @@ HOMEPAGE="http://cryptodev-linux.org/"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
- S="${WORKDIR}/${PN}-${PV}"
else
SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
KEYWORDS="amd64 ~arm x86"
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index 08cf07fc623e..ac9bd1eeea15 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,6 @@ HOMEPAGE="http://cryptodev-linux.org/"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
- S="${WORKDIR}/${PN}-${PV}"
else
SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2023-03-04 18:53 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2023-03-04 18:53 UTC (permalink / raw
To: gentoo-commits
commit: f7dacf3860d28f46f5b586fa01411da030b79e4c
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 18:48:18 2023 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 18:53:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7dacf38
sys-kernel/cryptodev: drop 1.11
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/Manifest | 1 -
sys-kernel/cryptodev/cryptodev-1.11.ebuild | 56 ------------------------------
2 files changed, 57 deletions(-)
diff --git a/sys-kernel/cryptodev/Manifest b/sys-kernel/cryptodev/Manifest
index 37705199474e..291074c9eb83 100644
--- a/sys-kernel/cryptodev/Manifest
+++ b/sys-kernel/cryptodev/Manifest
@@ -1,2 +1 @@
-DIST cryptodev-linux-1.11.tar.gz 56876 BLAKE2B 97cf09c515c586372b2c5bd450e445afd5f80ed8ab39002545dc550c63480469a5318214f467444618e4e1783b9ab999b550cfb16d8ded6de26671a0727d06c2 SHA512 f7b76e9a154945514e2238cd7106cb50cea8120febc79228d6a8ba2dfaf98d5f0756d970df76fd63bda4755d7e0d78331aea394c3c5c18794b7ef1a8738fddba
DIST cryptodev-linux-1.12.tar.gz 56922 BLAKE2B ec3d6585cbc15027468c0d009dfad1437286e71f90247b6b07067e1355483d9a3184cb0134ab4cfb406168b1b506fb08d4a0ab6476b71305267769a33e5ed2de SHA512 75f4f20ee7474375fd515cfd4f247f9a61739ac766525cd8fe007adfa44129d90077568d59409f577202a4d8883539b0d533dd5e060a1065b61106f68ea5e4b3
diff --git a/sys-kernel/cryptodev/cryptodev-1.11.ebuild b/sys-kernel/cryptodev/cryptodev-1.11.ebuild
deleted file mode 100644
index 89714e1aa6bd..000000000000
--- a/sys-kernel/cryptodev/cryptodev-1.11.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info linux-mod
-
-DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
-HOMEPAGE="http://cryptodev-linux.org/"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
- S="${WORKDIR}/${PN}-${PV}"
-else
- SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
- KEYWORDS="amd64 ~arm x86"
- S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
-fi
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="examples"
-
-DEPEND="virtual/linux-sources"
-
-#test requires that the module is already loaded
-RESTRICT="test"
-
-MODULE_NAMES="cryptodev(extra:${S})"
-BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
-BUILD_TARGETS="build"
-
-pkg_pretend() {
- use kernel_linux || die "cryptodev ebuild only support linux"
-
- CONFIG_CHECK="~CRYPTO ~CRYPTO_AEAD"
- if kernel_is -lt 4 8 0; then
- CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_BLKCIPHER"
- else
- CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SKCIPHER"
- fi
- check_extra_config
-}
-
-src_install() {
- linux-mod_src_install
-
- insinto /usr/include/crypto
- doins crypto/cryptodev.h
-
- if use examples ; then
- docinto examples
- dodoc example/*
- fi
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2023-05-05 18:55 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2023-05-05 18:55 UTC (permalink / raw
To: gentoo-commits
commit: da496b628181e368aacae6461b09ed9316836d86
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Fri May 5 18:51:43 2023 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Fri May 5 18:55:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da496b62
sys-kernel/cryptodev: add 1.13
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sys-kernel/cryptodev/Manifest | 1 +
sys-kernel/cryptodev/cryptodev-1.13.ebuild | 55 ++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/sys-kernel/cryptodev/Manifest b/sys-kernel/cryptodev/Manifest
index 291074c9eb83..53906f3ea34d 100644
--- a/sys-kernel/cryptodev/Manifest
+++ b/sys-kernel/cryptodev/Manifest
@@ -1 +1,2 @@
DIST cryptodev-linux-1.12.tar.gz 56922 BLAKE2B ec3d6585cbc15027468c0d009dfad1437286e71f90247b6b07067e1355483d9a3184cb0134ab4cfb406168b1b506fb08d4a0ab6476b71305267769a33e5ed2de SHA512 75f4f20ee7474375fd515cfd4f247f9a61739ac766525cd8fe007adfa44129d90077568d59409f577202a4d8883539b0d533dd5e060a1065b61106f68ea5e4b3
+DIST cryptodev-linux-1.13.tar.gz 57673 BLAKE2B 856f91bcfab7012aa174e99e26bd47d1da9e8857fc58d69ec1068b1792350e0a211abcf4c32bc83fa867792283ddacc8c8b3ce230999c5f746762a5ebde08bf6 SHA512 20ea5a0838a2212fae3ce2bdfc2a8d118a5c56418d76491338caffb96e53e44d20450bba69e028f851333bb32fe0a9a174786a77eac4f2babd2d9371e0c04411
diff --git a/sys-kernel/cryptodev/cryptodev-1.13.ebuild b/sys-kernel/cryptodev/cryptodev-1.13.ebuild
new file mode 100644
index 000000000000..ac9bd1eeea15
--- /dev/null
+++ b/sys-kernel/cryptodev/cryptodev-1.13.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info linux-mod
+
+DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
+HOMEPAGE="http://cryptodev-linux.org/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/cryptodev-linux/cryptodev-linux.git"
+else
+ SRC_URI="https://github.com/cryptodev-linux/cryptodev-linux/archive/${PN}-linux-${PV}.tar.gz"
+ KEYWORDS="~amd64 ~arm ~x86"
+ S=${WORKDIR}/${PN}-linux-${PN}-linux-${PV}
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples"
+
+DEPEND="virtual/linux-sources"
+
+#test requires that the module is already loaded
+RESTRICT="test"
+
+MODULE_NAMES="cryptodev(extra:${S})"
+BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
+BUILD_TARGETS="build"
+
+pkg_pretend() {
+ use kernel_linux || die "cryptodev ebuild only support linux"
+
+ CONFIG_CHECK="~CRYPTO ~CRYPTO_AEAD"
+ if kernel_is -lt 4 8 0; then
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_BLKCIPHER"
+ else
+ CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SKCIPHER"
+ fi
+ check_extra_config
+}
+
+src_install() {
+ linux-mod_src_install
+
+ insinto /usr/include/crypto
+ doins crypto/cryptodev.h
+
+ if use examples ; then
+ docinto examples
+ dodoc example/*
+ fi
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2023-06-21 18:50 Sven Wegener
0 siblings, 0 replies; 22+ messages in thread
From: Sven Wegener @ 2023-06-21 18:50 UTC (permalink / raw
To: gentoo-commits
commit: 78c7a1dfc9324d69ee3ba84100f397b7c4b64796
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 21 18:47:51 2023 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Wed Jun 21 18:50:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c7a1df
sys-kernel/cryptodev: switch to linux-mod-r1.eclass
Closes: https://bugs.gentoo.org/908726
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
.../{cryptodev-1.13.ebuild => cryptodev-1.13-r1.ebuild} | 17 ++++++++++-------
sys-kernel/cryptodev/cryptodev-9999.ebuild | 17 ++++++++++-------
2 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.13.ebuild b/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild
similarity index 84%
rename from sys-kernel/cryptodev/cryptodev-1.13.ebuild
rename to sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild
index ac9bd1eeea15..b5a1a271a0b0 100644
--- a/sys-kernel/cryptodev/cryptodev-1.13.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-inherit linux-info linux-mod
+inherit linux-info linux-mod-r1
DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
HOMEPAGE="http://cryptodev-linux.org/"
@@ -26,10 +26,6 @@ DEPEND="virtual/linux-sources"
#test requires that the module is already loaded
RESTRICT="test"
-MODULE_NAMES="cryptodev(extra:${S})"
-BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
-BUILD_TARGETS="build"
-
pkg_pretend() {
use kernel_linux || die "cryptodev ebuild only support linux"
@@ -42,8 +38,15 @@ pkg_pretend() {
check_extra_config
}
+src_compile() {
+ local modlist=( cryptodev=extra:${S} )
+ local modargs=( KERNEL_DIR="${KV_OUT_DIR}" )
+
+ linux-mod-r1_src_compile
+}
+
src_install() {
- linux-mod_src_install
+ linux-mod-r1_src_install
insinto /usr/include/crypto
doins crypto/cryptodev.h
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index ac9bd1eeea15..b5a1a271a0b0 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-inherit linux-info linux-mod
+inherit linux-info linux-mod-r1
DESCRIPTION="device that allows access to Linux kernel cryptographic drivers"
HOMEPAGE="http://cryptodev-linux.org/"
@@ -26,10 +26,6 @@ DEPEND="virtual/linux-sources"
#test requires that the module is already loaded
RESTRICT="test"
-MODULE_NAMES="cryptodev(extra:${S})"
-BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\""
-BUILD_TARGETS="build"
-
pkg_pretend() {
use kernel_linux || die "cryptodev ebuild only support linux"
@@ -42,8 +38,15 @@ pkg_pretend() {
check_extra_config
}
+src_compile() {
+ local modlist=( cryptodev=extra:${S} )
+ local modargs=( KERNEL_DIR="${KV_OUT_DIR}" )
+
+ linux-mod-r1_src_compile
+}
+
src_install() {
- linux-mod_src_install
+ linux-mod-r1_src_install
insinto /usr/include/crypto
doins crypto/cryptodev.h
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/
@ 2024-09-06 15:26 Arthur Zamarin
0 siblings, 0 replies; 22+ messages in thread
From: Arthur Zamarin @ 2024-09-06 15:26 UTC (permalink / raw
To: gentoo-commits
commit: 6f8dd91a162c41a59522cbdcaaf3c9e562923525
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 6 15:25:56 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 6 15:26:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8dd91a
sys-kernel/cryptodev: fix UnquotedVariable S [QA]
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild | 4 ++--
sys-kernel/cryptodev/cryptodev-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild b/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild
index b5a1a271a0b0..1ec7c3e4ec93 100644
--- a/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -39,7 +39,7 @@ pkg_pretend() {
}
src_compile() {
- local modlist=( cryptodev=extra:${S} )
+ local modlist=( cryptodev="extra:${S}" )
local modargs=( KERNEL_DIR="${KV_OUT_DIR}" )
linux-mod-r1_src_compile
diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild
index b5a1a271a0b0..1ec7c3e4ec93 100644
--- a/sys-kernel/cryptodev/cryptodev-9999.ebuild
+++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -39,7 +39,7 @@ pkg_pretend() {
}
src_compile() {
- local modlist=( cryptodev=extra:${S} )
+ local modlist=( cryptodev="extra:${S}" )
local modargs=( KERNEL_DIR="${KV_OUT_DIR}" )
linux-mod-r1_src_compile
^ permalink raw reply related [flat|nested] 22+ messages in thread
end of thread, other threads:[~2024-09-06 15:26 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-21 18:50 [gentoo-commits] repo/gentoo:master commit in: sys-kernel/cryptodev/ Sven Wegener
-- strict thread matches above, loose matches on Subject: below --
2024-09-06 15:26 Arthur Zamarin
2023-05-05 18:55 Sven Wegener
2023-03-04 18:53 Sven Wegener
2023-03-04 18:53 Sven Wegener
2022-01-22 18:23 Sven Wegener
2021-04-01 18:47 Sven Wegener
2021-04-01 18:47 Sven Wegener
2020-08-09 19:52 Sven Wegener
2020-08-09 19:52 Sven Wegener
2020-08-08 12:18 Mikle Kolyada
2018-09-02 12:15 Sven Wegener
2018-09-02 12:15 Sven Wegener
2018-09-02 12:15 Sven Wegener
2018-06-26 22:22 Jonas Stein
2017-10-04 9:17 Michał Górny
2017-07-30 9:23 Michał Górny
2017-04-25 12:18 Jeroen Roovers
2017-04-24 7:45 Jeroen Roovers
2017-03-22 9:50 Marek Szuba
2017-03-18 17:43 Göktürk Yüksek
2017-03-18 17:43 Göktürk Yüksek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox