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 90A97138334 for ; Fri, 20 Sep 2019 17:28:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5A15E0897; Fri, 20 Sep 2019 17:28:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CD642E0897 for ; Fri, 20 Sep 2019 17:28:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C13A134B370 for ; Fri, 20 Sep 2019 17:28:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B5E37E7 for ; Fri, 20 Sep 2019 17:28:39 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1569000486.6931fd8f2bb71dfb4b912ba1078173f43b9146b9.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/nanovna-saver/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/nanovna-saver/metadata.xml net-wireless/nanovna-saver/nanovna-saver-9999.ebuild X-VCS-Directories: net-wireless/nanovna-saver/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: 6931fd8f2bb71dfb4b912ba1078173f43b9146b9 X-VCS-Branch: master Date: Fri, 20 Sep 2019 17:28:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 28ac21f2-53ac-43ea-b680-839f2531db0a X-Archives-Hash: 7de11ca7d8cf0f83a04cf183100ef35a commit: 6931fd8f2bb71dfb4b912ba1078173f43b9146b9 Author: Rick Farina gentoo org> AuthorDate: Fri Sep 20 17:27:53 2019 +0000 Commit: Rick Farina gentoo org> CommitDate: Fri Sep 20 17:28:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6931fd8f net-wireless/nanovna-saver: initial commit Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Rick Farina gentoo.org> net-wireless/nanovna-saver/metadata.xml | 15 ++++++++++++ .../nanovna-saver/nanovna-saver-9999.ebuild | 28 ++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/net-wireless/nanovna-saver/metadata.xml b/net-wireless/nanovna-saver/metadata.xml new file mode 100644 index 00000000000..ed13c0b0f6e --- /dev/null +++ b/net-wireless/nanovna-saver/metadata.xml @@ -0,0 +1,15 @@ + + + + + zerochaos@gentoo.org + Rick Farina + + + radio@gentoo.org + Radio + + + mihtjel/nanovna-saver + + diff --git a/net-wireless/nanovna-saver/nanovna-saver-9999.ebuild b/net-wireless/nanovna-saver/nanovna-saver-9999.ebuild new file mode 100644 index 00000000000..96b4a3691d7 --- /dev/null +++ b/net-wireless/nanovna-saver/nanovna-saver-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_7 ) +inherit git-r3 distutils-r1 + +DESCRIPTION="tool for reading, displaying and saving data from the NanoVNA" +HOMEPAGE="https://github.com/mihtjel/nanovna-saver" +SRC_URI="" + +LICENSE="GPL-3+" +SLOT="0" +EGIT_REPO_URI="https://github.com/mihtjel/nanovna-saver.git" +KEYWORDS="" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + dev-python/pyserial[${PYTHON_USEDEP}] + dev-python/PyQt5[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}]" +BDEPEND="" + +src_prepare() { + sed -i 's#==5.11.2##' setup.py + default +}