summaryrefslogtreecommitdiff
path: root/dev-python/parse_cmake/files/parse_cmake-0.4.1-dont-install-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/parse_cmake/files/parse_cmake-0.4.1-dont-install-tests.patch')
-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',