From 426ecb26501bd646debdcc26beb04fc9a05364cf Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Wed, 1 Mar 2023 21:51:07 +0100 Subject: [PATCH] dev-python/wiffi: add 1.1.2 Signed-off-by: Andreas Billmeier --- README.md | 4 ++-- dev-python/wiffi/Manifest | 2 ++ dev-python/wiffi/wiffi-1.1.2.ebuild | 20 ++++++++++++++++++++ 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 dev-python/wiffi/wiffi-1.1.2.ebuild diff --git a/README.md b/README.md index b3ec429f8..e82863946 100644 --- a/README.md +++ b/README.md @@ -573,11 +573,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1783 Ebuilds in total, 1772 of them have in total 1776 (34 different) licenses assigned. +There are 1784 Ebuilds in total, 1773 of them have in total 1777 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1040| +|MIT|1041| |Apache-2.0|386| |GPL-3|109| |BSD|93| diff --git a/dev-python/wiffi/Manifest b/dev-python/wiffi/Manifest index bbe840d8d..4c4c52f0f 100644 --- a/dev-python/wiffi/Manifest +++ b/dev-python/wiffi/Manifest @@ -1,3 +1,5 @@ DIST wiffi-1.1.0.tar.gz 3634 BLAKE2B 7398f16fe813272c412750f9a5553a5b269cec341ae0831077c7a50ad4edeaaf47a8282edc43a59350af7b41367d384fefa2a9e39e45560ba41ce57baa67045d SHA512 c2fd24dc6abbeccf7618edcb0392f0752a6062c0e13849f9b7f9319cd621e8e316b16dfc375c6893fb9eb9c082d7305b4d155afb279552aa7a395cbf4bf18973 +DIST wiffi-1.1.2.tar.gz 4310 BLAKE2B 9a47903b84ae3d6b8f58112c4c0d43bdcd7718bb908a2aaadf5436caf6f763a7b9f5e4449222b0d37bc171d6caea5aa8bf702ed34f83ab352f24d79841440289 SHA512 8f8af43faaedda2d755b7a0e0085a0a097265c4f0145cacb0805e1ed29a9ec720f776c9d4dbafa8128d9d5df75bc4d3c19a5da4577e4cb43a77a952ed9da35e4 EBUILD wiffi-1.1.0.ebuild 661 BLAKE2B 30f7638991fe833c462222d13aa6f3ccea7b6042297560fc35e8facdedda6334ec4d94f64ea6cab1fc73a19daf618301e25f682455b0e13de66ba164094f7fde SHA512 78cdb77634406ed8f55d5b26c973af885a5a4fe93d38030c0468483276e50220a2dc674fcedc8871be92d8068d4bcaf944e546463b398e2082463a2da07fd892 +EBUILD wiffi-1.1.2.ebuild 517 BLAKE2B 894d77a118746638036a3c70dc7461a64aece4a4eec7fd9868a39a98e49450e4f6a7ba463a426b0a2c7c05c909362bdf63e4ef734aaec1723c7ce8d9f5b01a12 SHA512 b655acf8795b1dcc2f5dc4361167db99efcba62a9fcfd21db13aab647a83879f3df5c0e901c92fc53bc44c2607ac51933d6b45cba4ea142b8b6fb375725976c3 MISC metadata.xml 519 BLAKE2B ef8e9f821a74ac20381c84707eead7a4c156b30e1acf4472edc14c73651f74fa1446df9da6b15052d796c5bcd99e388fc658adece1151a42fb530fc17654d294 SHA512 1b7339b849a37aff61bd3b0efd421be03fa9e95c8ed4444a9c752574e4e9a4ac5e254a4df9e3e5c222dcab530a8b8cb921836e56cec596d7a38ca59e82d0a3ad diff --git a/dev-python/wiffi/wiffi-1.1.2.ebuild b/dev-python/wiffi/wiffi-1.1.2.ebuild new file mode 100644 index 000000000..5fc922ab5 --- /dev/null +++ b/dev-python/wiffi/wiffi-1.1.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Python 3 package to interface devices from STALL WIFFI." +HOMEPAGE="https://github.com/mampfes/python-wiffi https://pypi.org/project/wiffi/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md"