From: "James Le Cuirot" <chewi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpc/
Date: Sun, 27 Sep 2020 20:21:35 +0000 (UTC) [thread overview]
Message-ID: <1601238078.48e127fdad838f0d15a89dd944e6ed0de31c6acd.chewi@gentoo> (raw)
commit: 48e127fdad838f0d15a89dd944e6ed0de31c6acd
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 27 20:21:18 2020 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 20:21:18 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48e127fd
media-sound/ncmpc: Version bump to 0.39
No ebuild changes.
Closes: https://bugs.gentoo.org/701388
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-sound/ncmpc/Manifest | 1 +
media-sound/ncmpc/ncmpc-0.39.ebuild | 69 +++++++++++++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
diff --git a/media-sound/ncmpc/Manifest b/media-sound/ncmpc/Manifest
index 5f4d9e99601..0bf169a9d63 100644
--- a/media-sound/ncmpc/Manifest
+++ b/media-sound/ncmpc/Manifest
@@ -1 +1,2 @@
DIST ncmpc-0.34.tar.xz 227892 BLAKE2B 19d9d9abe3d85cb2567a222c8ce108889d4517272e2bb82f4064ef76af68d610ff4c7516102b976f66380e0e3d3ee7ed00023116cb6b2d1628e3d38796705a09 SHA512 e206cc2d61799a97edf1182de4cee1c0fa447bd1fac136dc48670cb624a7efc903c693b0c541fbc00fcb94e055c83be1ca6370386c99131a1b571f47b67c35f4
+DIST ncmpc-0.39.tar.xz 242968 BLAKE2B 1b270ed52aa884cecd3e1ce60bb2ed628ef79480697f388b48a09e0f22068dbbb7623b01171e5cfae9556446e404530f93c84ca3c3d5cc481c8431f37786c2f4 SHA512 bfadc58bf8b66bff08608f561f689a50fd412b87975998ce23751fd312fa009eeba4b48b4afe96391b2ecb184c00c366262e9b96e24d2ce2ab2af6a4002721d9
diff --git a/media-sound/ncmpc/ncmpc-0.39.ebuild b/media-sound/ncmpc/ncmpc-0.39.ebuild
new file mode 100644
index 00000000000..cad4074e5d6
--- /dev/null
+++ b/media-sound/ncmpc/ncmpc-0.39.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="Ncurses client for the Music Player Daemon (MPD)"
+HOMEPAGE="https://www.musicpd.org/clients/ncmpc/ https://github.com/MusicPlayerDaemon/ncmpc"
+SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="async-connect chat-screen doc +help-screen key-screen +library-screen lirc lyrics-screen +mouse nls outputs-screen pcre search-screen +song-screen"
+
+BDEPEND="
+ virtual/pkgconfig
+ doc? ( dev-python/sphinx )
+"
+RDEPEND="
+ >=media-libs/libmpdclient-2.9
+ sys-libs/ncurses:0=[unicode]
+ lirc? ( app-misc/lirc )
+ pcre? ( dev-libs/libpcre )
+"
+DEPEND="${RDEPEND}
+ >=dev-libs/boost-1.62
+"
+
+src_prepare() {
+ default
+
+ # use correct docdir and don't install license file
+ sed -e "/^docdir =/s/meson.project_name()/'${PF}'/" \
+ -e "s/'COPYING', //" \
+ -i meson.build || die
+
+ # use correct (html) docdir
+ sed -e "/install_dir:.*doc/s/meson.project_name()/'${PF}'/" \
+ -i doc/meson.build || die
+}
+
+src_configure() {
+ local emesonargs=(
+ -Dcurses=ncursesw
+ -Dcolors=true
+ -Dmini=false
+ -Dlyrics_plugin_dir="${EPREFIX}/usr/$(get_libdir)/ncmpc/lyrics"
+ -Dasync_connect=$(usex async-connect true false)
+ -Dchat_screen=$(usex chat-screen true false)
+ -Ddocumentation=$(usex doc enabled disabled)
+ -Dhelp_screen=$(usex help-screen true false)
+ -Dkey_screen=$(usex key-screen true false)
+ -Dlibrary_screen=$(usex library-screen true false)
+ -Dlirc=$(usex lirc enabled disabled)
+ -Dlocale=$(usex nls enabled disabled)
+ -Dlyrics_screen=$(usex lyrics-screen true false)
+ -Dmouse=$(usex mouse enabled disabled)
+ -Dmultibyte=$(usex nls true false)
+ -Dnls=$(usex nls enabled disabled)
+ -Doutputs_screen=$(usex outputs-screen true false)
+ -Dregex=$(usex pcre enabled disabled)
+ -Dsearch_screen=$(usex search-screen true false)
+ -Dsong_screen=$(usex song-screen true false)
+ )
+
+ meson_src_configure
+}
next reply other threads:[~2020-09-27 20:21 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-27 20:21 James Le Cuirot [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-26 7:28 [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpc/ Miroslav Šulc
2024-10-25 11:26 Arthur Zamarin
2024-10-25 11:26 Arthur Zamarin
2024-10-25 10:09 Arthur Zamarin
2024-10-25 10:09 Arthur Zamarin
2024-10-17 9:51 Miroslav Šulc
2024-10-15 8:07 Sam James
2024-10-15 8:07 Sam James
2024-10-15 8:07 Sam James
2024-10-15 8:07 Sam James
2024-09-25 6:44 Miroslav Šulc
2024-09-24 7:51 Miroslav Šulc
2024-09-14 9:34 Miroslav Šulc
2023-09-24 20:18 Miroslav Šulc
2023-09-04 12:31 Sam James
2023-09-04 12:31 Sam James
2023-09-04 12:31 Sam James
2023-08-05 7:29 Miroslav Šulc
2023-05-10 5:13 Miroslav Šulc
2023-05-09 17:46 Sam James
2023-05-08 12:24 Arthur Zamarin
2023-05-08 12:24 Arthur Zamarin
2023-05-08 7:40 Sam James
2023-05-08 7:40 Sam James
2023-04-07 8:26 Miroslav Šulc
2022-08-04 4:58 Miroslav Šulc
2022-08-04 0:13 Sam James
2022-08-03 7:51 Agostino Sarubbo
2022-08-03 7:50 Agostino Sarubbo
2022-08-03 7:49 Agostino Sarubbo
2022-07-02 4:06 Miroslav Šulc
2022-03-17 9:08 Miroslav Šulc
2022-03-15 9:39 Jakov Smolić
2022-03-15 9:38 Jakov Smolić
2022-03-15 7:40 Agostino Sarubbo
2022-02-10 19:58 Miroslav Šulc
2021-04-23 4:53 Miroslav Šulc
2021-04-22 23:01 Sam James
2021-04-22 20:15 Sam James
2021-04-22 12:18 Sam James
2021-04-22 2:59 Sam James
2020-03-20 21:53 Matt Turner
2019-06-14 15:01 Agostino Sarubbo
2019-06-14 9:18 Agostino Sarubbo
2019-06-13 15:15 Agostino Sarubbo
2019-06-13 14:58 Agostino Sarubbo
2019-05-13 0:18 Andreas Sturmlechner
2019-04-28 22:41 Pacho Ramos
2019-04-28 22:06 Thomas Deutschmann
2019-04-07 23:19 Aaron Bauman
2019-04-07 21:34 Sergei Trofimovich
2019-02-09 18:17 Andreas Sturmlechner
2019-02-09 18:17 Andreas Sturmlechner
2019-02-09 18:17 Andreas Sturmlechner
2019-02-09 18:17 Andreas Sturmlechner
2019-02-09 18:17 Andreas Sturmlechner
2019-02-09 18:17 Andreas Sturmlechner
2019-01-04 8:06 Tim Harder
2018-09-21 10:35 Mikle Kolyada
2018-09-21 10:35 Mikle Kolyada
2018-09-20 5:12 Jeroen Roovers
2018-09-19 11:01 Mikle Kolyada
2018-09-09 6:16 Mikle Kolyada
2018-09-08 20:10 Mikle Kolyada
2017-04-26 5:33 Tim Harder
2016-08-21 1:11 Tim Harder
2016-08-06 11:33 Pacho Ramos
2015-10-20 4:30 Jeroen Roovers
2015-09-20 11:33 Christoph Mende
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=1601238078.48e127fdad838f0d15a89dd944e6ed0de31c6acd.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