public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpc/
Date: Fri, 21 Sep 2018 10:35:19 +0000 (UTC)	[thread overview]
Message-ID: <1537526116.32f9817d74946ef00bb4153f9d8646046c221cda.zlogene@gentoo> (raw)

commit:     32f9817d74946ef00bb4153f9d8646046c221cda
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 21 10:34:57 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Sep 21 10:35:16 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32f9817d

media-sound/ncmpc: Drop old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-sound/ncmpc/Manifest          |  2 --
 media-sound/ncmpc/metadata.xml      |  1 -
 media-sound/ncmpc/ncmpc-0.27.ebuild | 51 --------------------------------
 media-sound/ncmpc/ncmpc-0.30.ebuild | 58 -------------------------------------
 4 files changed, 112 deletions(-)

diff --git a/media-sound/ncmpc/Manifest b/media-sound/ncmpc/Manifest
index 33dfacfc4fd..4ec89f31295 100644
--- a/media-sound/ncmpc/Manifest
+++ b/media-sound/ncmpc/Manifest
@@ -1,3 +1 @@
-DIST ncmpc-0.27.tar.xz 302636 BLAKE2B 95cedfdcd93d011aa21b773c3a91a20cf9c816dfa421e95802b6cc73e39d39e80bed7734764caf8e29102df6b734dcc0c64be6ef3060de8ac590dc1229b63fd4 SHA512 255b5529a5eae14d89d9419dfb06d91c50b68a9e05f2e124fc07035e2a4619c7b6801c08d52c639d934b50f939cf1dc58f3c5265805ce8eeeba211803108f663
-DIST ncmpc-0.30.tar.xz 245212 BLAKE2B 9e64188ec5d209a682f10587c033d1e958501ed84660bc8cc0a00ff3650a1509464e48431240eebe4a061dc154acbc7d6f552cb48b208107ecdc5c0e6807d9ee SHA512 bc92c51c78f7919eb6b5cebaac8bda1231701fd9011fcadd6da8bbc5cc16e5dbe30d33d6e2f7d4cc07399299bcd3de572c9516f90d0376212771fd2c3af8afc7
 DIST ncmpc-0.31.tar.xz 249816 BLAKE2B c9c42fc1ba5cb79cab9a9cc86831ba8ca82bb57981885be81b218d57f529ac7ca9adfbb0de1e0bc7dca8215ecf5fdae1481b73ff6d0dfb69c2020390d0c6a1a2 SHA512 0d3fed08f54afd9aef6342928a3f3b63a973d86ec6510f54c59271316aad856cd1a493e193f676971d90c40ef26486789e8580f2df528bd031251265c48a5eac

diff --git a/media-sound/ncmpc/metadata.xml b/media-sound/ncmpc/metadata.xml
index 204c7247600..240ddfa18ac 100644
--- a/media-sound/ncmpc/metadata.xml
+++ b/media-sound/ncmpc/metadata.xml
@@ -9,7 +9,6 @@
 		<flag name="artist-screen">Enable artist screen</flag>
 		<flag name="async-connect">Enable asynchronous connect</flag>
 		<flag name="chat-screen">Enable the chat screen</flag>
-		<flag name="colors">Enable color support</flag>
 		<flag name="help-screen">Enable the help screen</flag>
 		<flag name="key-screen">Enable key editor screen</flag>
 		<flag name="lyrics-screen">Enable lyrics screen</flag>

diff --git a/media-sound/ncmpc/ncmpc-0.27.ebuild b/media-sound/ncmpc/ncmpc-0.27.ebuild
deleted file mode 100644
index 3f602e28d29..00000000000
--- a/media-sound/ncmpc/ncmpc-0.27.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A ncurses client for the Music Player Daemon (MPD)"
-HOMEPAGE="https://www.musicpd.org/clients/ncmpc/ https://github.com/MusicPlayerDaemon/ncmpc"
-SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 ~sparc x86"
-IUSE="artist-screen chat-screen colors debug +help-screen key-screen lirc lyrics-screen mouse nls search-screen song-screen"
-
-RDEPEND=">=dev-libs/glib-2.30:2
-	>=media-libs/libmpdclient-2.9
-	sys-libs/ncurses:0=[unicode]
-	lirc? ( app-misc/lirc )"
-DEPEND="${RDEPEND}
-	app-arch/xz-utils
-	virtual/pkgconfig"
-
-DOCS=( AUTHORS NEWS README doc/config.sample doc/keys.sample )
-
-src_configure() {
-	# upstream lirc doesn't have pkg-config file wrt #250015
-	if use lirc; then
-		export LIBLIRCCLIENT_CFLAGS="-I/usr/include/lirc"
-		export LIBLIRCCLIENT_LIBS="-llirc_client"
-	fi
-
-	# use_with lyrics-screen is for multilib
-	econf \
-		--docdir=/usr/share/doc/${PF} \
-		--with-ncursesw \
-		$(use_enable artist-screen) \
-		$(use_enable chat-screen) \
-		$(use_enable colors) \
-		$(use_enable debug) \
-		$(use_enable help-screen) \
-		$(use_enable key-screen) \
-		$(use_enable lirc) \
-		$(use_enable lyrics-screen) \
-		$(use_enable mouse) \
-		$(use_enable nls locale) \
-		$(use_enable nls multibyte) \
-		$(use_enable nls) \
-		$(use_enable search-screen) \
-		$(use_enable song-screen) \
-		$(use_with lyrics-screen lyrics-plugin-dir /usr/$(get_libdir)/ncmpc/lyrics)
-}

diff --git a/media-sound/ncmpc/ncmpc-0.30.ebuild b/media-sound/ncmpc/ncmpc-0.30.ebuild
deleted file mode 100644
index 737d9ce04b0..00000000000
--- a/media-sound/ncmpc/ncmpc-0.30.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit meson
-
-DESCRIPTION="A ncurses client for the Music Player Daemon (MPD)"
-HOMEPAGE="https://www.musicpd.org/clients/ncmpc/ https://github.com/MusicPlayerDaemon/ncmpc"
-SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="+artist-screen async-connect chat-screen doc +help-screen key-screen lirc lyrics-screen outputs-screen search-screen +song-screen +mouse nls tcp"
-
-RDEPEND="dev-libs/glib:2
-	 media-libs/libmpdclient
-	 sys-libs/ncurses:0=[unicode]
-	 lirc? ( app-misc/lirc )"
-
-DEPEND="${RDEPEND}
-	doc? ( dev-python/sphinx
-	       app-doc/doxygen )
-	virtual/pkgconfig"
-
-DOCS=( doc/. AUTHORS README.rst )
-
-src_prepare() {
-	default
-	sed -i -e '/'-Wl,--gc-sections'./d' meson.build || die "sed failed"
-}
-
-src_configure() {
-	local emesonargs=(
-		-Dcurses=ncursesw
-		-Dcolors=ncursesw
-		-Dmini=false
-		-Dlyrics_plugin_dir="${EPREFIX}/usr/$(get_libdir)/ncmpc/lyrics"
-		-Dartist_screen=$(usex artist-screen true false)
-		-Dasync_connect=$(usex async-connect true false)
-		-Dchat_screen=$(usex chat-screen true false)
-		-Ddocumentation=$(usex doc true false)
-		-Dhelp_screen=$(usex help-screen true false)
-		-Dkey_screen=$(usex key-screen true false)
-		-Dlyrics_screen=$(usex lyrics-screen true false)
-		-Doutputs_screen=$(usex outputs-screen true false)
-		-Dsearch_screen=$(usex search-screen true false)
-		-Dsong_screen=$(usex song-screen true false)
-		-Dlocale=$(usex nls true false)
-		-Dmultibyte=$(usex nls true false)
-		-Dnls=$(usex nls true false)
-		-Dlirc=$(usex lirc true false)
-		-Dmouse=$(usex mouse true false)
-		-Dtcp=$(usex tcp true false)
-		)
-	meson_src_configure
-}


             reply	other threads:[~2018-09-21 10:35 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-21 10:35 Mikle Kolyada [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-22  4:05 [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpc/ Stefan Strogin
2025-09-22  0:35 Stefan Strogin
2025-09-22  0:35 Stefan Strogin
2024-10-26  7:28 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-09-27 20:21 James Le Cuirot
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-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=1537526116.32f9817d74946ef00bb4153f9d8646046c221cda.zlogene@gentoo \
    --to=zlogene@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