forked from wummel/patool
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 7z unpacking when only p7zip with /usr/bin/7zr is installed.
- Loading branch information
Showing
5 changed files
with
63 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (C) 2016 Bastian Kleineidam | ||
# | ||
# 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 7zr program. | ||
7zr is a light executable supporting only the 7z archive format. | ||
""" | ||
|
||
from .p7zip import \ | ||
extract_7z, \ | ||
list_7z, \ | ||
test_7z, \ | ||
create_7z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,17 +23,14 @@ | |
raise SystemExit("This program requires Python 2.7 or later.") | ||
import os | ||
import re | ||
import shutil | ||
import glob | ||
import subprocess | ||
from setuptools import setup | ||
from distutils.core import Distribution | ||
from distutils.command.install_lib import install_lib | ||
from distutils import util | ||
from distutils.file_util import write_file | ||
|
||
AppName = "patool" | ||
AppVersion = "1.10" | ||
AppVersion = "1.11" | ||
MyName = "Bastian Kleineidam" | ||
MyEmail = "[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (C) 2010-2015 Bastian Kleineidam | ||
# | ||
# 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/>. | ||
from . import ArchiveTest | ||
from .. import needs_program | ||
|
||
class Test7zr (ArchiveTest): | ||
|
||
program = '7zr' | ||
|
||
@needs_program(program) | ||
def test_7zr (self): | ||
self.archive_commands('t .7z') | ||
|
||
@needs_program('file') | ||
@needs_program(program) | ||
def test_7z_file (self): | ||
self.archive_commands('t.7z.foo', skip_create=True) |