Accepting request 23580 from home:michal-m:branches:Base:System

Copy from home:michal-m:branches:Base:System/kbd via accept of submit request 23580 revision 2.
Request was accepted with message:

OBS-URL: https://build.opensuse.org/request/show/23580
OBS-URL: https://build.opensuse.org/package/show/Base:System/kbd?expand=0&rev=6
This commit is contained in:
Michal Marek 2009-11-02 12:50:58 +00:00 committed by Git OBS Bridge
parent 130a34d3eb
commit de377e232d
3 changed files with 10 additions and 4 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:93cbc8521404932e3db6a687b1e1a5580426aa4c28a92712fb585f5414a5a9c4 oid sha256:43ff08968d189b2cdddbea00797a75f3a6d6b79f100e22ea2663d5d968448c09
size 777427 size 789357

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
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/sh #! /bin/bash
# #
# 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,6 +8,7 @@
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
@ -17,6 +18,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 $in-repack.tar.bz2 -C $tmpdir . tar jcf $name-repack.tar.bz2 -C $tmpdir $name
rm -rf $tmpdir rm -rf $tmpdir