2010-03-06 15:52:13 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-05-12 11:38:52 +00:00
|
|
|
# Copyright (C) 2010-2012 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
|
|
|
|
2012-05-12 07:31:27 +00:00
|
|
|
def extract_ar (archive, compression, cmd, **kwargs):
|
2010-03-06 15:52:13 +00:00
|
|
|
"""Extract a AR archive."""
|
|
|
|
opts = 'x'
|
|
|
|
if kwargs['verbose']:
|
|
|
|
opts += 'v'
|
2012-05-23 03:53:07 +00:00
|
|
|
cmdlist = [cmd, opts, os.path.abspath(archive)]
|
|
|
|
return (cmdlist, {'cwd': kwargs['outdir']})
|
2010-03-06 15:52:13 +00:00
|
|
|
|
2012-05-12 07:31:27 +00:00
|
|
|
def list_ar (archive, compression, cmd, **kwargs):
|
2010-03-06 15:52:13 +00:00
|
|
|
"""List a AR archive."""
|
|
|
|
opts = 't'
|
|
|
|
if kwargs['verbose']:
|
|
|
|
opts += 'v'
|
2010-03-08 16:32:18 +00:00
|
|
|
return [cmd, opts, archive]
|
2010-03-06 15:52:13 +00:00
|
|
|
|
|
|
|
test_ar = list_ar
|
|
|
|
|
2012-05-12 07:31:27 +00:00
|
|
|
def create_ar (archive, compression, cmd, *args, **kwargs):
|
2010-03-06 15:52:13 +00:00
|
|
|
"""Create a AR archive."""
|
|
|
|
opts = 'rc'
|
|
|
|
if kwargs['verbose']:
|
|
|
|
opts += 'v'
|
2010-03-08 16:32:18 +00:00
|
|
|
cmdlist = [cmd, opts, archive]
|
2010-03-06 15:52:13 +00:00
|
|
|
cmdlist.extend(args)
|
|
|
|
return cmdlist
|