diff options
| author | jvoisin | 2012-12-08 02:02:25 +0100 |
|---|---|---|
| committer | jvoisin | 2012-12-13 14:24:01 +0100 |
| commit | cbf8a2a65928694202e19b6bcf56ec84bcbf613c (patch) | |
| tree | e106475b0d5c003505336b5ae6416e4508bb768b /MAT | |
| parent | 67d5c1fa6b9ab6e1e7328ee57b15d8e46526d72a (diff) | |
Reorganize source tree and files installation location, cleanup setup.py (Closes: #689409)
Diffstat (limited to '')
| -rw-r--r-- | MAT/FORMATS (renamed from lib/FORMATS) | 0 | ||||
| -rw-r--r-- | MAT/__init__.py (renamed from lib/__init__.py) | 0 | ||||
| -rw-r--r-- | MAT/archive.py (renamed from lib/archive.py) | 0 | ||||
| -rw-r--r-- | MAT/audio.py (renamed from lib/audio.py) | 0 | ||||
| -rw-r--r-- | MAT/bencode/__init__.py (renamed from lib/bencode/__init__.py) | 0 | ||||
| -rw-r--r-- | MAT/bencode/bencode.py (renamed from lib/bencode/bencode.py) | 0 | ||||
| -rw-r--r-- | MAT/exiftool.py (renamed from lib/exiftool.py) | 0 | ||||
| -rw-r--r-- | MAT/hachoir_editor/__init__.py (renamed from lib/hachoir_editor/__init__.py) | 0 | ||||
| -rw-r--r-- | MAT/hachoir_editor/field.py (renamed from lib/hachoir_editor/field.py) | 0 | ||||
| -rw-r--r-- | MAT/hachoir_editor/fieldset.py (renamed from lib/hachoir_editor/fieldset.py) | 0 | ||||
| -rw-r--r-- | MAT/hachoir_editor/typed_field.py (renamed from lib/hachoir_editor/typed_field.py) | 0 | ||||
| -rw-r--r-- | MAT/images.py (renamed from lib/images.py) | 0 | ||||
| -rw-r--r-- | MAT/mat.py (renamed from lib/mat.py) | 2 | ||||
| -rw-r--r-- | MAT/misc.py (renamed from lib/misc.py) | 0 | ||||
| -rw-r--r-- | MAT/office.py (renamed from lib/office.py) | 0 | ||||
| -rw-r--r-- | MAT/parser.py (renamed from lib/parser.py) | 0 | ||||
| -rw-r--r-- | MAT/strippers.py (renamed from lib/strippers.py) | 0 | ||||
| -rw-r--r-- | MAT/tarfile/__init__.py (renamed from lib/tarfile/__init__.py) | 0 | ||||
| -rw-r--r-- | MAT/tarfile/tarfile.py (renamed from lib/tarfile/tarfile.py) | 0 |
19 files changed, 2 insertions, 0 deletions
diff --git a/lib/FORMATS b/MAT/FORMATS index c497524..c497524 100644 --- a/lib/FORMATS +++ b/MAT/FORMATS | |||
diff --git a/lib/__init__.py b/MAT/__init__.py index 8b13789..8b13789 100644 --- a/lib/__init__.py +++ b/MAT/__init__.py | |||
diff --git a/lib/archive.py b/MAT/archive.py index a749b29..a749b29 100644 --- a/lib/archive.py +++ b/MAT/archive.py | |||
diff --git a/lib/audio.py b/MAT/audio.py index ed849ee..ed849ee 100644 --- a/lib/audio.py +++ b/MAT/audio.py | |||
diff --git a/lib/bencode/__init__.py b/MAT/bencode/__init__.py index 8b13789..8b13789 100644 --- a/lib/bencode/__init__.py +++ b/MAT/bencode/__init__.py | |||
diff --git a/lib/bencode/bencode.py b/MAT/bencode/bencode.py index 739ffe5..739ffe5 100644 --- a/lib/bencode/bencode.py +++ b/MAT/bencode/bencode.py | |||
diff --git a/lib/exiftool.py b/MAT/exiftool.py index 758a094..758a094 100644 --- a/lib/exiftool.py +++ b/MAT/exiftool.py | |||
diff --git a/lib/hachoir_editor/__init__.py b/MAT/hachoir_editor/__init__.py index 1835676..1835676 100644 --- a/lib/hachoir_editor/__init__.py +++ b/MAT/hachoir_editor/__init__.py | |||
diff --git a/lib/hachoir_editor/field.py b/MAT/hachoir_editor/field.py index 6b1efe3..6b1efe3 100644 --- a/lib/hachoir_editor/field.py +++ b/MAT/hachoir_editor/field.py | |||
diff --git a/lib/hachoir_editor/fieldset.py b/MAT/hachoir_editor/fieldset.py index b7c9b07..b7c9b07 100644 --- a/lib/hachoir_editor/fieldset.py +++ b/MAT/hachoir_editor/fieldset.py | |||
diff --git a/lib/hachoir_editor/typed_field.py b/MAT/hachoir_editor/typed_field.py index 0f0427b..0f0427b 100644 --- a/lib/hachoir_editor/typed_field.py +++ b/MAT/hachoir_editor/typed_field.py | |||
diff --git a/lib/images.py b/MAT/images.py index 236d566..236d566 100644 --- a/lib/images.py +++ b/MAT/images.py | |||
| @@ -41,6 +41,8 @@ def get_sharedir(filename): | |||
| 41 | return os.path.join('/usr/local/share/mat/', filename) | 41 | return os.path.join('/usr/local/share/mat/', filename) |
| 42 | elif os.path.exists(os.path.join('/usr/share/mat/', filename)): | 42 | elif os.path.exists(os.path.join('/usr/share/mat/', filename)): |
| 43 | return os.path.join('/usr/share/mat', filename) | 43 | return os.path.join('/usr/share/mat', filename) |
| 44 | elif os.path.exists(os.path.join('/usr/local/share/pixmaps/', filename)): | ||
| 45 | return os.path.join('/usr/local/share/pixmaps/', filename) | ||
| 44 | 46 | ||
| 45 | 47 | ||
| 46 | class XMLParser(xml.sax.handler.ContentHandler): | 48 | class XMLParser(xml.sax.handler.ContentHandler): |
diff --git a/lib/misc.py b/MAT/misc.py index d084861..d084861 100644 --- a/lib/misc.py +++ b/MAT/misc.py | |||
diff --git a/lib/office.py b/MAT/office.py index d14125b..d14125b 100644 --- a/lib/office.py +++ b/MAT/office.py | |||
diff --git a/lib/parser.py b/MAT/parser.py index d2eaf9c..d2eaf9c 100644 --- a/lib/parser.py +++ b/MAT/parser.py | |||
diff --git a/lib/strippers.py b/MAT/strippers.py index 61030a7..61030a7 100644 --- a/lib/strippers.py +++ b/MAT/strippers.py | |||
diff --git a/lib/tarfile/__init__.py b/MAT/tarfile/__init__.py index 8b13789..8b13789 100644 --- a/lib/tarfile/__init__.py +++ b/MAT/tarfile/__init__.py | |||
diff --git a/lib/tarfile/tarfile.py b/MAT/tarfile/tarfile.py index 6978eb1..6978eb1 100644 --- a/lib/tarfile/tarfile.py +++ b/MAT/tarfile/tarfile.py | |||
