app-crypt/p11-kit: fix date handling
authorAlon Bar-Lev <alonbl@gentoo.org>
Tue, 2 Jul 2019 05:50:20 +0000 (08:50 +0300)
committerAlon Bar-Lev <alonbl@gentoo.org>
Tue, 2 Jul 2019 05:50:56 +0000 (08:50 +0300)
Closes: https://bugs.gentoo.org/show_bug.cgi?id=688460
Thanks: Alexey
Signed-off-by: Alon Bar-Lev <alonbl@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --force

app-crypt/p11-kit/files/p11-kit-0.23.12-mktime.patch [new file with mode: 0644]
app-crypt/p11-kit/p11-kit-0.23.12-r1.ebuild [moved from app-crypt/p11-kit/p11-kit-0.23.12.ebuild with 97% similarity]
app-crypt/p11-kit/p11-kit-0.23.16.1-r1.ebuild [moved from app-crypt/p11-kit/p11-kit-0.23.16.1.ebuild with 97% similarity]

diff --git a/app-crypt/p11-kit/files/p11-kit-0.23.12-mktime.patch b/app-crypt/p11-kit/files/p11-kit-0.23.12-mktime.patch
new file mode 100644 (file)
index 0000000..7cc0baa
--- /dev/null
@@ -0,0 +1,26 @@
+From 3d009fda4cb39157d6876e7d16cbc57f7b59bc86 Mon Sep 17 00:00:00 2001
+From: Alon Bar-Lev <alon.barlev@gmail.com>
+Date: Mon, 1 Jul 2019 13:38:25 +0300
+Subject: [PATCH] trust: do not allow daylight to invalidate date validation
+
+Issue: 235
+Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
+---
+ trust/builder.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/trust/builder.c b/trust/builder.c
+index d819dc8..2fc0c40 100644
+--- a/trust/builder.c
++++ b/trust/builder.c
+@@ -261,6 +261,7 @@ type_date (p11_builder *builder,
+               return false;
+       memcpy (&two, &tm, sizeof (tm));
++      two.tm_isdst = -1;      // do not perform tz fixup
+       if (mktime (&two) < 0)
+               return false;
+-- 
+2.21.0
+
similarity index 97%
rename from app-crypt/p11-kit/p11-kit-0.23.12.ebuild
rename to app-crypt/p11-kit/p11-kit-0.23.12-r1.ebuild
index 1e38188fa1aea794b51538f412d96aa88bd16745..acd2250428b5db5b3665bc48860627cdcdfcbcac 100644 (file)
@@ -21,6 +21,10 @@ RDEPEND="asn1? ( >=dev-libs/libtasn1-3.4:=[${MULTILIB_USEDEP}] )
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
+PATCHES=(
+       "${FILESDIR}/${P}-mktime.patch"
+)
+
 pkg_setup() {
        # disable unsafe tests, bug#502088
        export FAKED_MODE=1
similarity index 97%
rename from app-crypt/p11-kit/p11-kit-0.23.16.1.ebuild
rename to app-crypt/p11-kit/p11-kit-0.23.16.1-r1.ebuild
index ec7c6c32971e92313c1bad6e848bbf1efbb433d8..6b1c88e6912bb5eb23565a08daf79fa111a56760 100644 (file)
@@ -21,6 +21,10 @@ RDEPEND="asn1? ( >=dev-libs/libtasn1-3.4:=[${MULTILIB_USEDEP}] )
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
+PATCHES=(
+       "${FILESDIR}/${PN}-0.23.12-mktime.patch"
+)
+
 pkg_setup() {
        # disable unsafe tests, bug#502088
        export FAKED_MODE=1