blob: 9eb88c59aad0c6ea5ba628adb5079838cc1b2cf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
commit 8df464ebf0db8b04d0baae6a14504f3796e355a0
Author: Jeremy Bobbio <lunar@debian.org>
Date: Sat Jan 30 13:47:47 2016 +0000
Also use libarchive to read metadata from ar archives
The output is more precise and less dependent on binutils version.
The command line `ar` tool is not used any more so remove it from the
required tools.
--- diffoscope/__init__.py.orig 2016-01-31 06:30:01 UTC
+++ diffoscope/__init__.py
@@ -39,9 +39,7 @@ OS_NAMES = { 'arch': 'Arch Linux'
}
class RequiredToolNotFound(Exception):
- PROVIDERS = { 'ar': { 'debian': 'binutils-multiarch',
- 'arch': 'binutils'}
- , 'bzip2': { 'debian': 'bzip2',
+ PROVIDERS = { 'bzip2': { 'debian': 'bzip2',
'arch': 'bzip2'}
, 'cbfstool': {}
, 'cmp': { 'debian': 'diffutils',
|