From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/helm/files/, media-sound/helm/
Date: Sun, 24 Feb 2019 18:01:45 +0000 (UTC) [thread overview]
Message-ID: <1551031282.0d3305b4b8ea983b075001a2adf8ec72947b4fe2.asturm@gentoo> (raw)
commit: 0d3305b4b8ea983b075001a2adf8ec72947b4fe2
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 24 17:00:36 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 24 18:01:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3305b4
media-sound/helm: Drop 0.4.1-r2
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-sound/helm/Manifest | 1 -
media-sound/helm/files/helm-0.4.1-gcc6.patch | 24 ---------------
media-sound/helm/helm-0.4.1-r2.ebuild | 44 ----------------------------
3 files changed, 69 deletions(-)
diff --git a/media-sound/helm/Manifest b/media-sound/helm/Manifest
index 7e7894ba05e..4cffa0f04cc 100644
--- a/media-sound/helm/Manifest
+++ b/media-sound/helm/Manifest
@@ -1,2 +1 @@
-DIST helm-0.4.1.tar.gz 10170154 BLAKE2B 8939a365c5cec2f1ced1d03855cc76ab532e168866b566e8adc575be8d16b9825bf1259c912c9e74f5465d68e7984a525c430cf57eb1439814d15fb38d3cf02e SHA512 093abfd47a7f3e25d168df675b8a9c067a361ae1891af208c75ec4bc02d8a30cc5de4ab2433179bcbb6074c142c8ef9b4ef11b1854fdde0551fcd340dd6b8fe0
DIST helm-0.9.0.tar.gz 15544141 BLAKE2B 1b6811f32cf36a1c1f954cc071cd64f3dca656ee0bd420c01d0be3db516210a92adc3694ac49731cf2d7cf057a9eccf2c2dcefc14d24cf8582a3eb69efe1d0e1 SHA512 241c6bf3aec422e9ccaf7c7113eec7e30a11baadd30fe8f05f0abfac9c41d0c8a9fb284f0cae49bcaf0d3d08aa952737f6ff3eb7d48c2b2e22c60932738aeaa4
diff --git a/media-sound/helm/files/helm-0.4.1-gcc6.patch b/media-sound/helm/files/helm-0.4.1-gcc6.patch
deleted file mode 100644
index d71587296b9..00000000000
--- a/media-sound/helm/files/helm-0.4.1-gcc6.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 9a94165d8c400e45d617bf2d7cb657a477f43915 Mon Sep 17 00:00:00 2001
-From: Hodorgasm <nsane457@gmail.com>
-Date: Tue, 20 Sep 2016 17:33:14 -0400
-Subject: [PATCH] Assume there exists lround if compiling with g++ in C++11 or
- later
-
-GCC-6 doesn't define HAVE_LROUND, but lround is valid in C++ in dialects >= c++11.
----
- JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c b/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
-index 87e2321e6..512b8279c 100644
---- a/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
-+++ b/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
-@@ -50,7 +50,7 @@
-
- #ifndef FLAC__INTEGER_ONLY_LIBRARY
-
--#if !defined(HAVE_LROUND)
-+#if (!defined(__GNUC__) && !defined(HAVE_LROUND)) || __cplusplus < 201103L
- #if defined(_MSC_VER)
- #include <float.h>
- #define copysign _copysign
diff --git a/media-sound/helm/helm-0.4.1-r2.ebuild b/media-sound/helm/helm-0.4.1-r2.ebuild
deleted file mode 100644
index e7f71121652..00000000000
--- a/media-sound/helm/helm-0.4.1-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Open source polyphonic software synthesizer with lots of modulation"
-HOMEPAGE="http://tytel.org/helm/"
-SRC_URI="https://github.com/mtytel/helm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="media-libs/alsa-lib
- media-libs/freetype
- media-libs/lv2
- virtual/jack
- virtual/opengl
- x11-libs/libX11
- x11-libs/libXcursor
- x11-libs/libXext
- x11-libs/libXinerama
- x11-libs/libXrandr"
-DEPEND="${RDEPEND}"
-
-DOCS="README.md"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc6.patch
- rm patches/Synth/.DS_Store || die
- sed -e 's|/usr/lib/|/usr/'$(get_libdir)'/|' -i Makefile || die
- epatch_user
-}
-
-src_compile() {
- emake PREFIX=/usr all
-}
-
-src_install() {
- default
- make_desktop_entry /usr/bin/helm Helm /usr/share/helm/icons/helm_icon_32_1x.png
-}
next reply other threads:[~2019-02-24 18:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-24 18:01 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-06-17 3:15 [gentoo-commits] repo/gentoo:master commit in: media-sound/helm/files/, media-sound/helm/ Sam James
2019-01-27 23:13 Andreas Sturmlechner
2017-05-25 16:16 Alexis Ballier
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=1551031282.0d3305b4b8ea983b075001a2adf8ec72947b4fe2.asturm@gentoo \
--to=asturm@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