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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BB209138334 for ; Wed, 25 Dec 2019 17:44:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB15CE09B4; Wed, 25 Dec 2019 17:44:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0A29E09B4 for ; Wed, 25 Dec 2019 17:44:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C4E934DB3F for ; Wed, 25 Dec 2019 17:44:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2451D37 for ; Wed, 25 Dec 2019 17:44:05 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1577295819.76ebdaa3d46dc8fcc23375cd365039ef272fd74d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/giflib/, media-libs/giflib/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/giflib/files/giflib-5.2.1-fix-missing-quantize-API-symbols.patch media-libs/giflib/giflib-5.2.1-r1.ebuild media-libs/giflib/giflib-5.2.1.ebuild X-VCS-Directories: media-libs/giflib/ media-libs/giflib/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 76ebdaa3d46dc8fcc23375cd365039ef272fd74d X-VCS-Branch: master Date: Wed, 25 Dec 2019 17:44:05 +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: 6d4fe6dc-eb50-4893-9eb5-b4fd4eabfdf3 X-Archives-Hash: c14d22a6ecdbf85610461d9c914ce5e9 commit: 76ebdaa3d46dc8fcc23375cd365039ef272fd74d Author: David Seifert gentoo org> AuthorDate: Wed Dec 25 17:43:39 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Dec 25 17:43:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ebdaa3 media-libs/giflib: Add patch for GifQuantizeBuffer API * Patch taken from Archlinux Bug: https://bugs.gentoo.org/682198 Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> ...ib-5.2.1-fix-missing-quantize-API-symbols.patch | 32 ++++++++++++++++++++++ ...{giflib-5.2.1.ebuild => giflib-5.2.1-r1.ebuild} | 1 + 2 files changed, 33 insertions(+) diff --git a/media-libs/giflib/files/giflib-5.2.1-fix-missing-quantize-API-symbols.patch b/media-libs/giflib/files/giflib-5.2.1-fix-missing-quantize-API-symbols.patch new file mode 100644 index 00000000000..5948f454685 --- /dev/null +++ b/media-libs/giflib/files/giflib-5.2.1-fix-missing-quantize-API-symbols.patch @@ -0,0 +1,32 @@ +From ff8d9a59e79b79657e64430730c35835a84db619 Mon Sep 17 00:00:00 2001 +From: anthraxx +Date: Tue, 2 Apr 2019 11:46:18 +0200 +Subject: [PATCH] fix missing quantize API symbols + +GifQuantizeBuffer is required by many libs and applications +like mplayer, libgdiplus (mono) and others. +--- + Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index e4ded69..17d0a5c 100644 +--- a/Makefile ++++ b/Makefile +@@ -29,11 +29,11 @@ LIBPOINT=0 + LIBVER=$(LIBMAJOR).$(LIBMINOR).$(LIBPOINT) + + SOURCES = dgif_lib.c egif_lib.c gifalloc.c gif_err.c gif_font.c \ +- gif_hash.c openbsd-reallocarray.c ++ gif_hash.c openbsd-reallocarray.c quantize.c + HEADERS = gif_hash.h gif_lib.h gif_lib_private.h + OBJECTS = $(SOURCES:.c=.o) + +-USOURCES = qprintf.c quantize.c getarg.c ++USOURCES = qprintf.c getarg.c + UHEADERS = getarg.h + UOBJECTS = $(USOURCES:.c=.o) + +-- +2.21.0 + diff --git a/media-libs/giflib/giflib-5.2.1.ebuild b/media-libs/giflib/giflib-5.2.1-r1.ebuild similarity index 96% rename from media-libs/giflib/giflib-5.2.1.ebuild rename to media-libs/giflib/giflib-5.2.1-r1.ebuild index 55389387dae..00d52ae80e3 100644 --- a/media-libs/giflib/giflib-5.2.1.ebuild +++ b/media-libs/giflib/giflib-5.2.1-r1.ebuild @@ -18,6 +18,7 @@ DEPEND="doc? ( app-text/xmlto )" PATCHES=( "${FILESDIR}"/${PN}-5.1.9-gentoo.patch + "${FILESDIR}"/${PN}-5.2.1-fix-missing-quantize-API-symbols.patch ) src_prepare() {