RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/ucs-miscfixed-fonts#ccc09470e3bfd15180444f2f397f2344c1c894ff
This commit is contained in:
parent
480189031a
commit
45cdf38e18
3
.gitignore
vendored
3
.gitignore
vendored
@ -0,0 +1,3 @@
|
|||||||
|
bitmap-fonts-0.3.tar.bz2
|
||||||
|
fixfont-3.5.tar.bz2
|
||||||
|
/ucs-fonts.tar.gz
|
29
66-ucs-miscfixed.conf
Normal file
29
66-ucs-miscfixed.conf
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
||||||
|
<fontconfig>
|
||||||
|
<alias>
|
||||||
|
<family>monospace</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Fixed</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>monospace</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Clean</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Fixed</family>
|
||||||
|
<default>
|
||||||
|
<family>monospace</family>
|
||||||
|
</default>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Clean</family>
|
||||||
|
<default>
|
||||||
|
<family>monospace</family>
|
||||||
|
</default>
|
||||||
|
</alias>
|
||||||
|
</fontconfig>
|
||||||
|
|
142
ucs-miscfixed-fonts.spec
Normal file
142
ucs-miscfixed-fonts.spec
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
%global fontname ucs-miscfixed
|
||||||
|
%global fontconf 66-%{fontname}.conf
|
||||||
|
|
||||||
|
%global common_desc \
|
||||||
|
The usc-fixed-fonts package provides bitmap fonts for\
|
||||||
|
locations such as terminals.
|
||||||
|
|
||||||
|
Name: %{fontname}-fonts
|
||||||
|
Version: 0.3
|
||||||
|
Release: 23%{?dist}
|
||||||
|
License: Public Domain
|
||||||
|
URL: http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
|
||||||
|
Source0: http://www.cl.cam.ac.uk/~mgk25/download/ucs-fonts.tar.gz
|
||||||
|
Source1: 66-ucs-miscfixed.conf
|
||||||
|
BuildArch: noarch
|
||||||
|
Summary: Selected set of bitmap fonts
|
||||||
|
BuildRequires: fontpackages-devel
|
||||||
|
BuildRequires: xorg-x11-font-utils
|
||||||
|
Conflicts: ucs-miscfixed-opentype-fonts
|
||||||
|
|
||||||
|
%description
|
||||||
|
%common_desc
|
||||||
|
|
||||||
|
%package -n ucs-miscfixed-opentype-fonts
|
||||||
|
Summary: Selected set of bitmap fonts (opentype version)
|
||||||
|
License: Public Domain
|
||||||
|
Conflicts: ucs-miscfixed-fonts
|
||||||
|
|
||||||
|
%description -n ucs-miscfixed-opentype-fonts
|
||||||
|
%common_desc
|
||||||
|
|
||||||
|
This package contains the fonts in OpenType format.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -c
|
||||||
|
rm helvR12.bdf
|
||||||
|
|
||||||
|
%build
|
||||||
|
for i in `ls *.bdf`;
|
||||||
|
do fonttosfnt -v -b -c -g 2 -m 2 -o ${i%%.bdf}.otb $i;
|
||||||
|
done
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
install -m 0755 -d %{buildroot}%{_fontdir}
|
||||||
|
|
||||||
|
install -m 0644 -p *.bdf %{buildroot}%{_fontdir}
|
||||||
|
|
||||||
|
install -m 0644 -p *.otb %{buildroot}%{_fontdir}
|
||||||
|
|
||||||
|
install -m 0755 -d %{buildroot}%{_fontconfig_templatedir} \
|
||||||
|
%{buildroot}%{_fontconfig_confdir}
|
||||||
|
|
||||||
|
install -m 0644 -p %{SOURCE1} \
|
||||||
|
%{buildroot}%{_fontconfig_templatedir}/%{fontconf}
|
||||||
|
|
||||||
|
ln -s %{_fontconfig_templatedir}/%{fontconf} \
|
||||||
|
%{buildroot}%{_fontconfig_confdir}/%{fontconf}
|
||||||
|
|
||||||
|
|
||||||
|
%_font_pkg -f %{fontconf} *.bdf
|
||||||
|
|
||||||
|
%doc README
|
||||||
|
|
||||||
|
%_font_pkg -n ucs-miscfixed-opentype-fonts -f %{fontconf} *.otb
|
||||||
|
|
||||||
|
%doc README
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 6 2020 Peng Wu <pwu@redhat.com> - 0.3-22
|
||||||
|
- Provide OpenType Bitmap fonts
|
||||||
|
- Add ucs-miscfixed-opentype-fonts sub package
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 12 2012 Pravin Satpute <psatpute@redhat.com> - 0.3-8
|
||||||
|
- removed gzip
|
||||||
|
- upstream new source , #597403
|
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 25 2009 Pravin Satpute <psatpute@redhat.com> - 0.3-5
|
||||||
|
- removed \ from description
|
||||||
|
|
||||||
|
* Thu Oct 22 2009 Pravin Satpute <psatpute@redhat.com> - 0.3-4
|
||||||
|
- chnaged conf file priority
|
||||||
|
|
||||||
|
* Thu Sep 29 2009 Pravin Satpute <psatpute@redhat.com> - 0.3-3
|
||||||
|
- modified license field
|
||||||
|
|
||||||
|
* Thu Sep 29 2009 Pravin Satpute <psatpute@redhat.com> - 0.3-2
|
||||||
|
- updated as per package review suggestion, bug 526204
|
||||||
|
|
||||||
|
|
||||||
|
* Thu Sep 29 2009 Pravin Satpute <psatpute@redhat.com> - 0.3-1
|
||||||
|
- initial packaging
|
||||||
|
- these fonts was there in bitmap-fonts package previously, packaging it separate as per merger review suggetion.
|
Loading…
Reference in New Issue
Block a user