games-emulation/sdlmame: version bump

This commit is contained in:
2024-04-25 06:04:49 -07:00
parent f0bbe6f05e
commit 1b9b894205
6 changed files with 42 additions and 2 deletions

View File

@@ -0,0 +1 @@
DIST mnemonic-0.21.tar.gz 153687 BLAKE2B 085460886eed50ed13a6b1c0fcaf0ac07f590db9d5af6a44a3685ec21ed38acf60c9d7c630b473313dd44d3c2f503796be132d590c5199266b17425b5cf6080a SHA512 b541052fb48291cf4976fc750d7d502152ac5ef33e203edde9158d768ae826766626ae9979821f3123ea8cf2abec023415e7f8a6dc3fd69d15d9a0570ee3c83c

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<upstream>
<remote-id type="github">trezor/python-mnemonic</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
MyPN="python-mnemonic"
DESCRIPTION="Mnemonic code for generating deterministic keys, BIP39"
HOMEPAGE="https://github.com/trezor/python-mnemonic"
SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND=""
BDEPEND=""
S="${WORKDIR}/${MyPN}-${PV}"
distutils_enable_tests unittest
python_test() {
eunittest -s tests
}