Codebase list gjots2 / 6e69514
Add 80_adjust-lib-install-directory.patch Jeremy Bicha 5 years ago
2 changed file(s) with 24 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Jeremy Bicha <jbicha@debian.org>
1 Date: Mon, 24 Dec 2018 00:21:02 -0500
2 Subject: Adjust library install directory
3
4 needs to match what /usr/bin/gjots2 is looking for
5
6 ---
7 setup.py | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/setup.py b/setup.py
11 index 2ac4d23..4984de0 100755
12 --- a/setup.py
13 +++ b/setup.py
14 @@ -34,7 +34,7 @@ setup(
15 url = "http://bhepple.freeshell.org/gjots/",
16 scripts = ['bin/gjots2','bin/gjots2docbook','bin/docbook2gjots','bin/gjots2html','bin/gjots2html.py','bin/gjots2lpr','bin/gjots2emacs','bin/gjots2org','bin/org2gjots'],
17 data_files = [
18 - ( 'lib/gjots2',
19 + ( '/usr/lib/python2.7/dist-packages/gjots2',
20 [
21 'lib/__init__.py', 'lib/file.py', 'lib/general.py', 'lib/prefs.py', 'lib/common.py', 'lib/find.py', 'lib/gui.py', 'lib/prefs.py', 'lib/version.py', 'lib/printDialog.py', 'lib/sortDialog.py'
22 ]
33 50_fix-desktop-file.patch
44 60_dont-import-gconf.patch
55 70_dont-install-missing-xml-scripts.patch
6 80_adjust-lib-install-directory.patch