summaryrefslogtreecommitdiff
path: root/dev-python/parse_cmake/files
diff options
context:
space:
mode:
authorAlfred Wingate <parona@protonmail.com>2023-12-18 11:34:46 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-12-18 12:06:51 +0100
commit9a40f836f3dc4731eddb293359947f093c45279d (patch)
tree4947519c6e85ec5c5cc29cdd1edfcbc59e26ff36 /dev-python/parse_cmake/files
parentf0ae9d53ea66cd2a78a3001a7ea83fad2c09179e (diff)
downloadkde-9a40f836f3dc4731eddb293359947f093c45279d.tar.gz
kde-9a40f836f3dc4731eddb293359947f093c45279d.tar.bz2
kde-9a40f836f3dc4731eddb293359947f093c45279d.zip
dev-python/parse_cmake: PEP517, pypi, python3.12
Signed-off-by: Alfred Wingate <parona@protonmail.com> Closes: https://github.com/gentoo/kde/pull/958 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-python/parse_cmake/files')
-rw-r--r--dev-python/parse_cmake/files/parse_cmake-0.4.1-dont-install-tests.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-python/parse_cmake/files/parse_cmake-0.4.1-dont-install-tests.patch b/dev-python/parse_cmake/files/parse_cmake-0.4.1-dont-install-tests.patch
new file mode 100644
index 00000000000..91fbea3c56a
--- /dev/null
+++ b/dev-python/parse_cmake/files/parse_cmake-0.4.1-dont-install-tests.patch
@@ -0,0 +1,19 @@
+https://github.com/wjwwood/parse_cmake/commit/fcc77a5e104040ef074dec5b538e635b63e1dad1
+https://github.com/wjwwood/parse_cmake/pull/6
+
+From fcc77a5e104040ef074dec5b538e635b63e1dad1 Mon Sep 17 00:00:00 2001
+From: Timon Engelke <timonegk@users.noreply.github.com>
+Date: Tue, 1 Mar 2022 23:53:29 +0100
+Subject: [PATCH] Do not install tests folder (#6)
+
+--- a/setup.py
++++ b/setup.py
+@@ -7,7 +7,7 @@
+ author_email='itrotts@willowgarage.com, william@osrfoundation.org',
+ url='http://github.com/wjwwood/parse_cmake',
+ description='Parser for CMakeLists.txt files',
+- packages=find_packages(),
++ packages=find_packages(exclude=['tests']),
+ install_requires=['pyPEG2'],
+ tests_require=['nose', 'flake8'],
+ test_suite='nose.collector',