public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Markus Meier" <maekke@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lensfun/
Date: Sat, 21 Nov 2015 14:34:28 +0000 (UTC)	[thread overview]
Message-ID: <1448116462.609f3bc64037ab3c1e57e8ea068dae22ecf1bd2f.maekke@gentoo> (raw)

commit:     609f3bc64037ab3c1e57e8ea068dae22ecf1bd2f
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 21 14:34:00 2015 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sat Nov 21 14:34:22 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609f3bc6

media-libs/lensfun: version bump, bug #565906

Reported by DrSlony
Bug: 565906

Package-Manager: portage-2.2.25

 media-libs/lensfun/Manifest             |  1 +
 media-libs/lensfun/lensfun-0.3.2.ebuild | 47 +++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/media-libs/lensfun/Manifest b/media-libs/lensfun/Manifest
index 01a09e2..556fd47 100644
--- a/media-libs/lensfun/Manifest
+++ b/media-libs/lensfun/Manifest
@@ -1,2 +1,3 @@
 DIST lensfun-0.3.0.tar.bz2 636694 SHA256 c2c3c03873cb549d49d42f118fcb0ffa95d1e45b9ff395e19facb63bf699bec1 SHA512 2b0a57b3ae48401908d51372814424c1076d4219400935990af917f131e34261c44122773114c045a39db9062d6a0146cd44e20e3942d2bf3c281a5cc1494cc7 WHIRLPOOL 898b19dcfc70e8721bba45a8782f9e33a17180ab4ce21eef06b874f1bcf76bc0cae8231fdcff797ceb0bdd086266a42a47ebe6d63d20d0595aee11bbe713484a
 DIST lensfun-0.3.1.tar.gz 761892 SHA256 216c23754212e051c8b834437e46af3812533bd770c09714e8c06c9d91cdb535 SHA512 cd0f142bb7d6aa154f587d89502da35473a7a02660246bd025ccd5d1982f55425359405898e11ce9094351ad44a2d6786b9ff07d227f75699e99e4de8f40938c WHIRLPOOL f71fc6452253dd4bb5f40cab8079bdb7a0d36a0ef1ad969261c997ce2b944f4ffd8116b3f4f522567c630099bb84b5cb8b4a57f5ea7141e2b8a0cdc2ceab5c20
+DIST lensfun-0.3.2.tar.gz 784825 SHA256 ae8bcad46614ca47f5bda65b00af4a257a9564a61725df9c74cb260da544d331 SHA512 9c6f546fa70e6dc692e66ef378447345be6d3383812934780d326d772d775c1918cbf3447cd91c067655044cf659025763bf47ba2d938a82a3c2de4d60127446 WHIRLPOOL d9e79ed01d75e6653bb82017a8ee683a56eabae71bc229f55e2572fc96dcf0d9e081ce84e47171b423b149a41a3bf0f4157709243d0e27b2fd68b2efb6eff17c

diff --git a/media-libs/lensfun/lensfun-0.3.2.ebuild b/media-libs/lensfun/lensfun-0.3.2.ebuild
new file mode 100644
index 0000000..92943a8
--- /dev/null
+++ b/media-libs/lensfun/lensfun-0.3.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python3_{3,4,5} )
+
+inherit multilib python-single-r1 cmake-utils
+
+DESCRIPTION="lensfun: A library for rectifying and simulating photographic lens distortions"
+HOMEPAGE="http://lensfun.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3 CC-BY-SA-3.0" # See README for reasoning.
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+IUSE="doc cpu_flags_x86_sse cpu_flags_x86_sse2 test"
+
+RDEPEND=">=dev-libs/glib-2.28
+	media-libs/libpng:0=
+	sys-libs/zlib:="
+DEPEND="${RDEPEND}
+	doc? (
+		app-doc/doxygen
+		dev-python/docutils
+	)"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DOCS=( README.md docs/mounts.txt ChangeLog )
+
+src_configure() {
+	local mycmakeargs=(
+		-DDOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html
+		-DLIBDIR="${EPREFIX}"/usr/$(get_libdir)
+		-DSETUP_PY_INSTALL_PREFIX="${ED}"/$(python_get_sitedir)
+		-DBUILD_AUXFUN=ON
+		-DBUILD_DOC=$(usex doc ON OFF)
+		-DBUILD_FOR_SSE=$(usex cpu_flags_x86_sse ON OFF)
+		-DBUILD_FOR_SSE2=$(usex cpu_flags_x86_sse2 ON OFF)
+		-DBUILD_TESTS=$(usex test ON OFF)
+		-DBUILD_STATIC=OFF
+	)
+
+	cmake-utils_src_configure
+}


             reply	other threads:[~2015-11-21 14:34 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-21 14:34 Markus Meier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-11-23  8:50 [gentoo-commits] repo/gentoo:master commit in: media-libs/lensfun/ Agostino Sarubbo
2015-11-23  9:25 Agostino Sarubbo
2015-11-29 19:08 Markus Meier
2015-12-03 13:28 Agostino Sarubbo
2015-12-05 10:12 Jeroen Roovers
2015-12-05 10:12 Jeroen Roovers
2015-12-07 11:40 Agostino Sarubbo
2016-01-09  6:43 Agostino Sarubbo
2016-01-11  9:07 Agostino Sarubbo
2017-05-28  9:26 Markus Meier
2017-06-18  9:51 Alexis Ballier
2017-12-25 23:14 Andreas Sturmlechner
2018-02-24  9:41 Sergei Trofimovich
2018-02-27 16:48 Markus Meier
2018-03-02 14:15 Jason Zaman
2018-03-05 10:36 Tobias Klausmann
2018-03-31 10:58 Sergei Trofimovich
2018-04-01 11:08 Sergei Trofimovich
2018-04-02  8:33 Markus Meier
2018-04-07 12:05 Sergei Trofimovich
2018-04-15 17:15 Andreas Sturmlechner
2018-05-20 19:10 Andreas Sturmlechner
2019-05-21  6:31 Aaron Bauman
2019-10-06 13:27 Alexey Shvetsov
2020-04-25 12:37 Andreas Sturmlechner
2020-06-06 23:18 Andreas K. Hüttel
2020-06-18 17:54 Markus Meier
2021-02-27 21:12 Andreas K. Hüttel
2022-02-28 23:17 Andreas K. Hüttel
2022-03-05 22:39 Andreas K. Hüttel
2022-12-01  3:21 WANG Xuerui
2022-12-20 23:28 Sam James
2022-12-20 23:28 Sam James
2022-12-20 23:29 Sam James
2022-12-20 23:29 Sam James
2022-12-20 23:57 Sam James
2022-12-20 23:57 Sam James
2022-12-21  0:19 Sam James
2022-12-22 20:05 Andreas Sturmlechner
2023-02-07 18:01 Andreas Sturmlechner
2023-04-29 18:04 Arthur Zamarin
2023-04-29 18:16 Arthur Zamarin
2023-04-29 20:20 Sam James
2023-04-29 20:25 Sam James
2023-04-29 20:25 Sam James
2023-04-29 20:25 Sam James
2023-04-29 20:31 Sam James
2024-04-21  6:04 Markus Meier
2024-05-28 13:19 Sam James
2024-05-28 13:19 Sam James
2024-06-10 23:46 Sam James

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=1448116462.609f3bc64037ab3c1e57e8ea068dae22ecf1bd2f.maekke@gentoo \
    --to=maekke@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