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 ABEF6138359 for ; Sun, 2 Aug 2020 03:45:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA153E0C04; Sun, 2 Aug 2020 03:45:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C20C3E0C04 for ; Sun, 2 Aug 2020 03:45:11 +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 48E2534F2FF for ; Sun, 2 Aug 2020 03:45:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACE152E7 for ; Sun, 2 Aug 2020 03:45:07 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1596339768.0e53d481486ea74ea9058d27f527b3fe6aca5e0f.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/amodem/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/amodem/Manifest dev-python/amodem/amodem-1.15.1.ebuild X-VCS-Directories: dev-python/amodem/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 0e53d481486ea74ea9058d27f527b3fe6aca5e0f X-VCS-Branch: master Date: Sun, 2 Aug 2020 03:45:07 +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: 785689a5-f244-4c8b-b5b4-58358ec36716 X-Archives-Hash: c409216a9c76e6367e5498ef6f356d72 commit: 0e53d481486ea74ea9058d27f527b3fe6aca5e0f Author: Aaron Bauman gentoo org> AuthorDate: Sun Aug 2 03:42:48 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Aug 2 03:42:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e53d481 dev-python/amodem: bump to 1.15.1 * bump EAPI * add py3_{7..9} Closes: https://bugs.gentoo.org/718858 Signed-off-by: Aaron Bauman gentoo.org> dev-python/amodem/Manifest | 1 + dev-python/amodem/amodem-1.15.1.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-python/amodem/Manifest b/dev-python/amodem/Manifest index 19732d3149c..2d2ec5660a3 100644 --- a/dev-python/amodem/Manifest +++ b/dev-python/amodem/Manifest @@ -1 +1,2 @@ DIST amodem-1.15.0.tar.gz 28779 BLAKE2B abc2afbce47cf5e3b2ae34bd54228618e887b3f0b919d421114ce5e56e3e8a14477f130f03d77851c1e256afb22d4b657367c8e59954438dec72f3059278de64 SHA512 5d39e08d47410a55c218ed2dc5a413cbbba602fe1049d3e8824ca62b439d029c42294b2a17e4077b2c746336b1471a4a94ffa19b9eb3145869dfc158404bcad8 +DIST amodem-1.15.1.tar.gz 30482 BLAKE2B 964cb6b6e674044650898d1f9ae67b3b181f836a4c52caad08046841ea222a0b8e7aab23789ca440b5ae98c1b5f20ce6a7f31707032471fe3543397f2818d731 SHA512 16d1ab37146181432da5388f5a387e477979578a656c73efca18d721ba90dc47ced28ef054c589ea693dcf1bf2744317ddc22110cc61b9330ff8665b9f209240 diff --git a/dev-python/amodem/amodem-1.15.1.ebuild b/dev-python/amodem/amodem-1.15.1.ebuild new file mode 100644 index 00000000000..6936d0183c3 --- /dev/null +++ b/dev-python/amodem/amodem-1.15.1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Transmit data between two computers using audio" +HOMEPAGE="https://github.com/romanz/amodem" +SRC_URI="https://github.com/romanz/amodem/archive/v${PV}.tar.gz -> ${P}.tar.gz + mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DISTUTILS_USE_SETUPTOOLS=rdepend