patool/patoolib/programs/ar.py

44 lines
1.4 KiB
Python
Raw Normal View History

2010-03-06 15:52:13 +00:00
# -*- coding: utf-8 -*-
2015-07-19 17:29:01 +00:00
# Copyright (C) 2010-2015 Bastian Kleineidam
2010-03-06 15:52:13 +00:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Archive commands for the ar program."""
2012-05-23 03:53:07 +00:00
import os
2010-03-06 15:52:13 +00:00
def extract_ar (archive, compression, cmd, verbosity, outdir):
2010-03-06 15:52:13 +00:00
"""Extract a AR archive."""
opts = 'x'
if verbosity > 1:
2010-03-06 15:52:13 +00:00
opts += 'v'
2012-05-23 03:53:07 +00:00
cmdlist = [cmd, opts, os.path.abspath(archive)]
return (cmdlist, {'cwd': outdir})
2010-03-06 15:52:13 +00:00
def list_ar (archive, compression, cmd, verbosity):
2010-03-06 15:52:13 +00:00
"""List a AR archive."""
opts = 't'
if verbosity > 1:
2010-03-06 15:52:13 +00:00
opts += 'v'
return [cmd, opts, archive]
2010-03-06 15:52:13 +00:00
test_ar = list_ar
def create_ar (archive, compression, cmd, verbosity, filenames):
2010-03-06 15:52:13 +00:00
"""Create a AR archive."""
opts = 'rc'
if verbosity > 1:
2010-03-06 15:52:13 +00:00
opts += 'v'
cmdlist = [cmd, opts, archive]
cmdlist.extend(filenames)
2010-03-06 15:52:13 +00:00
return cmdlist