diff --git a/README.md b/README.md index 606478b61..28b2c89ae 100644 --- a/README.md +++ b/README.md @@ -617,12 +617,12 @@ 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 1809 Ebuilds in total, 1798 of them have in total 1817 (42 different) licenses assigned. +There are 1811 Ebuilds in total, 1800 of them have in total 1819 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1036| -|Apache-2.0|396| +|Apache-2.0|398| |GPL-3|109| |BSD|106| |LGPL-3|25| diff --git a/dev-python/vacuum-map-parser-base/Manifest b/dev-python/vacuum-map-parser-base/Manifest new file mode 100644 index 000000000..5e84273b5 --- /dev/null +++ b/dev-python/vacuum-map-parser-base/Manifest @@ -0,0 +1,3 @@ +DIST vacuum_map_parser_base-0.1.3.tar.gz 18145 BLAKE2B c7da3e09c9528262512ee1f5ced5e47c2fb7aad2e5151365d74eb9133b98d46414dbc17165db48f2112ad8c55a518384202597beafb2fc23c4acb09a57dc3588 SHA512 b890b53195ff1b6198410df2814bca4ad1589630ba21c6701190b88e38364b74736329ac4e05804e77ee8a8c78c137c9d277620d8f6ddbb4d255c18951f3c959 +EBUILD vacuum-map-parser-base-0.1.3.ebuild 581 BLAKE2B f25118d9ccced22acf6642273158e80ace3a9a7d043f642c02559ad81ad5cf940f53000c4178df115a6dc7d8dfcc4959f262854aefe6d128ef97aa61baf5ff8f SHA512 2e831751f9695d94b16e3072884c6c81472b68fe2eb2b1055898ae6b5c5d581382fcc9e61368032614d72e14bb54d6ba17109ea4c6dd469970f52ebd29211d9f +MISC metadata.xml 573 BLAKE2B 45bad21b0707c92599eb238e00515ef7c69243cd09cc82c5b46a4f6bb469e05034e8434355d29760985c283e6f016ce2d65074478ed39591ecad6f4dfd493343 SHA512 24a3a462cad67f673ce8aa18c4fb69fa7380b8f79316a3d1920efc55e01399a1813626a898178df07a254df67e25059254c1ad9ebc098ae7ef55fb96879b439b diff --git a/dev-python/vacuum-map-parser-base/metadata.xml b/dev-python/vacuum-map-parser-base/metadata.xml new file mode 100644 index 000000000..a25d7097c --- /dev/null +++ b/dev-python/vacuum-map-parser-base/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + vacuum-map-parser-base + PiotrMachowski/Python-package-vacuum-map-parser-base + + piotr.machowski.dev@gmail.com + Piotr Machowski + + + diff --git a/dev-python/vacuum-map-parser-base/vacuum-map-parser-base-0.1.3.ebuild b/dev-python/vacuum-map-parser-base/vacuum-map-parser-base-0.1.3.ebuild new file mode 100644 index 000000000..40d007deb --- /dev/null +++ b/dev-python/vacuum-map-parser-base/vacuum-map-parser-base-0.1.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +DESCRIPTION="Common code for vacuum map parsers" +HOMEPAGE="https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-base https://pypi.org/project/vacuum-map-parser-base/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest