-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Nowa Ammerlaan <andrewammerlaan@gentoo.org> Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de>
- Loading branch information
1 parent
2476e6e
commit 0851b80
Showing
8 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST asdf_standard-1.1.1.tar.gz 114823 BLAKE2B ae5f85be22fc895f44b77007a02a12a214de1e3a60da9728fe5eb8e56e32f220aa45898eeedef3942821b45d8a58e2f7d16850c2e1958ad02ce22df6bdb62ab1 SHA512 c1b5b40841a8ff6115d8642993a664b9646474d5e4c50ce78e15be9bf49704f598238c523a1b1d7ca18d5390b5166c97311231837ac4efa12179d2a92c905886 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{11..13} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Standards document describing ASDF, Advanced Scientific Data Format." | ||
HOMEPAGE=" | ||
https://github.com/asdf-format/asdf-standard/ | ||
https://pypi.org/project/asdf-standard/ | ||
" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
BDEPEND=" | ||
test? ( | ||
dev-python/pyyaml[${PYTHON_USEDEP}] | ||
>=dev-python/asdf-3.0.0[${PYTHON_USEDEP}] | ||
>=dev-python/packaging-16.0[${PYTHON_USEDEP}] | ||
) | ||
" | ||
|
||
distutils_enable_tests pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>sci-astronomy@gentoo.org</email> | ||
<name>Gentoo Astronomy Project</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="pypi">asdf-standard</remote-id> | ||
<remote-id type="github">asdf-format/asdf-standard</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST asdf_transform_schemas-0.5.0.tar.gz 109226 BLAKE2B 89ee5beb21d7d0ca8ba388bb55eab8cbde68a0b8922e9ce060c48a3659d68f070c65adf5847d86e295f31bc9b785abae0a68f71b5757581017a0c94d9d6f5d38 SHA512 29c803ee8a3b5e3526191c503ff15309aab8e7dcee3df16dc2032156f725dd672862540a25a48f217a644701208ba01c9085f3d5b67f9a8dc68d0a732cfbde8a |
26 changes: 26 additions & 0 deletions
26
dev-python/asdf-transform-schemas/asdf-transform-schemas-0.5.0.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{11..13} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="ASDF schemas for validating transform tags." | ||
HOMEPAGE=" | ||
https://github.com/asdf-format/asdf-transform-schemas/ | ||
https://pypi.org/project/asdf-transform-schemas/ | ||
" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
RESTRICT="test" # needs asdf-astropy | ||
|
||
RDEPEND=" | ||
>=dev-python/asdf-standard-1.1.0[${PYTHON_USEDEP}] | ||
" | ||
|
||
distutils_enable_tests pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>sci-astronomy@gentoo.org</email> | ||
<name>Gentoo Astronomy Project</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="pypi">asdf-transform-schemas</remote-id> | ||
<remote-id type="github">asdf-format/asdf-transform-schemas</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST asdf-2.14.3.tar.gz 489097 BLAKE2B 26e3da88f4b0ada5a995ff77fdb55a26aa9af1b53c4e90723b36080526ee218581d09295b169bddd998a4055d1b9818e793bfdafdc786a27f5ea87021e9f85e7 SHA512 125015a1d3a26034c8d483bebf609af02489d0710973828e443dea5cfa46cb33826078714b9ccbd385fcc92fd6b2d92253e80c32ca90565a48f45e4ff47b8655 | ||
DIST asdf-3.5.0.tar.gz 804561 BLAKE2B b500afe7c95ec4863279246cc233355ae1c120fb57dda3b9e663115ff05cce505b1110de2fb53278d4341ccd9fc99ec9f875cf0553302905640d02dc6d6a511e SHA512 e389b33ee5144596456c6f1ca376b1719343f7b58c00aedbd4fd983bb807c3cff3e5dd469b197ec9ee7b7e2739be4f01b72a6306a10617710438e3a947da3650 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Python library for the Advanced Scientific Data Format" | ||
HOMEPAGE="https://asdf.readthedocs.io/en/latest/" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND=" | ||
dev-python/asdf-standard[${PYTHON_USEDEP}] | ||
dev-python/asdf-transform-schemas[${PYTHON_USEDEP}] | ||
>=dev-python/jmespath-0.6.2[${PYTHON_USEDEP}] | ||
>=dev-python/numpy-1.22[${PYTHON_USEDEP}] | ||
>=dev-python/packaging-19[${PYTHON_USEDEP}] | ||
>=dev-python/pyyaml-5.4.1[${PYTHON_USEDEP}] | ||
>=dev-python/semantic-version-2.8[${PYTHON_USEDEP}] | ||
>=dev-python/attrs-22.1.0[${PYTHON_USEDEP}] | ||
" | ||
|
||
BDEPEND=" | ||
dev-python/setuptools-scm[${PYTHON_USEDEP}] | ||
test? ( | ||
>=dev-python/fsspec-2022.8.2[${PYTHON_USEDEP}] | ||
dev-python/requests[${PYTHON_USEDEP}] | ||
dev-python/aiohttp[${PYTHON_USEDEP}] | ||
>=dev-python/lz4-0.10[${PYTHON_USEDEP}] | ||
dev-python/psutil[${PYTHON_USEDEP}] | ||
>=dev-python/pytest-8[${PYTHON_USEDEP}] | ||
) | ||
" | ||
|
||
distutils_enable_tests pytest |