Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
Date: Mon, 08 May 2017 16:49:51
Message-Id: 1494262162.c5eb4f574fc04e925e9e53f1827cd24506312c19.mgorny@gentoo
1 commit: c5eb4f574fc04e925e9e53f1827cd24506312c19
2 Author: Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
3 AuthorDate: Mon May 8 11:55:58 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 8 16:49:22 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5eb4f57
7
8 media-sound/pms: drop old 0.42-r2
9
10 Closes: https://github.com/gentoo/gentoo/pull/4569
11
12 media-sound/pms/Manifest | 1 -
13 media-sound/pms/pms-0.42-r2.ebuild | 53 --------------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/media-sound/pms/Manifest b/media-sound/pms/Manifest
17 index 54c723732f4..0075b59e05a 100644
18 --- a/media-sound/pms/Manifest
19 +++ b/media-sound/pms/Manifest
20 @@ -1,2 +1 @@
21 -DIST pms-0.42.tar.gz 676147 SHA256 e0b57fb02edee153fcec43adcf88df2f15b36ceed446f01645cd770195c8eedc SHA512 2cfda707f17415b2e8207a0c9add83b652247c42680e478029a2c42dc0bc7987e1cb1dce844163446a783a046a43260e3d5d0e1a1a35a02b69b2c2c0d2fadfcf WHIRLPOOL 6bd5cfd38fe7b37be12c045c40cbcbebbb3af39f998a9e1210152c7f247366e5257bf2a919f83a76a181655ff7a0522e410c7d518db677db524a5a34b7feda8c
22 DIST pms-0.42_p20170508.tar.gz 140157 SHA256 a5453fe84421608cd2ebe0827e9c011259723a41e1eba1519eb3df83e4ade7f4 SHA512 686a5e265ebad418a153b9888cc213bbf8cca5aa2d398206848823105edac16e298431c288dc0a74adb23d327c75845cdec1680a6a2a2ae40bc7b41c55ca163c WHIRLPOOL 745e7a8bf61c06e35575ff62a22fa36b808db21b0f1500ecebd7ec830e968d708fb7ed0e813e98f52fa689f1cafcf6ade3da69e756cd7adffd5c64ad68c9baa0
23
24 diff --git a/media-sound/pms/pms-0.42-r2.ebuild b/media-sound/pms/pms-0.42-r2.ebuild
25 deleted file mode 100644
26 index 3b01d052260..00000000000
27 --- a/media-sound/pms/pms-0.42-r2.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools eutils flag-o-matic toolchain-funcs
36 -
37 -DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
38 -HOMEPAGE="https://ambientsound.github.io/pms/"
39 -SRC_URI="https://github.com/ambientsound/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="GPL-3+"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE="regex"
45 -
46 -RDEPEND="
47 - sys-libs/ncurses:0=
48 - dev-libs/glib:2
49 - virtual/libintl
50 - regex? ( dev-libs/boost:= )
51 -"
52 -DEPEND="
53 - virtual/pkgconfig
54 - sys-devel/gettext
55 - ${RDEPEND}
56 -"
57 -
58 -DOCS=( AUTHORS README TODO )
59 -
60 -src_prepare() {
61 - # bug #424717
62 - sed -i -e "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die 'sed on Makefile.am failed'
63 -
64 - # Compatibility with automake 1.14
65 - sed -i -e '/AM_INIT_AUTOMAKE/s/-Werror/subdir-objects/' configure.ac || die 'sed on configure.ac failed'
66 -
67 - # bug #351995
68 - sed -i -e '394s/BUFFER/ERRORSTR/' src/libmpdclient.c || die 'sed on libmpdclient.c failed'
69 -
70 - eapply_user
71 -
72 - eautoreconf
73 -}
74 -
75 -src_configure() {
76 - # fixes build with ncurses[tinfo], bug #526530
77 - append-cflags $($(tc-getPKG_CONFIG) --cflags ncursesw)
78 - append-libs $($(tc-getPKG_CONFIG) --libs ncursesw)
79 -
80 - econf \
81 - $(use_enable regex)
82 -}