⌖ Fedora 10 alpha general package cleanup
This commit is contained in:
parent
ca71c1016e
commit
011c8725ba
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
|||||||
|
stix-fonts-0_9-7_fc10:HEAD:stix-fonts-0.9-7.fc10.src.rpm:1215809789
|
@ -1,12 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
||||||
<!-- /etc/fonts/conf.d/61-stix.conf
|
|
||||||
|
|
||||||
Define aliasing and other fontconfig settings for
|
|
||||||
STIX base fonts
|
|
||||||
|
|
||||||
© 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
||||||
-->
|
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<alias>
|
<alias>
|
||||||
<family>STIXGeneral</family>
|
<family>STIXGeneral</family>
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
||||||
<!-- /etc/fonts/conf.d/61-stix-integrals.conf
|
|
||||||
|
|
||||||
Define aliasing and other fontconfig settings for
|
|
||||||
STIX PUA fonts
|
|
||||||
|
|
||||||
© 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
||||||
-->
|
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<alias binding="same">
|
<alias binding="same">
|
||||||
<family>STIXIntegrals</family>
|
<family>STIXIntegrals</family>
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
||||||
<!-- /etc/fonts/conf.d/61-stix-pua.conf
|
|
||||||
|
|
||||||
Define aliasing and other fontconfig settings for
|
|
||||||
STIX PUA fonts
|
|
||||||
|
|
||||||
© 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
||||||
-->
|
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<alias binding="same">
|
<alias binding="same">
|
||||||
<family>STIXNonUnicode</family>
|
<family>STIXNonUnicode</family>
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
||||||
<!-- /etc/fonts/conf.d/61-stix-sizes.conf
|
|
||||||
|
|
||||||
Define aliasing and other fontconfig settings for
|
|
||||||
STIX size fonts
|
|
||||||
|
|
||||||
© 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
||||||
-->
|
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<alias binding="same">
|
<alias binding="same">
|
||||||
<family>STIXSize1</family>
|
<family>STIXSize1</family>
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
|
||||||
<!-- /etc/fonts/conf.d/61-stix-variants.conf
|
|
||||||
|
|
||||||
Define aliasing and other fontconfig settings for
|
|
||||||
STIX variants fonts
|
|
||||||
|
|
||||||
© 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
|
||||||
-->
|
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<alias binding="same">
|
<alias binding="same">
|
||||||
<family>STIXVariants</family>
|
<family>STIXVariants</family>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
Name: %{fontname}-fonts
|
Name: %{fontname}-fonts
|
||||||
Version: 0.9
|
Version: 0.9
|
||||||
Release: 6%{?dist}
|
Release: 7%{?dist}
|
||||||
Summary: STIX scientific and engineering fonts
|
Summary: STIX scientific and engineering fonts
|
||||||
|
|
||||||
Group: User Interface/X
|
Group: User Interface/X
|
||||||
@ -115,7 +115,7 @@ done
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Source format not available
|
# Nothing there
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -137,72 +137,61 @@ rm -fr %{buildroot}
|
|||||||
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ] ; then
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
if [ "$1" = "0" ]; then
|
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ] ; then
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%post pua
|
%post pua
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ] ; then
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun pua
|
%postun pua
|
||||||
if [ "$1" = "0" ]; then
|
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ] ; then
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%post integrals
|
%post integrals
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ] ; then
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun integrals
|
%postun integrals
|
||||||
if [ "$1" = "0" ]; then
|
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ] ; then
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%post sizes
|
%post sizes
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ] ; then
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun sizes
|
%postun sizes
|
||||||
if [ "$1" = "0" ]; then
|
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ] ; then
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%post variants
|
%post variants
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ] ; then
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun variants
|
%postun variants
|
||||||
if [ "$1" = "0" ]; then
|
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ] ; then
|
||||||
if [ -x %{_bindir}/fc-cache ]; then
|
%{_bindir}/fc-cache %{fontdir} || :
|
||||||
%{_bindir}/fc-cache -f %{fontdir}
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -211,7 +200,7 @@ fi
|
|||||||
%doc *.txt
|
%doc *.txt
|
||||||
%config(noreplace) %{fontconfdir}/61-%{fontname}.conf
|
%config(noreplace) %{fontconfdir}/61-%{fontname}.conf
|
||||||
|
|
||||||
%dir %{fontdir}
|
%dir %{fontdir}/
|
||||||
%{fontdir}/STIXGeneral*otf
|
%{fontdir}/STIXGeneral*otf
|
||||||
|
|
||||||
|
|
||||||
@ -240,6 +229,11 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 11 2008 <nicolas.mailhot at laposte.net>
|
||||||
|
- 0.9-7
|
||||||
|
⌖ Fedora 10 alpha general package cleanup
|
||||||
|
|
||||||
|
|
||||||
* Thu Nov 1 2007 <nicolas.mailhot at laposte.net>
|
* Thu Nov 1 2007 <nicolas.mailhot at laposte.net>
|
||||||
☺ 0.9-6
|
☺ 0.9-6
|
||||||
✓ Add some fontconfig aliasing rules
|
✓ Add some fontconfig aliasing rules
|
||||||
|
Loading…
Reference in New Issue
Block a user