From fcc831247dc4becab7949f175a83948e9e6f4ac5 Mon Sep 17 00:00:00 2001 From: Daniele Rondina Date: Sun, 14 Jun 2026 00:51:38 +0000 Subject: [PATCH] Bump dev-python/cryptography-49.0.0 --- dev-python/cryptography/Manifest | 2 + .../cryptography/cryptography-49.0.0.ebuild | 49 +++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 dev-python/cryptography/cryptography-49.0.0.ebuild diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest index 5711bd250..b805137c4 100644 --- a/dev-python/cryptography/Manifest +++ b/dev-python/cryptography/Manifest @@ -4,3 +4,5 @@ DIST cryptography-46.0.5-mark-rust-bundle.tar.xz 3918056 BLAKE2B 768b9a5217b9d59 DIST cryptography-46.0.5.tar.gz 750064 BLAKE2B 7ae24a245583daf64a01cfbb9269e9d5aca82929543957572bea56f9e295593e81f836c87bd32bcb7aaa58253b7a156401a1d29992b60e73fd5926016fbbb4cd SHA512 5bc5ea5b85c600504c46e2376a45cee749f41e2b4a6eb639b05d289370dcdc82b2ace423532f5591da16ca56ea32919e47ec154cb72bf7e1f5f3f923c744a185 DIST cryptography-46.0.7-mark-rust-bundle.tar.xz 3918076 BLAKE2B b731074937c946b8636134cab9ac6c4a160f5545d10e844594e8589eb2080a1242afffb3d87e8858dbece866e069e63a567978fb044c842a47b941e706522951 SHA512 076acea04be5a9365a3c5e1bd67b355e0e5d046bc408eeada147e800bfad5f769ad0d944250e0c5ed75d97bfcc2867b31d217c6a3a65c691da77a18bfee07d3a DIST cryptography-46.0.7.tar.gz 750652 BLAKE2B f7b929d9eafe32d76fd497823309f227895cef18684a9fd90e1740302fa12e039690d5425b4a7d2bd0fcf81322d456d9ee4c230157c7cdc1d109bc283d6191ef SHA512 9176c9d2a5b1930735acb63b97335cd4e3d514cfd66664a3f16ad895a92f155282098cae97c35df97c74dae61c88698f5f94f548c5172a7c1867480225eeff40 +DIST cryptography-49.0.0-mark-rust-bundle.tar.xz 4085628 BLAKE2B 0a5903db68b940a77f47fb3c222d78b7a52ff209e5622343846a71498f388c44d354467da2d64a3b49f19c8fbe55e9a1ff932c45968247a8462cc916b50ec128 SHA512 25dc7b4b956f963e4c40ce89078fc880dd77188b28b561bf84f877e73f0e367359b0fd2650b86abf16f663e2b20ebdd8d96d431c7d71147ed1cf927e4e059bde +DIST cryptography-49.0.0.tar.gz 854345 BLAKE2B 735d303659d101bacf967bb2388190052caf5f3f02d02487a0b49c21eb594b8d133be58411d98b73ee35fd50597ee872f716f2a4f9de391fcdd66d6b7292a205 SHA512 047ffa4073ed124bc6fe3459663853b50c55c6ed9e5604bd1709b7f17e72788f0e4eb5c533a174afbead40fc16a1a798600d29f4963b190867d9d9e50dea6af8 diff --git a/dev-python/cryptography/cryptography-49.0.0.ebuild b/dev-python/cryptography/cryptography-49.0.0.ebuild new file mode 100644 index 000000000..e66984590 --- /dev/null +++ b/dev-python/cryptography/cryptography-49.0.0.ebuild @@ -0,0 +1,49 @@ +# Distributed under the terms of the GNU General Public License v2 +# Autogen by MARK Devkit + +EAPI=7 +PYTHON_COMPAT=( python3+ ) +DISTUTILS_USE_PEP517="maturin" +ECARGO_BUNDLE_POSTFIX="mark-rust-bundle" +CARGO_OPTIONAL="yes" +inherit cargo distutils-r1 + +DESCRIPTION="cryptography is a package which provides cryptographic recipes and primitives to Python developers." +SRC_URI=" +https://files.pythonhosted.org/packages/1f/99/d1c90d6041656cc6ee229dc99cd67fd0cd5aec3c5f7d72fffc27cc750054/cryptography-49.0.0.tar.gz -> cryptography-49.0.0.tar.gz +mirror://macaroni/cryptography-49.0.0-mark-rust-bundle.tar.xz -> cryptography-49.0.0-mark-rust-bundle.tar.xz" +SLOT="0" +KEYWORDS="*" +IUSE="idna" +BDEPEND=" + >=dev-python/setuptools-rust-0.12.1[${PYTHON_USEDEP}] +" +RDEPEND=" + idna? ( >=dev-python/idna-2.1[${PYTHON_USEDEP}] ) + >=dev-python/cffi-1.11.3[${PYTHON_USEDEP}] + >=dev-python/six-1.4.1[${PYTHON_USEDEP}] + dev-python/ipaddress[${PYTHON_USEDEP}] +" +DEPEND="virtual/rust + + >=dev-python/cffi-1.11.3[${PYTHON_USEDEP}] + >=dev-python/six-1.4.1[${PYTHON_USEDEP}] +" +S="${WORKDIR}/cryptography-49.0.0" +src_unpack() { + if [[ ${CRYPTOGRAPHY_DONT_BUILD_RUST} ]] ; then + default + else + cargo_src_unpack + fi +} +python_install() { + distutils-r1_python_install + if [ -e "${D}$(python_get_sitedir)/tests" ] ; then + einfo "Removing $(python_get_sitedir)/tests directory..." + rm -r "${D}$(python_get_sitedir)"/tests || die + fi +} + + +# vim: filetype=ebuild