summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Maier <tamiko@gentoo.org>2019-08-05 09:57:42 -0500
committerMatthias Maier <tamiko@gentoo.org>2019-08-05 10:02:42 -0500
commit234396453b10f86863b051573f12d184c737a8a2 (patch)
tree2df6d596b83c9bec0927d2efb54eb93415c0f0e0 /app-crypt/efitools
parentsys-kernel/gentoo-sources: Clean-up old, unsupported 5.2.X versions (diff)
downloadgentoo-234396453b10f86863b051573f12d184c737a8a2.tar.gz
gentoo-234396453b10f86863b051573f12d184c737a8a2.tar.bz2
gentoo-234396453b10f86863b051573f12d184c737a8a2.zip
app-crypt/efitools: [QA] drop duplicate patches
Package-Manager: Portage-2.3.70, Repoman-2.3.16 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'app-crypt/efitools')
-rw-r--r--app-crypt/efitools/efitools-1.9.2.ebuild2
-rw-r--r--app-crypt/efitools/files/efitools-1.9.2-libressl-compatibility.patch11
2 files changed, 1 insertions, 12 deletions
diff --git a/app-crypt/efitools/efitools-1.9.2.ebuild b/app-crypt/efitools/efitools-1.9.2.ebuild
index aaff36b5c9db..542f32ac0915 100644
--- a/app-crypt/efitools/efitools-1.9.2.ebuild
+++ b/app-crypt/efitools/efitools-1.9.2.ebuild
@@ -30,7 +30,7 @@ DEPEND="${RDEPEND}
PATCHES=(
"${FILESDIR}/1.7.0-Make.rules.patch"
- "${FILESDIR}/${P}-libressl-compatibility.patch"
+ "${FILESDIR}/${PN}-1.8.1-libressl-compatibility.patch"
)
src_prepare() {
diff --git a/app-crypt/efitools/files/efitools-1.9.2-libressl-compatibility.patch b/app-crypt/efitools/files/efitools-1.9.2-libressl-compatibility.patch
deleted file mode 100644
index 876baae16f81..000000000000
--- a/app-crypt/efitools/files/efitools-1.9.2-libressl-compatibility.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/cert-to-efi-hash-list.c 2018-04-21 20:59:24.814748503 +0200
-+++ b/cert-to-efi-hash-list.c 2018-04-21 20:59:51.868581307 +0200
-@@ -135,7 +135,7 @@
- X509 *cert = PEM_read_bio_X509(cert_bio, NULL, NULL, NULL);
- unsigned char *cert_buf = NULL;
-
--#if OPENSSL_VERSION_NUMBER < 0x10100000L
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
- int cert_len = i2d_X509_CINF(cert->cert_info, &cert_buf);
- #else
- int cert_len = i2d_re_X509_tbs(cert, &cert_buf);