public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "James Le Cuirot" <chewi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenmpt/
Date: Thu, 09 Jan 2025 23:36:16 +0000 (UTC)	[thread overview]
Message-ID: <1736465732.786c45346e5fe95b47f1f6e95e86ef3c967f5d5e.chewi@gentoo> (raw)

commit:     786c45346e5fe95b47f1f6e95e86ef3c967f5d5e
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  9 23:33:37 2025 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Jan  9 23:35:32 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=786c4534

media-libs/libopenmpt: Version bump to 0.7.13

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 media-libs/libopenmpt/Manifest                 |  1 +
 media-libs/libopenmpt/libopenmpt-0.7.13.ebuild | 61 ++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/media-libs/libopenmpt/Manifest b/media-libs/libopenmpt/Manifest
index df752810671b..89fe195dc97e 100644
--- a/media-libs/libopenmpt/Manifest
+++ b/media-libs/libopenmpt/Manifest
@@ -1,3 +1,4 @@
 DIST libopenmpt-0.6.6+release.autotools.tar.gz 1554516 BLAKE2B 21e2fc4252431235608a52d3a321e26eae5d45f2328ff3e3604d84c537d72e07d72346c504901b000af04dfc52b1dd91c79f576be4331ea8685e534a174b61cd SHA512 b634c556f13dc51d1008f4216936a9b7cab25a6fb0d5218da0b692ec848de21905ed1981223ac9ecdebea9ce6c5376e91ff92e1655dd0be491fce0114e3230bf
 DIST libopenmpt-0.7.10+release.autotools.tar.gz 1671289 BLAKE2B 62bd4a1bcd9685fdb92c270687b71609a23986941e301ad17cc37ca5f6b5b76fa1a8f425b2e68603bb29bfa34c3c1caea98faea1d95004f87943b2bed6b7c9a0 SHA512 e5f02b045bc1449791ec43a32216c4c4231edff88b3bda07283c9768118bce3a1f50c2535dbe38a21eb12016294e3b5823ef2f32f2f1e21d40fafe188bad783d
+DIST libopenmpt-0.7.13+release.autotools.tar.gz 1681351 BLAKE2B d75df89e85531e85974bd532773e8ed16440211448790779191a61a629dde33ef7280bcc1c82e6ac6aeb313f7f568bc7a2abe707772801f52c271977b88eff8e SHA512 04e63c635dd6c63c2ce79db4eff971f10e4d14a12c7f143fc317a4b5f5188cd8cbf84fc5121057c2beff3a3e6b9b48767c02b9eb5c569accab3e6ff7322a9690
 DIST libopenmpt-0.7.9+release.autotools.tar.gz 1669833 BLAKE2B 9ba6af6df794583748336cc977b20d7bdb3f8d75e32d32a420c5e137511352ea5ec41b31beb7b0df78376dcb0e3a8160a1c527b6f4575b61b945a9f93252fe84 SHA512 e0928d3dc439c3ed7296b97dc8b8e255db22bfd91fd3bc73d0bdca8262a5cb26dff0ba89e508a4443ebe34c34fc880b202a758a11fde31b75e1ebd5725819414

