From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8E5011581F3 for ; Tue, 26 Nov 2024 16:35:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9D77E0837; Tue, 26 Nov 2024 16:35:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C6D8E0837 for ; Tue, 26 Nov 2024 16:35:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 605F2335C0F for ; Tue, 26 Nov 2024 16:35:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC730D81 for ; Tue, 26 Nov 2024 16:35:01 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1732638886.db7311162183b63539b06c37884e374971aa76e1.flow@gentoo> Subject: [gentoo-commits] proj/tex-patches:main commit in: / X-VCS-Repository: proj/tex-patches X-VCS-Files: relax-zlib-check-to-just-major-version-following-deb.patch X-VCS-Directories: / X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: db7311162183b63539b06c37884e374971aa76e1 X-VCS-Branch: main Date: Tue, 26 Nov 2024 16:35:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a059d161-1550-4cde-8a5f-0b965ab0ee23 X-Archives-Hash: 6ebeaffb7c29af5239e7f3431174248b commit: db7311162183b63539b06c37884e374971aa76e1 Author: Florian Schmaus gentoo org> AuthorDate: Tue Nov 26 16:34:20 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Nov 26 16:34:46 2024 +0000 URL: https://gitweb.gentoo.org/proj/tex-patches.git/commit/?id=db731116 drop relax-zlib-check-to-just-major-version-following-deb.patch The patch is now upstream. Signed-off-by: Florian Schmaus gentoo.org> ...check-to-just-major-version-following-deb.patch | 26 ---------------------- 1 file changed, 26 deletions(-) diff --git a/relax-zlib-check-to-just-major-version-following-deb.patch b/relax-zlib-check-to-just-major-version-following-deb.patch deleted file mode 100644 index ae6da9f..0000000 --- a/relax-zlib-check-to-just-major-version-following-deb.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 7fb47babef2c947ad937d9e8e36842122459342c Mon Sep 17 00:00:00 2001 -From: Karl Berry -Date: Mon, 20 Nov 2023 23:05:35 +0000 -Subject: [PATCH] relax zlib check to just major version, following debian - -git-svn-id: svn://tug.org/texlive/trunk/Build/source@68922 c570f23f-e606-0410-a88d-b1316a301751 ---- - texk/web2c/luatexdir/luazlib/lzlib.c | 2 +- - 3 files changed, 11 insertions(+), 2 deletions(-) - -diff --git a/texk/web2c/luatexdir/luazlib/lzlib.c b/texk/web2c/luatexdir/luazlib/lzlib.c -index e61f92d580e2..ea123e54126f 100644 ---- a/texk/web2c/luatexdir/luazlib/lzlib.c -+++ b/texk/web2c/luatexdir/luazlib/lzlib.c -@@ -546,7 +546,7 @@ LUALIB_API int luaopen_zlib(lua_State *L) - - /* make sure header and library version are consistent */ - const char* version = zlibVersion(); -- if (strncmp(version, ZLIB_VERSION, 4)) -+ if (strncmp(version, ZLIB_VERSION, 2)) - { - lua_pushfstring(L, "zlib library version does not match - header: %s, library: %s", ZLIB_VERSION, version); - lua_error(L); --- -2.41.0 -