Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/abcmidi/
Date: Thu, 01 Aug 2019 03:13:20
Message-Id: 1564629185.c334c3614e8752117f2f6060f9d4590e610c83e7.radhermit@gentoo
1 commit: c334c3614e8752117f2f6060f9d4590e610c83e7
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 1 03:12:05 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 1 03:13:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c334c361
7
8 media-sound/abcmidi: version bump to 2019.07.12
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-sound/abcmidi/Manifest | 1 +
13 media-sound/abcmidi/abcmidi-2019.07.12.ebuild | 40 +++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/media-sound/abcmidi/Manifest b/media-sound/abcmidi/Manifest
17 index ea975a5cf68..46c9cffaeed 100644
18 --- a/media-sound/abcmidi/Manifest
19 +++ b/media-sound/abcmidi/Manifest
20 @@ -1,2 +1,3 @@
21 DIST abcMIDI-2019.05.08.zip 562151 BLAKE2B 7b7413b329a69c9f8e7cf8eec9ddb2caceb055d2256d01a2e6045008b861b8aac194bb0b2507fb96a21ddcfe228a789be63c1ad322945a7b824ff39908cefcf4 SHA512 3891e10503f319b406b175d18077c353767b1025bae73fed184988427602412ffd5bb8e1ec0513b9ebff4d0debd81535558a8157b150a4e32abad099279d4312
22 DIST abcMIDI-2019.06.30.zip 565169 BLAKE2B 1db656cc8f3a1b67802eb5c91a48f45df26c2dd303b58c65b2f6dd2b93a2bad263ff06f68dd56eeb94f72bdcdb00f03a11fe26e288e8ee4ac28a91c6fa513c93 SHA512 a242ab847453a73966266e3787fe51d9e1a7359d0e3aee2e9b294c02eea88b159721298625d3079b584278d84dfe95fec70a55937b02d25a9eb753eb29799b6d
23 +DIST abcMIDI-2019.07.12.zip 565648 BLAKE2B 446dacce10d6c7aa1eb331f52fc0e82064b66bf394494c03fdade32147e456efc30ec81a82d27d212f8e32047ef1d63ad86b4c783b58c2f19c359cbc7683c0c2 SHA512 5b5948f5bf6e3560a7f3aaf98c79fda5d3b37c9c7738bc0e268adca06a72fdf1542cbd83be762ef140b54c2132be3529510c7661892b6fe8f843f258bf753f41
24
25 diff --git a/media-sound/abcmidi/abcmidi-2019.07.12.ebuild b/media-sound/abcmidi/abcmidi-2019.07.12.ebuild
26 new file mode 100644
27 index 00000000000..ce075821d84
28 --- /dev/null
29 +++ b/media-sound/abcmidi/abcmidi-2019.07.12.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools
37 +
38 +MY_P="abcMIDI-${PV}"
39 +DESCRIPTION="Programs for processing ABC music notation files"
40 +HOMEPAGE="https://ifdo.ca/~seymour/runabc/top.html"
41 +SRC_URI="https://ifdo.ca/~seymour/runabc/${MY_P}.zip"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="examples"
47 +
48 +DEPEND="app-arch/unzip"
49 +
50 +S=${WORKDIR}/${PN}
51 +
52 +src_prepare() {
53 + local PATCHES=( "${FILESDIR}"/${PN}-2016.05.05-docs.patch )
54 + default
55 +
56 + rm configure Makefile || die
57 + sed -i "s:-O2::" configure.ac || die
58 +
59 + eautoreconf
60 +}
61 +
62 +src_install() {
63 + default
64 + dodoc doc/{AUTHORS,CHANGES,abcguide.txt,abcmatch.txt,history.txt,readme.txt,yapshelp.txt}
65 +
66 + if use examples ; then
67 + docinto examples
68 + dodoc samples/*.abc
69 + fi
70 +}