From 3a710bb2df68b4b514e1ad645b249ed1b0c6483c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 16 Jun 2025 04:12:42 +0200 Subject: [PATCH] dev-python/bottle: Bump to 0.13.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/bottle/Manifest | 1 + dev-python/bottle/bottle-0.13.4.ebuild | 34 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 dev-python/bottle/bottle-0.13.4.ebuild diff --git a/dev-python/bottle/Manifest b/dev-python/bottle/Manifest index cf75ae2730e9d..fd0cd843a05d1 100644 --- a/dev-python/bottle/Manifest +++ b/dev-python/bottle/Manifest @@ -1,2 +1,3 @@ DIST bottle-0.12.25.tar.gz 74231 BLAKE2B 2856d94e1525f21e272d70ca3101188ea65417179342d7b3e971c5d1a3be77265e4197e5d29764a5739adbd984883ed121524f29e6a5933b8681e2c34b511a57 SHA512 14b8ed1ffd58f9667d451872ccf73a6f4bf8f7ffb9329f55314f90c770630cfe3f9956f786bcc7fd5f67fde22d14961952969af405912ebe71f019ca6599c975 DIST bottle-0.13.3.tar.gz 98555 BLAKE2B c076de717641022441b6fd2a225c7dd9f68baf68cd19f0fb64639e38e14bcd187f6bb4a04bbade95252715bca5cccaed94de0809f6ab9c8c431f0c2db0e9abb9 SHA512 a84ec4851eaff4238b31fe9eeac02d694a94678e4f4cae9513599fb9062df4e8593bcd15fbdf8a6b020f9f67e75345de964da06a66a28708c066d1c8e94f5564 +DIST bottle-0.13.4.tar.gz 98717 BLAKE2B 79f7ed16692a07d6832ef524e2b6b54cb871d1d0e2e41181ff1ef0dbb5f6aaa92d11f0c5caeb55d9addf833765858560fbc58f780abccf07b84a1b4773909d27 SHA512 f26261e6974533a0183f33bd9b7ed5f5c0852d0d6c866c253c954045738a1d98a17a8d33679c7b4c5b5bd12486f6b5b608ff95f5efe2115f2679c1b22ab3d355 diff --git a/dev-python/bottle/bottle-0.13.4.ebuild b/dev-python/bottle/bottle-0.13.4.ebuild new file mode 100644 index 0000000000000..6edc02203f314 --- /dev/null +++ b/dev-python/bottle/bottle-0.13.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..14} pypy3_11 ) + +inherit distutils-r1 optfeature pypi + +DESCRIPTION="A fast and simple micro-framework for small web-applications" +HOMEPAGE=" + https://bottlepy.org/ + https://github.com/bottlepy/bottle/ + https://pypi.org/project/bottle/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + dev-python/mako[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +pkg_postinst() { + optfeature "Templating support" dev-python/mako +}