diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 38ddf4157..a4529538c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,8 @@ 2019-12-05 * bump pyhomematic-0.1.62 * bump georss-generic-client-0.3 and georss-client-0.10 + * needed pytest-5.3.1 already is in main repo + * certifi-2019.9.11 is in main repo, dupe removed 2019-12-05 * bump eternalegypt-0.0.11 diff --git a/dev-python/certifi/Manifest b/dev-python/certifi/Manifest index 69c8ef67b..2af93c2b8 100644 --- a/dev-python/certifi/Manifest +++ b/dev-python/certifi/Manifest @@ -7,5 +7,4 @@ DIST certifi-2019.9.11.tar.gz 154855 BLAKE2B 1a2e39b44e2285bcf2dfc0104873fc2c500 EBUILD certifi-2019.3.9.ebuild 1405 BLAKE2B e997705506b9edff3c6394236572495c57b55ef86cca526bb1580577727a59043f34005bfe3aa9b74214047246361b8756f94b6bfce8af5f30894b8dc2b395ff SHA512 3f61d854c056dc85dbc8af4002b3d13865be332c5edfa9995c9981bce2f5f77e0ae0d9816e974ca76bc7296f8394c34fb483716cfaaca292b9a7b645af8d07e5 EBUILD certifi-2019.6.16.ebuild 1405 BLAKE2B e997705506b9edff3c6394236572495c57b55ef86cca526bb1580577727a59043f34005bfe3aa9b74214047246361b8756f94b6bfce8af5f30894b8dc2b395ff SHA512 3f61d854c056dc85dbc8af4002b3d13865be332c5edfa9995c9981bce2f5f77e0ae0d9816e974ca76bc7296f8394c34fb483716cfaaca292b9a7b645af8d07e5 EBUILD certifi-2019.9.11-r1.ebuild 1382 BLAKE2B 4cdac404a73a640668adc18406e50383cf959b04524eb6eea3c8197636f3c6723ac5ad50dc13c7a85f7c6e0b0be0c1f67787011e44c03f2cb8dc8e6eede8dcc9 SHA512 67d18b440cbe8506649566a82647b010e7375aa71d0263032ec31c0875eaf96845ae29d313bf724f2b8421adbd10334e4ada3c028bb6f2b4850b2113bd38ff0f -EBUILD certifi-2019.9.11.ebuild 1405 BLAKE2B e997705506b9edff3c6394236572495c57b55ef86cca526bb1580577727a59043f34005bfe3aa9b74214047246361b8756f94b6bfce8af5f30894b8dc2b395ff SHA512 3f61d854c056dc85dbc8af4002b3d13865be332c5edfa9995c9981bce2f5f77e0ae0d9816e974ca76bc7296f8394c34fb483716cfaaca292b9a7b645af8d07e5 MISC metadata.xml 320 BLAKE2B ba5c3c1018c5cba293969a523ab6c388f5bc0d0cfdfc69a4b143f1c966aad036df449bb091eacdeae2335a6bdc722da85882caad2a447bf87b600da2ed7c5309 SHA512 0e99564887f0a0b314056b2e1f4b6e3afcaf908de6824a2cc87deab9d1832566e97b8ba88cc7d2bdc5d11e7f1c8532830fc59602efd8c2f1a6061c0ad4853fdd diff --git a/dev-python/certifi/certifi-2019.9.11.ebuild b/dev-python/certifi/certifi-2019.9.11.ebuild deleted file mode 100644 index 508cd9d7f..000000000 --- a/dev-python/certifi/certifi-2019.9.11.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 ) - -inherit distutils-r1 prefix readme.gentoo-r1 - -DESCRIPTION="Python package for providing Mozilla's CA Bundle" -HOMEPAGE="https://certifi.io/ https://pypi.org/project/certifi" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -# Do not drop this patch -- this will affect system's security -PATCHES=( "${FILESDIR}"/$P-use-system-cacerts.patch ) - -RDEPEND="app-misc/ca-certificates" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_prepare_all() { - distutils-r1_python_prepare_all - - eprefixify certifi/core.py -} - -python_install_all() { - distutils-r1_python_install_all - - local DOC_CONTENTS=" - In Gentoo, we don't use certifi's bundled CA certificates. - Instead we remove bundled cacert.pem and patch certifi - to return system's CA certificates. - " - readme.gentoo_create_doc - - # Precaution -- nothing should use bundled CA certificates - find "${D}" -name 'cacert.pem' -delete || die "Failed to delete bundled CA certificates" -}