public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/chuck/
Date: Wed,  5 Sep 2018 21:18:12 +0000 (UTC)	[thread overview]
Message-ID: <1536182267.5d6284db8dc4ae79633ae9fe2afd65fbac274d99.asturm@gentoo> (raw)

commit:     5d6284db8dc4ae79633ae9fe2afd65fbac274d99
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  1 19:50:51 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep  5 21:17:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d6284db

media-sound/chuck: Drop 1.3.5.1

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 media-sound/chuck/Manifest             |  1 -
 media-sound/chuck/chuck-1.3.5.1.ebuild | 72 ----------------------------------
 2 files changed, 73 deletions(-)

diff --git a/media-sound/chuck/Manifest b/media-sound/chuck/Manifest
index c06bb1ac981..db8b7944008 100644
--- a/media-sound/chuck/Manifest
+++ b/media-sound/chuck/Manifest
@@ -1,3 +1,2 @@
-DIST chuck-1.3.5.1.tgz 14686970 BLAKE2B 4ce0427d26070ed86b2ec3f788eff88944bf32eec42790a1126641e111bb41abe4e67b4a16b61a6a93524eb2b34d4460fa7ccb9b3656bdcc60cc23189a67ec3b SHA512 450237207150b285954dc2661d6f7829424d4353cdc457a7dce637b6877247b106ad0ed58bdbded17c1f7558e0f01daa7a06642f2727136f6edca5a64d202f73
 DIST chuck-1.3.5.2.tgz 14687476 BLAKE2B 35c3803ba1291bbfedd31d7c2845d20e32af4e91ea77e0790f429465b98d6d3ff91e321f036e3c2294d900d746741d987ac3a231bd6db01e3edaab006d507c97 SHA512 00407b0f20fa9adcd9d0c31078ef7593f8a5b026f19086942c3fa56128fd07e202848651e5e8f41f1d70566de766e84f4a049ca4013e65a61b6f6fb10d69ffbc
 DIST chuck-1.4.0.0.tgz 14664130 BLAKE2B 2009cc3f6905c7e4361aefdbcc89cab08d21328c6fe8ea366aad32a862428a5ffb16d45b1717e849d174f52e104ff0394a0aa2f93cfceed066e7b393edaabb1e SHA512 198b3c08a79bbbd2c0cdd5d9a7a11b8b58f09e949a3f5dd3f330af7d80fdb2861ca53dce807df555aed6ba917e72001ef7147b62a3ada57c34154102388dece1

diff --git a/media-sound/chuck/chuck-1.3.5.1.ebuild b/media-sound/chuck/chuck-1.3.5.1.ebuild
deleted file mode 100644
index 249ca778cb9..00000000000
--- a/media-sound/chuck/chuck-1.3.5.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs flag-o-matic eutils
-
-DESCRIPTION="Strongly-timed, concurrent, and on-the-fly audio programming language"
-HOMEPAGE="http://chuck.cs.princeton.edu/"
-SRC_URI="http://chuck.cs.princeton.edu/release/files/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa jack examples"
-REQUIRED_USE="|| ( alsa jack )"
-
-RDEPEND="app-eselect/eselect-chuck
-	media-libs/libsndfile
-	alsa? ( media-libs/alsa-lib )
-	jack? ( media-sound/jack-audio-connection-kit )"
-DEPEND="${RDEPEND}
-	sys-devel/bison
-	sys-devel/flex"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-1.2.1.1-hid-smc.patch \
-		"${FILESDIR}"/${PN}-1.3.5.1-makefile.patch
-}
-
-compile_backend() {
-	backend=$1
-	pushd "${S}/src" &>/dev/null || die
-	einfo "Compiling against ${backend}"
-	emake  CC=$(tc-getCC) CXX=$(tc-getCXX) linux-${backend}
-	mv chuck{,-${backend}}
-	emake clean
-	popd &>/dev/null || die
-}
-
-src_compile() {
-	# when compile with athlon or athlon-xp flags
-	# chuck crashes on removing a shred with a double free or corruption
-	# it happens in Chuck_VM_Stack::shutdown() on the line
-	#   SAFE_DELETE_ARRAY( stack );
-	replace-cpu-flags athlon athlon-xp i686
-
-	use jack && compile_backend jack
-	use alsa && compile_backend alsa
-}
-
-src_install() {
-	use jack && dobin src/chuck-jack
-	use alsa && dobin src/chuck-alsa
-
-	dodoc AUTHORS DEVELOPER PROGRAMMER QUICKSTART README THANKS TODO VERSIONS
-	docinto doc
-	dodoc doc/*
-	if use examples; then
-		insinto /usr/share/doc/${PF}/
-		doins -r examples
-		docompress -x /usr/share/doc/${PF}/examples
-	fi
-}
-
-pkg_postinst() {
-	elog "Chuck now can use multiple audio engines, so you can specify"
-	elog "the preferred audio engine with chuck-{jack,alsa}"
-	elog "Or you can use 'eselect chuck' to set the audio engine"
-
-	einfo "Calling eselect chuck update..."
-	eselect chuck update --if-unset
-}


             reply	other threads:[~2018-09-05 21:18 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-05 21:18 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-08  9:13 [gentoo-commits] repo/gentoo:master commit in: media-sound/chuck/ Miroslav Šulc
2025-02-06 22:03 Sam James
2025-02-06 22:03 Sam James
2025-01-05 17:49 Arthur Zamarin
2025-01-05 17:49 Arthur Zamarin
2025-01-04 11:48 Miroslav Šulc
2025-01-01 16:01 Miroslav Šulc
2024-12-30  1:09 Sam James
2024-12-30  1:09 Sam James
2024-12-06  9:59 Sam James
2024-12-06  9:59 Sam James
2024-12-06  9:20 Miroslav Šulc
2024-11-24  9:24 Miroslav Šulc
2024-11-05  9:48 Miroslav Šulc
2024-11-03  8:36 Miroslav Šulc
2022-07-22  7:49 Agostino Sarubbo
2022-07-22  7:43 Agostino Sarubbo
2022-05-21  6:25 Miroslav Šulc
2022-03-19 23:45 Sam James
2021-07-29  8:20 Miroslav Šulc
2021-07-29  7:08 Agostino Sarubbo
2021-07-29  6:45 Agostino Sarubbo
2021-06-27  9:36 Miroslav Šulc
2021-05-28 15:57 David Seifert
2020-09-05 15:15 Sam James
2020-09-02  8:57 Miroslav Šulc
2020-08-02 12:27 Miroslav Šulc
2018-11-09  0:43 Andreas Sturmlechner
2016-08-07  8:37 Tim Harder

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=1536182267.5d6284db8dc4ae79633ae9fe2afd65fbac274d99.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