Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sexypsf/
Date: Sun, 23 Jun 2019 20:58:50
Message-Id: 1561323350.e68c45947fa4cf5b61806c85d3e1ddfa3e6b9db5.asturm@gentoo
1 commit: e68c45947fa4cf5b61806c85d3e1ddfa3e6b9db5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 23 19:24:20 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 23 20:55:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e68c4594
7
8 media-sound/sexypsf: Drop 0.4.7
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.15
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/sexypsf/Manifest | 1 -
14 media-sound/sexypsf/sexypsf-0.4.7.ebuild | 45 --------------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/media-sound/sexypsf/Manifest b/media-sound/sexypsf/Manifest
18 index cb722712035..44f3dfabc56 100644
19 --- a/media-sound/sexypsf/Manifest
20 +++ b/media-sound/sexypsf/Manifest
21 @@ -1,2 +1 @@
22 -DIST sexypsf-0.4.7.tar.bz2 83001 BLAKE2B f2c74374f68cda1837ab4f91e338377dee539f60ca28efdc31b10a48d1028aa54892f5a2e2e6e23b145dea88a1e20e9b2a6c0155547c9d7fe10b6a5f415ab72e SHA512 5b4fe7662769e668e15bea0db8785c5355a803dfe39f86eeba6dfce5df573f342525e10bc5317e1cd2b1ef70730ee4cf766c9d02cc9f404b0e39defbb30c364c
23 DIST sexypsf-0.4.8.tar.bz2 82954 BLAKE2B ce710cfe20372f81e5c4f18857b46e7eef1837b87469bdf999dd677f617802da0f7cb0ff9ff1a0ee78f6424b179b33cc111ba98619dde4a03b178c63397749a4 SHA512 bb95cdb40cf7172fdf815d6a2083adc4f684973534625d76c4fdb04752888acecfdd5ba329f9e2eed64311f30eb4400c8913ace13e4fa371c89c774905dc35d0
24
25 diff --git a/media-sound/sexypsf/sexypsf-0.4.7.ebuild b/media-sound/sexypsf/sexypsf-0.4.7.ebuild
26 deleted file mode 100644
27 index a439637fec7..00000000000
28 --- a/media-sound/sexypsf/sexypsf-0.4.7.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=0
35 -
36 -inherit eutils flag-o-matic
37 -
38 -DESCRIPTION="sexyPSF is an open-source PSF1 (Playstation music) file player"
39 -HOMEPAGE="http://projects.raphnet.net/#sexypsf"
40 -SRC_URI="http://projects.raphnet.net/sexypsf/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -
45 -#-sparc: 0.4.5: Couldn't load minispf
46 -KEYWORDS="amd64 ppc -sparc x86"
47 -IUSE=""
48 -
49 -DEPEND="sys-libs/zlib"
50 -
51 -S=${WORKDIR}/${PN}
52 -
53 -src_unpack() {
54 - unpack ${A}
55 - cd "${S}"
56 - epatch "${FILESDIR}"/${P}-misc.patch
57 -
58 - # ppc and sparc are big-endian while all other keywords are
59 - # little-endian (as far as I know)
60 - use ppc64 || use ppc || use sparc &&
61 - sed -i -e "s:-D__LINUX__:& -DMSB_FIRST:" "${S}"/Linux/Makefile
62 - # what about using the correct macro and avoid to cause severe damages to
63 - # innocent ears?
64 - sed -i -e "s:AFMT_S16_LE:AFMT_S16_NE:" "${S}"/Linux/oss.c
65 -}
66 -
67 -src_compile() {
68 - cd "${S}"/Linux
69 - emake || die "emake failed"
70 -}
71 -
72 -src_install() {
73 - dobin Linux/sexypsf
74 - dodoc Docs/*
75 -}