From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libwebp/
Date: Sun, 20 Jan 2019 00:55:38 +0000 (UTC) [thread overview]
Message-ID: <1547945731.74bf7feabb362d0f65dc35bfbe80625344253b85.whissi@gentoo> (raw)
commit: 74bf7feabb362d0f65dc35bfbe80625344253b85
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 20 00:55:16 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Jan 20 00:55:31 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bf7fea
media-libs/libwebp: bump to v1.0.2
Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
media-libs/libwebp/Manifest | 1 +
media-libs/libwebp/libwebp-1.0.2.ebuild | 70 +++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/media-libs/libwebp/Manifest b/media-libs/libwebp/Manifest
index 5711627a297..9a101c97ffa 100644
--- a/media-libs/libwebp/Manifest
+++ b/media-libs/libwebp/Manifest
@@ -2,3 +2,4 @@ DIST libwebp-0.5.2.tar.gz 1221153 BLAKE2B bf8f20c9dd45f70e68dda4eb1104b511be07b4
DIST libwebp-0.6.1.tar.gz 3990217 BLAKE2B 680dcc56bd10797e93d09dc64ed04fd2ffb0b8131aa0c0f1497054c50f5cff73b7ee2aa96df4f7ca760640b636f6f5265ae26e7874a77a86d39d2c74197c93b7 SHA512 fece551d8fabdd8d7ba6807baa54a69a345f8690be4415dd0c0dea54002d78fe893a5d5aacfc13800300edd462b969d596709ac3213f6bc90f8e3698b2490d5f
DIST libwebp-1.0.0.tar.gz 4023549 BLAKE2B 10286182ddc1f3561d01edf095ba8921b932b950175c45bbc86400318f9a88237c7623b0bcdd0dfecea6efb085e84e029c82a61396cb784d778d59902353d2b4 SHA512 2af7036957722a3f1533fa2da0da15c76d7eb8ac98ec4ad5cf71dd4262f3d7c9897fb6b50befab83b7de22f0abceeb2c0ff52d60927513d40f8a41aa6a9abd99
DIST libwebp-1.0.1.tar.gz 4030276 BLAKE2B 4ea3b31bac14c61fbedad14ed675adb4cc0deaed83f8c58f8d589ab2453a8cff33d7832acba39c673aa31cbb3d5c6b487151173d162f92a3698115833b03b694 SHA512 44e0c278b4569c03c39a1e047bccd7b4270bda12feae0dadc54f8a61fd6a66be011229f1e7e853f64749bcd9ea9e8146989e2b632459b67a4aaea4a8033a1361
+DIST libwebp-1.0.2.tar.gz 4036397 BLAKE2B 708c1083f62bdb3526f8319d9b6ce1e8aeba2bc785105ff7db07c9c7041311cedcfff000de5b8fd8e93550fc86ec149f6dd4a21f576709b80cb6a4b20ddd2863 SHA512 e095b8fdf0096395daf12892b3b74c472868e727f23640ba7aa5922a5a028b778a6a60d8a94f696f6c0ca49577dfc9a0b599ecb74ad831ade48c6db812b71d2e
diff --git a/media-libs/libwebp/libwebp-1.0.2.ebuild b/media-libs/libwebp/libwebp-1.0.2.ebuild
new file mode 100644
index 00000000000..d561963a322
--- /dev/null
+++ b/media-libs/libwebp/libwebp-1.0.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools libtool multilib-minimal
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="A lossy image compression format"
+HOMEPAGE="https://developers.google.com/speed/webp/download"
+SRC_URI="http://downloads.webmproject.org/releases/webp/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/7" # subslot = libwebp soname version
+[[ "${PV}" = *_rc* ]] || \
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg neon opengl +png static-libs swap-16bit-csp tiff"
+
+# TODO: dev-lang/swig bindings in swig/ subdirectory
+RDEPEND="gif? ( media-libs/giflib:= )
+ jpeg? ( virtual/jpeg:0= )
+ opengl? (
+ media-libs/freeglut
+ virtual/opengl
+ )
+ png? ( media-libs/libpng:0= )
+ tiff? ( media-libs/tiff:0= )"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ default
+
+ # Fix libtool relinking, bug 499270.
+ #elibtoolize
+ eautoreconf
+}
+
+multilib_src_configure() {
+ local args=(
+ --enable-libwebpmux
+ --enable-libwebpdemux
+ --enable-libwebpdecoder
+ $(use_enable static-libs static)
+ $(use_enable swap-16bit-csp)
+ $(use_enable jpeg)
+ $(use_enable png)
+ $(use_enable opengl gl)
+ $(use_enable tiff)
+
+ $(use_enable cpu_flags_x86_sse2 sse2)
+ $(use_enable cpu_flags_x86_sse4_1 sse4.1)
+ $(use_enable neon)
+
+ # Only used for gif2webp binary wrt #486646
+ $(multilib_native_use_enable gif)
+ )
+
+ ECONF_SOURCE="${S}" econf "${args[@]}"
+}
+
+multilib_src_install() {
+ emake DESTDIR="${D}" install
+}
+
+multilib_src_install_all() {
+ find "${ED}" -name "*.la" -delete || die
+ dodoc AUTHORS ChangeLog doc/*.txt NEWS README{,.mux}
+}
next reply other threads:[~2019-01-20 0:55 UTC|newest]
Thread overview: 114+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-20 0:55 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-12 22:19 [gentoo-commits] repo/gentoo:master commit in: media-libs/libwebp/ Andreas Sturmlechner
2024-11-12 20:46 Sam James
2024-10-15 12:47 Arthur Zamarin
2024-10-03 16:11 Arthur Zamarin
2024-10-03 10:18 Sam James
2024-05-13 9:31 Matt Jolly
2024-01-05 9:59 Sam James
2023-12-22 1:40 John Helmert III
2023-10-01 3:40 Sam James
2023-10-01 3:40 Sam James
2023-10-01 2:53 Sam James
2023-10-01 2:33 Sam James
2023-10-01 2:33 Sam James
2023-10-01 2:27 Sam James
2023-10-01 2:27 Sam James
2023-10-01 2:27 Sam James
2023-09-17 6:15 Sam James
2023-09-14 2:51 Sam James
2023-09-12 14:20 Sam James
2023-09-12 14:20 Sam James
2023-09-12 13:49 Sam James
2023-09-12 13:49 Sam James
2023-09-12 13:49 Sam James
2023-09-12 13:49 Sam James
2023-09-12 13:49 Sam James
2023-09-12 2:42 Mike Gilbert
2023-09-12 2:42 Mike Gilbert
2023-07-01 12:58 Stephan Hartmann
2023-07-01 9:02 Arthur Zamarin
2023-06-30 21:14 Sam James
2023-06-30 21:14 Sam James
2023-06-30 19:30 Sam James
2023-06-30 19:30 Sam James
2023-06-30 19:28 Arthur Zamarin
2023-06-30 19:19 Sam James
2023-06-30 19:19 Sam James
2023-06-30 15:40 Stephan Hartmann
2023-06-30 15:40 Stephan Hartmann
2022-12-18 8:32 Sam James
2022-08-25 18:24 Agostino Sarubbo
2022-08-25 18:15 Agostino Sarubbo
2022-08-25 4:02 Arthur Zamarin
2022-08-25 4:02 Arthur Zamarin
2022-08-25 4:02 Arthur Zamarin
2022-08-25 3:33 Sam James
2022-08-25 3:33 Sam James
2022-08-25 3:33 Sam James
2022-08-08 6:08 Sam James
2022-05-13 6:33 WANG Xuerui
2022-02-17 18:48 Arthur Zamarin
2022-02-17 7:35 Agostino Sarubbo
2022-02-17 7:32 Agostino Sarubbo
2022-02-16 22:06 Arthur Zamarin
2022-02-16 20:39 Arthur Zamarin
2022-02-16 20:25 Arthur Zamarin
2022-02-16 20:17 Arthur Zamarin
2022-02-16 17:35 Arthur Zamarin
2022-01-27 19:47 Stephan Hartmann
2021-12-22 20:18 Stephan Hartmann
2021-12-22 20:18 Stephan Hartmann
2021-12-22 20:08 Stephan Hartmann
2021-12-21 17:26 Stephan Hartmann
2021-09-19 19:58 James Le Cuirot
2021-02-12 15:42 Stephan Hartmann
2021-01-23 21:13 Andreas Sturmlechner
2021-01-06 14:27 Fabian Groffen
2020-12-27 17:47 Fabian Groffen
2020-06-07 21:02 Mart Raudsepp
2020-05-25 21:33 Sergei Trofimovich
2020-05-21 8:06 Agostino Sarubbo
2020-05-21 8:03 Agostino Sarubbo
2020-05-21 8:02 Agostino Sarubbo
2020-05-21 8:00 Agostino Sarubbo
2020-05-21 7:58 Agostino Sarubbo
2020-05-21 7:57 Agostino Sarubbo
2020-05-21 7:53 Agostino Sarubbo
2020-02-26 12:56 Lars Wendler
2019-12-11 21:26 Mike Gilbert
2019-07-13 12:47 Lars Wendler
2019-07-11 7:56 Lars Wendler
2019-07-11 7:56 Lars Wendler
2019-06-13 19:17 Markus Meier
2019-05-08 19:21 Mikle Kolyada
2019-05-07 8:46 Tobias Klausmann
2019-04-28 20:25 Mikle Kolyada
2019-04-27 15:48 Sergei Trofimovich
2019-04-27 8:47 Sergei Trofimovich
2019-04-22 14:40 Sergei Trofimovich
2019-04-21 22:21 Aaron Bauman
2019-04-20 17:46 Mikle Kolyada
2018-12-27 18:48 Fabian Groffen
2018-11-20 11:37 Lars Wendler
2018-11-12 9:19 Lars Wendler
2018-06-22 10:15 Mikle Kolyada
2018-04-26 10:52 Lars Wendler
2018-04-09 15:01 Lars Wendler
2018-04-09 15:01 Lars Wendler
2017-12-07 23:39 Thomas Deutschmann
2017-08-06 22:47 Sebastian Pipping
2017-05-27 2:30 Mike Gilbert
2017-01-15 22:10 Tobias Klausmann
2017-01-15 1:17 Mike Gilbert
2017-01-14 23:17 Jeroen Roovers
2017-01-13 16:55 Markus Meier
2017-01-10 12:35 Aaron Bauman
2017-01-03 10:38 Agostino Sarubbo
2016-12-30 19:51 Lars Wendler
2016-12-30 19:51 Lars Wendler
2016-11-16 21:09 Markus Meier
2016-11-15 14:53 Tobias Klausmann
2016-11-03 12:07 Pacho Ramos
2016-08-16 22:06 Mike Gilbert
2015-09-01 19:43 Tobias Klausmann
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=1547945731.74bf7feabb362d0f65dc35bfbe80625344253b85.whissi@gentoo \
--to=whissi@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