summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-08-10 22:17:47 +0000
committerZac Medico <zmedico@gentoo.org>2009-08-10 22:17:47 +0000
commit2ccc7daf35883f8901981c2808e77a67736e6826 (patch)
treee51dd6ce2c6b1207278ffabdd7c7f8abad6d8bfb /bin
parent8448d2f5052da97dd52d9a45809d39594fa28a45 (diff)
downloadportage-2ccc7daf35883f8901981c2808e77a67736e6826.tar.gz
portage-2ccc7daf35883f8901981c2808e77a67736e6826.tar.bz2
portage-2ccc7daf35883f8901981c2808e77a67736e6826.zip
This definitely obsolete.
svn path=/main/trunk/; revision=13985
Diffstat (limited to 'bin')
-rwxr-xr-xbin/md5check.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/bin/md5check.sh b/bin/md5check.sh
deleted file mode 100755
index fc5122a90..000000000
--- a/bin/md5check.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-# pipe in the data.
-
-sort -u - > md5check.tmp
-grep '^Extra' md5check.tmp > md5check.tmp.extra
-grep '^Missing' md5check.tmp > md5check.tmp.missing
-grep '^Coll' md5check.tmp > md5check.tmp.colliding
-
-sed -i "
-s:^Col:\nCol:
-s:,:\n :g
-s: of :\n :g
-s: and :\n :g" md5check.tmp.colliding
-sed -i "s/^[^ ]\+ md5sum: \(.*\) in \(.*\)$/ \2: \1/g" md5check.tmp.missing
-sed -i "s/^[^ ]\+ md5sum: \(.*\) in \(.*\)$/ \2: \1/g" md5check.tmp.extra
-
-#echo "Colliding files:" > md5check.colliding
-#sort -u md5check.tmp.colliding >> md5check.colliding
-cp md5check.tmp.colliding md5check.colliding
-
-echo "Missing from digest:" > md5check.missing
-sort -u md5check.tmp.missing >> md5check.missing
-
-echo "Extra files in digest:" > md5check.extra
-sort -u md5check.tmp.extra >> md5check.extra
-
-rm md5check.tmp*