Blame SOURCES/repackReproduciblePolycies.sh

9e49de
#!/bin/sh
9e49de
# https://bugzilla.redhat.com/show_bug.cgi?id=1142153
9e49de
M=META-INF/MANIFEST.MF
9e49de
#P=/usr/lib/jvm/java/jre/lib/security
9e49de
P=$1/lib/security
9e49de
for f in local_policy.jar US_export_policy.jar ; do
9e49de
ORIG=$P/$f
9e49de
echo "processing $f ($ORIG)"
9e49de
if [ ! -f  $ORIG ]; then
9e49de
  echo "File not found!"
9e49de
  continue
9e49de
fi
9e49de
d=`mktemp -d`
9e49de
NW=$d/$f
9e49de
  pushd $d
9e49de
    jar  xf   $ORIG
9e49de
    cat $M
9e49de
#    sed -i "s/Created-By.*/Created-By: 1.7.0/g"  $M
9e49de
    sed -i "s/Created-By.*/Created-By: $2/g"  $M
9e49de
    cat $M
9e49de
    find . -exec touch -t 201401010000 {} +
9e49de
    zip -rX  $f *
9e49de
  popd
9e49de
  echo "replacing  $ORIG"
9e49de
  md5sum    $ORIG
9e49de
  sha256sum $ORIG
9e49de
  echo "by $NW"
9e49de
  md5sum    $NW
9e49de
  sha256sum $NW
9e49de
  cp $NW $ORIG
9e49de
  md5sum    $ORIG
9e49de
  sha256sum $ORIG
9e49de
  rm -rfv $d
9e49de
done