summaryrefslogtreecommitdiff
path: root/dev-python/pefile
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-17 07:44:03 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-17 07:44:03 +0000
commitb20430a929939ff90b7fdc6fdd22c6aa8b73a315 (patch)
treecc0bb880273f85ee222ee144d26eaa1426d650f5 /dev-python/pefile
parent72d7b6801b0d487898486546a1a2e70130d48719 (diff)
downloadbaldeagleos-repo-b20430a929939ff90b7fdc6fdd22c6aa8b73a315.tar.gz
baldeagleos-repo-b20430a929939ff90b7fdc6fdd22c6aa8b73a315.tar.xz
baldeagleos-repo-b20430a929939ff90b7fdc6fdd22c6aa8b73a315.zip
Adding metadata
Diffstat (limited to 'dev-python/pefile')
-rw-r--r--dev-python/pefile/pefile-2022.5.30-r1.ebuild2
-rw-r--r--dev-python/pefile/pefile-2022.5.30.ebuild29
2 files changed, 1 insertions, 30 deletions
diff --git a/dev-python/pefile/pefile-2022.5.30-r1.ebuild b/dev-python/pefile/pefile-2022.5.30-r1.ebuild
index e7ae739b97de..3838dffbbff1 100644
--- a/dev-python/pefile/pefile-2022.5.30-r1.ebuild
+++ b/dev-python/pefile/pefile-2022.5.30-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/erocarrera/pefile/releases/download/v${PV}/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~x86"
+ KEYWORDS="amd64 ~arm64 x86"
fi
LICENSE="MIT"
diff --git a/dev-python/pefile/pefile-2022.5.30.ebuild b/dev-python/pefile/pefile-2022.5.30.ebuild
deleted file mode 100644
index e4932939cfdd..000000000000
--- a/dev-python/pefile/pefile-2022.5.30.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 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="Module to read and work with Portable Executable (PE) files"
-HOMEPAGE="https://github.com/erocarrera/pefile"
-
-if [[ ${PV} == 9999 ]] ; then
- EGIT_REPO_URI="https://github.com/erocarrera/pefile.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/erocarrera/pefile/releases/download/v${PV}/${P}.tar.gz"
- KEYWORDS="amd64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="${PYTHON_DEPS}
- dev-python/future[${PYTHON_USEDEP}]"
-
-# Unfortunately there is nothing we can test here. Upstream doesn't ship a test
-# suite inside the release files. The test fixtures in the source repo is
-# encrypted so that only their CI pipeline is able to run the tests.