From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0CCB71382DE for ; Sat, 2 Jul 2016 13:26:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E43FE09B9; Sat, 2 Jul 2016 13:25:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DDCBEE09B9 for ; Sat, 2 Jul 2016 13:25:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88DB5340C08 for ; Sat, 2 Jul 2016 13:25:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F97E16C4 for ; Sat, 2 Jul 2016 13:25:52 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1467465825.c9582c99ee2f9dd3053b9c48db1efc957566c61c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/wav2json/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/wav2json/Manifest media-sound/wav2json/metadata.xml media-sound/wav2json/wav2json-0.4.ebuild X-VCS-Directories: media-sound/wav2json/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c9582c99ee2f9dd3053b9c48db1efc957566c61c X-VCS-Branch: master Date: Sat, 2 Jul 2016 13:25:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5fc27fab-d8a1-4bcf-a05c-9547a59366ff X-Archives-Hash: 8aedf69d5e9bfe56d5bb9e4b4ab00153 commit: c9582c99ee2f9dd3053b9c48db1efc957566c61c Author: Pavel Denisov gmail com> AuthorDate: Fri Jul 1 02:51:20 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jul 2 13:23:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9582c99 media-sound/wav2json: new ebuild Closes: https://github.com/gentoo/gentoo/pull/1809 Signed-off-by: David Seifert gentoo.org> media-sound/wav2json/Manifest | 1 + media-sound/wav2json/metadata.xml | 16 ++++++++++++++++ media-sound/wav2json/wav2json-0.4.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/media-sound/wav2json/Manifest b/media-sound/wav2json/Manifest new file mode 100644 index 0000000..1176545 --- /dev/null +++ b/media-sound/wav2json/Manifest @@ -0,0 +1 @@ +DIST wav2json-0.4.tar.gz 742606 SHA256 ad1b1aff4fa7c026ae715681afd39620d1b468bbdfa64f00541d4b6d10b36044 SHA512 0bfac4dbd5c2535616fcf09e00914eb06fbf042dab6e69133c9ad6494328ff0bcb849d694499946cc6e8e6ac6dc0f1c68ef462c0a264c93da2c2a7aaea4281a0 WHIRLPOOL d0e83d64a882cf13e1df9e9b5a1c94a2601890dd2977fa704cc276319a405cd4cde239b6a3128af777c5500e3fddef07a5a2fa93470689d4f538c2c1a66b4312 diff --git a/media-sound/wav2json/metadata.xml b/media-sound/wav2json/metadata.xml new file mode 100644 index 0000000..41e3452 --- /dev/null +++ b/media-sound/wav2json/metadata.xml @@ -0,0 +1,16 @@ + + + + + pavel.a.denisov@gmail.com + Pavel Denisov + Proxied maintainer; set to assignee in all bugs + + + proxy-maint@gentoo.org + Proxy Maintainers + + + beschulz/wav2json + + diff --git a/media-sound/wav2json/wav2json-0.4.ebuild b/media-sound/wav2json/wav2json-0.4.ebuild new file mode 100644 index 0000000..9044045 --- /dev/null +++ b/media-sound/wav2json/wav2json-0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +COMMIT_ID="e412923f1f792408e8ae1096ca40fb5307ddfc74" +DESCRIPTION="Generate waveformjs.org compatible json data out of wav files" +HOMEPAGE="https://github.com/beschulz/wav2json" +SRC_URI="https://github.com/beschulz/wav2json/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" + +S=${WORKDIR}/${PN}-${COMMIT_ID}/build + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-libs/boost:= + media-libs/libsndfile +" +RDEPEND="${DEPEND}" + +src_install() { + dobin ../bin/Linux/wav2json +}