From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 548B4138334 for ; Sat, 9 Feb 2019 18:17:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ADADE0A52; Sat, 9 Feb 2019 18:17:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3556DE0A52 for ; Sat, 9 Feb 2019 18:17:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F497335D95 for ; Sat, 9 Feb 2019 18:17:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA52D53F for ; Sat, 9 Feb 2019 18:17:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1549736221.46e6ab0903613f1023c79d0b793a203531b0ccfb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/ncmpc/ncmpc-0.33.ebuild X-VCS-Directories: media-sound/ncmpc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 46e6ab0903613f1023c79d0b793a203531b0ccfb X-VCS-Branch: master Date: Sat, 9 Feb 2019 18:17:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 64e77dc5-9349-408b-8943-c86145f2b59e X-Archives-Hash: eca6b89f204d0228e0366df5a8d77dde commit: 46e6ab0903613f1023c79d0b793a203531b0ccfb Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 9 18:17:01 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 9 18:17:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46e6ab09 media-sound/ncmpc: Drop 0.33 (r0) Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/ncmpc/ncmpc-0.33.ebuild | 66 ------------------------------------- 1 file changed, 66 deletions(-) diff --git a/media-sound/ncmpc/ncmpc-0.33.ebuild b/media-sound/ncmpc/ncmpc-0.33.ebuild deleted file mode 100644 index b07b8a212ec..00000000000 --- a/media-sound/ncmpc/ncmpc-0.33.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="async-connect chat-screen doc +help-screen key-screen +library-screen lirc lyrics-screen outputs-screen search-screen +song-screen +mouse nls pcre" - -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 -} - -src_configure() { - local emesonargs=( - -Dcurses=ncursesw - -Dcolors=true - -Dmini=false - -Dlyrics_plugin_dir="${EPREFIX}/usr/$(get_libdir)/ncmpc/lyrics" - -Dlibrary_screen=$(usex library-screen true false) - -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) - -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 enabled disabled) - -Dmultibyte=$(usex nls true false) - -Dnls=$(usex nls enabled disabled) - -Dlirc=$(usex lirc enabled disabled) - -Dmouse=$(usex mouse enabled disabled) - -Dregex=$(usex pcre enabled disabled) - ) - - meson_src_configure -}