public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/sonic/
@ 2021-05-24  9:11 Ronny Gutbrod
  0 siblings, 0 replies; 2+ messages in thread
From: Ronny Gutbrod @ 2021-05-24  9:11 UTC (permalink / raw
  To: gentoo-commits

commit:     cdb8f75653cbc8034c64d7934d061368c114d3eb
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon May 24 09:09:06 2021 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon May 24 09:11:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cdb8f756

media-libs/sonic: Make it not use gcc-symlinks.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 media-libs/sonic/sonic-0.3.0_pre20210316.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild b/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild
index 3c60fa2f3..c8c89d563 100644
--- a/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild
+++ b/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit multilib
+inherit multilib toolchain-funcs
 
 COMMIT="ba331411f17702e01f6c2d7016eefebaa695871f"
 DESCRIPTION="Simple library to speed up or slow down speech"
@@ -24,6 +24,8 @@ src_prepare() {
 	default
 	sed "s|/lib|/$(get_libdir)|" -i Makefile || die
 	sed "/install libsonic.a/d" -i Makefile || die
+	sed "s/CC=gcc/CC=$(tc-getCC)/" -i Makefile || die
+	export AR="$(tc-getAR)"
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/sonic/
@ 2021-07-15 10:04 Anna Vyalkova
  0 siblings, 0 replies; 2+ messages in thread
From: Anna Vyalkova @ 2021-07-15 10:04 UTC (permalink / raw
  To: gentoo-commits

commit:     261df3e84183357b0da89cb150fd05f8d7d5cd17
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Jul 14 08:38:17 2021 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Jul 15 09:05:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=261df3e8

media-libs/sonic: treeclean (not needed anymore)

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 media-libs/sonic/Manifest                       |  1 -
 media-libs/sonic/metadata.xml                   | 11 --------
 media-libs/sonic/sonic-0.3.0_pre20210316.ebuild | 34 -------------------------
 3 files changed, 46 deletions(-)

diff --git a/media-libs/sonic/Manifest b/media-libs/sonic/Manifest
deleted file mode 100644
index ea341be6e..000000000
--- a/media-libs/sonic/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sonic-0.3.0_pre20210316.tar.gz 5350614 BLAKE2B 95084bd43794e36259b0048b603d23d32fa8fff3531796965ccb8548a23c4e392eaf242e138885c638d08ef44c87537d0cd74f9de2b352ba55a9f2613c6c89a8 SHA512 a44246b1955cef87466162e02e29ea6595f7b4bdab51e90ee0904bf7f68e697a0d006162b367fed51ab8409bce7aee38d155dee0d95c5ac5f29ee8d390c0d488

diff --git a/media-libs/sonic/metadata.xml b/media-libs/sonic/metadata.xml
deleted file mode 100644
index 22900dd41..000000000
--- a/media-libs/sonic/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<upstream>
-		<remote-id type="github">waywardgeek/sonic</remote-id>
-	</upstream>
-	<maintainer type="person">
-		<email>cyber+gentoo@sysrq.in</email>
-		<name>Anna</name>
-	</maintainer>
-</pkgmetadata>

diff --git a/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild b/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild
deleted file mode 100644
index c8c89d563..000000000
--- a/media-libs/sonic/sonic-0.3.0_pre20210316.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib toolchain-funcs
-
-COMMIT="ba331411f17702e01f6c2d7016eefebaa695871f"
-DESCRIPTION="Simple library to speed up or slow down speech"
-HOMEPAGE="https://github.com/waywardgeek/sonic"
-SRC_URI="https://github.com/waywardgeek/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="sci-libs/fftw"
-DEPEND="${RDEPEND}"
-
-DOCS=( README doc/index.md )
-
-src_prepare() {
-	default
-	sed "s|/lib|/$(get_libdir)|" -i Makefile || die
-	sed "/install libsonic.a/d" -i Makefile || die
-	sed "s/CC=gcc/CC=$(tc-getCC)/" -i Makefile || die
-	export AR="$(tc-getAR)"
-}
-
-src_install() {
-	default
-	doman sonic.1
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-07-15 10:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-24  9:11 [gentoo-commits] repo/proj/guru:dev commit in: media-libs/sonic/ Ronny Gutbrod
  -- strict thread matches above, loose matches on Subject: below --
2021-07-15 10:04 Anna Vyalkova

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox