mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Don't rely on external utilities and use python modules for creating
a LyX archive. A zip archive is created on Windows and a gzip compressed tar archive on *nix, as those are the de facto platform standards. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37525 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
034af18e0d
commit
21dd835f9d
@ -868,29 +868,16 @@ def checkConverterEntries():
|
||||
checkProg('a Noteedit -> LilyPond converter', ['noteedit --export-lilypond $$i'],
|
||||
rc_entry = [ r'\converter noteedit lilypond "%%" ""', ''])
|
||||
#
|
||||
# currently (as of 2/5/11), lyxpak outputs a tar archive if tar is found,
|
||||
# and a zip archive if tar is not found but zip is. if tar is found, then
|
||||
# it looks for gzip and bzip2, in that order, and compresses the archive
|
||||
# using the one it finds.
|
||||
# so, we mimic this search, and configure the appropriate version.
|
||||
path, prog = checkProg('the LyX packing script', ['tar', 'zip'])
|
||||
if prog:
|
||||
# Currently, lyxpak outputs a gzip compressed tar archive on *nix
|
||||
# and a zip archive on Windows.
|
||||
# So, we configure the appropriate version according to the platform.
|
||||
cmd = r'\converter lyx %s "python -tt $$s/scripts/lyxpak.py $$r/$$i" ""'
|
||||
if prog == "zip":
|
||||
if os.name == 'nt':
|
||||
addToRC(r'\Format lyxzip zip "LyX Archive (zip)" "" "" "" "document"')
|
||||
addToRC(cmd % "lyxzip")
|
||||
elif prog == "tar":
|
||||
path, prog = checkProg('gzip or bzip2', ['gzip', 'bzip2'])
|
||||
if prog == "gzip":
|
||||
addToRC(r'\Format lyxgz gz "LyX Archive (tar.gz)" "" "" "" "document"')
|
||||
outfmt = "lyxgz"
|
||||
elif prog == "bzip2":
|
||||
addToRC(r'\Format lyxbz2 bz2 "LyX Archive (tar.bz2)" "" "" "" "document"')
|
||||
outfmt = "lyxbz2"
|
||||
else:
|
||||
addToRC(r'\Format lyxtar tar "LyX Archive (tar)" "" "" "" "document"')
|
||||
outfmt = "lyxtar"
|
||||
addToRC(cmd % outfmt)
|
||||
addToRC(r'\Format lyxgz gz "LyX Archive (tar.gz)" "" "" "" "document"')
|
||||
addToRC(cmd % "lyxgz")
|
||||
|
||||
#
|
||||
# FIXME: no rc_entry? comment it out
|
||||
|
@ -10,18 +10,23 @@
|
||||
# Full author contact details are available in file CREDITS
|
||||
|
||||
# This script creates a tar or zip archive with a lyx file and all included
|
||||
# files (graphics and so on). A zip archive is created only if tar is not
|
||||
# found in the path. The tar archive is then compressed with gzip or bzip2.
|
||||
# files (graphics and so on). The created archive is the standard type on a
|
||||
# given platform, such that a zip archive is created on Windows and a gzip
|
||||
# compressed tar archive on *nix.
|
||||
|
||||
import os, re, string, sys
|
||||
if sys.version_info < (2, 4, 0):
|
||||
from sets import Set as set
|
||||
if os.name == 'nt':
|
||||
import zipfile
|
||||
else:
|
||||
import tarfile
|
||||
|
||||
# Replace with the actual path to the 1.5.x or 1.6.x lyx2lyx.
|
||||
# Replace with the actual path to the 1.5, 1.6, or 2.0 lyx2lyx.
|
||||
# If left undefined and the LyX executable is in the path, the script will
|
||||
# try to locate lyx2lyx by querying LyX about the system dir.
|
||||
# Example for *nix:
|
||||
# lyx2lyx = /usr/share/lyx/lyx2lyx/lyx2lyx
|
||||
# lyx2lyx = "/usr/share/lyx/lyx2lyx/lyx2lyx"
|
||||
lyx2lyx = None
|
||||
|
||||
# Pre-compiled regular expressions.
|
||||
@ -177,32 +182,20 @@ def main(argv):
|
||||
if not (line and line.startswith('#LyX')):
|
||||
error('File "%s" is not a LyX document.' % lyxfile)
|
||||
|
||||
# Either tar or zip must be available
|
||||
# Create a tar archive on *nix and a zip archive on Windows
|
||||
extlist = ['']
|
||||
ar_ext = ".tar.gz"
|
||||
if os.name == 'nt':
|
||||
ar_ext = ".zip"
|
||||
if os.environ.has_key("PATHEXT"):
|
||||
extlist = extlist + os.environ["PATHEXT"].split(os.pathsep)
|
||||
path = string.split(os.environ["PATH"], os.pathsep)
|
||||
archiver, full_path = find_exe(["tar", "zip"], extlist, path)
|
||||
|
||||
if archiver == "tar":
|
||||
ar_cmd = "tar cf"
|
||||
ar_name = re_lyxfile.sub(".tar", abspath(lyxfile))
|
||||
# Archive will be compressed if either gzip or bzip2 are available
|
||||
compress, full_path = find_exe(["gzip", "bzip2"], extlist, path)
|
||||
if compress == "gzip":
|
||||
ext = ".gz"
|
||||
elif compress == "bzip2":
|
||||
ext = ".bz2"
|
||||
elif archiver == "zip":
|
||||
ar_cmd = "zip"
|
||||
ar_name = re_lyxfile.sub(".zip", abspath(lyxfile))
|
||||
compress = None
|
||||
else:
|
||||
error("Unable to find either tar or zip.")
|
||||
|
||||
ar_name = re_lyxfile.sub(ar_ext, abspath(lyxfile))
|
||||
if outdir:
|
||||
ar_name = os.path.join(abspath(outdir), os.path.basename(ar_name))
|
||||
|
||||
path = string.split(os.environ["PATH"], os.pathsep)
|
||||
|
||||
# Try to find the location of the lyx2lyx script
|
||||
global lyx2lyx
|
||||
if lyx2lyx == None:
|
||||
@ -260,26 +253,23 @@ def main(argv):
|
||||
incfiles = list(set(incfiles))
|
||||
incfiles.sort()
|
||||
|
||||
# Build the archive command
|
||||
ar_cmd = '%s "%s"' % (ar_cmd, ar_name)
|
||||
for file in incfiles:
|
||||
#print file
|
||||
ar_cmd = ar_cmd + ' "' + file + '"'
|
||||
|
||||
# Create the archive
|
||||
if topdir != '':
|
||||
os.chdir(topdir)
|
||||
cmd_status, cmd_stdout = run_cmd(ar_cmd)
|
||||
if cmd_status != None:
|
||||
error('Failed to create LyX archive "%s"' % ar_name)
|
||||
|
||||
# If possible, compress the archive
|
||||
if compress != None:
|
||||
compress_cmd = '%s "%s"' % (compress, ar_name)
|
||||
cmd_status, cmd_stdout = run_cmd(compress_cmd)
|
||||
if cmd_status != None:
|
||||
error('Failed to compress LyX archive "%s"' % ar_name)
|
||||
ar_name = ar_name + ext
|
||||
# Create the archive
|
||||
try:
|
||||
if os.name == 'nt':
|
||||
zip = zipfile.ZipFile(ar_name, "w", zipfile.ZIP_DEFLATED)
|
||||
for file in incfiles:
|
||||
zip.write(file)
|
||||
zip.close()
|
||||
else:
|
||||
tar = tarfile.open(ar_name, "w:gz")
|
||||
for file in incfiles:
|
||||
tar.add(file)
|
||||
tar.close()
|
||||
except:
|
||||
error('Failed to create LyX archive "%s"' % ar_name)
|
||||
|
||||
print 'LyX archive "%s" created successfully.' % ar_name
|
||||
return 0
|
||||
|
Loading…
Reference in New Issue
Block a user