summaryrefslogtreecommitdiff
path: root/dev-python/pyaes
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pyaes
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pyaes')
-rw-r--r--dev-python/pyaes/Manifest1
-rw-r--r--dev-python/pyaes/metadata.xml12
-rw-r--r--dev-python/pyaes/pyaes-1.6.1-r3.ebuild33
3 files changed, 0 insertions, 46 deletions
diff --git a/dev-python/pyaes/Manifest b/dev-python/pyaes/Manifest
deleted file mode 100644
index 3e941c832d34..000000000000
--- a/dev-python/pyaes/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-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
deleted file mode 100644
index c68e015e9e9a..000000000000
--- a/dev-python/pyaes/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">ricmoo/pyaes</remote-id>
- <remote-id type="pypi">pyaes</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pyaes/pyaes-1.6.1-r3.ebuild b/dev-python/pyaes/pyaes-1.6.1-r3.ebuild
deleted file mode 100644
index 563f0b989031..000000000000
--- a/dev-python/pyaes/pyaes-1.6.1-r3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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}"
-}