SHA256
1
0
forked from pool/kbd
OBS User autobuild 2009-11-02 15:08:10 +00:00 committed by Git OBS Bridge
parent 76650a6ce4
commit 304065176a
3 changed files with 4 additions and 10 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:43ff08968d189b2cdddbea00797a75f3a6d6b79f100e22ea2663d5d968448c09 oid sha256:93cbc8521404932e3db6a687b1e1a5580426aa4c28a92712fb585f5414a5a9c4
size 789357 size 777427

View File

@ -1,8 +1,3 @@
-------------------------------------------------------------------
Mon Nov 2 13:48:13 CET 2009 - mmarek@suse.cz
- do not include '.' in the repacked tarball (bnc#544975).
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Oct 1 15:09:51 CEST 2009 - mmarek@suse.cz Thu Oct 1 15:09:51 CEST 2009 - mmarek@suse.cz

View File

@ -1,4 +1,4 @@
#! /bin/bash #! /bin/sh
# #
# repackage kbd source tar ball, # repackage kbd source tar ball,
# to remove fonts that forbid commercial distribution. # to remove fonts that forbid commercial distribution.
@ -8,7 +8,6 @@
tmpdir=`mktemp -d` tmpdir=`mktemp -d`
in="$1" in="$1"
name="${in%.tar.*}"
# recent gnu tar can autodetect gzip / bzip2 # recent gnu tar can autodetect gzip / bzip2
if ! tar xf "$in" -C $tmpdir; then if ! tar xf "$in" -C $tmpdir; then
@ -18,6 +17,6 @@ fi
echo removing files... echo removing files...
find $tmpdir -iname \*agafari\* | tee /dev/tty | xargs rm find $tmpdir -iname \*agafari\* | tee /dev/tty | xargs rm
tar jcf $name-repack.tar.bz2 -C $tmpdir $name tar jcf $in-repack.tar.bz2 -C $tmpdir .
rm -rf $tmpdir rm -rf $tmpdir