dev-python/ulid-transform: new package, add 0.6.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-04-07 08:49:33 +02:00
committed by Andreas Billmeier
parent d1d552bbfc
commit bcc7935cfc
4 changed files with 52 additions and 2 deletions

View File

@@ -576,11 +576,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 1817 Ebuilds in total, 1806 of them have in total 1822 (36 different) licenses assigned.
There are 1818 Ebuilds in total, 1807 of them have in total 1823 (36 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1061|
|MIT|1062|
|Apache-2.0|393|
|GPL-3|116|
|BSD|96|

View File

@@ -0,0 +1,3 @@
DIST ulid_transform-0.6.0.tar.gz 14180 BLAKE2B b95871f7dd14ded468ac7770e0daa4ad4b368328c72e4b5b7e09a556aae2db4c9911a1b68580ea2ad5d1d913d0510466c5c84ac3db0b9bbe21b4c79382f70c6c SHA512 eb2b1d1128cecfd7c6970f460ba4be8d6184ca9317921146f3cf6293a53c7c501b8ce7ec08bb609a7a44247292c0e97bff692f769b6968740394fc7f53440020
EBUILD ulid-transform-0.6.0.ebuild 624 BLAKE2B 0abea7efc5603a41a4a18985838e871d913e7a2d4cd1b9b40ecae226b406bdf9a369751417cf4e4580785aca623f0ef01115a0c79152508b0b92890c66765032 SHA512 5cea666dbd2789bdd2f8219340d477a55d475861366a94d4bf4ac856f4774d064e8d85eadfaeb754a6a5d94ea78bd4c4a177aee470fa77a1eec1dce92ca1e2f1
MISC metadata.xml 519 BLAKE2B 2e9c970aa16f2d123a1dad277257d0c7034f89547ff9c3c263b2c6f4cb3688d6d351facd5bd1802685b16a1d1283ff4b30620d6f38f822939e2fa03fa69e4a69 SHA512 35e848b0ce8aeac9f8762774744f6e1dc28c08a69ef066b09dd47a2935a0d2a2f2b23280feb2855c75cf06834bebee0620366d8aa1f5285efa66497ac511b4bd

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">ulid-transform</remote-id>
<remote-id type="github">bdraco/ulid-transform</remote-id>
<maintainer status="unknown">
<email>nick@koston.org</email>
<name>J. Nick Koston</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,31 @@
# 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Create and transform ULIDs"
HOMEPAGE="https://github.com/bdraco/ulid-transform https://pypi.org/project/ulid-transform/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest