Fixed the "missing" values to mention python3
This commit is contained in:
parent
7aa73ca369
commit
8a97edc722
@ -13,12 +13,14 @@ Build-Depends: autotools-dev,
|
||||
libxslt1-dev,
|
||||
libz-dev,
|
||||
python-dev (>= 2.6.6-3~),
|
||||
python-setuptools,
|
||||
python3-all-dev,
|
||||
python3-setuptools,
|
||||
qt5-default,
|
||||
qt5-qmake,
|
||||
libqt5webkit5-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-Browser: https://anonscm.debian.org/cgit/collab-maint/recoll.git
|
||||
Homepage: http://www.lesbonscomptes.com/recoll
|
||||
|
||||
@ -14,7 +14,7 @@ import rclexecm
|
||||
try:
|
||||
from py7zlib import Archive7z
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:py7zlib")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:py7zlib")
|
||||
sys.exit(1);
|
||||
|
||||
try:
|
||||
|
||||
@ -15,7 +15,7 @@ try:
|
||||
from mutagen import File
|
||||
from mutagen.id3 import ID3TimeStamp
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:mutagen")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:mutagen")
|
||||
sys.exit(1);
|
||||
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ except:
|
||||
try:
|
||||
from recollchm import chm,chmlib
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:chm")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:chm")
|
||||
sys.exit(1);
|
||||
|
||||
# Small helper routines
|
||||
|
||||
@ -16,7 +16,7 @@ sys.path.append(sys.path[0]+"/recollepub.zip")
|
||||
try:
|
||||
import epub
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:epub")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:epub")
|
||||
sys.exit(1);
|
||||
|
||||
class rclEPUB:
|
||||
|
||||
@ -13,7 +13,7 @@ sys.path.append(sys.path[0]+"/recollepub.zip")
|
||||
try:
|
||||
import epub
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:epub")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:epub")
|
||||
sys.exit(1);
|
||||
|
||||
class EPUBConcatExtractor(RclBaseHandler):
|
||||
|
||||
@ -28,8 +28,8 @@ if usemodule != "internal":
|
||||
import vobject
|
||||
usemodule = "vobject"
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:icalendar")
|
||||
print("RECFILTERROR HELPERNOTFOUND python:vobject")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:icalendar")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:vobject")
|
||||
sys.exit(1);
|
||||
|
||||
|
||||
|
||||
@ -17,7 +17,7 @@ from rclbasehandler import RclBaseHandler
|
||||
try:
|
||||
import pyexiv2
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:pyexiv2")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:pyexiv2")
|
||||
sys.exit(1);
|
||||
|
||||
khexre = re.compile('.*\.0[xX][0-9a-fA-F]+$')
|
||||
|
||||
@ -20,7 +20,7 @@ except:
|
||||
try:
|
||||
import rclmidi as midi
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:midi")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:midi")
|
||||
sys.exit(1);
|
||||
|
||||
try:
|
||||
|
||||
@ -25,7 +25,7 @@ import rclexecm
|
||||
try:
|
||||
from rarfile import RarFile
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:rarfile")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:rarfile")
|
||||
sys.exit(1);
|
||||
|
||||
# Requires RarFile python module. Try "sudo pip install rarfile" or
|
||||
|
||||
@ -13,7 +13,7 @@ import rclexecm
|
||||
try:
|
||||
import tarfile
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:tarfile")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:tarfile")
|
||||
sys.exit(1);
|
||||
|
||||
class TarExtractor:
|
||||
|
||||
@ -17,7 +17,7 @@ import rclexecm
|
||||
try:
|
||||
import sys
|
||||
except:
|
||||
print("RECFILTERROR HELPERNOTFOUND python:sys")
|
||||
print("RECFILTERROR HELPERNOTFOUND python3:sys")
|
||||
sys.exit(1);
|
||||
|
||||
# Our class.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user