[Bug 454148] Review Request: monafont - Japanese font for text arts
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
Summary: Review Request: monafont - Japanese font for text arts
https://bugzilla.redhat.com/show_bug.cgi?id=454148
mtasaka(a)ioa.s.u-tokyo.ac.jp changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|CANTFIX |DUPLICATE
------- Additional Comments From mtasaka(a)ioa.s.u-tokyo.ac.jp 2008-07-29 10:23 EST -------
Last my comment 12 was my misunderstanding.. resubmitting
*** This bug has been marked as a duplicate of 457062 ***
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
14 years, 10 months
rpms/smc-fonts/devel .cvsignore, 1.2, 1.3 smc-fonts.spec, 1.1, 1.2 sources, 1.2, 1.3
by Pravin Satpute
Author: pravins
Update of /cvs/pkgs/rpms/smc-fonts/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv28663
Modified Files:
.cvsignore smc-fonts.spec sources
Log Message:
* Tue Jul 29 2008 Pravin Satpute <psatpute(a)redhat.com> 04.1-1
- new upstream release
- fontconfig rule for size adjustment of Meera is added
- two new fonts kalyani and anjalioldlipi
- bugfix 448078
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/smc-fonts/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 16 Apr 2008 05:36:29 -0000 1.2
+++ .cvsignore 29 Jul 2008 09:14:48 -0000 1.3
@@ -1 +1,2 @@
malayalam-fonts-04.zip
+malayalam-fonts-04.1.zip
Index: smc-fonts.spec
===================================================================
RCS file: /cvs/pkgs/rpms/smc-fonts/devel/smc-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- smc-fonts.spec 16 Apr 2008 05:36:29 -0000 1.1
+++ smc-fonts.spec 29 Jul 2008 09:14:48 -0000 1.2
@@ -1,10 +1,10 @@
%define fontname smc
%define fontdir %{_datadir}/fonts/%{fontname}
-
+%define fontconfdir %{_sysconfdir}/fonts/conf.d
Name: %{fontname}-fonts
-Version: 04
-Release: 6%{?dist}
+Version: 04.1
+Release: 1%{?dist}
Summary: Open Type Fonts for Malayalam script
Group: User Interface/X
License: GPLv3+ with exceptions and GPLv2+ with exceptions and GPLv2+ and GPLv2
@@ -59,17 +59,35 @@
The smc-fonts-suruma package contains fonts for the display of
traditional Malayalam Scripts.
+%package kalyani
+Summary: Open Type Fonts for Malayalam script
+Group: User Interface/X
+License: GPLv3+ with exceptions
+%description kalyani
+The smc-fonts-suruma package contains fonts for the display of
+new Malayalam Scripts.
+
+%package anjalioldlipi
+Summary: Open Type Fonts for Malayalam script
+Group: User Interface/X
+License: GPLv3+ with exceptions
+%description anjalioldlipi
+The smc-fonts-suruma package contains fonts for the display of
+traditional Malayalam Scripts.
+
%prep
-%setup -q -n malayalam-fonts-%{version}
+%setup -q -n malayalam-fonts-04
%build
echo "Nothing to do in Build."
%install
-rm -fr %{buildroot}
+rm -rf %{buildroot}
install -m 0755 -d %{buildroot}%{fontdir}
install -m 0644 -p *.ttf %{buildroot}%{fontdir}
+install -m 0755 -d %{buildroot}%{fontconfdir}
+install -m 0644 -p $RPM_BUILD_DIR/malayalam-fonts-04/malayalam-fonts.conf %{buildroot}%{fontconfdir}/90-%{fontname}.conf
%clean
rm -fr %{buildroot}
@@ -99,6 +117,16 @@
%{_bindir}/fc-cache -f %{fontdir} || :
fi
+%post kalyani
+if [ -x %{_bindir}/fc-cache ]; then
+%{_bindir}/fc-cache -f %{fontdir} || :
+fi
+
+%post anjalioldlipi
+if [ -x %{_bindir}/fc-cache ]; then
+%{_bindir}/fc-cache -f %{fontdir} || :
+fi
+
%postun dyuthi
if [ "$1" = "0" ]; then
if [ -x %{_bindir}/fc-cache ]; then
@@ -134,6 +162,20 @@
fi
fi
+%postun kalyani
+if [ "$1" = "0" ]; then
+ if [ -x %{_bindir}/fc-cache ]; then
+%{_bindir}/fc-cache -f %{fontdir} || :
+ fi
+fi
+
+%postun anjalioldlipi
+if [ "$1" = "0" ]; then
+ if [ -x %{_bindir}/fc-cache ]; then
+%{_bindir}/fc-cache -f %{fontdir} || :
+ fi
+fi
+
#%{fontdir} is shared by following packages since they all are for malayalam script only
%files dyuthi
%defattr(-,root,root,-)
@@ -144,6 +186,7 @@
%files meera
%defattr(-,root,root,-)
%doc *.txt
+%config(noreplace) %{fontconfdir}/90-%{fontname}.conf
%dir %{fontdir}
%{fontdir}/Meera*.ttf
@@ -165,8 +208,25 @@
%dir %{fontdir}
%{fontdir}/suruma*.ttf
+%files kalyani
+%defattr(-,root,root,-)
+%doc *.txt
+%dir %{fontdir}
+%{fontdir}/Kalyani*.ttf
+
+%files anjalioldlipi
+%defattr(-,root,root,-)
+%doc *.txt
+%dir %{fontdir}
+%{fontdir}/AnjaliOldLipi.ttf
%changelog
+* Tue Jul 29 2008 Pravin Satpute <psatpute(a)redhat.com> 04.1-1
+- new upstream release
+- fontconfig rule for size adjustment of Meera is added
+- two new fonts kalyani and anjalioldlipi
+- bugfix 448078
+
* Tue Apr 15 2008 Pravin Satpute <psatpute(a)redhat.com> 04-6
- corrected meera fonts description it is for traditional script
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/smc-fonts/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 16 Apr 2008 05:36:29 -0000 1.2
+++ sources 29 Jul 2008 09:14:48 -0000 1.3
@@ -1 +1 @@
-a88a77e6b22ac077c729234c15671908 malayalam-fonts-04.zip
+492cb9ec6bf69d775e987c1ca06b4003 malayalam-fonts-04.1.zip
14 years, 10 months
[Bug 453079] New: fonts-hebrew is deprecated and should be removed
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/show_bug.cgi?id=453079
Summary: fonts-hebrew is deprecated and should be removed
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: low
Priority: low
Component: fonts-hebrew
AssignedTo: rbhalera(a)redhat.com
ReportedBy: petersen(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: eng-i18n-bugs(a)redhat.com,fedora-fonts-bugs-
list(a)redhat.com
Description of problem:
The fonts-hebrew meta package is no longer in comps and
should be removed from the distro for F10.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
14 years, 10 months
[Bug 453075] New: fonts-arabic is deprecated and should be removed
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/show_bug.cgi?id=453075
Summary: fonts-arabic is deprecated and should be removed
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: low
Priority: low
Component: fonts-arabic
AssignedTo: rbhalera(a)redhat.com
ReportedBy: petersen(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: eng-i18n-bugs(a)redhat.com,fedora-fonts-bugs-
list(a)redhat.com
Description of problem:
The fonts-arabic meta package is no longer in comps and
should be removed from the distro for F10.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
14 years, 10 months
rpms/sportrop-fonts/devel import.log, NONE, 1.1 sportrop-fonts-fontconfig.conf, NONE, 1.1 sportrop-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Jon Stanley
Author: jstanley
Update of /cvs/pkgs/rpms/sportrop-fonts/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13994/devel
Modified Files:
.cvsignore sources
Added Files:
import.log sportrop-fonts-fontconfig.conf sportrop-fonts.spec
Log Message:
initial commit
--- NEW FILE import.log ---
sportrop-fonts-0_9-4_fc9:HEAD:sportrop-fonts-0.9-4.fc9.src.rpm:1217295341
--- NEW FILE sportrop-fonts-fontconfig.conf ---
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
<fontconfig>
<alias>
<family>Sportrop</family>
<default>
<family>fantasy</family>
</default>
</alias>
<alias>
<family>fantasy</family>
<prefer>
<family>Sportrop</family>
</prefer>
</alias>
</fontconfig>
--- NEW FILE sportrop-fonts.spec ---
%define fontname sportrop
%define fontdir %{_datadir}/fonts/%{fontname}
%define fontconfdir %{_sysconfdir}/fonts/conf.d
Name: %{fontname}-fonts
Version: 0.9
Release: 4%{?dist}
Summary: A multiline decorative font
Group: User Interface/X
License: OFL
URL: http://openfontlibrary.org/media/files/gluk/287
Source0: http://openfontlibrary.org/people/gluk/gluk_-_Sportrop.zip
Source1: %{name}-fontconfig.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
A neat multiline font
%prep
%setup -c
chmod 0644 *.txt
for txt in *.txt ; do
fold -s $txt > $txt.new
sed -i 's/\r//' $txt.new
touch -r $txt $txt.new
mv $txt.new $txt
done
%build
%install
rm -rf $RPM_BUILD_ROOT
install -dm 755 $RPM_BUILD_ROOT%{fontdir}
install -pm 644 Sportrop.ttf $RPM_BUILD_ROOT%{fontdir}
install -dm 755 $RPM_BUILD_ROOT%{fontconfdir}
install -pm 644 %{SOURCE1} $RPM_BUILD_ROOT%{fontconfdir}/63-%{fontname}.conf
%clean
rm -rf $RPM_BUILD_ROOT
%post
if [ -x %{_bindir}/fc-cache ] ; then
%{_bindir}/fc-cache -f %{fontdir} || :
fi
%postun
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ] ; then
%{_bindir}/fc-cache -f %{fontdir} || :
fi
%files
%defattr(644,root,root,755)
%doc OFL_FAQ.txt OFL_License.txt tabl_c.jpg
%config(noreplace) %{fontconfdir}/63-%{fontname}.conf
%dir %{fontdir}/
%{fontdir}/*.ttf
%changelog
* Sun Jul 27 2008 Jon Stanley <jonstanley(a)gmail.com> - 0.9-4
- Revert package split, package only TTF
- Use %%setup macro
* Wed Jul 23 2008 Jon Stanley <jonstanley(a)gmail.com> - 0.9-3
- Split OTF and TTF into subpackages
* Wed Jul 23 2008 Jon Stanley <jonstanley(a)gmail.com> - 0.9-2
- Fixed rpmlint warning in license and license FAQ
* Tue Jul 22 2008 Jon Stanley <jonstanley(a)gmail.com> - 0.9-1
- Initial package
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/sportrop-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 29 Jul 2008 01:20:52 -0000 1.1
+++ .cvsignore 29 Jul 2008 01:36:31 -0000 1.2
@@ -0,0 +1 @@
+gluk_-_Sportrop.zip
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/sportrop-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 29 Jul 2008 01:20:52 -0000 1.1
+++ sources 29 Jul 2008 01:36:32 -0000 1.2
@@ -0,0 +1 @@
+315aaea18c37aa085a4ab2856d5d991d gluk_-_Sportrop.zip
14 years, 10 months
rpms/sportrop-fonts/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by Kevin Fenzi
Author: kevin
Update of /cvs/extras/rpms/sportrop-fonts/devel
In directory cvs-int.fedora.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsw12454/rpms/sportrop-fonts/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module sportrop-fonts
--- NEW FILE .cvsignore ---
--- NEW FILE Makefile ---
# Makefile for source rpm: sportrop-fonts
# $Id: Makefile,v 1.1 2008/07/29 01:20:52 kevin Exp $
NAME := sportrop-fonts
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)
--- NEW FILE sources ---
14 years, 10 months
rpms/sportrop-fonts Makefile,NONE,1.1
by Kevin Fenzi
Author: kevin
Update of /cvs/extras/rpms/sportrop-fonts
In directory cvs-int.fedora.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsw12454/rpms/sportrop-fonts
Added Files:
Makefile
Log Message:
Setup of module sportrop-fonts
--- NEW FILE Makefile ---
# Top level Makefile for module sportrop-fonts
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
14 years, 10 months
rpms/sportrop-fonts/devel - New directory
by Kevin Fenzi
Author: kevin
Update of /cvs/extras/rpms/sportrop-fonts/devel
In directory cvs-int.fedora.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsw12454/rpms/sportrop-fonts/devel
Log Message:
Directory /cvs/extras/rpms/sportrop-fonts/devel added to the repository
14 years, 10 months
rpms/sportrop-fonts - New directory
by Kevin Fenzi
Author: kevin
Update of /cvs/extras/rpms/sportrop-fonts
In directory cvs-int.fedora.redhat.com:/home/fedora/kevin/CVSROOT/admin/tmpcvsw12454/rpms/sportrop-fonts
Log Message:
Directory /cvs/extras/rpms/sportrop-fonts added to the repository
14 years, 10 months