Fixed the "missing" values to mention python3

This commit is contained in:
Jean-Francois Dockes 2019-02-15 09:48:41 +01:00
parent 7aa73ca369
commit 8a97edc722
12 changed files with 15 additions and 13 deletions

View File

@ -13,12 +13,14 @@ Build-Depends: autotools-dev,
libxslt1-dev, libxslt1-dev,
libz-dev, libz-dev,
python-dev (>= 2.6.6-3~), python-dev (>= 2.6.6-3~),
python-setuptools,
python3-all-dev, python3-all-dev,
python3-setuptools,
qt5-default, qt5-default,
qt5-qmake, qt5-qmake,
libqt5webkit5-dev, libqt5webkit5-dev,
qtbase5-dev qtbase5-dev
X-Python-Version: >= 3.4 X-Python3-Version: >= 3.4
Vcs-Git: https://anonscm.debian.org/cgit/collab-maint/recoll.git Vcs-Git: https://anonscm.debian.org/cgit/collab-maint/recoll.git
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/recoll.git Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/recoll.git
Homepage: http://www.lesbonscomptes.com/recoll Homepage: http://www.lesbonscomptes.com/recoll

View File

@ -14,7 +14,7 @@ import rclexecm
try: try:
from py7zlib import Archive7z from py7zlib import Archive7z
except: except:
print("RECFILTERROR HELPERNOTFOUND python:py7zlib") print("RECFILTERROR HELPERNOTFOUND python3:py7zlib")
sys.exit(1); sys.exit(1);
try: try:

View File

@ -15,7 +15,7 @@ try:
from mutagen import File from mutagen import File
from mutagen.id3 import ID3TimeStamp from mutagen.id3 import ID3TimeStamp
except: except:
print("RECFILTERROR HELPERNOTFOUND python:mutagen") print("RECFILTERROR HELPERNOTFOUND python3:mutagen")
sys.exit(1); sys.exit(1);

View File

@ -37,7 +37,7 @@ except:
try: try:
from recollchm import chm,chmlib from recollchm import chm,chmlib
except: except:
print("RECFILTERROR HELPERNOTFOUND python:chm") print("RECFILTERROR HELPERNOTFOUND python3:chm")
sys.exit(1); sys.exit(1);
# Small helper routines # Small helper routines

View File

@ -16,7 +16,7 @@ sys.path.append(sys.path[0]+"/recollepub.zip")
try: try:
import epub import epub
except: except:
print("RECFILTERROR HELPERNOTFOUND python:epub") print("RECFILTERROR HELPERNOTFOUND python3:epub")
sys.exit(1); sys.exit(1);
class rclEPUB: class rclEPUB:

View File

@ -13,7 +13,7 @@ sys.path.append(sys.path[0]+"/recollepub.zip")
try: try:
import epub import epub
except: except:
print("RECFILTERROR HELPERNOTFOUND python:epub") print("RECFILTERROR HELPERNOTFOUND python3:epub")
sys.exit(1); sys.exit(1);
class EPUBConcatExtractor(RclBaseHandler): class EPUBConcatExtractor(RclBaseHandler):

View File

@ -28,8 +28,8 @@ if usemodule != "internal":
import vobject import vobject
usemodule = "vobject" usemodule = "vobject"
except: except:
print("RECFILTERROR HELPERNOTFOUND python:icalendar") print("RECFILTERROR HELPERNOTFOUND python3:icalendar")
print("RECFILTERROR HELPERNOTFOUND python:vobject") print("RECFILTERROR HELPERNOTFOUND python3:vobject")
sys.exit(1); sys.exit(1);

View File

@ -17,7 +17,7 @@ from rclbasehandler import RclBaseHandler
try: try:
import pyexiv2 import pyexiv2
except: except:
print("RECFILTERROR HELPERNOTFOUND python:pyexiv2") print("RECFILTERROR HELPERNOTFOUND python3:pyexiv2")
sys.exit(1); sys.exit(1);
khexre = re.compile('.*\.0[xX][0-9a-fA-F]+$') khexre = re.compile('.*\.0[xX][0-9a-fA-F]+$')

View File

@ -20,7 +20,7 @@ except:
try: try:
import rclmidi as midi import rclmidi as midi
except: except:
print("RECFILTERROR HELPERNOTFOUND python:midi") print("RECFILTERROR HELPERNOTFOUND python3:midi")
sys.exit(1); sys.exit(1);
try: try:

View File

@ -25,7 +25,7 @@ import rclexecm
try: try:
from rarfile import RarFile from rarfile import RarFile
except: except:
print("RECFILTERROR HELPERNOTFOUND python:rarfile") print("RECFILTERROR HELPERNOTFOUND python3:rarfile")
sys.exit(1); sys.exit(1);
# Requires RarFile python module. Try "sudo pip install rarfile" or # Requires RarFile python module. Try "sudo pip install rarfile" or

View File

@ -13,7 +13,7 @@ import rclexecm
try: try:
import tarfile import tarfile
except: except:
print("RECFILTERROR HELPERNOTFOUND python:tarfile") print("RECFILTERROR HELPERNOTFOUND python3:tarfile")
sys.exit(1); sys.exit(1);
class TarExtractor: class TarExtractor:

View File

@ -17,7 +17,7 @@ import rclexecm
try: try:
import sys import sys
except: except:
print("RECFILTERROR HELPERNOTFOUND python:sys") print("RECFILTERROR HELPERNOTFOUND python3:sys")
sys.exit(1); sys.exit(1);
# Our class. # Our class.