1
0
Fork 0

dev-python/markdown-captions: add 2.1.2

Bump Python as well.
This commit is contained in:
Ryan Fox 2022-08-05 14:30:16 -07:00
parent 001d3f19b9
commit 0b7def7d19
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
3 changed files with 31 additions and 3 deletions

View File

@ -1,4 +1,6 @@
DIST markdown-captions-2.1.1.tar.gz 2996 BLAKE2B 56202abc3aeb7a2a148cf8978b8b4dee66bf5b0dba7957c2077dbe8da50bd44f8057af372cca27b005f10da6c5529f8333dcae2a1c623bbf671047caf75b8f90 SHA512 1fc7504366ca992153c56aa375791b11c1c584a2ecf6f282ff191c262e6a656cee826e7aa47ce578e0bab20f40faad35db3d57f6521f646d6ed53b5b4a4d57c1
DIST markdown-captions-2.1.2.tar.gz 3031 BLAKE2B 5d4b7994b411d6506270eb9086f34897c5997c7dd061a6d7b15022d8974d1a48d7efeb8d7db9d4cfd9d214033c89207af44d6f705beefecac30be536a53abfe5 SHA512 3abe4cb7faae432d793cb5ac732a9a173935f4791188d5a1c8551490ce735c76a3f7fdd8b19d4c62527f63cf44928625d9545bd08c5d4fec56fd664ff2f40cc5
EBUILD markdown-captions-2.1.1.ebuild 575 BLAKE2B 336bb5cde91eaff36b8351e4d3f3691e79e4128aa6c8709d54e66e50eaa5e38de85b0ccd0ded4aee6f4502b0efb87f1f5afa386d3d27a9b099050f184dd08d57 SHA512 3bed2c1c438572a3b46d2f6cb7aad44aa4bca8ac2a73ffc9a88b02231bbf26ed8e3995c51f4f77e5419c73ac593c0d965e9c0b53f50c996b69fa42c6023d1f85
EBUILD markdown-captions-9999.ebuild 575 BLAKE2B 336bb5cde91eaff36b8351e4d3f3691e79e4128aa6c8709d54e66e50eaa5e38de85b0ccd0ded4aee6f4502b0efb87f1f5afa386d3d27a9b099050f184dd08d57 SHA512 3bed2c1c438572a3b46d2f6cb7aad44aa4bca8ac2a73ffc9a88b02231bbf26ed8e3995c51f4f77e5419c73ac593c0d965e9c0b53f50c996b69fa42c6023d1f85
EBUILD markdown-captions-2.1.2.ebuild 575 BLAKE2B 86744f1a342f0857610ffdf0c0112d8413b3c9929644384cb6f3e8e501a6f6e617a4efa2523490d66c46bdc07ae96fc96054b3871b665ae3a4ca9e1eaa7c2cf1 SHA512 018873ced37d46f58da65e249a35a35a4119ce866df6187b771d7e293d97205e4358149693ef8ed58f18496c65a3f854e1b6ec4201094c5d262defab8063c1d0
EBUILD markdown-captions-9999.ebuild 575 BLAKE2B 86744f1a342f0857610ffdf0c0112d8413b3c9929644384cb6f3e8e501a6f6e617a4efa2523490d66c46bdc07ae96fc96054b3871b665ae3a4ca9e1eaa7c2cf1 SHA512 018873ced37d46f58da65e249a35a35a4119ce866df6187b771d7e293d97205e4358149693ef8ed58f18496c65a3f854e1b6ec4201094c5d262defab8063c1d0
MISC metadata.xml 386 BLAKE2B fa1e92952402ef46b992de253dae4173cbd574814e6a94a74371da3452f164a1f7ac531f3178f7eb7d642ae3c811eaa7747727ea2a37762e7ec3ffd482a5a883 SHA512 a7bacd2f6b4faed67c87cda10a0232f09620ac6172fbbb8bee67601bf083c119fd4bbc97a25f43342d1ed25300d85a191bfcfb25df4b7b7f0372eda650605410

View File

@ -0,0 +1,26 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_SETUPTOOLS=bdepend
inherit distutils-r1
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/Evidlo/markdown_captions.git"
else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Image captions for python-markdown"
HOMEPAGE="https://github.com/Evidlo/markdown_captions"
LICENSE="GPL-3"
SLOT="0"
DEPEND=""
RDEPEND="dev-python/markdown"
BDEPEND=""

View File

@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_SETUPTOOLS=bdepend
inherit distutils-r1