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 D5BBC1381F1 for ; Tue, 11 Oct 2016 22:59:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCF57E0D07; Tue, 11 Oct 2016 22:59:32 +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 C2090E0D07 for ; Tue, 11 Oct 2016 22:59:27 +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 DD0CC341643 for ; Tue, 11 Oct 2016 22:59:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EF42301 for ; Tue, 11 Oct 2016 22:59:23 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1476226547.14809e8bce4a67c3f7c3254a9362d06c4448d99c.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/sound-of-sorting/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild X-VCS-Directories: games-misc/sound-of-sorting/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 14809e8bce4a67c3f7c3254a9362d06c4448d99c X-VCS-Branch: master Date: Tue, 11 Oct 2016 22:59:23 +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: d11a257f-2e8b-4830-986c-fad4d53bad8a X-Archives-Hash: fa2eb881de5ec749f0606722024936e6 commit: 14809e8bce4a67c3f7c3254a9362d06c4448d99c Author: Austin English gentoo org> AuthorDate: Tue Oct 11 22:38:15 2016 +0000 Commit: Austin English gentoo org> CommitDate: Tue Oct 11 22:55:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14809e8b games-misc/sound-of-sorting: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 .../sound-of-sorting-0.6.6_pre20151107-r1.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild b/games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild new file mode 100644 index 00000000..9fad708 --- /dev/null +++ b/games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +WX_GTK_VER="3.0" + +inherit vcs-snapshot wxwidgets + +DESCRIPTION="Visualization and Audibilization of Sorting Algorithms" +HOMEPAGE="http://panthema.net/2013/sound-of-sorting/ https://github.com/bingmann/sound-of-sorting" +#SRC_URI="http://panthema.net/2013/sound-of-sorting/${P}.tar.bz2" +COMMIT="05db428c796a7006d63efdbe314f976e0aa881d6" +SRC_URI="https://github.com/bingmann/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + media-libs/libsdl + x11-libs/wxGTK:${WX_GTK_VER} +" +DEPEND="${RDEPEND}" + +src_unpack() { + vcs-snapshot_src_unpack + need-wxwidgets unicode +}