Bug 9898

Summary: duplication of bug #4022 - koi2alt may not to be gzipped
Product: [Retired] Red Hat Raw Hide Reporter: Leonid Kanter <leon>
Component: console-toolsAssignee: Bernhard Rosenkraenzer <bero>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 1.0CC: gafton
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2000-03-02 00:22:38 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Leonid Kanter 2000-03-01 18:23:11 UTC
In 19990829-7 version, koi2alt map is gzipped. but it has not to be
gzipped, because if you type "consolechars -f Cyr_a8x16 -m koi2alt", you'll
see:

Assuming 8-bit font-charset-map - MUST be a regular file

It mean that maps like koi2alt, koi8u2ruscii etc work only in plain text
format, not gzip. Look at bug #4022.

Comment 1 Leonid Kanter 2000-03-01 23:12:59 UTC
ALL 8-bit maps including VITAL koi2alt are broken in this package by .spec
author! Don't strip .trans suffix and don't gzip 8-bit maps! Please remove
following lines from spec file:
------------
for i in $RPM_BUILD_ROOT/usr/lib/kbd/consoletrans/*.trans; do
        NEWNAME=`echo $i |sed -e s/\\\.trans//`
        if [ -e $NEWNAME ]; then
                rm -f $i
        else
                mv -f $i $NEWNAME
        fi
        if [ ! -e $NEWNAME.gz ]; then
                gzip -9f $NEWNAME
        fi
done
-------
look at good spec file I've attached to bug 9908.

Comment 2 Bernhard Rosenkraenzer 2000-03-02 00:22:59 UTC
Thanks, fixed.