Skip to content

Commit 8c01f2f

Browse files
committed
dev-python/pybase64: new package, add 1.3.2
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3361 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 4df050a commit 8c01f2f

File tree

4 files changed

+41
-2
lines changed

4 files changed

+41
-2
lines changed

README.md

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

607607
## Licenses
608608
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.
609-
There are 1846 Ebuilds in total, 1835 of them have in total 1858 (42 different) licenses assigned.
609+
There are 1847 Ebuilds in total, 1836 of them have in total 1859 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
@@ -616,9 +616,9 @@ There are 1846 Ebuilds in total, 1835 of them have in total 1858 (42 different)
616616
|GPL-3|107|
617617
|LGPL-3|25|
618618
|GPL-2|23|
619+
|BSD-2|14|
619620
|GPL-3+|14|
620621
|LGPL-3+|14|
621-
|BSD-2|13|
622622
|all-rights-reserved|13|
623623
|Unlicense|9|
624624
|PSF-2|8|

dev-python/pybase64/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST pybase64-1.3.2.tar.gz 129277 BLAKE2B 52e6c545e3ef28215aabcde3794022d492a157ef14e3c3d033ee86540079058ed7094b483322f03ae24b006d3edfa996a91ec2ba6c0484addea50efd9079cff2 SHA512 d33e0212b46101d773624de912d671fdc1eaa6f7527d33f3c67ba5078ba02f0b68c981199e8a474788b0006f36bd7d798975eb586fdea95c306a45f257cb5459
2+
EBUILD pybase64-1.3.2.ebuild 522 BLAKE2B 0f3bc98829a32a44cb292c323356aece52d91ad23d794ba88a73524a8e336a96779ca62d7b8c2d3e30286da8061a1b256e49081aa0a3dc3839a8af3e48cc7c29 SHA512 a95ef6c0609bd69c23609e24b97948b1d3dfa1bc92407260790c9a2633338114ec6af59137c3c8eb7d0020b5744ff9d34296a584534bb68e8f987f2faea843b9
3+
MISC metadata.xml 384 BLAKE2B 64edc5c0cfaf4454a5525a57ac5995e5c76034e7849ac27dbf3d19034b4dd7c21cf297f1c1f07c4e1341632debbe48b540387ae1b459610c3ea62f11e471f0b5 SHA512 707d321e996e21b7fac9e6f8fcecca9fac3bef447fc512ca5abb23adf15a68e6f3bb0da673e82fbf00da7f424ae796700e61909a73afb6669104fc9b22501808

dev-python/pybase64/metadata.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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">pybase64</remote-id>
10+
<remote-id type="github">mayeut/pybase64</remote-id>
11+
</upstream>
12+
</pkgmetadata>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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="Fast Base64 implementation"
11+
HOMEPAGE="https://github.com/mayeut/pybase64 https://pypi.org/project/pybase64"
12+
13+
LICENSE="BSD-2"
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_sphinx doc \
22+
dev-python/furo
23+
24+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)