File: exclude-yaml-from-modules.patch

package info (click to toggle)
forensic-artifacts 20161022-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 572 kB
  • ctags: 189
  • sloc: python: 1,165; makefile: 50; sh: 47
file content (16 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: exclude definitions from setup.py installation
 These YAML files are now going into a separate binary package and do not need
 to come with the pybuild-generated packages.
Author: Sascha Steinbiss <satta@debian.org>
--- a/setup.py
+++ b/setup.py
@@ -125,9 +125,6 @@
     ],
     packages=find_packages('.', exclude=[u'tests', u'tests.*', u'tools']),
     package_dir={'artifacts': 'artifacts'},
-    data_files=[
-        ('share/artifacts', glob.glob(os.path.join('definitions', '*'))),
-    ],
     install_requires=[
         'PyYAML >= 3.11',
     ],