From patchwork Mon May 17 12:31:22 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 4298 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4FkJQm6phbz3wbb for ; Mon, 17 May 2021 12:31:28 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4FkJQm305Hz21g; Mon, 17 May 2021 12:31:28 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4FkJQm2vCSz2xMk; Mon, 17 May 2021 12:31:28 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4FkJQk4pQLz2xFh for ; Mon, 17 May 2021 12:31:26 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4FkJQj6y08zjk; Mon, 17 May 2021 12:31:25 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1621254686; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=hE2OetJy6YYtia5zThlA2xGiG0hyh9sFkFHi/ws+KOQ=; b=D4tcQgzM1d3E3TFuY7PW55DdSZ3Gv0rcMimE4tzDdEI2G48qBl42Y4VBYcXIZjXRZsAH4m nSU6cKXUJ3N6g7AA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1621254686; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=hE2OetJy6YYtia5zThlA2xGiG0hyh9sFkFHi/ws+KOQ=; b=T++XY9Fs9end8pNv1YeEv8mUCz+lq6g0b+OMhsBlheVqdYg+Fc8fAXoN6+++kGuiwD+QBt 9s/bu/DWdEvMlfvAlLyECGxJDuMO+D+HfxK8sEpkP8z9GIffklRXPBQgYkJzgv/oYnKeu1 ifZITqzoUvzms0LP1mer88U8+2PXm7OaaNPXhjgQpTe/jWcZOAkdzKAeew/FURlW83HmTM omgSgG+1dvKGRhWo3M9lTlzpXymqYA4OAYd9j9vTW+HX+Y9rOg+RYftPE2KFAv++aWy/rl KN25aPBrOTtXT2CthQROFRZRrJMexAXUifahEuC3BI85UHOR0D/1HmQhqAW4ZA== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] qpdf: Update to 10.3.2 Date: Mon, 17 May 2021 14:31:22 +0200 Message-Id: <20210517123122.3895239-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 10.3.0 to 10.3.2 - Update rootfiles - Changelog * 10.3.2: release * Fix problem that caused the generated manual from being included in the Windows distributions. Fixes #521. * Fix 11-year-old bug of leaving unreferenced objects in preserved object streams. Fixes #520. * Portability fix: use tm_gmtoff rather than global timezone variable if available to get timezone offset. This fixes compilation on BSD and also results in a daylight saving time-aware offset for Linux or other GNU systems. Fixes #515. * When adding a page, if the page already exists, make a shallow copy of the page instead of throwing an exception. This makes the behavior of adding a page from the library consistent with what the CLI does and also with what the library does if it starts with a file that already has a duplicated page. Note that this means that, in some cases, the page you pass to addPage or addPageAt (either in QPDF or QPDFPageDocumentHelper) will not be the same object that actually gets added. (This has actually always been the case.) That means that, if you are going to do subsequent modification on the page, you should retrieve it again. * 10.3.1: release * Bug fix: allow /DR to be direct in /AcroForm Signed-off-by: Adolf Belka --- config/rootfiles/common/qpdf | 2 +- lfs/qpdf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/rootfiles/common/qpdf b/config/rootfiles/common/qpdf index 56d1e4ba0..dddf593bd 100644 --- a/config/rootfiles/common/qpdf +++ b/config/rootfiles/common/qpdf @@ -58,7 +58,7 @@ usr/bin/qpdf #usr/lib/libqpdf.la #usr/lib/libqpdf.so usr/lib/libqpdf.so.28 -usr/lib/libqpdf.so.28.3.0 +usr/lib/libqpdf.so.28.3.2 #usr/lib/pkgconfig/libqpdf.pc #usr/share/doc/qpdf #usr/share/doc/qpdf/qpdf-manual.html diff --git a/lfs/qpdf b/lfs/qpdf index 899a9d67d..2aff1fc86 100644 --- a/lfs/qpdf +++ b/lfs/qpdf @@ -24,7 +24,7 @@ include Config -VER = 10.3.0 +VER = 10.3.2 THISAPP = qpdf-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -44,7 +44,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 0e9918cfb9bb13c96b7cd0cffd401b3d +$(DL_FILE)_MD5 = 29aaaf03e0f83b3527d1470f8391c876 install : $(TARGET)