Skip to content

Commit ab04590

Browse files
committed
dev-python/toml: new package, add 0.10.2
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 7d9256c commit ab04590

File tree

4 files changed

+42
-2
lines changed

4 files changed

+42
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
617617

618618
## Licenses
619619
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.
620-
There are 1787 Ebuilds in total, 1776 of them have in total 1795 (42 different) licenses assigned.
620+
There are 1788 Ebuilds in total, 1777 of them have in total 1796 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1019|
624+
|MIT|1020|
625625
|Apache-2.0|394|
626626
|GPL-3|106|
627627
|BSD|106|

dev-python/toml/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST toml-0.10.2.tar.gz 22253 BLAKE2B a613d5e86fc77279f2d7b130309627eed1cab3a65fe8647cb1dc3e58d09a9d58c078472638f06f45394b00c142bcb2bc75e9c0c649d58aade2f4f6bdab23f12e SHA512 ede2c8fed610a3827dba828f6e7ab7a8dbd5745e8ef7c0cd955219afdc83b9caea714deee09e853627f05ad1c525dc60426a6e9e16f58758aa028cb4d3db4b39
2+
EBUILD toml-0.10.2.ebuild 487 BLAKE2B 9f341020fc548fabf43c75421e9e954f65e5a1e7f36b21f0bbd1272c9c3f3670bd0a9437774278dfdd3c613c8c1f4eba0e488f4c5b288d600aad52afa2452051 SHA512 3665764adb1500f80328320b5142730e486cb46e290cdfcad9a3e701b5158d586472e8bc325c20f589490e49347bf100f2d8215da07eb21382259f9e5fad0c3e
3+
MISC metadata.xml 494 BLAKE2B a8a554ad830511f2930101eb4562a4d5148cc9624c983f77de2ee4d2bddf1d4bf47d674e97a9177724fc31129fe5bef0a736197384d7d8f8d72b68d81cf6cddb SHA512 661ad82412c0f42d7c11daf0ed2bc050e5339c0a0899bd0357001517566ec9c3a34bd0314ce125ce1f3a36a7977676f06e3b511cb5d68340ea4a685b97da8f6f

dev-python/toml/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">toml</remote-id>
10+
<remote-id type="github">uiri/toml</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>William Pearson</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

dev-python/toml/toml-0.10.2.ebuild

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..13} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Python Library for Tom's Obvious, Minimal Language"
11+
HOMEPAGE="https://github.com/uiri/toml https://pypi.org/project/toml/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.rst"
20+
21+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)