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 3615713832E for ; Sun, 14 Aug 2016 22:03:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5342B21C095; Sun, 14 Aug 2016 22:03:56 +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 ED30521C095 for ; Sun, 14 Aug 2016 22:03:55 +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 ADCF7340CD7 for ; Sun, 14 Aug 2016 22:03:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D90BE2443 for ; Sun, 14 Aug 2016 22:03:52 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1471212214.2cc1abc4c09a04107138b7fe1cfb95ee397cafec.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: x11-misc/tickeys/ X-VCS-Repository: proj/betagarden X-VCS-Files: x11-misc/tickeys/metadata.xml x11-misc/tickeys/tickeys-0.2.4.ebuild X-VCS-Directories: x11-misc/tickeys/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 2cc1abc4c09a04107138b7fe1cfb95ee397cafec X-VCS-Branch: master Date: Sun, 14 Aug 2016 22:03: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: 6cdd1350-9344-489a-a3bf-f45f76fcdc39 X-Archives-Hash: 43cd9ecb6f4452ecf153900fa7b698ea commit: 2cc1abc4c09a04107138b7fe1cfb95ee397cafec Author: Sebastian Pipping gentoo org> AuthorDate: Sun Aug 14 22:03:06 2016 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Aug 14 22:03:34 2016 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=2cc1abc4 x11-misc/tickeys: 0.2.4 x11-misc/tickeys/metadata.xml | 7 ++++++ x11-misc/tickeys/tickeys-0.2.4.ebuild | 40 +++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/x11-misc/tickeys/metadata.xml b/x11-misc/tickeys/metadata.xml new file mode 100644 index 0000000..82b7b79 --- /dev/null +++ b/x11-misc/tickeys/metadata.xml @@ -0,0 +1,7 @@ + + + + + sping@gentoo.org + + diff --git a/x11-misc/tickeys/tickeys-0.2.4.ebuild b/x11-misc/tickeys/tickeys-0.2.4.ebuild new file mode 100644 index 0000000..83af8e0 --- /dev/null +++ b/x11-misc/tickeys/tickeys-0.2.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_PN=${PN^}-linux +DESCRIPTION="Instant audio feedback when typing." +HOMEPAGE="https://github.com/BillBillBillBill/Tickeys-linux" +SRC_URI="https://github.com/BillBillBillBill/${MY_PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + dev-python/cython[${PYTHON_USEDEP}] + dev-python/Kivy[${PYTHON_USEDEP}] + dev-python/kivy-garden[${PYTHON_USEDEP}] + dev-python/notify2[${PYTHON_USEDEP}] + dev-python/pygame[${PYTHON_USEDEP}] + dev-python/python-evdev[${PYTHON_USEDEP}] + " + +S="${WORKDIR}"/${MY_PN}-${PV} + +src_compile() { + # https://github.com/BillBillBillBill/Tickeys-linux/issues/14 + rm /tmp/tickeys.log # or we still get sandbox errors + addpredict /tmp/tickeys.log + + distutils-r1_src_compile +}