diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-12-19 00:50:47 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-12-19 00:50:47 +0000 |
| commit | bcc6560e8797a12125f07484ee14e28eaeb7aad6 (patch) | |
| tree | a6ed791e1a855e270db223a3fd0df2223fa04e2f /dev-python | |
| parent | 5fff304c723371cacda6891bc62b5a505de7f39a (diff) | |
| download | baldeagleos-repo-bcc6560e8797a12125f07484ee14e28eaeb7aad6.tar.gz baldeagleos-repo-bcc6560e8797a12125f07484ee14e28eaeb7aad6.tar.xz baldeagleos-repo-bcc6560e8797a12125f07484ee14e28eaeb7aad6.zip | |
Adding metadata
Diffstat (limited to 'dev-python')
| -rw-r--r-- | dev-python/bitarray/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/bitarray/bitarray-2.5.1.ebuild | 19 | ||||
| -rw-r--r-- | dev-python/bitarray/bitarray-2.6.0.ebuild | 17 | ||||
| -rw-r--r-- | dev-python/bitarray/metadata.xml | 30 | ||||
| -rw-r--r-- | dev-python/python-zeroconf/metadata.xml | 1 |
5 files changed, 28 insertions, 40 deletions
diff --git a/dev-python/bitarray/Manifest b/dev-python/bitarray/Manifest index cb67a620c3de..b3b4b2be7db3 100644 --- a/dev-python/bitarray/Manifest +++ b/dev-python/bitarray/Manifest @@ -1,2 +1 @@ -DIST bitarray-2.5.1.tar.gz 102533 BLAKE2B 655bf2f01d99a60efb84115190397f24b8a9a907f68270a7b310b2f20685616c69c41995a4090c8f4643b844da71045f3bee4e0d48aab6230b4aff04f045a3a6 SHA512 76efa732bb33d34b5b990958ac03d0038e29677808e64c0c6585661ff1d7f6a9511c9337a7aa3adb119ac68dcc676df49b7765a7e38cdab90d8e68af3b83380d DIST bitarray-2.6.0.tar.gz 102780 BLAKE2B aaabaa2e59f54970087224a569e793705d8753901b0fc93e9a40a0ae2466940768e8f547fe25b32c0194893bf5baa77851bcf1608d3f18d9b1d5c11f70579dec SHA512 c4deeee54af884dc9200ffe80a7788db64478383f1210ab7e3aa2adf94809d2e38ae817bf11611f49373b12ebfe23cbe5287786da08475cf9761fd8345c554d7 diff --git a/dev-python/bitarray/bitarray-2.5.1.ebuild b/dev-python/bitarray/bitarray-2.5.1.ebuild deleted file mode 100644 index 158b4bd4b6bf..000000000000 --- a/dev-python/bitarray/bitarray-2.5.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2020-2022 Liguros Authors -# Distributed under the terms of the GNU General Public License v2 -EAPI=8 - -PYTHON_COMPAT=( python3_{7,8,9,10,11} ) - -inherit distutils-r1 - -DESCRIPTION="efficient arrays of booleans -- C extension" -HOMEPAGE="https://github.com/ilanschnell/bitarray https://pypi.org/project/bitarray/" -SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="PSF-2" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~amd64-fbsd" - -python_test() { - "${PYTHON}" ${PN}/test_${PN}.py || die "Tests fail with ${EPYTHON}" -} diff --git a/dev-python/bitarray/bitarray-2.6.0.ebuild b/dev-python/bitarray/bitarray-2.6.0.ebuild index 158b4bd4b6bf..2359aee338bd 100644 --- a/dev-python/bitarray/bitarray-2.6.0.ebuild +++ b/dev-python/bitarray/bitarray-2.6.0.ebuild @@ -1,19 +1,24 @@ -# Copyright 2020-2022 Liguros Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 + EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{7,8,9,10,11} ) inherit distutils-r1 -DESCRIPTION="efficient arrays of booleans -- C extension" -HOMEPAGE="https://github.com/ilanschnell/bitarray https://pypi.org/project/bitarray/" -SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz" +DESCRIPTION="Efficient arrays of booleans -- C extension" +HOMEPAGE=" + https://github.com/ilanschnell/bitarray/ + https://pypi.org/project/bitarray/ +" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="PSF-2" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~amd64-fbsd" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" python_test() { - "${PYTHON}" ${PN}/test_${PN}.py || die "Tests fail with ${EPYTHON}" + "${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}" } diff --git a/dev-python/bitarray/metadata.xml b/dev-python/bitarray/metadata.xml index 8c13774b89aa..4a2d7011a660 100644 --- a/dev-python/bitarray/metadata.xml +++ b/dev-python/bitarray/metadata.xml @@ -2,20 +2,24 @@ <!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> <pkgmetadata> <maintainer type="project"> - <email>dev@liguros.net</email> - <name>Development</name> + <email>sci@gentoo.org</email> + <name>Gentoo Science Project</name> + </maintainer> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> </maintainer> <longdescription> -This module provides an object type which efficiently represents an array of -booleans. Bitarrays are sequence types and behave very much like usual lists. -Eight bits are represented by one byte in a contiguous block of memory. The -user can select between two representations; little-endian and big-endian. -Most of the functionality is implemented in C. Methods for accessing the -machine representation are provided. This can be useful when bit level access -to binary files is required, such as portable bitmap image files (.pbm). Also, -when dealing with compressed data which uses variable bit length encoding, -you may find this module useful. -</longdescription> + This module provides an object type which efficiently represents an array of + booleans. Bitarrays are sequence types and behave very much like usual lists. + Eight bits are represented by one byte in a contiguous block of memory. The + user can select between two representations; little-endian and big-endian. + Most of the functionality is implemented in C. Methods for accessing the + machine representation are provided. This can be useful when bit level access + to binary files is required, such as portable bitmap image files (.pbm). Also, + when dealing with compressed data which uses variable bit length encoding, + you may find this module useful. + </longdescription> - <origin>ports</origin> + <origin>gentoo-staging</origin> </pkgmetadata>
\ No newline at end of file diff --git a/dev-python/python-zeroconf/metadata.xml b/dev-python/python-zeroconf/metadata.xml index ea8988e8af6a..853174b8f2ab 100644 --- a/dev-python/python-zeroconf/metadata.xml +++ b/dev-python/python-zeroconf/metadata.xml @@ -7,5 +7,4 @@ </maintainer> <origin>gentoo-staging</origin> - <stabilize-allarches/> </pkgmetadata>
\ No newline at end of file |
