- Upgrade to 0.3.12 (python3 version): - Fix SF bug #118: fix 'nb' and 'nn' locales. - Fix SF bug #119: use locale quotes in glossary. - Fix SF bug #120: use locale quotes in bibliography. - Fix SF bug #123: add 'se' locale. - Fix SF bug #124: set default qandaset title markup in english. - Added also: - dblatex-0.3.11-replace-inkscape-by-rsvg.patch (filed as https://sourceforge.net/p/dblatex/feature-requests/21) - dblatex-0.3.11-which-shutil.patch (filed as https://sourceforge.net/p/dblatex/patches/22) OBS-URL: https://build.opensuse.org/request/show/921890 OBS-URL: https://build.opensuse.org/package/show/Publishing/dblatex?expand=0&rev=32
33 lines
920 B
Diff
33 lines
920 B
Diff
---
|
|
setup.py | 12 +++++++-----
|
|
1 file changed, 7 insertions(+), 5 deletions(-)
|
|
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -25,7 +25,8 @@ from distutils.command.sdist import sdis
|
|
from distutils import log
|
|
from subprocess import Popen, PIPE
|
|
sys.path.append("lib")
|
|
-from contrib.debian.installer import DebianInstaller
|
|
+# this is opensuse not debian
|
|
+#from contrib.debian.installer import DebianInstaller
|
|
|
|
#
|
|
# Build the command line script
|
|
@@ -373,10 +374,11 @@ class Install(install):
|
|
raise OSError("not found: %s" % ", ".join(mis_stys))
|
|
|
|
def run(self):
|
|
- if self.install_layout == "deb":
|
|
- db = DebianInstaller(self)
|
|
- else:
|
|
- db = None
|
|
+# this is opensuse not debian so disable this
|
|
+# if self.install_layout == "deb":
|
|
+# db = DebianInstaller(self)
|
|
+# else:
|
|
+ db = None
|
|
|
|
if not(db) and not(self.nodeps):
|
|
try:
|