public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdvbpsi/
Date: Tue, 20 Feb 2018 19:27:55 +0000 (UTC)	[thread overview]
Message-ID: <1519154867.ef302aa940c57a08fa70bbb658ddba6a5edb8564.candrews@gentoo> (raw)

commit:     ef302aa940c57a08fa70bbb658ddba6a5edb8564
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 20 19:26:06 2018 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Tue Feb 20 19:27:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef302aa9

media-libs/libdvbpsi: 1.3.2 version bump

Closes: https://bugs.gentoo.org/648328
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-libs/libdvbpsi/Manifest               |  1 +
 media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild | 45 +++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/media-libs/libdvbpsi/Manifest b/media-libs/libdvbpsi/Manifest
index e169df3fef6..31a919336a5 100644
--- a/media-libs/libdvbpsi/Manifest
+++ b/media-libs/libdvbpsi/Manifest
@@ -5,3 +5,4 @@ DIST libdvbpsi-1.1.2.tar.bz2 450573 BLAKE2B 118a8bad293c9186086cfeccfef444ff14c7
 DIST libdvbpsi-1.2.0.tar.bz2 461372 BLAKE2B 1094c988d7db32736dc6b77d920432b642db11824c3e60622277057dc5ddbb70c1574f8e91a42a5fdc88fd59d36218e67482e3820afaa46994827abf778e07fa SHA512 951db13f5645d4d6a160719fc6ac97fd31a32d5d17cb8e26db94702e65b6fac3d4e7a99c3c417e09fe5ce33f3b0c0ef86206c77b36816dcd8a3bd5b0bb4a9684
 DIST libdvbpsi-1.3.0.tar.bz2 459083 BLAKE2B 50e8e1780ddaf9a07bd8121d1e179464a6105eaad3d0aa162f9b217863cfc63168a84f60be9de071cf5ee8389a671fcd1375629d452ed77727bb3eaed19a7b19 SHA512 59f097a1032e8cf461210128c7468da4204f077a61f68f2be3310e60004774157335cd7cba82271fcc89b7b6b17a12a06b6214357227ec9976281d9b50565c54
 DIST libdvbpsi-1.3.1.tar.bz2 479964 BLAKE2B a29522d39544d90b34915e2ca9fc9ca455a556097c63639d7604679275b57378822adfb4c022478884c897cdde2c0e5f84355fdecf35fd6bb305d1fc275eed8b SHA512 015d586d1ef1fd35fc4b6a5b79d1ce4570e07070840d7070938c38be64853fb987172ad225f000156166559709061de6f901237bfc0f7f26f219b5950b57c27a
+DIST libdvbpsi-1.3.2.tar.bz2 487807 BLAKE2B ea8d1e121e47d2257d8537beac792e3a420ac957dbf3ec6d89f0c4d063e249616bbc8f3e14ed37769b676ed18d5d4c3c6a33e2a706217854eb2ded91e7c503db SHA512 cb59c2e66a214cad7bb96aa1f80a178399fcd80da9fc05b22c72763f2cd818bfab3724d36eee4c6467fb8bc8bae18b1d8afec64c02e8e47cd7a6e887f0230309

diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
new file mode 100644
index 00000000000..2edff06bb8a
--- /dev/null
+++ b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
+HOMEPAGE="https://www.videolan.org/libdvbpsi"
+SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+# Sublot == libdvbpsi.so major
+SLOT="0/10"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="doc static-libs"
+
+RDEPEND=""
+DEPEND="
+	doc? (
+		app-doc/doxygen
+		>=media-gfx/graphviz-2.26
+	)"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+src_prepare() {
+	sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -e '/CFLAGS/s:-Werror::' -i configure || die
+	default
+}
+
+src_configure() {
+	econf \
+		$(use_enable static-libs static) \
+		--enable-release
+}
+
+src_compile() {
+	default
+	use doc && emake doc
+}
+
+src_install() {
+	use doc && local HTML_DOCS=( doc/doxygen/html/. )
+	default
+	find "${D}" -name '*.la' -delete || die
+}


             reply	other threads:[~2018-02-20 19:28 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-20 19:27 Craig Andrews [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-07-10  7:49 [gentoo-commits] repo/gentoo:master commit in: media-libs/libdvbpsi/ Sam James
2022-06-28  4:18 WANG Xuerui
2021-03-12 21:56 Thomas Raschbacher
2021-02-16 20:36 Sam James
2021-02-14  5:37 Sam James
2021-02-09 21:31 Sam James
2021-02-09 21:30 Sam James
2021-02-09  9:48 Sam James
2021-02-09  6:16 Sam James
2021-01-22  4:15 Sam James
2021-01-22  3:47 Sam James
2021-01-22  3:47 Sam James
2019-05-13 19:28 Markus Meier
2019-05-13  0:38 Thomas Deutschmann
2019-05-07  8:46 Tobias Klausmann
2019-04-23 20:59 Sergei Trofimovich
2019-04-19 18:19 Aaron Bauman
2018-05-26 21:46 Andreas Sturmlechner
2018-05-26 11:20 Mikle Kolyada
2018-04-30 14:27 Mikle Kolyada
2018-04-01 21:49 Sergei Trofimovich
2018-03-05 14:52 Tobias Klausmann
2018-02-27  9:25 Andreas Sturmlechner
2018-02-26  7:36 Sergei Trofimovich
2018-02-25 18:21 Thomas Deutschmann
2018-02-24  7:20 Jason Zaman
2017-12-16  5:40 Craig Andrews
2017-12-09 18:41 Craig Andrews
2017-01-11 10:35 Agostino Sarubbo
2016-07-06  9:23 Agostino Sarubbo
2016-06-25 20:14 Agostino Sarubbo
2016-06-10 15:32 Agostino Sarubbo
2016-05-31 16:34 Tobias Klausmann
2016-05-24 20:11 Markus Meier

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=1519154867.ef302aa940c57a08fa70bbb658ddba6a5edb8564.candrews@gentoo \
    --to=candrews@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