diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /dev-python/pyaes | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'dev-python/pyaes')
| -rw-r--r-- | dev-python/pyaes/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/pyaes/metadata.xml | 9 | ||||
| -rw-r--r-- | dev-python/pyaes/pyaes-1.6.1-r3.ebuild | 33 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/pyaes/Manifest b/dev-python/pyaes/Manifest new file mode 100644 index 000000000000..3e941c832d34 --- /dev/null +++ b/dev-python/pyaes/Manifest @@ -0,0 +1 @@ +DIST pyaes-1.6.1.tar.gz 28536 BLAKE2B fa7ca95ae181cd48e21ceaeab42f937c54bc9b90b1a337aaffd6317c8091f813b1fbd2abbc14a600a747829a0e94ac6bdd5624010a27f1c342bfef2390d7c8fb SHA512 00ce3babf72ea18b0de369860cd884058c7c6f3bd8b961c3ff591ef7d3dc0a69fabad5311f61c9f91d2f1a480c8512e34eeced5ec7145ed9f963bf91c5f8838a diff --git a/dev-python/pyaes/metadata.xml b/dev-python/pyaes/metadata.xml new file mode 100644 index 000000000000..d34971a915e9 --- /dev/null +++ b/dev-python/pyaes/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + </maintainer> + <stabilize-allarches /> + <origin>baldeagleos-repo</origin> +</pkgmetadata> diff --git a/dev-python/pyaes/pyaes-1.6.1-r3.ebuild b/dev-python/pyaes/pyaes-1.6.1-r3.ebuild new file mode 100644 index 000000000000..563f0b989031 --- /dev/null +++ b/dev-python/pyaes/pyaes-1.6.1-r3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{13..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Pure-Python Implementation of the AES block-cipher and common modes of operation" +HOMEPAGE="https://pypi.org/project/pyaes/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~m68k ~mips ppc ppc64 ~s390 ~sparc x86 ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + dev-python/pycryptodome[${PYTHON_USEDEP}] + ) +" + +python_test() { + local t fail= + for t in tests/test-*.py; do + einfo "${t}" + "${EPYTHON}" "${t}" || fail=1 + done + [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" +} |
