Skip to content

Commit 0bbdd5b

Browse files
committed
dev-python/ftfy: new package, add 6.1.3
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 9c5df40 commit 0bbdd5b

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -617,12 +617,12 @@ 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 1847 Ebuilds in total, 1836 of them have in total 1855 (42 different) licenses assigned.
620+
There are 1849 Ebuilds in total, 1838 of them have in total 1857 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1048|
625-
|Apache-2.0|419|
624+
|MIT|1049|
625+
|Apache-2.0|420|
626626
|GPL-3|121|
627627
|BSD|103|
628628
|LGPL-3|24|

dev-python/ftfy/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST ftfy-6.1.3.tar.gz 62661 BLAKE2B c6f60edd02b09850cb1ca7be741f26db34fa938f2e29d08a27241768152321753630dc1c64a92fdb4e0cb8901179d76ceaa42a7237e02fe89f9ab3e9f72b6966 SHA512 2c2a8ec537895f70183b39db80ba163053745afe9ffe9d9d51334debc29808c0fc48193edeca397d4e3a9566d885ac222b08f3b0472ff35b3450c882647cde2f
2+
EBUILD ftfy-6.1.3.ebuild 614 BLAKE2B d09074483465102313718dbb96991fbe425c1fff6112324c486b187af4da1cea9d5eba881cb2488413dbe063301cdb8c0ee598b5626308be9e39927c05e76004 SHA512 53cc809abca0327c4c7e8d147bd5366feb91cbf4be627fe949e91130106e39a8a5655ebde7d4faeacae2317d5329607049c08fd84cb05effb5207102c9e21ffc
3+
MISC metadata.xml 448 BLAKE2B 9e5361fcd6ed4c95f038fc635374b6928bb738efe49763ba00f19b980e9958a210df11dc937922c14222c16d6f96112a8eeff10c8b6fa90545e42edc2ce791e2 SHA512 94454cb570741256250ca055cb8ceee759024f573554f8de7ed57848dcd4a3c270f1ef3c241a053d202f86a790140eee3ca38de8ead41c43448d9fb34e4426a2

dev-python/ftfy/ftfy-6.1.3.ebuild

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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..12} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Fixes mojibake and other problems with Unicode, after the fact"
11+
HOMEPAGE=" https://pypi.org/project/ftfy/"
12+
13+
LICENSE="Apache-2.0"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]"
22+
src_prepare() {
23+
remove uneccesary include
24+
sed "7d" -i pyproject.toml || die
25+
eapply_user
26+
}
27+
28+
distutils_enable_tests pytest

dev-python/ftfy/metadata.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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">ftfy</remote-id>
10+
<maintainer status="unknown">
11+
<email>[email protected]</email>
12+
<name>Robyn Speer</name>
13+
</maintainer>
14+
</upstream>
15+
</pkgmetadata>

0 commit comments

Comments
 (0)