diff --git a/media-libs/libopenmpt/libopenmpt-0.7.13.ebuild b/media-libs/libopenmpt/libopenmpt-0.7.13.ebuild
new file mode 100644
index 000000000000..875b7213ec44
--- /dev/null
+++ b/media-libs/libopenmpt/libopenmpt-0.7.13.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit multilib-minimal
+
+MY_P="libopenmpt-${PV}+release.autotools"
+DESCRIPTION="Library to decode tracked music files (modules)"
+HOMEPAGE="https://lib.openmpt.org/libopenmpt/"
+SRC_URI="https://lib.openmpt.org/files/libopenmpt/src/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="examples mp3 ogg static-libs test vorbis zlib"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	mp3? ( media-sound/mpg123[${MULTILIB_USEDEP}] )
+	ogg? ( media-libs/libogg[${MULTILIB_USEDEP}] )
+	vorbis? ( media-libs/libvorbis[${MULTILIB_USEDEP}] )
+	zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
+"
+
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+ECONF_SOURCE="${S}"
+
+multilib_src_configure() {
+	# A lot of these optional dependencies relate to openmpt123, which
+	# we package separately, so we disable them here.
+	econf \
+		$(use_enable static-libs static) \
+		--disable-openmpt123 \
+		--disable-examples \
+		$(use_enable test tests) \
+		--disable-doxygen-doc \
+		$(use_with zlib) \
+		$(use_with mp3 mpg123) \
+		$(use_with ogg) \
+		$(use_with vorbis) \
+		$(use_with vorbis vorbisfile) \
+		--without-pulseaudio \
+		--without-portaudio \
+		--without-portaudiocpp \
+		--without-sdl2 \
+		--without-sndfile \
+		--without-flac
+}
+
+multilib_src_install_all() {
+	rm -f \
+		"${ED}"/usr/*/*.la \
+		"${ED}"/usr/share/doc/${P}/LICENSE || die
+
+	if ! use examples; then
+		rm -r "${ED}"/usr/share/doc/${P}/examples || die
+	fi
+}


             reply	other threads:[~2025-01-09 23:36 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-09 23:36 James Le Cuirot [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-27 19:01 [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenmpt/ Sam James
2025-02-05 18:50 James Le Cuirot
2025-02-05 11:27 Sam James
2025-02-01  6:07 Arthur Zamarin
2025-02-01  6:07 Arthur Zamarin
2025-02-01  6:07 Arthur Zamarin
2025-02-01  6:07 Arthur Zamarin
2025-01-09 23:36 James Le Cuirot
2024-10-20 22:21 James Le Cuirot
2024-10-20 22:21 James Le Cuirot
2024-08-15 22:22 James Le Cuirot
2024-08-15 22:22 James Le Cuirot
2024-05-22 21:15 James Le Cuirot
2024-05-22 21:15 James Le Cuirot
2024-03-24 21:23 James Le Cuirot
2024-03-24 16:20 James Le Cuirot
2023-10-12 21:11 James Le Cuirot
2023-10-12 21:11 James Le Cuirot
2023-07-12 21:54 James Le Cuirot
2023-07-12 21:07 James Le Cuirot
2023-07-12 21:07 James Le Cuirot
2023-06-02 21:14 James Le Cuirot
2023-04-16 15:58 James Le Cuirot
2023-03-06 23:41 James Le Cuirot
2023-02-04 17:56 James Le Cuirot
2023-01-13 23:33 James Le Cuirot
2022-12-10 10:02 James Le Cuirot
2022-09-29 22:34 James Le Cuirot
2022-09-27 10:16 Agostino Sarubbo
2022-09-27 10:15 Agostino Sarubbo
2022-09-27  6:02 Jakov Smolić
2022-09-27  6:02 Jakov Smolić
2022-09-27  6:02 Jakov Smolić
2022-09-26 21:01 James Le Cuirot
2022-09-26 21:01 James Le Cuirot
2022-08-25 20:39 James Le Cuirot
2022-08-25 20:39 James Le Cuirot
2022-06-18  8:50 James Le Cuirot
2022-06-18  8:50 James Le Cuirot
2022-06-02 12:04 Jakov Smolić
2022-04-27 21:50 James Le Cuirot
2022-04-27 21:50 James Le Cuirot
2022-03-15 23:19 James Le Cuirot
2022-02-06 11:15 James Le Cuirot
2021-12-27 13:14 James Le Cuirot
2021-12-22 12:59 Agostino Sarubbo
2021-12-22 11:25 Jakov Smolić
2021-12-17 23:54 James Le Cuirot
2021-11-22  5:54 Yixun Lan
2021-11-18 22:21 James Le Cuirot
2021-10-16  7:59 James Le Cuirot
2021-09-04  7:14 James Le Cuirot
2021-07-06 21:18 James Le Cuirot
2021-05-21 20:04 James Le Cuirot
2021-04-16 22:06 James Le Cuirot
2021-04-03 20:08 James Le Cuirot
2021-04-01  0:43 Sam James
2021-02-03 17:14 James Le Cuirot
2020-12-04 22:39 James Le Cuirot
2020-10-26 21:49 James Le Cuirot
2020-09-01  9:32 James Le Cuirot
2020-08-18 22:21 James Le Cuirot
2020-06-03 20:07 James Le Cuirot
2020-04-16 20:44 James Le Cuirot
2019-12-27 15:32 James Le Cuirot
2019-12-08 15:38 James Le Cuirot

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=1736465732.786c45346e5fe95b47f1f6e95e86ef3c967f5d5e.chewi@gentoo \
    --to=chewi@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