diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-01-08 22:41:34 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-01-08 22:41:34 -0200 |
commit | 43bb0ac45e3a55ad741f583318c0ea1edbb06b0a (patch) | |
tree | e6c0387985c84671f698cacc425a5e71e79d19c0 /libre/dpkg/compare | |
parent | aa55ef6181956a308635f4c6f9103a890b879488 (diff) | |
parent | 3a5380856fae97f3358dc00522656c9f1fc26187 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/dpkg/compare')
-rwxr-xr-x | libre/dpkg/compare | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libre/dpkg/compare b/libre/dpkg/compare new file mode 100755 index 000000000..4556440a5 --- /dev/null +++ b/libre/dpkg/compare @@ -0,0 +1,26 @@ +#!/bin/bash +# compare the packages extracted in pkg/ to the packages from debian + +_check() { + local pacpkg=$1 + local debpkg=$2 + + libremessages msg "dpkg:$debpkg -> pacman:$pacpkg" + + make -f compare.mk tmp/$pacpkg.pacman.filelist tmp/$debpkg.debian.filelist &>/dev/null + + echo -e 'pacman\tdpkg' + comm -3 \ + <(sed -e 's|\.gz$||' tmp/$pacpkg.pacman.filelist|sort) \ + <(sed -e 's|\.gz$||' -e '/^usr\/share\/man\/..\/man.\//d' -e 's|usr/share/perl5/|&vendor_perl/|' -e "s|$debpkg|$pacpkg|g" tmp/$debpkg.debian.filelist|sort) +} + +mkdir -p tmp + +_check dpkg dpkg +_check dpkg-devtools dpkg-dev +_check dselect dselect +_check libdpkg libdpkg-dev +_check perl-dpkg libdpkg-perl + +rm -rf tmp |