commit: b85bfa189e9292d410488299899bcb6b8315ff3e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 10:26:45 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 10:26:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b85bfa18
dev-python/Frozen-Flask: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/Frozen-Flask/Frozen-Flask-1.0.1.ebuild | 31 --------------------
dev-python/Frozen-Flask/Manifest | 1 -
.../files/Frozen-Flask-1.0.1-hatchling.patch | 34 ----------------------
3 files changed, 66 deletions(-)
diff --git a/dev-python/Frozen-Flask/Frozen-Flask-1.0.1.ebuild
b/dev-python/Frozen-Flask/Frozen-Flask-1.0.1.ebuild
deleted file mode 100644
index e7ff91714029..000000000000
--- a/dev-python/Frozen-Flask/Frozen-Flask-1.0.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Freezes a Flask application into a set of static files"
-HOMEPAGE="
- https://github.com/Frozen-Flask/Frozen-Flask/
- https://pypi.org/project/Frozen-Flask/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="
- >=dev-python/flask-2.0.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_sphinx docs \
- dev-python/pallets-sphinx-themes
-distutils_enable_tests pytest
-
-PATCHES=(
- "${FILESDIR}/${P}-hatchling.patch"
-)
diff --git a/dev-python/Frozen-Flask/Manifest b/dev-python/Frozen-Flask/Manifest
index 69671f2ab743..1519248b5066 100644
--- a/dev-python/Frozen-Flask/Manifest
+++ b/dev-python/Frozen-Flask/Manifest
@@ -1,2 +1 @@
-DIST frozen_flask-1.0.1.tar.gz 101449 BLAKE2B
5127e7d6485b5a23025dd31ccad6346c77bcbdb0c537806f014bf9b499c0aaf13e56a406594d86f457b290fad25e938beb4db473ba7c8f1afefd6d2471a8b03c
SHA512
b4e1cfebbb374fa8e863436e0ed637e1a57432fb2a2e719536161fea359320384b51238dae1cf3fca0e10d41c9bc7cd84fba4c6978de45c5cfcdba1a494aaea2
DIST frozen_flask-1.0.2.tar.gz 101832 BLAKE2B
e07bc483ed9a927fff526b3b3009ef9c42b2a21bca33207c0cfad3b252c80eaf3d874e2a5ee888342136d3294767ce296b2a61d1e093d020cdb4a92e996c4772
SHA512
f708346bcbfefaab234f095212aea4df6b942ffd3226ed3419299b11f7757eccc6c4235426d488cfa693b8b927a23705788bc2aa44a798d289cc116360f14337
diff --git a/dev-python/Frozen-Flask/files/Frozen-Flask-1.0.1-hatchling.patch
b/dev-python/Frozen-Flask/files/Frozen-Flask-1.0.1-hatchling.patch
deleted file mode 100644
index f2c433b0b84f..000000000000
--- a/dev-python/Frozen-Flask/files/Frozen-Flask-1.0.1-hatchling.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 8b2bd9f75deef895e3c9f076419b22a7b1fa63aa Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <[email protected]>
-Date: Thu, 14 Dec 2023 15:54:39 +0100
-Subject: [PATCH] Fix finding packages witch hatchling >= 1.19.0
-
-Explicitly specify the package name to install, in order to fix
-compatibility with `hatchling >= 1.19.0`. Starting with this version
-(though Frozen-Flask is affected since 1.20.0, due to a bug
-in hatchling), it is necessary to explicitly select packages if they
-do not
-
-As of hatchling >= 1.19.0, it is necessary to explicitly specify
-`packages` to use if they do not fit the default heuristics (i.e. are
-disjoint from the project name).
-
-Since the package is now specified explicitly, the `exclude` rules are
-no longer necessary.
----
- pyproject.toml | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index 2fdfefc..fcf6c1d 100644
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -52,7 +52,7 @@ path = 'flask_frozen/__init__.py'
- exclude = ['.*']
-
- [tool.hatch.build.targets.wheel]
--exclude = ['docs', 'tests']
-+packages = ['flask_frozen']
-
- [tool.hatch.envs.doc]
- features = ['doc']