From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/jbig2dec/
Date: Sat, 15 Jun 2019 09:08:26 +0000 (UTC) [thread overview]
Message-ID: <1560589678.b55365d9071e60c73b0ff1b60148fb1b8ebf844c.pacho@gentoo> (raw)
commit: b55365d9071e60c73b0ff1b60148fb1b8ebf844c
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 15 09:07:22 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Jun 15 09:07:58 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b55365d9
Revert "media-libs/jbig2dec: Drop old"
This reverts commit 2498246e0d9a2b801ac9b74d78172b66f513181a.
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
media-libs/jbig2dec/Manifest | 2 ++
media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild | 53 +++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/media-libs/jbig2dec/Manifest b/media-libs/jbig2dec/Manifest
index 1dd7dc929e2..37d772ed72f 100644
--- a/media-libs/jbig2dec/Manifest
+++ b/media-libs/jbig2dec/Manifest
@@ -1,2 +1,4 @@
DIST jb2streams.zip 1285838 BLAKE2B 9a2b6047a7b970439693d6f5fdefb9488019a562e7f831288b27df09bb19dec2f84854cf7fea50b5b041d331e925145f37f2f89848058ecdc074e7d6c238033f SHA512 382890b36345b8aaebb3554e776a53f3276c6d835335ce41f3f41829ff62bba7ae646602544103ba8541a7a824dca92d682b682c254ab2918c7fe45b3e358b45
+DIST jbig2dec-0.13-patchset.tar.bz2 8452 BLAKE2B 473a338b460c8a66991fb50e110f4386944c8d1ea557318bf8c249e3ed64d290ace9112ad713f92bb4c933fd187eae7ec9f2358ca904a1e41e003f9f9e8682e5 SHA512 024cb2a9c12f4c1f603b3379bfc0e190006accd484cea124c41d6663e3d094724f53bcf881650edcef80fc86f004e69423bdcaf60a3962e392685bae88375b9d
+DIST jbig2dec-0.13.tar.gz 442571 BLAKE2B 6a973f91502d8effc00cd49b68bb2f853edd41286fdc5cb159460607db8627c2c959ba1c96e65b2ef1df3d4072c9993ce66c06bc5dc1837c89f87c6da0025550 SHA512 ef64a65c54bec65f61602de7130dc9594aae58aaea7958f7cc987f25d0794511e15a423e86501ace4f40c0364796fb97ceab72edb0b69232926767ba16c1b05d
DIST jbig2dec-0.14.tar.gz 463572 BLAKE2B 91351a3879bd1906fabe2620cf5379fbbc32eaae808a8c2754c661d6dc592d3c9da13c558c8f7ced30c48b73fbd9ed4631f2817298f959b59ad4dff5fce9ac1a SHA512 066bd880ac0665fc1e42b0ae0e481008b125aab6e173b7f82d61a2a30e72c90085cbded9b2a68c6836f92dea3d8d8d5c2228dba76e0d99c79c922197d215705b
diff --git a/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild b/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
new file mode 100644
index 00000000000..3c40f712950
--- /dev/null
+++ b/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A decoder implementation of the JBIG2 image compression format"
+HOMEPAGE="http://ghostscript.com/jbig2dec.html"
+SRC_URI="http://downloads.ghostscript.com/public/${PN}/${P}.tar.gz
+ https://dev.gentoo.org/~mgorny/dist/${P}-patchset.tar.bz2
+ test? ( http://jbig2dec.sourceforge.net/ubc/jb2streams.zip )"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
+IUSE="png static-libs test"
+
+RDEPEND="png? ( media-libs/libpng:0= )"
+DEPEND="${RDEPEND}
+ test? ( app-arch/unzip )"
+
+RESTRICT="test"
+# bug 324275
+
+DOCS="CHANGES README"
+
+PATCHES=(
+ "${WORKDIR}/${P}-patchset/${P}-CVE-2016-9601.patch"
+ "${WORKDIR}/${P}-patchset/${P}-CVE-2017-9216.patch"
+ "${WORKDIR}/${P}-patchset/${P}-CVE-2017-7885.patch"
+ "${WORKDIR}/${P}-patchset/${P}-CVE-2017-7975.patch"
+ "${WORKDIR}/${P}-patchset/${P}-CVE-2017-7976.patch"
+)
+
+src_prepare() {
+ default
+
+ if use test; then
+ mkdir "${WORKDIR}/ubc" || die
+ mv -v "${WORKDIR}"/*.jb2 "${WORKDIR}/ubc/" || die
+ mv -v "${WORKDIR}"/*.bmp "${WORKDIR}/ubc/" || die
+ fi
+}
+
+src_configure() {
+ econf \
+ $(use_enable static-libs static) \
+ $(use_with png libpng)
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -exec rm {} + || die
+}
next reply other threads:[~2019-06-15 9:08 UTC|newest]
Thread overview: 78+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-15 9:08 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-21 21:14 [gentoo-commits] repo/gentoo:master commit in: media-libs/jbig2dec/ Andreas Sturmlechner
2024-10-12 22:48 Sam James
2024-10-12 22:08 Sam James
2024-10-10 16:20 Arthur Zamarin
2024-10-03 16:11 Arthur Zamarin
2024-10-03 10:26 Sam James
2024-10-02 22:53 Sam James
2024-06-06 0:45 Sam James
2024-06-06 0:45 Sam James
2024-06-06 0:45 Sam James
2024-06-06 0:45 Sam James
2024-06-06 0:45 Sam James
2023-03-09 7:57 Sam James
2023-03-09 7:57 Sam James
2022-05-22 4:40 Sam James
2022-05-14 7:28 WANG Xuerui
2020-12-27 17:47 Fabian Groffen
2020-12-22 21:32 Sam James
2020-12-22 21:27 Sam James
2020-12-21 9:41 Sergei Trofimovich
2020-12-20 16:40 Thomas Deutschmann
2020-12-18 20:49 Sergei Trofimovich
2020-12-18 10:16 Sergei Trofimovich
2020-12-17 16:41 Agostino Sarubbo
2020-12-16 21:24 Sergei Trofimovich
2020-09-11 19:40 Thomas Deutschmann
2020-07-29 17:05 Sergei Trofimovich
2020-07-25 21:01 Sam James
2020-07-22 7:31 Sergei Trofimovich
2020-07-20 18:25 Sam James
2020-07-20 17:52 Sam James
2020-07-20 17:52 Sam James
2020-07-20 17:38 Sam James
2020-07-20 16:04 Sam James
2020-07-20 15:09 Sam James
2019-11-17 7:21 Matt Turner
2019-11-13 13:17 Agostino Sarubbo
2019-11-08 8:35 Mikle Kolyada
2019-11-07 0:00 Aaron Bauman
2019-11-01 10:32 Mikle Kolyada
2019-10-28 7:43 Agostino Sarubbo
2019-10-27 19:25 Sergei Trofimovich
2019-10-26 15:16 Agostino Sarubbo
2019-10-10 23:40 Thomas Deutschmann
2019-06-30 8:05 Pacho Ramos
2019-06-18 11:12 Agostino Sarubbo
2019-06-15 7:22 Pacho Ramos
2019-06-13 4:45 Markus Meier
2019-05-12 20:56 Thomas Deutschmann
2019-05-07 8:46 Tobias Klausmann
2019-04-28 20:29 Mikle Kolyada
2019-04-21 17:07 Sergei Trofimovich
2019-04-13 19:10 Agostino Sarubbo
2019-04-13 5:01 Aaron Bauman
2019-04-12 7:06 Sergei Trofimovich
2018-12-27 18:48 Fabian Groffen
2018-06-28 14:37 Mikle Kolyada
2018-05-06 13:20 Mart Raudsepp
2017-10-06 7:44 Lars Wendler
2017-10-06 7:44 Lars Wendler
2017-10-03 8:42 Sergei Trofimovich
2017-06-24 21:52 Sergei Trofimovich
2017-06-23 4:37 Markus Meier
2017-06-21 12:17 Agostino Sarubbo
2017-06-18 14:01 Agostino Sarubbo
2017-06-11 21:21 Andreas Hüttel
2017-03-11 17:07 Agostino Sarubbo
2017-02-28 17:31 Markus Meier
2017-02-25 10:03 Agostino Sarubbo
2017-02-23 9:28 Michael Weber
2017-02-22 16:08 Agostino Sarubbo
2017-02-22 8:08 Jeroen Roovers
2017-02-21 11:54 Tobias Klausmann
2017-02-18 14:33 Agostino Sarubbo
2017-02-18 13:42 Jeroen Roovers
2016-10-02 6:10 Patrick Lauer
2016-10-01 21:40 Andreas Hüttel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1560589678.b55365d9071e60c73b0ff1b60148fb1b8ebf844c.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox