fontconfig config priority

2009-12-17 Thread Akira TAGOH

Hi,

I have a question and a suggestion for the fontconfig
config priority in the font packaging policy.

I'm writing a small script to validate the fontconfig config
in packages to not mess up. the goal is to check if the
priority is set accurately and the config files are
following our templates. it roughly started working. but I'm
not quite sure what Latin in LGC really covers. is it
similar to what Latin-[1-10] covers? or more strictly
applied?

The suggestion is, about improving the policy to set the
priority more strictly. I have two ideas:

 1) have variety of the priorities for non-LGC fonts as well
 like for default, main and low perhaps.
 even though LGC fonts has a priority for default font,
 but not for non-LGC fonts. it may messes up their default
 font if multiple fonts with the same priority such as 65
 are installed. this priority things could avoids this issue.
 it may be something like:

 65-69 ... High priority non-LGC fonts
 70... Main non-LGC font list
 71-64 ... Low priority non-LGC fonts

 2) describes what exactly default, Main and Low
 priority means.
 during developing and testing this script, I see some
 packages is possibly wrongly set the priority to their
 fontconfig config files, for example, some font is set the
 priority to 57 that is supposed to be the default font, but
 not marked as mandatory in comps. so I'd suggest to update
 comps or change the priority like:

 - mandatory for higher priority
 - default for main priority
 - optional for low priority

 and update the policy with it as well.


Any thoughts or comments are welcome.

TIA,
--
Akira TAGOH


pgpDNTMKoP40a.pgp
Description: PGP signature
___
Fedora-fonts-list mailing list
Fedora-fonts-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-list


rpms/vlgothic-fonts/devel .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 vlgothic-fontconfig-gothic.conf, 1.1, 1.2 vlgothic-fontconfig-pgothic.conf, 1.1, 1.2 vlgothic-fonts.spec, 1.6, 1.7

2009-12-06 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6396

Modified Files:
.cvsignore sources vlgothic-fontconfig-gothic.conf 
vlgothic-fontconfig-pgothic.conf vlgothic-fonts.spec 
Log Message:
* Mon Dec  7 2009 Akira TAGOH ta...@redhat.com - 20091202-1
- New upstream release.
- Set the priority to 65 for vlgothic-p-fonts to override the rule in
  vlgothic-fonts for sans-serif.
- Set the priority to 66 and contains both rules for sans-serif and monospace
  to avoid picking up the unrelated fonts in Live. where doesn't have
  vlgothic-p-fonts installed. (#544957)


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore  15 Jun 2009 11:21:07 -  1.4
+++ .cvsignore  7 Dec 2009 06:37:58 -   1.5
@@ -1,3 +1,4 @@
 VLGothic-20090204.tar.bz2
 VLGothic-20090422.tar.bz2
 VLGothic-20090612.tar.bz2
+VLGothic-20091202.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- sources 15 Jun 2009 11:21:08 -  1.4
+++ sources 7 Dec 2009 06:37:58 -   1.5
@@ -1 +1 @@
-2ae45ffcaf4fd75331eb582cfee6cc54  VLGothic-20090612.tar.bz2
+db66b71975c6ffc54ca37f0d13451e0a  VLGothic-20091202.tar.bz2


Index: vlgothic-fontconfig-gothic.conf
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/vlgothic-fontconfig-gothic.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- vlgothic-fontconfig-gothic.conf 10 Feb 2009 11:48:21 -  1.1
+++ vlgothic-fontconfig-gothic.conf 7 Dec 2009 06:37:59 -   1.2
@@ -1,38 +1,51 @@
 ?xml version=1.0?
 !DOCTYPE fontconfig SYSTEM fonts.dtd
 fontconfig
-match target=font
+!-- Generic names rule --
+alias
+familyVL Gothic/family
+default
+familymonospace/family
+/default
+/alias
+!-- NOTE: just for fallback - ideally better installing vlgothic-p-fonts 
--
+alias
+familyVL Gothic/family
+default
+familysans-serif/family
+/default
+/alias
+!-- Locale-specific overrides rule --
+match
+test name=lang
+stringja-jp/string
+/test
 test name=family
-stringVL Gothic/string
+stringmonospace/string
 /test
-edit name=hinting mode=assign
-boolfalse/bool
+edit name=family mode=prepend binding=same
+stringVL Gothic/string
 /edit
 /match
-
+!-- NOTE: just for fallback - ideally better installing vlgothic-p-fonts 
--
 match
 test name=lang
 stringja-jp/string
 /test
 test name=family
-stringmonospace/string
+stringsans-serif/string
 /test
 edit name=family mode=prepend binding=same
 stringVL Gothic/string
 /edit
 /match
-
-alias
-familymonospace/family
-prefer
-familyVL Gothic/family
-/prefer
-/alias
-
-alias
-familyVL Gothic/family
-default
-familymonospace/family
-/default
-/alias
+!-- disabling hinting rule --
+match target=font
+test name=family
+stringVL Gothic/string
+/test
+edit name=hinting mode=assign
+boolfalse/bool
+/edit
+/match
 /fontconfig


Index: vlgothic-fontconfig-pgothic.conf
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/vlgothic-fontconfig-pgothic.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- vlgothic-fontconfig-pgothic.conf10 Feb 2009 11:48:21 -  1.1
+++ vlgothic-fontconfig-pgothic.conf7 Dec 2009 06:37:59 -   1.2
@@ -1,15 +1,14 @@
 ?xml version=1.0?
 !DOCTYPE fontconfig SYSTEM fonts.dtd
 fontconfig
-match target=font
-test name=family
-stringVL PGothic/string
-/test
-edit name=hinting mode=assign
-boolfalse/bool
-/edit
-/match
-
+!-- Generic names rule --
+alias
+familyVL PGothic/family
+default
+familysans-serif/family
+/default
+/alias
+!-- Locale-specific overrides rule --
 match
 test name=lang
 stringja-jp/string
@@ -21,18 +20,13 @@
 stringVL PGothic/string
 /edit
 /match
-
-alias
-familysans-serif/family
-prefer
-familyVL PGothic/family
-/prefer
-/alias
-
-alias
-familyVL PGothic/family
-default

rpms/vlgothic-fonts/F-12 .cvsignore, 1.4, 1.5 sources, 1.4, 1.5 vlgothic-fontconfig-gothic.conf, 1.1, 1.2 vlgothic-fontconfig-pgothic.conf, 1.1, 1.2 vlgothic-fonts.spec, 1.6, 1.7

2009-12-06 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16170

Modified Files:
.cvsignore sources vlgothic-fontconfig-gothic.conf 
vlgothic-fontconfig-pgothic.conf vlgothic-fonts.spec 
Log Message:
* Mon Dec  7 2009 Akira TAGOH ta...@redhat.com - 20091202-1
- New upstream release.
- Set the priority to 65 for vlgothic-p-fonts to override the rule in
  vlgothic-fonts for sans-serif.
- Set the priority to 66 and contains both rules for sans-serif and monospace
  to avoid picking up the unrelated fonts in Live. where doesn't have
  vlgothic-p-fonts installed. (#544957)


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-12/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore  15 Jun 2009 11:21:07 -  1.4
+++ .cvsignore  7 Dec 2009 07:01:13 -   1.5
@@ -1,3 +1,4 @@
 VLGothic-20090204.tar.bz2
 VLGothic-20090422.tar.bz2
 VLGothic-20090612.tar.bz2
+VLGothic-20091202.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-12/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- sources 15 Jun 2009 11:21:08 -  1.4
+++ sources 7 Dec 2009 07:01:13 -   1.5
@@ -1 +1 @@
-2ae45ffcaf4fd75331eb582cfee6cc54  VLGothic-20090612.tar.bz2
+db66b71975c6ffc54ca37f0d13451e0a  VLGothic-20091202.tar.bz2


Index: vlgothic-fontconfig-gothic.conf
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-12/vlgothic-fontconfig-gothic.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- vlgothic-fontconfig-gothic.conf 10 Feb 2009 11:48:21 -  1.1
+++ vlgothic-fontconfig-gothic.conf 7 Dec 2009 07:01:13 -   1.2
@@ -1,38 +1,51 @@
 ?xml version=1.0?
 !DOCTYPE fontconfig SYSTEM fonts.dtd
 fontconfig
-match target=font
+!-- Generic names rule --
+alias
+familyVL Gothic/family
+default
+familymonospace/family
+/default
+/alias
+!-- NOTE: just for fallback - ideally better installing vlgothic-p-fonts 
--
+alias
+familyVL Gothic/family
+default
+familysans-serif/family
+/default
+/alias
+!-- Locale-specific overrides rule --
+match
+test name=lang
+stringja-jp/string
+/test
 test name=family
-stringVL Gothic/string
+stringmonospace/string
 /test
-edit name=hinting mode=assign
-boolfalse/bool
+edit name=family mode=prepend binding=same
+stringVL Gothic/string
 /edit
 /match
-
+!-- NOTE: just for fallback - ideally better installing vlgothic-p-fonts 
--
 match
 test name=lang
 stringja-jp/string
 /test
 test name=family
-stringmonospace/string
+stringsans-serif/string
 /test
 edit name=family mode=prepend binding=same
 stringVL Gothic/string
 /edit
 /match
-
-alias
-familymonospace/family
-prefer
-familyVL Gothic/family
-/prefer
-/alias
-
-alias
-familyVL Gothic/family
-default
-familymonospace/family
-/default
-/alias
+!-- disabling hinting rule --
+match target=font
+test name=family
+stringVL Gothic/string
+/test
+edit name=hinting mode=assign
+boolfalse/bool
+/edit
+/match
 /fontconfig


Index: vlgothic-fontconfig-pgothic.conf
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-12/vlgothic-fontconfig-pgothic.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- vlgothic-fontconfig-pgothic.conf10 Feb 2009 11:48:21 -  1.1
+++ vlgothic-fontconfig-pgothic.conf7 Dec 2009 07:01:13 -   1.2
@@ -1,15 +1,14 @@
 ?xml version=1.0?
 !DOCTYPE fontconfig SYSTEM fonts.dtd
 fontconfig
-match target=font
-test name=family
-stringVL PGothic/string
-/test
-edit name=hinting mode=assign
-boolfalse/bool
-/edit
-/match
-
+!-- Generic names rule --
+alias
+familyVL PGothic/family
+default
+familysans-serif/family
+/default
+/alias
+!-- Locale-specific overrides rule --
 match
 test name=lang
 stringja-jp/string
@@ -21,18 +20,13 @@
 stringVL PGothic/string
 /edit
 /match
-
-alias
-familysans-serif/family
-prefer
-familyVL PGothic/family
-/prefer
-/alias
-
-alias
-familyVL PGothic/family
-default

File VLGothic-20091202.tar.bz2 uploaded to lookaside cache by tagoh

2009-12-03 Thread Akira TAGOH
A file has been added to the lookaside cache for vlgothic-fonts:

db66b71975c6ffc54ca37f0d13451e0a  VLGothic-20091202.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/devel knm-new-fixed-fonts.spec,1.2,1.3

2009-12-03 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6511

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
- revert the previous change and set the priority to 69 to ensure loading
  the rule later according to the result of
  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
  (#532237)


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/devel/knm-new-fixed-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- knm-new-fixed-fonts.spec29 Oct 2009 07:33:43 -  1.2
+++ knm-new-fixed-fonts.spec4 Dec 2009 05:11:00 -   1.3
@@ -1,11 +1,11 @@
-%globalpriority65
+%globalpriority69
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   9%{?dist}
+Release:   10%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
+- revert the previous change and set the priority to 69 to ensure loading
+  the rule later according to the result of
+  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
+  (#532237)
+
 * Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
 - change the priority to 65 to make this the less priority.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-12 knm-new-fixed-fonts.spec,1.2,1.3

2009-12-03 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8157

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
- revert the previous change and set the priority to 69 to ensure loading
  the rule later according to the result of
  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
  (#532237)


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12/knm-new-fixed-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- knm-new-fixed-fonts.spec29 Oct 2009 07:47:32 -  1.2
+++ knm-new-fixed-fonts.spec4 Dec 2009 05:19:05 -   1.3
@@ -1,11 +1,11 @@
-%globalpriority65
+%globalpriority69
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   9%{?dist}
+Release:   10%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
+- revert the previous change and set the priority to 69 to ensure loading
+  the rule later according to the result of
+  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
+  (#532237)
+
 * Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
 - change the priority to 65 to make this the less priority.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-11 knm-new-fixed-fonts.spec,1.2,1.3

2009-12-03 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11530

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
- revert the previous change and set the priority to 69 to ensure loading
  the rule later according to the result of
  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
  (#532237)


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11/knm-new-fixed-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- knm-new-fixed-fonts.spec29 Oct 2009 08:12:50 -  1.2
+++ knm-new-fixed-fonts.spec4 Dec 2009 05:35:17 -   1.3
@@ -1,11 +1,11 @@
-%globalpriority65
+%globalpriority69
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   9%{?dist}
+Release:   10%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
+- revert the previous change and set the priority to 69 to ensure loading
+  the rule later according to the result of
+  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
+  (#532237)
+
 * Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
 - change the priority to 65 to make this the less priority.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-10 knm-new-fixed-fonts.spec,1.2,1.3

2009-12-03 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13339

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
- revert the previous change and set the priority to 69 to ensure loading
  the rule later according to the result of
  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
  (#532237)


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10/knm-new-fixed-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- knm-new-fixed-fonts.spec29 Oct 2009 08:24:51 -  1.2
+++ knm-new-fixed-fonts.spec4 Dec 2009 05:43:49 -   1.3
@@ -1,11 +1,11 @@
-%globalpriority65
+%globalpriority69
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   9%{?dist}
+Release:   10%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Dec  4 2009 Akira TAGOH ta...@redhat.com - 1.1-10
+- revert the previous change and set the priority to 69 to ensure loading
+  the rule later according to the result of
+  https://bugzilla.redhat.com/show_bug.cgi?id=532237#c6
+  (#532237)
+
 * Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
 - change the priority to 65 to make this the less priority.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/devel .cvsignore, 1.2, 1.3 hanazono-fonts.spec, 1.4, 1.5 sources, 1.2, 1.3

2009-11-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32425

Modified Files:
.cvsignore hanazono-fonts.spec sources 
Log Message:
* Fri Nov 27 2009 Akira TAGOH ta...@redhat.com - 20091003-1
- Update to 20091003.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore  17 Nov 2008 02:23:06 -  1.2
+++ .cvsignore  27 Nov 2009 02:42:43 -  1.3
@@ -1 +1,2 @@
 hanazono-20081012.zip
+hanazono-20091003.zip


Index: hanazono-fonts.spec
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/hanazono-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- hanazono-fonts.spec 25 Jul 2009 02:01:14 -  1.4
+++ hanazono-fonts.spec 27 Nov 2009 02:42:43 -  1.5
@@ -4,8 +4,8 @@
 %define fontconf   %{priority}-%{fontname}.conf
 
 Name:  %{fontname}-fonts
-Version:   20081012
-Release:   8%{?dist}
+Version:   20091003
+Release:   1%{?dist}
 Summary:   Japanese Mincho-typeface TrueType font
 
 Group: User Interface/X
@@ -26,14 +26,16 @@ Japan Society for the Promotion of Scien
 Institute for Zen Buddhism (IRIZ), Hanazono University. also with volunteers
 who work together on glyphwiki.org.
 
-This font supports:
- - 6359 characters in JIS X 0208:1997
+This font contains 49161 characters in ISO/IEC 10646 and Unicode Standard,
+also supports character sets:
+ - 6355 characters in JIS X 0208:1997
+ - 5801 characters in JIS X 0212:1990
  - 3695 characters in JIS X 0213:2004
- - 22 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+9FA6~U+9FBB)
- - 8 characters in Unicode 5.1 (U+9FBC~U+9FC3)
- - 16 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+31C0~U+31CF)
- - 20 characters in ISO/IEC 10646:2003/Amd.3:2008 (U+31D0~U+31E3)
- - 84 characters in IBM extensions
+ - 6763 characters in GB 2312-80
+ - 13053 characters in Big-5
+ - 4888 characters in KS X 1001:1992
+ - 360 characters in IBM extensions
+ - 9810 characters in IICORE
 
 %prep
 %setup -q -T -c -a 0
@@ -64,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Nov 27 2009 Akira TAGOH ta...@redhat.com - 20091003-1
+- Update to 20091003.
+
 * Fri Jul 24 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 20081012-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 


Index: sources
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- sources 17 Nov 2008 02:23:06 -  1.2
+++ sources 27 Nov 2009 02:42:43 -  1.3
@@ -1 +1 @@
-eed4ae19b1fbee96ac334bf7af4c564a  hanazono-20081012.zip
+e680769573b481a3ae8365fec3b4d463  hanazono-20091003.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/devel hanazono-fonts.spec,1.5,1.6

2009-11-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1393

Modified Files:
hanazono-fonts.spec 
Log Message:



Index: hanazono-fonts.spec
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/hanazono-fonts.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- hanazono-fonts.spec 27 Nov 2009 02:42:43 -  1.5
+++ hanazono-fonts.spec 27 Nov 2009 02:52:06 -  1.6
@@ -61,7 +61,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %_font_pkg -f %{fontconf} hanazono.ttf
 
-%doc LISENCE.txt README.txt THANKS.txt
+%doc LISENSE.txt README.txt THANKS.txt
 %dir %{_fontdir}
 
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/devel hanazono-fonts.spec,1.6,1.7

2009-11-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10555

Modified Files:
hanazono-fonts.spec 
Log Message:
correct a typo


Index: hanazono-fonts.spec
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/hanazono-fonts.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- hanazono-fonts.spec 27 Nov 2009 02:52:06 -  1.6
+++ hanazono-fonts.spec 27 Nov 2009 04:55:38 -  1.7
@@ -61,8 +61,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %_font_pkg -f %{fontconf} hanazono.ttf
 
-%doc LISENSE.txt README.txt THANKS.txt
-%dir %{_fontdir}
+%doc LICENSE.txt README.txt THANKS.txt
 
 
 %changelog

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/devel import.log, NONE, 1.1 knm-new-fixed-fonts-fontconfig.conf, NONE, 1.1 knm-new-fixed-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25094/devel

Modified Files:
.cvsignore sources 
Added Files:
import.log knm-new-fixed-fonts-fontconfig.conf 
knm-new-fixed-fonts.spec 
Log Message:
initial import



--- NEW FILE import.log ---
knm-new-fixed-fonts-1_1-8_fc13:HEAD:knm-new-fixed-fonts-1.1-8.fc13.src.rpm:1256794568


--- NEW FILE knm-new-fixed-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
  match
test name=lang
  stringja-jp/string
/test
test name=family
  stringmonospace/string
/test
edit name=family mode=prepend binding=same
  stringFixed/string
/edit
  /match
  alias
familyFixed/family
default
  familymonospace/family
/default
  /alias
/fontconfig



--- NEW FILE knm-new-fixed-fonts.spec ---
%global priority69
%global fontnameknm-new-fixed
%global fontconf%{priority}-%{fontname}.conf
%global catalogue   %{_sysconfdir}/X11/fontpath.d

Name:   %{fontname}-fonts
Version:1.1
Release:8%{?dist}

Summary:12x12 JIS X 0208 Bitmap fonts
Group:  User Interface/X
License:GPL+

## the following upstream URL is a dead link anymore.
#URL:   http://www.din.or.jp/~storm/fonts/
#Source0:   http://www.din.or.jp/~storm/fonts/knm_new.tar.gz
Source0:knm_new.tar.gz
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:  noarch
BuildRequires:  mkfontdir fontpackages-devel

Requires:   fontpackages-filesystem
Conflicts:  fonts-japanese = 0.20061016-11.fc8
Obsoletes:  knm_new = 1.1-16 knm_new-fonts  1.1-7

%description
This package provides 12x12 Japanese bitmap fonts for JIS X 0208.
The JIS X 0208 character set contains the most often used Kanji glyphs.


%prep
%setup -q -T -c -a 0

%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}

install -m 0644 -p fonts/*.pcf.gz $RPM_BUILD_ROOT%{_fontdir}/

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

mkfontdir $RPM_BUILD_ROOT%{_fontdir}

# Install catalogue symlink
ln -s -f %{_fontdir} $RPM_BUILD_ROOT%{catalogue}/%{fontname}


%clean
rm -rf $RPM_BUILD_ROOT

%_font_pkg -f %{fontconf} *.pcf.gz

%lang(ja) %doc fonts/readme fonts/changes
%doc fonts/gtkrc.sample
%verify(not md5 size mtime) %{_fontdir}/fonts.dir
%{catalogue}/*


%changelog
* Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
- Improve the spec file etc to pass the package review.

* Tue Oct 13 2009 Akira TAGOH ta...@redhat.com - 1.1-7
- Renaming to satisfy the naming schema in the fontpackages policy.

* Fri Jul 24 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 1.1-5
- Clean up a spec file.
- Rebuild to correct autoprovides (#491966)

* Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

* Tue Oct 30 2007 Akira TAGOH ta...@redhat.com - 1.1-3
- Remove the upstream's dead link from the spec file. (#353941)

* Fri Sep  7 2007 Akira TAGOH ta...@redhat.com - 1.1-2
- clean up

* Thu Aug 30 2007 Akira TAGOH ta...@redhat.com - 1.1-1
- Split up from fonts-japanese.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- .cvsignore  29 Oct 2009 00:08:08 -  1.1
+++ .cvsignore  29 Oct 2009 06:03:07 -  1.2
@@ -0,0 +1 @@
+knm_new.tar.gz


Index: sources
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- sources 29 Oct 2009 00:08:09 -  1.1
+++ sources 29 Oct 2009 06:03:10 -  1.2
@@ -0,0 +1 @@
+065920714d022cfd225feb6d80b03238  knm_new.tar.gz

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-12 import.log, NONE, 1.1 knm-new-fixed-fonts-fontconfig.conf, NONE, 1.1 knm-new-fixed-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16040/F-12

Modified Files:
.cvsignore sources 
Added Files:
import.log knm-new-fixed-fonts-fontconfig.conf 
knm-new-fixed-fonts.spec 
Log Message:
initial import



--- NEW FILE import.log ---
knm-new-fixed-fonts-1_1-8_fc13:F-12:knm-new-fixed-fonts-1.1-8.fc13.src.rpm:1256796979


--- NEW FILE knm-new-fixed-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
  match
test name=lang
  stringja-jp/string
/test
test name=family
  stringmonospace/string
/test
edit name=family mode=prepend binding=same
  stringFixed/string
/edit
  /match
  alias
familyFixed/family
default
  familymonospace/family
/default
  /alias
/fontconfig



--- NEW FILE knm-new-fixed-fonts.spec ---
%global priority69
%global fontnameknm-new-fixed
%global fontconf%{priority}-%{fontname}.conf
%global catalogue   %{_sysconfdir}/X11/fontpath.d

Name:   %{fontname}-fonts
Version:1.1
Release:8%{?dist}

Summary:12x12 JIS X 0208 Bitmap fonts
Group:  User Interface/X
License:GPL+

## the following upstream URL is a dead link anymore.
#URL:   http://www.din.or.jp/~storm/fonts/
#Source0:   http://www.din.or.jp/~storm/fonts/knm_new.tar.gz
Source0:knm_new.tar.gz
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:  noarch
BuildRequires:  mkfontdir fontpackages-devel

Requires:   fontpackages-filesystem
Conflicts:  fonts-japanese = 0.20061016-11.fc8
Obsoletes:  knm_new = 1.1-16 knm_new-fonts  1.1-7

%description
This package provides 12x12 Japanese bitmap fonts for JIS X 0208.
The JIS X 0208 character set contains the most often used Kanji glyphs.


%prep
%setup -q -T -c -a 0

%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}

install -m 0644 -p fonts/*.pcf.gz $RPM_BUILD_ROOT%{_fontdir}/

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

mkfontdir $RPM_BUILD_ROOT%{_fontdir}

# Install catalogue symlink
ln -s -f %{_fontdir} $RPM_BUILD_ROOT%{catalogue}/%{fontname}


%clean
rm -rf $RPM_BUILD_ROOT

%_font_pkg -f %{fontconf} *.pcf.gz

%lang(ja) %doc fonts/readme fonts/changes
%doc fonts/gtkrc.sample
%verify(not md5 size mtime) %{_fontdir}/fonts.dir
%{catalogue}/*


%changelog
* Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
- Improve the spec file etc to pass the package review.

* Tue Oct 13 2009 Akira TAGOH ta...@redhat.com - 1.1-7
- Renaming to satisfy the naming schema in the fontpackages policy.

* Fri Jul 24 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 1.1-5
- Clean up a spec file.
- Rebuild to correct autoprovides (#491966)

* Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

* Tue Oct 30 2007 Akira TAGOH ta...@redhat.com - 1.1-3
- Remove the upstream's dead link from the spec file. (#353941)

* Fri Sep  7 2007 Akira TAGOH ta...@redhat.com - 1.1-2
- clean up

* Thu Aug 30 2007 Akira TAGOH ta...@redhat.com - 1.1-1
- Split up from fonts-japanese.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- .cvsignore  29 Oct 2009 00:08:08 -  1.1
+++ .cvsignore  29 Oct 2009 06:37:07 -  1.2
@@ -0,0 +1 @@
+knm_new.tar.gz


Index: sources
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- sources 29 Oct 2009 00:08:09 -  1.1
+++ sources 29 Oct 2009 06:37:08 -  1.2
@@ -0,0 +1 @@
+065920714d022cfd225feb6d80b03238  knm_new.tar.gz

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-11 import.log, NONE, 1.1 knm-new-fixed-fonts-fontconfig.conf, NONE, 1.1 knm-new-fixed-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2720/F-11

Modified Files:
.cvsignore sources 
Added Files:
import.log knm-new-fixed-fonts-fontconfig.conf 
knm-new-fixed-fonts.spec 
Log Message:
initial import



--- NEW FILE import.log ---
knm-new-fixed-fonts-1_1-8_fc13:F-11:knm-new-fixed-fonts-1.1-8.fc13.src.rpm:1256799623


--- NEW FILE knm-new-fixed-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
  match
test name=lang
  stringja-jp/string
/test
test name=family
  stringmonospace/string
/test
edit name=family mode=prepend binding=same
  stringFixed/string
/edit
  /match
  alias
familyFixed/family
default
  familymonospace/family
/default
  /alias
/fontconfig



--- NEW FILE knm-new-fixed-fonts.spec ---
%global priority69
%global fontnameknm-new-fixed
%global fontconf%{priority}-%{fontname}.conf
%global catalogue   %{_sysconfdir}/X11/fontpath.d

Name:   %{fontname}-fonts
Version:1.1
Release:8%{?dist}

Summary:12x12 JIS X 0208 Bitmap fonts
Group:  User Interface/X
License:GPL+

## the following upstream URL is a dead link anymore.
#URL:   http://www.din.or.jp/~storm/fonts/
#Source0:   http://www.din.or.jp/~storm/fonts/knm_new.tar.gz
Source0:knm_new.tar.gz
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:  noarch
BuildRequires:  mkfontdir fontpackages-devel

Requires:   fontpackages-filesystem
Conflicts:  fonts-japanese = 0.20061016-11.fc8
Obsoletes:  knm_new = 1.1-16 knm_new-fonts  1.1-7

%description
This package provides 12x12 Japanese bitmap fonts for JIS X 0208.
The JIS X 0208 character set contains the most often used Kanji glyphs.


%prep
%setup -q -T -c -a 0

%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}

install -m 0644 -p fonts/*.pcf.gz $RPM_BUILD_ROOT%{_fontdir}/

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

mkfontdir $RPM_BUILD_ROOT%{_fontdir}

# Install catalogue symlink
ln -s -f %{_fontdir} $RPM_BUILD_ROOT%{catalogue}/%{fontname}


%clean
rm -rf $RPM_BUILD_ROOT

%_font_pkg -f %{fontconf} *.pcf.gz

%lang(ja) %doc fonts/readme fonts/changes
%doc fonts/gtkrc.sample
%verify(not md5 size mtime) %{_fontdir}/fonts.dir
%{catalogue}/*


%changelog
* Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
- Improve the spec file etc to pass the package review.

* Tue Oct 13 2009 Akira TAGOH ta...@redhat.com - 1.1-7
- Renaming to satisfy the naming schema in the fontpackages policy.

* Fri Jul 24 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 1.1-5
- Clean up a spec file.
- Rebuild to correct autoprovides (#491966)

* Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

* Tue Oct 30 2007 Akira TAGOH ta...@redhat.com - 1.1-3
- Remove the upstream's dead link from the spec file. (#353941)

* Fri Sep  7 2007 Akira TAGOH ta...@redhat.com - 1.1-2
- clean up

* Thu Aug 30 2007 Akira TAGOH ta...@redhat.com - 1.1-1
- Split up from fonts-japanese.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- .cvsignore  29 Oct 2009 00:08:08 -  1.1
+++ .cvsignore  29 Oct 2009 07:19:54 -  1.2
@@ -0,0 +1 @@
+knm_new.tar.gz


Index: sources
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- sources 29 Oct 2009 00:08:09 -  1.1
+++ sources 29 Oct 2009 07:19:55 -  1.2
@@ -0,0 +1 @@
+065920714d022cfd225feb6d80b03238  knm_new.tar.gz

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-10 import.log, NONE, 1.1 knm-new-fixed-fonts-fontconfig.conf, NONE, 1.1 knm-new-fixed-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7007/F-10

Modified Files:
.cvsignore sources 
Added Files:
import.log knm-new-fixed-fonts-fontconfig.conf 
knm-new-fixed-fonts.spec 
Log Message:
initial import



--- NEW FILE import.log ---
knm-new-fixed-fonts-1_1-8_fc13:F-10:knm-new-fixed-fonts-1.1-8.fc13.src.rpm:1256800878


--- NEW FILE knm-new-fixed-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
  match
test name=lang
  stringja-jp/string
/test
test name=family
  stringmonospace/string
/test
edit name=family mode=prepend binding=same
  stringFixed/string
/edit
  /match
  alias
familyFixed/family
default
  familymonospace/family
/default
  /alias
/fontconfig



--- NEW FILE knm-new-fixed-fonts.spec ---
%global priority69
%global fontnameknm-new-fixed
%global fontconf%{priority}-%{fontname}.conf
%global catalogue   %{_sysconfdir}/X11/fontpath.d

Name:   %{fontname}-fonts
Version:1.1
Release:8%{?dist}

Summary:12x12 JIS X 0208 Bitmap fonts
Group:  User Interface/X
License:GPL+

## the following upstream URL is a dead link anymore.
#URL:   http://www.din.or.jp/~storm/fonts/
#Source0:   http://www.din.or.jp/~storm/fonts/knm_new.tar.gz
Source0:knm_new.tar.gz
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:  noarch
BuildRequires:  mkfontdir fontpackages-devel

Requires:   fontpackages-filesystem
Conflicts:  fonts-japanese = 0.20061016-11.fc8
Obsoletes:  knm_new = 1.1-16 knm_new-fonts  1.1-7

%description
This package provides 12x12 Japanese bitmap fonts for JIS X 0208.
The JIS X 0208 character set contains the most often used Kanji glyphs.


%prep
%setup -q -T -c -a 0

%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}

install -m 0644 -p fonts/*.pcf.gz $RPM_BUILD_ROOT%{_fontdir}/

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

mkfontdir $RPM_BUILD_ROOT%{_fontdir}

# Install catalogue symlink
ln -s -f %{_fontdir} $RPM_BUILD_ROOT%{catalogue}/%{fontname}


%clean
rm -rf $RPM_BUILD_ROOT

%_font_pkg -f %{fontconf} *.pcf.gz

%lang(ja) %doc fonts/readme fonts/changes
%doc fonts/gtkrc.sample
%verify(not md5 size mtime) %{_fontdir}/fonts.dir
%{catalogue}/*


%changelog
* Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
- Improve the spec file etc to pass the package review.

* Tue Oct 13 2009 Akira TAGOH ta...@redhat.com - 1.1-7
- Renaming to satisfy the naming schema in the fontpackages policy.

* Fri Jul 24 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 1.1-5
- Clean up a spec file.
- Rebuild to correct autoprovides (#491966)

* Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

* Tue Oct 30 2007 Akira TAGOH ta...@redhat.com - 1.1-3
- Remove the upstream's dead link from the spec file. (#353941)

* Fri Sep  7 2007 Akira TAGOH ta...@redhat.com - 1.1-2
- clean up

* Thu Aug 30 2007 Akira TAGOH ta...@redhat.com - 1.1-1
- Split up from fonts-japanese.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- .cvsignore  29 Oct 2009 00:08:08 -  1.1
+++ .cvsignore  29 Oct 2009 07:29:45 -  1.2
@@ -0,0 +1 @@
+knm_new.tar.gz


Index: sources
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- sources 29 Oct 2009 00:08:09 -  1.1
+++ sources 29 Oct 2009 07:29:45 -  1.2
@@ -0,0 +1 @@
+065920714d022cfd225feb6d80b03238  knm_new.tar.gz

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/devel knm-new-fixed-fonts.spec,1.1,1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8591

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
- change the priority to 65 to make this the less priority.


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/devel/knm-new-fixed-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- knm-new-fixed-fonts.spec29 Oct 2009 06:03:10 -  1.1
+++ knm-new-fixed-fonts.spec29 Oct 2009 07:33:43 -  1.2
@@ -1,11 +1,11 @@
-%globalpriority69
+%globalpriority65
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   8%{?dist}
+Release:   9%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
+- change the priority to 65 to make this the less priority.
+
 * Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
 - Improve the spec file etc to pass the package review.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/devel Makefile,1.1,NONE sources,1.2,NONE

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14190

Removed Files:
Makefile sources 
Log Message:
dead package


--- Makefile DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/devel dead.package,NONE,1.1

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14668

Added Files:
dead.package 
Log Message:
dead package


--- NEW FILE dead.package ---
This package has been renamed to knm-new-fixed-fonts.

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-12 knm-new-fixed-fonts.spec,1.1,1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14959

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
- change the priority to 65 to make this the less priority.


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-12/knm-new-fixed-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- knm-new-fixed-fonts.spec29 Oct 2009 06:37:08 -  1.1
+++ knm-new-fixed-fonts.spec29 Oct 2009 07:47:32 -  1.2
@@ -1,11 +1,11 @@
-%globalpriority69
+%globalpriority65
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   8%{?dist}
+Release:   9%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
+- change the priority to 65 to make this the less priority.
+
 * Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
 - Improve the spec file etc to pass the package review.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/F-12 dead.package, NONE, 1.1 Makefile, 1.1, NONE branch, 1.1, NONE knm_new-fonts.spec, 1.6, NONE sources, 1.2, NONE

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21194

Added Files:
dead.package 
Removed Files:
Makefile branch knm_new-fonts.spec sources 
Log Message:
dead package


--- NEW FILE dead.package ---
This package has been renamed to knm-new-fixed-fonts.


--- Makefile DELETED ---


--- branch DELETED ---


--- knm_new-fonts.spec DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-11 knm-new-fixed-fonts.spec,1.1,1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24865

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
- change the priority to 65 to make this the less priority.


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-11/knm-new-fixed-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- knm-new-fixed-fonts.spec29 Oct 2009 07:19:55 -  1.1
+++ knm-new-fixed-fonts.spec29 Oct 2009 08:12:50 -  1.2
@@ -1,11 +1,11 @@
-%globalpriority69
+%globalpriority65
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   8%{?dist}
+Release:   9%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
+- change the priority to 65 to make this the less priority.
+
 * Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
 - Improve the spec file etc to pass the package review.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm-new-fixed-fonts/F-10 knm-new-fixed-fonts.spec,1.1,1.2

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28603

Modified Files:
knm-new-fixed-fonts.spec 
Log Message:
* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
- change the priority to 65 to make this the less priority.


Index: knm-new-fixed-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm-new-fixed-fonts/F-10/knm-new-fixed-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- knm-new-fixed-fonts.spec29 Oct 2009 07:29:45 -  1.1
+++ knm-new-fixed-fonts.spec29 Oct 2009 08:24:51 -  1.2
@@ -1,11 +1,11 @@
-%globalpriority69
+%globalpriority65
 %globalfontnameknm-new-fixed
 %globalfontconf%{priority}-%{fontname}.conf
 %globalcatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   8%{?dist}
+Release:   9%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap fonts
 Group: User Interface/X
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Oct 29 2009 Akira TAGOH ta...@redhat.com - 1.1-9
+- change the priority to 65 to make this the less priority.
+
 * Tue Oct 20 2009 Akira TAGOH ta...@redhat.com - 1.1-8
 - Improve the spec file etc to pass the package review.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/F-11 dead.package, NONE, 1.1 Makefile, 1.1, NONE branch, 1.1, NONE knm_new-fonts.spec, 1.5, NONE sources, 1.2, NONE

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28981

Added Files:
dead.package 
Removed Files:
Makefile branch knm_new-fonts.spec sources 
Log Message:
dead package


--- NEW FILE dead.package ---
This package has been renamed to knm-new-fixed-fonts.


--- Makefile DELETED ---


--- branch DELETED ---


--- knm_new-fonts.spec DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/F-10 Makefile, 1.1, NONE branch, 1.1, NONE knm_new-fonts.spec, 1.2, NONE sources, 1.2, NONE

2009-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4803

Removed Files:
Makefile branch knm_new-fonts.spec sources 
Log Message:
dead package


--- Makefile DELETED ---


--- branch DELETED ---


--- knm_new-fonts.spec DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/sazanami-fonts/devel uni7E6B-gothic.patch, NONE, 1.1 uni7E6B-mincho.patch, NONE, 1.1 sazanami-fonts.spec, 1.7, 1.8

2009-10-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/sazanami-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12915

Modified Files:
sazanami-fonts.spec 
Added Files:
uni7E6B-gothic.patch uni7E6B-mincho.patch 
Log Message:
* Tue Oct  6 2009 Akira TAGOH ta...@redhat.com - 0.20040629-9
- keeps the original timestamps for TTFs.

uni7E6B-gothic.patch:
 sazanami-gothic.ttx |  321 
 1 file changed, 176 insertions(+), 145 deletions(-)

--- NEW FILE uni7E6B-gothic.patch ---
--- sazanami-gothic.ttx.orig2009-09-30 09:12:32.0 +0100
+++ sazanami-gothic.ttx 2009-09-30 09:15:28.0 +0100
@@ -851447,168 +851447,199 @@
 /bytecode/instructions
 /TTGlyph
 
-TTGlyph name=uni7E6B xMin=43 yMin=-105 xMax=1008 yMax=814
+TTGlyph name=uni7E6B xMin=79 yMin=-127 xMax=1008 yMax=814
   contour
-pt x=722 y=321 on=1/
-pt x=749 y=306 on=0/
-pt x=779 y=291 on=1/
-pt x=731 y=285 on=0/
-pt x=635 y=275 on=1/
-pt x=684 y=297 on=0/
-  /contour
-  contour
-pt x=726 y=400 on=1/
-pt x=672 y=436 on=0/
-pt x=646 y=473 on=1/
-pt x=809 y=473 on=1/
-pt x=776 y=435 on=0/
+pt x=729 y=378 on=1/
+pt x=777 y=416 on=0/
+pt x=813 y=459 on=1/
+pt x=648 y=459 on=1/
+pt x=674 y=418 on=0/
   /contour
   contour
 pt x=295 y=623 on=1/
-pt x=368 y=623 on=1/
-pt x=368 y=603 on=1/
 pt x=295 y=603 on=1/
+pt x=368 y=603 on=1/
+pt x=368 y=623 on=1/
   /contour
   contour
 pt x=295 y=536 on=1/
-pt x=368 y=536 on=1/
-pt x=368 y=515 on=1/
 pt x=295 y=515 on=1/
+pt x=368 y=515 on=1/
+pt x=368 y=536 on=1/
+  /contour
+  contour
+pt x=501 y=459 on=1/
+pt x=501 y=525 on=1/
+pt x=878 y=525 on=1/
+pt x=904 y=479 on=1/
+pt x=854 y=400 on=0/
+pt x=785 y=342 on=1/
+pt x=873 y=292 on=0/
+pt x=1008 y=246 on=1/
+pt x=963 y=192 on=1/
+pt x=814 y=244 on=0/
+pt x=726 y=299 on=1/
+pt x=630 y=236 on=0/
+pt x=506 y=198 on=1/
+pt x=523 y=177 on=0/
+pt x=522 y=169 on=1/
+pt x=520 y=160 on=0/
+pt x=490 y=167 on=1/
+pt x=457 y=146 on=0/
+pt x=401 y=124 on=1/
+pt x=407 y=120 on=0/
+pt x=409 y=118 on=1/
+pt x=392 y=78 on=1/
+pt x=572 y=140 on=0/
+pt x=668 y=198 on=1/
+pt x=714 y=144 on=0/
+pt x=714 y=129 on=1/
+pt x=714 y=118 on=0/
+pt x=681 y=129 on=1/
+pt x=637 y=105 on=0/
+pt x=589 y=84 on=1/
+pt x=645 y=85 on=0/
+pt x=752 y=89 on=1/
+pt x=762 y=121 on=1/
+pt x=843 y=98 on=0/
+pt x=909 y=46 on=1/
+pt x=878 y=-14 on=1/
+pt x=843 y=14 on=0/
+pt x=813 y=30 on=1/
+pt x=813 y=25 on=1/
+pt x=812 y=25 on=0/
+pt x=810 y=25 on=1/
+pt x=687 y=20 on=1/
+pt x=803 y=-3 on=0/
+pt x=903 y=-64 on=1/
+pt x=879 y=-127 on=1/
+pt x=773 y=-60 on=0/
+pt x=653 y=-41 on=1/
+pt x=663 y=20 on=1/
+pt x=623 y=18 on=0/
+pt x=543 y=16 on=1/
+pt x=543 y=-106 on=1/
+pt x=477 y=-106 on=1/
+pt x=477 y=14 on=1/
+pt x=474 y=14 on=0/
+pt x=472 y=14 on=1/
+pt x=344 y=10 on=1/
+pt x=372 y=-26 on=0/
+pt x=372 y=-38 on=1/
+pt x=373 y=-51 on=0/
+pt x=340 y=-38 on=1/
+pt x=256 y=-84 on=0/
+pt x=126 y=-120 on=1/
+pt x=84 y=-63 on=1/
+pt x=206 y=-30 on=0/
+pt x=285 y=9 on=1/
+pt x=187 y=6 on=1/
+pt x=180 y=-13 on=0/
+pt x=169 y=-14 on=1/
+pt x=146 y=-16 on=0/
+pt x=132 y=71 on=1/
+pt x=352 y=77 on=1/
+pt x=295 y=110 on=0/
+pt x=229 y=125 on=1/
+pt x=243 y=190 on=1/
+pt x=286 y=180 on=0/
+pt x=321 y=165 on=1/
+pt x=381 y=187 on=0/
+pt x=413 y=202 on=1/
+pt x=390 y=236 on=1/
+pt x=405 y=245 on=1/
+pt x=79 y=245 on=1/
+pt x=85 y=353 on=1/
+pt x=145 y=346 on=0/
+pt x=163 y=336 on=1/
+pt x=183 y=325 on=0/
+pt x=149 y=315 on=1/
+pt x=149 y=312 on=1/
+pt x=229 y=312 on=1/
+pt x=229 y=362 on=1/
+pt x=93 y=362 on=1/
+pt x=93 y=428 on=1/
+pt x=229 y=428 on=1/
+pt x=229 y=448 on=1/
+pt x=90 y=448 on=1/
+pt x=88 y=689 on=1/
+pt x=229 y=689 on=1/
+pt x=229 y=709 on=1/
+pt x=108 y=709 on=1/
+pt x=108 y=776 on=1/
+pt x=229 y=776 on=1/
+pt x=229 y=814 on=1/
+pt x=261 y=811 on=0/
+pt x=281 y=808 on=1/
+pt x=308 y=799 on=1/
+pt x=328 y=789 on=0/
+pt x=295 y

rpms/sazanami-fonts/devel sources,1.2,1.3

2009-10-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/sazanami-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23951

Modified Files:
sources 
Log Message:



Index: sources
===
RCS file: /cvs/pkgs/rpms/sazanami-fonts/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- sources 27 Aug 2007 03:42:29 -  1.2
+++ sources 6 Oct 2009 04:57:02 -   1.3
@@ -1 +1 @@
-b312f77829011547b19fc16956dc6f12  sazanami-20061016.tar.bz2
+ceef10579a75c92483171f3bd7f77df2  sazanami-20040629.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/sazanami-fonts/devel .cvsignore,1.2,1.3

2009-10-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/sazanami-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24084

Modified Files:
.cvsignore 
Log Message:



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/sazanami-fonts/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore  27 Aug 2007 03:42:29 -  1.2
+++ .cvsignore  6 Oct 2009 04:57:46 -   1.3
@@ -1 +1,2 @@
 sazanami-20061016.tar.bz2
+sazanami-20040629.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/devel .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 vlgothic-fonts.spec, 1.4, 1.5

2009-06-15 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5676

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore  23 Apr 2009 13:00:27 -  1.3
+++ .cvsignore  15 Jun 2009 11:21:07 -  1.4
@@ -1,2 +1,3 @@
 VLGothic-20090204.tar.bz2
 VLGothic-20090422.tar.bz2
+VLGothic-20090612.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources 23 Apr 2009 13:00:27 -  1.3
+++ sources 15 Jun 2009 11:21:08 -  1.4
@@ -1 +1 @@
-dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2
+2ae45ffcaf4fd75331eb582cfee6cc54  VLGothic-20090612.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/vlgothic-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- vlgothic-fonts.spec 23 Apr 2009 13:00:27 -  1.4
+++ vlgothic-fonts.spec 15 Jun 2009 11:21:08 -  1.5
@@ -8,14 +8,14 @@ Most of the glyphs are taken from the M+
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090422
+Version:   20090612
 Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/40480/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,9 @@ rm -rf ${RPM_BUILD_ROOT}
 
 
 %changelog
+* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
+- New upstream release.
+
 * Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
 - New upstream release.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-11 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 vlgothic-fonts.spec, 1.4, 1.5

2009-06-15 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12762

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-11/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore  23 Apr 2009 13:02:06 -  1.3
+++ .cvsignore  15 Jun 2009 11:58:31 -  1.4
@@ -1,2 +1,3 @@
 VLGothic-20090204.tar.bz2
 VLGothic-20090422.tar.bz2
+VLGothic-20090612.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-11/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources 23 Apr 2009 13:02:06 -  1.3
+++ sources 15 Jun 2009 11:58:31 -  1.4
@@ -1 +1 @@
-dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2
+2ae45ffcaf4fd75331eb582cfee6cc54  VLGothic-20090612.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-11/vlgothic-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- vlgothic-fonts.spec 23 Apr 2009 13:02:06 -  1.4
+++ vlgothic-fonts.spec 15 Jun 2009 11:58:31 -  1.5
@@ -8,14 +8,14 @@ Most of the glyphs are taken from the M+
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090422
+Version:   20090612
 Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/40480/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,9 @@ rm -rf ${RPM_BUILD_ROOT}
 
 
 %changelog
+* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
+- New upstream release.
+
 * Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
 - New upstream release.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-10 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 vlgothic-fonts.spec, 1.2, 1.3

2009-06-15 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18129

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-10/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore  23 Apr 2009 13:09:03 -  1.3
+++ .cvsignore  15 Jun 2009 12:25:23 -  1.4
@@ -1,2 +1,3 @@
 VLGothic-20090204.tar.bz2
 VLGothic-20090422.tar.bz2
+VLGothic-20090612.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-10/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources 23 Apr 2009 13:09:03 -  1.3
+++ sources 15 Jun 2009 12:25:23 -  1.4
@@ -1 +1 @@
-dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2
+2ae45ffcaf4fd75331eb582cfee6cc54  VLGothic-20090612.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-10/vlgothic-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- vlgothic-fonts.spec 23 Apr 2009 13:09:03 -  1.2
+++ vlgothic-fonts.spec 15 Jun 2009 12:25:23 -  1.3
@@ -8,14 +8,14 @@ Most of the glyphs are taken from the M+
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090422
+Version:   20090612
 Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/40480/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,9 @@ rm -rf ${RPM_BUILD_ROOT}
 
 
 %changelog
+* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
+- New upstream release.
+
 * Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
 - New upstream release.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-9 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 vlgothic-fonts.spec, 1.2, 1.3

2009-06-15 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20475

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-9/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore  23 Apr 2009 13:32:06 -  1.3
+++ .cvsignore  15 Jun 2009 12:38:44 -  1.4
@@ -1,2 +1,3 @@
 VLGothic-20090204.tar.bz2
 VLGothic-20090422.tar.bz2
+VLGothic-20090612.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-9/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources 23 Apr 2009 13:32:06 -  1.3
+++ sources 15 Jun 2009 12:38:44 -  1.4
@@ -1 +1 @@
-dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2
+2ae45ffcaf4fd75331eb582cfee6cc54  VLGothic-20090612.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-9/vlgothic-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- vlgothic-fonts.spec 23 Apr 2009 13:32:06 -  1.2
+++ vlgothic-fonts.spec 15 Jun 2009 12:38:44 -  1.3
@@ -8,14 +8,14 @@ Most of the glyphs are taken from the M+
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090422
+Version:   20090612
 Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/40480/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,9 @@ rm -rf ${RPM_BUILD_ROOT}
 
 
 %changelog
+* Mon Jun 15 2009 Akira TAGOH ta...@redhat.com - 20090612-1
+- New upstream release.
+
 * Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
 - New upstream release.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/devel ipa-gothic-fonts-fontconfig.conf, 1.1, 1.2 ipa-gothic-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2981

Modified Files:
ipa-gothic-fonts-fontconfig.conf ipa-gothic-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-gothic-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-gothic-fonts/devel/ipa-gothic-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts-fontconfig.conf23 Apr 2009 06:52:34 -  1.1
+++ ipa-gothic-fonts-fontconfig.conf5 Jun 2009 11:03:26 -   1.2
@@ -21,5 +21,15 @@
stringIPAGothic/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAGothic/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-gothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/devel/ipa-gothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts.spec   23 Apr 2009 06:52:34 -  1.1
+++ ipa-gothic-fonts.spec   5 Jun 2009 11:03:27 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Gothic-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-11 ipa-gothic-fonts-fontconfig.conf, 1.1, 1.2 ipa-gothic-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3871

Modified Files:
ipa-gothic-fonts-fontconfig.conf ipa-gothic-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-gothic-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-gothic-fonts/F-11/ipa-gothic-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts-fontconfig.conf23 Apr 2009 07:28:18 -  1.1
+++ ipa-gothic-fonts-fontconfig.conf5 Jun 2009 11:05:05 -   1.2
@@ -21,5 +21,15 @@
stringIPAGothic/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAGothic/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-gothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-11/ipa-gothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts.spec   23 Apr 2009 07:28:18 -  1.1
+++ ipa-gothic-fonts.spec   5 Jun 2009 11:05:05 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Gothic-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-11 ipa-gothic-fonts.spec,1.2,1.3

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20387

Modified Files:
ipa-gothic-fonts.spec 
Log Message:



Index: ipa-gothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-11/ipa-gothic-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- ipa-gothic-fonts.spec   5 Jun 2009 11:05:05 -   1.2
+++ ipa-gothic-fonts.spec   5 Jun 2009 11:51:21 -   1.3
@@ -51,6 +51,7 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-10 ipa-gothic-fonts-fontconfig.conf, 1.1, 1.2 ipa-gothic-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20987

Modified Files:
ipa-gothic-fonts-fontconfig.conf ipa-gothic-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-gothic-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-gothic-fonts/F-10/ipa-gothic-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts-fontconfig.conf23 Apr 2009 07:42:26 -  1.1
+++ ipa-gothic-fonts-fontconfig.conf5 Jun 2009 11:51:47 -   1.2
@@ -21,5 +21,15 @@
stringIPAGothic/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAGothic/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-gothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-10/ipa-gothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts.spec   23 Apr 2009 07:42:26 -  1.1
+++ ipa-gothic-fonts.spec   5 Jun 2009 11:51:47 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Gothic-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -51,10 +51,14 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-9 ipa-gothic-fonts-fontconfig.conf, 1.1, 1.2 ipa-gothic-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2489

Modified Files:
ipa-gothic-fonts-fontconfig.conf ipa-gothic-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-gothic-fonts-fontconfig.conf
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-9/ipa-gothic-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts-fontconfig.conf23 Apr 2009 09:42:05 -  1.1
+++ ipa-gothic-fonts-fontconfig.conf5 Jun 2009 12:01:26 -   1.2
@@ -21,5 +21,15 @@
stringIPAGothic/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAGothic/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-gothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-9/ipa-gothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-gothic-fonts.spec   23 Apr 2009 09:42:05 -  1.1
+++ ipa-gothic-fonts.spec   5 Jun 2009 12:01:26 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Gothic-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -51,10 +51,14 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pgothic-fonts/F-10 ipa-pgothic-fonts-fontconfig.conf, 1.1, 1.2 ipa-pgothic-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5441

Modified Files:
ipa-pgothic-fonts-fontconfig.conf ipa-pgothic-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-pgothic-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-pgothic-fonts/F-10/ipa-pgothic-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pgothic-fonts-fontconfig.conf   23 Apr 2009 07:48:02 -  1.1
+++ ipa-pgothic-fonts-fontconfig.conf   5 Jun 2009 12:10:35 -   1.2
@@ -21,5 +21,15 @@
stringIPAPGothic/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAPGothic/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-pgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-10/ipa-pgothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pgothic-fonts.spec  23 Apr 2009 07:48:02 -  1.1
+++ ipa-pgothic-fonts.spec  5 Jun 2009 12:10:35 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Proportional Gothic-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -51,10 +51,14 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pgothic-fonts/F-9 ipa-pgothic-fonts-fontconfig.conf, 1.1, 1.2 ipa-pgothic-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5955

Modified Files:
ipa-pgothic-fonts-fontconfig.conf ipa-pgothic-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-pgothic-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-pgothic-fonts/F-9/ipa-pgothic-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pgothic-fonts-fontconfig.conf   23 Apr 2009 09:43:24 -  1.1
+++ ipa-pgothic-fonts-fontconfig.conf   5 Jun 2009 12:12:42 -   1.2
@@ -21,5 +21,15 @@
stringIPAPGothic/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAPGothic/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-pgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-9/ipa-pgothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pgothic-fonts.spec  23 Apr 2009 09:43:24 -  1.1
+++ ipa-pgothic-fonts.spec  5 Jun 2009 12:12:42 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Proportional Gothic-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -51,10 +51,14 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-11 ipa-mincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-mincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8192

Modified Files:
ipa-mincho-fonts-fontconfig.conf ipa-mincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-mincho-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-mincho-fonts/F-11/ipa-mincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-mincho-fonts-fontconfig.conf23 Apr 2009 07:36:05 -  1.1
+++ ipa-mincho-fonts-fontconfig.conf5 Jun 2009 12:18:51 -   1.2
@@ -21,5 +21,15 @@
stringIPAMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-mincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-11/ipa-mincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-mincho-fonts.spec   23 Apr 2009 07:36:05 -  1.1
+++ ipa-mincho-fonts.spec   5 Jun 2009 12:18:51 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-10 ipa-mincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-mincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8707

Modified Files:
ipa-mincho-fonts-fontconfig.conf ipa-mincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-mincho-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-mincho-fonts/F-10/ipa-mincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-mincho-fonts-fontconfig.conf23 Apr 2009 07:49:36 -  1.1
+++ ipa-mincho-fonts-fontconfig.conf5 Jun 2009 12:20:21 -   1.2
@@ -21,5 +21,15 @@
stringIPAMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-mincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-10/ipa-mincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-mincho-fonts.spec   23 Apr 2009 07:49:36 -  1.1
+++ ipa-mincho-fonts.spec   5 Jun 2009 12:20:21 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-9 ipa-mincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-mincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9042

Modified Files:
ipa-mincho-fonts-fontconfig.conf ipa-mincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-mincho-fonts-fontconfig.conf
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-9/ipa-mincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-mincho-fonts-fontconfig.conf23 Apr 2009 09:44:45 -  1.1
+++ ipa-mincho-fonts-fontconfig.conf5 Jun 2009 12:21:52 -   1.2
@@ -21,5 +21,15 @@
stringIPAMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-mincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-9/ipa-mincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-mincho-fonts.spec   23 Apr 2009 09:44:45 -  1.1
+++ ipa-mincho-fonts.spec   5 Jun 2009 12:21:52 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/devel ipa-pmincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-pmincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9878

Modified Files:
ipa-pmincho-fonts-fontconfig.conf ipa-pmincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-pmincho-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-pmincho-fonts/devel/ipa-pmincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts-fontconfig.conf   23 Apr 2009 07:09:37 -  1.1
+++ ipa-pmincho-fonts-fontconfig.conf   5 Jun 2009 12:25:13 -   1.2
@@ -21,5 +21,15 @@
stringIPAPMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAPMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-pmincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/devel/ipa-pmincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts.spec  23 Apr 2009 07:09:37 -  1.1
+++ ipa-pmincho-fonts.spec  5 Jun 2009 12:25:13 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Proportional Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/F-11 ipa-pmincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-pmincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10336

Modified Files:
ipa-pmincho-fonts-fontconfig.conf ipa-pmincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-pmincho-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-pmincho-fonts/F-11/ipa-pmincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts-fontconfig.conf   23 Apr 2009 07:38:45 -  1.1
+++ ipa-pmincho-fonts-fontconfig.conf   5 Jun 2009 12:26:56 -   1.2
@@ -21,5 +21,15 @@
stringIPAPMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAPMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-pmincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-11/ipa-pmincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts.spec  23 Apr 2009 07:38:45 -  1.1
+++ ipa-pmincho-fonts.spec  5 Jun 2009 12:26:56 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Proportional Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/F-10 ipa-pmincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-pmincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10650

Modified Files:
ipa-pmincho-fonts-fontconfig.conf ipa-pmincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-pmincho-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-pmincho-fonts/F-10/ipa-pmincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts-fontconfig.conf   23 Apr 2009 07:56:15 -  1.1
+++ ipa-pmincho-fonts-fontconfig.conf   5 Jun 2009 12:28:17 -   1.2
@@ -21,5 +21,15 @@
stringIPAPMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAPMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-pmincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-10/ipa-pmincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts.spec  23 Apr 2009 07:56:15 -  1.1
+++ ipa-pmincho-fonts.spec  5 Jun 2009 12:28:17 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Proportional Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/F-9 ipa-pmincho-fonts-fontconfig.conf, 1.1, 1.2 ipa-pmincho-fonts.spec, 1.1, 1.2

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11076

Modified Files:
ipa-pmincho-fonts-fontconfig.conf ipa-pmincho-fonts.spec 
Log Message:
* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
- Disable hinting.


Index: ipa-pmincho-fonts-fontconfig.conf
===
RCS file: 
/cvs/pkgs/rpms/ipa-pmincho-fonts/F-9/ipa-pmincho-fonts-fontconfig.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts-fontconfig.conf   23 Apr 2009 09:46:32 -  1.1
+++ ipa-pmincho-fonts-fontconfig.conf   5 Jun 2009 12:29:48 -   1.2
@@ -21,5 +21,15 @@
stringIPAPMincho/string
/edit
/match
+
+   !-- disable hinting --
+   match target=font
+   test name=family
+   stringIPAPMincho/string
+   /test
+   edit name=hinting mode=assign
+   boolfalse/bool
+   /edit
+   /match
 /fontconfig
 


Index: ipa-pmincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-9/ipa-pmincho-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- ipa-pmincho-fonts.spec  23 Apr 2009 09:46:32 -  1.1
+++ ipa-pmincho-fonts.spec  5 Jun 2009 12:29:48 -   1.2
@@ -6,7 +6,7 @@
 
 Name:  %{fontname}-fonts
 Version:   003.01
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Japanese Proportional Mincho-typeface OpenType font by IPA
 
 Group: User Interface/X
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun  5 2009 Akira TAGOH ta...@redhat.com - 003.01-3
+- Disable hinting.
+
 * Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
 - Correct the source URL.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/devel ipa-mincho-fonts.spec,1.2,1.3

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15591

Modified Files:
ipa-mincho-fonts.spec 
Log Message:



Index: ipa-mincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/devel/ipa-mincho-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- ipa-mincho-fonts.spec   5 Jun 2009 12:17:15 -   1.2
+++ ipa-mincho-fonts.spec   5 Jun 2009 12:49:19 -   1.3
@@ -51,6 +51,7 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/devel ipa-pmincho-fonts.spec,1.2,1.3

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16493

Modified Files:
ipa-pmincho-fonts.spec 
Log Message:



Index: ipa-pmincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/devel/ipa-pmincho-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- ipa-pmincho-fonts.spec  5 Jun 2009 12:25:13 -   1.2
+++ ipa-pmincho-fonts.spec  5 Jun 2009 12:53:41 -   1.3
@@ -51,6 +51,7 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-11 ipa-mincho-fonts.spec,1.2,1.3

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16945

Modified Files:
ipa-mincho-fonts.spec 
Log Message:



Index: ipa-mincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-11/ipa-mincho-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- ipa-mincho-fonts.spec   5 Jun 2009 12:18:51 -   1.2
+++ ipa-mincho-fonts.spec   5 Jun 2009 12:56:10 -   1.3
@@ -51,6 +51,7 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-10 ipa-mincho-fonts.spec,1.2,1.3

2009-06-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18313

Modified Files:
ipa-mincho-fonts.spec 
Log Message:



Index: ipa-mincho-fonts.spec
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-10/ipa-mincho-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- ipa-mincho-fonts.spec   5 Jun 2009 12:20:21 -   1.2
+++ ipa-mincho-fonts.spec   5 Jun 2009 13:02:24 -   1.3
@@ -51,6 +51,7 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %_font_pkg -f %{fontconf} *.otf
+
 %doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt
 
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/devel import.log, NONE, 1.1 ipa-gothic-fonts-fontconfig.conf, NONE, 1.1 ipa-gothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10714/devel

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-gothic-fonts-fontconfig.conf 
ipa-gothic-fonts.spec 
Log Message:
Initial import



--- NEW FILE import.log ---
ipa-gothic-fonts-003_01-2_fc10:HEAD:ipa-gothic-fonts-003.01-2.fc10.src.rpm:1240469500


--- NEW FILE ipa-gothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAGothic/family
default
familymonospace/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringmonospace/string
/test
edit name=family mode=prepend binding=same
stringIPAGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-gothic-fonts.spec ---
%global priority65
%global fontnameipa-gothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipag%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:51:00 -  1.1
+++ .cvsignore  23 Apr 2009 06:52:34 -  1.2
@@ -0,0 +1 @@
+ipag00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:51:00 -  1.1
+++ sources 23 Apr 2009 06:52:34 -  1.2
@@ -0,0 +1 @@
+5ae6783ec8c1e0c6579eb2033bfc78f9  ipag00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pgothic-fonts/devel import.log, NONE, 1.1 ipa-pgothic-fonts-fontconfig.conf, NONE, 1.1 ipa-pgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11371/devel

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pgothic-fonts-fontconfig.conf 
ipa-pgothic-fonts.spec 
Log Message:
Initial import



--- NEW FILE import.log ---
ipa-pgothic-fonts-003_01-2_fc10:HEAD:ipa-pgothic-fonts-003.01-2.fc10.src.rpm:1240469624


--- NEW FILE ipa-pgothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPGothic/family
default
familysans-serif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringIPAPGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pgothic-fonts.spec ---
%global priority65
%global fontnameipa-pgothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipagp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:53:24 -  1.1
+++ .cvsignore  23 Apr 2009 06:54:12 -  1.2
@@ -0,0 +1 @@
+ipagp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:53:24 -  1.1
+++ sources 23 Apr 2009 06:54:12 -  1.2
@@ -0,0 +1 @@
+ab5e7e962b358a5579d08f09a9d07ebf  ipagp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/devel import.log, NONE, 1.1 ipa-mincho-fonts-fontconfig.conf, NONE, 1.1 ipa-mincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13134/devel

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-mincho-fonts-fontconfig.conf 
ipa-mincho-fonts.spec 
Log Message:
Initial import



--- NEW FILE import.log ---
ipa-mincho-fonts-003_01-2_fc10:HEAD:ipa-mincho-fonts-003.01-2.fc10.src.rpm:1240469732


--- NEW FILE ipa-mincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-mincho-fonts.spec ---
%global priority65
%global fontnameipa-mincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipam%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:14:35 -  1.1
+++ .cvsignore  23 Apr 2009 07:00:50 -  1.2
@@ -0,0 +1 @@
+ipam00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:14:35 -  1.1
+++ sources 23 Apr 2009 07:00:50 -  1.2
@@ -0,0 +1 @@
+583645bf37f787b2edec30e7d763e8b3  ipam00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-11 import.log, NONE, 1.1 ipa-gothic-fonts-fontconfig.conf, NONE, 1.1 ipa-gothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19725/F-11

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-gothic-fonts-fontconfig.conf 
ipa-gothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-gothic-fonts-003_01-2_fc10:F-11:ipa-gothic-fonts-003.01-2.fc10.src.rpm:1240470983


--- NEW FILE ipa-gothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAGothic/family
default
familymonospace/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringmonospace/string
/test
edit name=family mode=prepend binding=same
stringIPAGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-gothic-fonts.spec ---
%global priority65
%global fontnameipa-gothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipag%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-11/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:51:00 -  1.1
+++ .cvsignore  23 Apr 2009 07:28:18 -  1.2
@@ -0,0 +1 @@
+ipag00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-11/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:51:00 -  1.1
+++ sources 23 Apr 2009 07:28:18 -  1.2
@@ -0,0 +1 @@
+5ae6783ec8c1e0c6579eb2033bfc78f9  ipag00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pgothic-fonts/F-11 import.log, NONE, 1.1 ipa-pgothic-fonts-fontconfig.conf, NONE, 1.1 ipa-pgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20604/F-11

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pgothic-fonts-fontconfig.conf 
ipa-pgothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-pgothic-fonts-003_01-2_fc10:F-11:ipa-pgothic-fonts-003.01-2.fc10.src.rpm:1240471760


--- NEW FILE ipa-pgothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPGothic/family
default
familysans-serif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringIPAPGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pgothic-fonts.spec ---
%global priority65
%global fontnameipa-pgothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipagp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-11/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:53:24 -  1.1
+++ .cvsignore  23 Apr 2009 07:32:18 -  1.2
@@ -0,0 +1 @@
+ipagp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-11/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:53:24 -  1.1
+++ sources 23 Apr 2009 07:32:18 -  1.2
@@ -0,0 +1 @@
+ab5e7e962b358a5579d08f09a9d07ebf  ipagp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-11 import.log, NONE, 1.1 ipa-mincho-fonts-fontconfig.conf, NONE, 1.1 ipa-mincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22127/F-11

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-mincho-fonts-fontconfig.conf 
ipa-mincho-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-mincho-fonts-003_01-2_fc10:F-11:ipa-mincho-fonts-003.01-2.fc10.src.rpm:1240472001


--- NEW FILE ipa-mincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-mincho-fonts.spec ---
%global priority65
%global fontnameipa-mincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipam%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-11/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:14:35 -  1.1
+++ .cvsignore  23 Apr 2009 07:36:05 -  1.2
@@ -0,0 +1 @@
+ipam00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-11/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:14:35 -  1.1
+++ sources 23 Apr 2009 07:36:05 -  1.2
@@ -0,0 +1 @@
+583645bf37f787b2edec30e7d763e8b3  ipam00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/F-11 import.log, NONE, 1.1 ipa-pmincho-fonts-fontconfig.conf, NONE, 1.1 ipa-pmincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22786/F-11

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pmincho-fonts-fontconfig.conf 
ipa-pmincho-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-pmincho-fonts-003_01-2_fc10:F-11:ipa-pmincho-fonts-003.01-2.fc10.src.rpm:1240472200


--- NEW FILE ipa-pmincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAPMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pmincho-fonts.spec ---
%global priority65
%global fontnameipa-pmincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipamp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-11/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:19:41 -  1.1
+++ .cvsignore  23 Apr 2009 07:38:45 -  1.2
@@ -0,0 +1 @@
+ipamp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-11/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:19:41 -  1.1
+++ sources 23 Apr 2009 07:38:45 -  1.2
@@ -0,0 +1 @@
+be6bd5e5f09da8773d0361128340a0f1  ipamp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-10 import.log, NONE, 1.1 ipa-gothic-fonts-fontconfig.conf, NONE, 1.1 ipa-gothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24016/F-10

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-gothic-fonts-fontconfig.conf 
ipa-gothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-gothic-fonts-003_01-2_fc10:F-10:ipa-gothic-fonts-003.01-2.fc10.src.rpm:1240472423


--- NEW FILE ipa-gothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAGothic/family
default
familymonospace/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringmonospace/string
/test
edit name=family mode=prepend binding=same
stringIPAGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-gothic-fonts.spec ---
%global priority65
%global fontnameipa-gothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipag%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:51:00 -  1.1
+++ .cvsignore  23 Apr 2009 07:42:26 -  1.2
@@ -0,0 +1 @@
+ipag00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:51:00 -  1.1
+++ sources 23 Apr 2009 07:42:26 -  1.2
@@ -0,0 +1 @@
+5ae6783ec8c1e0c6579eb2033bfc78f9  ipag00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pgothic-fonts/F-10 import.log, NONE, 1.1 ipa-pgothic-fonts-fontconfig.conf, NONE, 1.1 ipa-pgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25359/F-10

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pgothic-fonts-fontconfig.conf 
ipa-pgothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-pgothic-fonts-003_01-2_fc10:F-10:ipa-pgothic-fonts-003.01-2.fc10.src.rpm:1240472610


--- NEW FILE ipa-pgothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPGothic/family
default
familysans-serif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringIPAPGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pgothic-fonts.spec ---
%global priority65
%global fontnameipa-pgothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipagp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:53:24 -  1.1
+++ .cvsignore  23 Apr 2009 07:48:02 -  1.2
@@ -0,0 +1 @@
+ipagp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:53:24 -  1.1
+++ sources 23 Apr 2009 07:48:02 -  1.2
@@ -0,0 +1 @@
+ab5e7e962b358a5579d08f09a9d07ebf  ipagp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-10 import.log, NONE, 1.1 ipa-mincho-fonts-fontconfig.conf, NONE, 1.1 ipa-mincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26165/F-10

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-mincho-fonts-fontconfig.conf 
ipa-mincho-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-mincho-fonts-003_01-2_fc10:F-10:ipa-mincho-fonts-003.01-2.fc10.src.rpm:1240472960


--- NEW FILE ipa-mincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-mincho-fonts.spec ---
%global priority65
%global fontnameipa-mincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipam%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:14:35 -  1.1
+++ .cvsignore  23 Apr 2009 07:49:36 -  1.2
@@ -0,0 +1 @@
+ipam00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:14:35 -  1.1
+++ sources 23 Apr 2009 07:49:36 -  1.2
@@ -0,0 +1 @@
+583645bf37f787b2edec30e7d763e8b3  ipam00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/F-10 import.log, NONE, 1.1 ipa-pmincho-fonts-fontconfig.conf, NONE, 1.1 ipa-pmincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28159/F-10

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pmincho-fonts-fontconfig.conf 
ipa-pmincho-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-pmincho-fonts-003_01-2_fc10:F-10:ipa-pmincho-fonts-003.01-2.fc10.src.rpm:1240473042


--- NEW FILE ipa-pmincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAPMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pmincho-fonts.spec ---
%global priority65
%global fontnameipa-pmincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipamp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:19:41 -  1.1
+++ .cvsignore  23 Apr 2009 07:56:15 -  1.2
@@ -0,0 +1 @@
+ipamp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:19:41 -  1.1
+++ sources 23 Apr 2009 07:56:15 -  1.2
@@ -0,0 +1 @@
+be6bd5e5f09da8773d0361128340a0f1  ipamp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-gothic-fonts/F-9 import.log, NONE, 1.1 ipa-gothic-fonts-fontconfig.conf, NONE, 1.1 ipa-gothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-gothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16569/F-9

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-gothic-fonts-fontconfig.conf 
ipa-gothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-gothic-fonts-003_01-2_fc10:F-9:ipa-gothic-fonts-003.01-2.fc10.src.rpm:1240479657


--- NEW FILE ipa-gothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAGothic/family
default
familymonospace/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringmonospace/string
/test
edit name=family mode=prepend binding=same
stringIPAGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-gothic-fonts.spec ---
%global priority65
%global fontnameipa-gothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipag%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:51:00 -  1.1
+++ .cvsignore  23 Apr 2009 09:42:05 -  1.2
@@ -0,0 +1 @@
+ipag00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-gothic-fonts/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:51:00 -  1.1
+++ sources 23 Apr 2009 09:42:05 -  1.2
@@ -0,0 +1 @@
+5ae6783ec8c1e0c6579eb2033bfc78f9  ipag00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pgothic-fonts/F-9 import.log, NONE, 1.1 ipa-pgothic-fonts-fontconfig.conf, NONE, 1.1 ipa-pgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pgothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17120/F-9

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pgothic-fonts-fontconfig.conf 
ipa-pgothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-pgothic-fonts-003_01-2_fc10:F-9:ipa-pgothic-fonts-003.01-2.fc10.src.rpm:1240479788


--- NEW FILE ipa-pgothic-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPGothic/family
default
familysans-serif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringIPAPGothic/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pgothic-fonts.spec ---
%global priority65
%global fontnameipa-pgothic
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipagp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Gothic-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Gothic (sans-serif) style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 01:53:24 -  1.1
+++ .cvsignore  23 Apr 2009 09:43:24 -  1.2
@@ -0,0 +1 @@
+ipagp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pgothic-fonts/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 01:53:24 -  1.1
+++ sources 23 Apr 2009 09:43:24 -  1.2
@@ -0,0 +1 @@
+ab5e7e962b358a5579d08f09a9d07ebf  ipagp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-mincho-fonts/F-9 import.log, NONE, 1.1 ipa-mincho-fonts-fontconfig.conf, NONE, 1.1 ipa-mincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-mincho-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17529/F-9

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-mincho-fonts-fontconfig.conf 
ipa-mincho-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-mincho-fonts-003_01-2_fc10:F-9:ipa-mincho-fonts-003.01-2.fc10.src.rpm:1240479863


--- NEW FILE ipa-mincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-mincho-fonts.spec ---
%global priority65
%global fontnameipa-mincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipam%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:14:35 -  1.1
+++ .cvsignore  23 Apr 2009 09:44:45 -  1.2
@@ -0,0 +1 @@
+ipam00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-mincho-fonts/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:14:35 -  1.1
+++ sources 23 Apr 2009 09:44:45 -  1.2
@@ -0,0 +1 @@
+583645bf37f787b2edec30e7d763e8b3  ipam00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/ipa-pmincho-fonts/F-9 import.log, NONE, 1.1 ipa-pmincho-fonts-fontconfig.conf, NONE, 1.1 ipa-pmincho-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/ipa-pmincho-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18178/F-9

Modified Files:
.cvsignore sources 
Added Files:
import.log ipa-pmincho-fonts-fontconfig.conf 
ipa-pmincho-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
ipa-pmincho-fonts-003_01-2_fc10:F-9:ipa-pmincho-fonts-003.01-2.fc10.src.rpm:1240479957


--- NEW FILE ipa-pmincho-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
!-- Generic names --
alias
familyIPAPMincho/family
default
familyserif/family
/default
/alias

!-- Locale-specific overrides --
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringIPAPMincho/string
/edit
/match
/fontconfig



--- NEW FILE ipa-pmincho-fonts.spec ---
%global priority65
%global fontnameipa-pmincho
%global fontconf%{priority}-%{fontname}.conf
%global archiveversion  00301
%global archivename ipamp%{archiveversion}

Name:   %{fontname}-fonts
Version:003.01
Release:2%{?dist}
Summary:Japanese Proportional Mincho-typeface OpenType font by IPA

Group:  User Interface/X
License:IPA
URL:http://ossipedia.ipa.go.jp/ipafont/
Source0:
http://info.openlab.ipa.go.jp/ipafont/fontdata/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XX)

BuildArch:  noarch
BuildRequires:  fontpackages-devel
Requires:   fontpackages-filesystem

%description
IPA Font is a Japanese OpenType fonts that is JIS X 0213:2004
compliant, provided by Information-technology Promotion Agency, Japan.

This package contains Proportional Mincho style font.

%prep
%setup -q -n %{archivename}


%build

%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.otf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir}   \
$RPM_BUILD_ROOT%{_fontconfig_confdir}
install -m 0644 -p  %{SOURCE1}  \
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}

ln -s   %{_fontconfig_templatedir}/%{fontconf}  \
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}

%clean
rm -rf $RPM_BUILD_ROOT


%_font_pkg -f %{fontconf} *.otf
%doc Readme_%{archivename}.txt IPA_Font_License_Agreement_v1.0.txt


%changelog
* Wed Apr 22 2009 Akira TAGOH ta...@redhat.com - 003.01-2
- Correct the source URL.

* Tue Apr 21 2009 Akira TAGOH ta...@redhat.com - 003.01-1
- Initial package.



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  23 Apr 2009 02:19:41 -  1.1
+++ .cvsignore  23 Apr 2009 09:46:32 -  1.2
@@ -0,0 +1 @@
+ipamp00301.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/ipa-pmincho-fonts/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Apr 2009 02:19:41 -  1.1
+++ sources 23 Apr 2009 09:46:32 -  1.2
@@ -0,0 +1 @@
+be6bd5e5f09da8773d0361128340a0f1  ipamp00301.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/devel .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vlgothic-fonts.spec, 1.3, 1.4

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14291

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore  10 Feb 2009 11:48:21 -  1.2
+++ .cvsignore  23 Apr 2009 13:00:27 -  1.3
@@ -1 +1,2 @@
 VLGothic-20090204.tar.bz2
+VLGothic-20090422.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 10 Feb 2009 11:48:21 -  1.2
+++ sources 23 Apr 2009 13:00:27 -  1.3
@@ -1 +1 @@
-54298db27daf7b3ec92aff5cfab72f02  VLGothic-20090204.tar.bz2
+dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/vlgothic-fonts.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vlgothic-fonts.spec 26 Feb 2009 00:39:55 -  1.3
+++ vlgothic-fonts.spec 23 Apr 2009 13:00:27 -  1.4
@@ -8,14 +8,14 @@
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090204
-Release:   3%{?dist}
+Version:   20090422
+Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   http://vinelinux.org/~daisuke/vlgothic/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,9 @@
 
 
 %changelog
+* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
+- New upstream release.
+
 * Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 20090204-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-11 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vlgothic-fonts.spec, 1.3, 1.4

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14838

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-11/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore  10 Feb 2009 11:48:21 -  1.2
+++ .cvsignore  23 Apr 2009 13:02:06 -  1.3
@@ -1 +1,2 @@
 VLGothic-20090204.tar.bz2
+VLGothic-20090422.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-11/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 10 Feb 2009 11:48:21 -  1.2
+++ sources 23 Apr 2009 13:02:06 -  1.3
@@ -1 +1 @@
-54298db27daf7b3ec92aff5cfab72f02  VLGothic-20090204.tar.bz2
+dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-11/vlgothic-fonts.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vlgothic-fonts.spec 26 Feb 2009 00:39:55 -  1.3
+++ vlgothic-fonts.spec 23 Apr 2009 13:02:06 -  1.4
@@ -8,14 +8,14 @@
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090204
-Release:   3%{?dist}
+Version:   20090422
+Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   http://vinelinux.org/~daisuke/vlgothic/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,9 @@
 
 
 %changelog
+* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
+- New upstream release.
+
 * Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 20090204-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-10 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vlgothic-fonts.spec, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16294

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-10/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore  10 Feb 2009 12:02:07 -  1.2
+++ .cvsignore  23 Apr 2009 13:09:03 -  1.3
@@ -1 +1,2 @@
 VLGothic-20090204.tar.bz2
+VLGothic-20090422.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-10/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 10 Feb 2009 12:02:07 -  1.2
+++ sources 23 Apr 2009 13:09:03 -  1.3
@@ -1 +1 @@
-54298db27daf7b3ec92aff5cfab72f02  VLGothic-20090204.tar.bz2
+dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-10/vlgothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vlgothic-fonts.spec 10 Feb 2009 12:02:07 -  1.1
+++ vlgothic-fonts.spec 23 Apr 2009 13:09:03 -  1.2
@@ -8,14 +8,14 @@
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090204
-Release:   2%{?dist}
+Version:   20090422
+Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   http://vinelinux.org/~daisuke/vlgothic/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,12 @@
 
 
 %changelog
+* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
+- New upstream release.
+
+* Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 20090204-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
 * Tue Feb 10 2009 Akira TAGOH ta...@redhat.com - 20090204-2
 - clean up.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-9 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 vlgothic-fonts.spec, 1.1, 1.2

2009-04-23 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20804

Modified Files:
.cvsignore sources vlgothic-fonts.spec 
Log Message:
* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
- New upstream release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-9/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore  10 Feb 2009 12:05:21 -  1.2
+++ .cvsignore  23 Apr 2009 13:32:06 -  1.3
@@ -1 +1,2 @@
 VLGothic-20090204.tar.bz2
+VLGothic-20090422.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-9/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 10 Feb 2009 12:05:21 -  1.2
+++ sources 23 Apr 2009 13:32:06 -  1.3
@@ -1 +1 @@
-54298db27daf7b3ec92aff5cfab72f02  VLGothic-20090204.tar.bz2
+dcc9a788a47554344a47926211208473  VLGothic-20090422.tar.bz2


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/F-9/vlgothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vlgothic-fonts.spec 10 Feb 2009 12:05:21 -  1.1
+++ vlgothic-fonts.spec 23 Apr 2009 13:32:06 -  1.2
@@ -8,14 +8,14 @@
 but some have also been improved by the project.
 
 Name:  %{fontname}-fonts
-Version:   20090204
-Release:   2%{?dist}
+Version:   20090422
+Release:   1%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
 Group: User Interface/X
 URL:   http://dicey.org/vlgothic
-Source0:   http://vinelinux.org/~daisuke/vlgothic/%{archivename}.tar.bz2
+Source0:   
http://osdn.dl.sourceforge.jp/vlgothic/38942/%{archivename}.tar.bz2
 Source1:   %{fontname}-fontconfig-pgothic.conf
 Source2:   %{fontname}-fontconfig-gothic.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -93,6 +93,12 @@
 
 
 %changelog
+* Thu Apr 23 2009 Akira TAGOH ta...@redhat.com - 20090422-1
+- New upstream release.
+
+* Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 20090204-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
 * Tue Feb 10 2009 Akira TAGOH ta...@redhat.com - 20090204-2
 - clean up.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


Re: Priority list breaks the order of the font on non-native locale

2009-03-27 Thread Akira TAGOH
 On Fri, 27 Mar 2009 09:49:36 +0100 (CET),
 NM == Nicolas Mailhot nicolas.mail...@laposte.net wrote:

NM So you are suggesting to remove *-non-latin.conf? Or did I misunderstand?

Plus, to remove
aliasfamily.../familyprefer.../prefer/alias
things too if they have, and ensure adding language-specific
rules to add their fonts to the list instead as it described
in wiki.

--
Akira TAGOH


pgpjEL5T8dfk5.pgp
Description: PGP signature
___
Fedora-fonts-list mailing list
Fedora-fonts-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-list


Priority list breaks the order of the font on non-native locale

2009-03-27 Thread Akira TAGOH

Hi,

I'm just trying to get Bug#492510 fixed and noticed that
Simple priority list in the fontconfig conf that each font
packages has and the priority lists in *-non-latin.conf
etc breaks the order of the fonts when running under
non-native locale (in that case displaying Japanese on en_US
locale).  How it breaks.. well, the markup to override the
language information nor overriding fallback fonts rules
with PANGO_LANGUAGE doesn't work. once removing the priority
lists it works again.

So I'd suggest adding a font in the language-specific rules
rather than having the priority list.

Any comments are welcome.

TIA,
--
Akira TAGOH


pgppodaws1mhB.pgp
Description: PGP signature
___
Fedora-fonts-list mailing list
Fedora-fonts-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-list


rpms/jisksp16-1990-fonts/devel jisksp16-1990-fonts.spec,1.2,1.3

2009-03-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/jisksp16-1990-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30169

Modified Files:
jisksp16-1990-fonts.spec 
Log Message:
* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 0.983-4
- Update a spec file a bit.
- rebuild to correct autoprovides. (#491965)


Index: jisksp16-1990-fonts.spec
===
RCS file: /cvs/pkgs/rpms/jisksp16-1990-fonts/devel/jisksp16-1990-fonts.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jisksp16-1990-fonts.spec25 Feb 2009 09:26:02 -  1.2
+++ jisksp16-1990-fonts.spec26 Mar 2009 09:15:54 -  1.3
@@ -1,19 +1,20 @@
-%definefontdir %{_datadir}/fonts/%{name}
+%definefontnamejisksp16-1990
+%definefontdir %{_datadir}/fonts/%{fontname}
 %definecatalogue   %{_sysconfdir}/X11/fontpath.d
 
-Name:  jisksp16-1990-fonts
+Name:  %{fontname}-fonts
 Version:   0.983
-Release:   3%{?dist}
-BuildArch: noarch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildRequires: gzip mkfontdir xorg-x11-font-utils
+Release:   4%{?dist}
+Summary:   16x16 JIS X 0212:1990 Bitmap font
+Group: User Interface/X
+License:   Public Domain
 URL:   http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/fonts/
 Source0:   
http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/fonts/jisksp16-1990.bdf.Z
 
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch: noarch
 
-Summary:   16x16 JIS X 0212:1990 Bitmap font
-License:   Public Domain
-Group: User Interface/X
+BuildRequires: gzip mkfontdir xorg-x11-font-utils
 Conflicts: fonts-japanese = 0.20061016-11.fc8
 Provides:  jisksp16-1990 = 0.1-16
 Obsoletes: jisksp16-1990 = 0.1-16
@@ -34,8 +35,8 @@
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -d $RPM_BUILD_ROOT%{fontdir}
-install -d $RPM_BUILD_ROOT%{catalogue}
+install -m 0755 -d $RPM_BUILD_ROOT%{fontdir}
+install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}
 
 install -m 0644 -p jisksp16-1990.pcf.gz $RPM_BUILD_ROOT%{fontdir}/
 
@@ -49,13 +50,17 @@
 rm -rf $RPM_BUILD_ROOT
 
 %files
-%defattr(-, root, root, -)
+%defattr(0644, root, root, 0755)
 %dir %{fontdir}
 %{fontdir}/jisksp16-1990.pcf.gz
 %verify(not md5 size mtime) %{fontdir}/fonts.dir
 %{catalogue}/*
 
 %changelog
+* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 0.983-4
+- Update a spec file a bit.
+- rebuild to correct autoprovides. (#491965)
+
 * Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.983-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/devel knm_new-fonts.spec,1.4,1.5

2009-03-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4774

Modified Files:
knm_new-fonts.spec 
Log Message:



Index: knm_new-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm_new-fonts/devel/knm_new-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- knm_new-fonts.spec  26 Mar 2009 09:37:35 -  1.4
+++ knm_new-fonts.spec  26 Mar 2009 09:39:00 -  1.5
@@ -3,7 +3,7 @@
 
 Name:  %{fontname}-fonts
 Version:   1.1
-Release:   4%{?dist}
+Release:   5%{?dist}
 
 Summary:   12x12 JIS X 0208 Bitmap font
 Group: User Interface/X

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/knm_new-fonts/devel knm_new-fonts.spec,1.3,1.4

2009-03-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/knm_new-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv4331

Modified Files:
knm_new-fonts.spec 
Log Message:
* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 1.1-5
- Clean up a spec file.
- Rebuild to correct autoprovides (#491966)


Index: knm_new-fonts.spec
===
RCS file: /cvs/pkgs/rpms/knm_new-fonts/devel/knm_new-fonts.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- knm_new-fonts.spec  25 Feb 2009 11:40:21 -  1.3
+++ knm_new-fonts.spec  26 Mar 2009 09:37:35 -  1.4
@@ -1,21 +1,23 @@
-%definefontdir %{_datadir}/fonts/%{name}
+%definefontnameknm_new
 %definecatalogue   %{_sysconfdir}/X11/fontpath.d
 
-Name:  knm_new-fonts
+Name:  %{fontname}-fonts
 Version:   1.1
 Release:   4%{?dist}
-BuildArch: noarch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildRequires: mkfontdir
+
+Summary:   12x12 JIS X 0208 Bitmap font
+Group: User Interface/X
+License:   GPL+
+
 ## the following upstream URL is a dead link anymore.
 #URL:  http://www.din.or.jp/~storm/fonts/
 #Source0:  http://www.din.or.jp/~storm/fonts/knm_new.tar.gz
 Source0:   knm_new.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch: noarch
+BuildRequires: mkfontdir fontpackages-devel
 
-
-Summary:   12x12 JIS X 0208 Bitmap font
-License:   GPL+
-Group: User Interface/X
+Requires:  fontpackages-filesystem
 Conflicts: fonts-japanese = 0.20061016-11.fc8
 Provides:  knm_new = 1.1-16
 Obsoletes: knm_new = 1.1-16
@@ -34,32 +36,32 @@
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -d $RPM_BUILD_ROOT%{fontdir}
-install -d $RPM_BUILD_ROOT%{catalogue}
+install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
+install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}
 
-install -m 0644 -p fonts/*.pcf.gz $RPM_BUILD_ROOT%{fontdir}/
+install -m 0644 -p fonts/*.pcf.gz $RPM_BUILD_ROOT%{_fontdir}/
 
-%{_bindir}/mkfontdir $RPM_BUILD_ROOT%{fontdir}
+%{_bindir}/mkfontdir $RPM_BUILD_ROOT%{_fontdir}
 
 # Install catalogue symlink
-%{__ln_s} -f %{fontdir} $RPM_BUILD_ROOT%{catalogue}/%{name}
+%{__ln_s} -f %{_fontdir} $RPM_BUILD_ROOT%{catalogue}/%{fontname}
 
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-
-%files
-%defattr(-, root, root, -)
+%_font_pkg *.pcf.gz
 %lang(ja) %doc fonts/readme fonts/changes
 %doc fonts/gtkrc.sample
-%dir %{fontdir}
-%{fontdir}/*.pcf.gz
-%verify(not md5 size mtime) %{fontdir}/fonts.dir
+%verify(not md5 size mtime) %{_fontdir}/fonts.dir
 %{catalogue}/*
 
 
 %changelog
+* Thu Mar 26 2009 Akira TAGOH ta...@redhat.com - 1.1-5
+- Clean up a spec file.
+- Rebuild to correct autoprovides (#491966)
+
 * Wed Feb 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/jisksp16-1990-fonts/devel jisksp16-1990-fonts.spec,1.3,1.4

2009-03-26 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/jisksp16-1990-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1138

Modified Files:
jisksp16-1990-fonts.spec 
Log Message:



Index: jisksp16-1990-fonts.spec
===
RCS file: /cvs/pkgs/rpms/jisksp16-1990-fonts/devel/jisksp16-1990-fonts.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- jisksp16-1990-fonts.spec26 Mar 2009 09:15:54 -  1.3
+++ jisksp16-1990-fonts.spec26 Mar 2009 09:29:05 -  1.4
@@ -1,5 +1,4 @@
 %definefontnamejisksp16-1990
-%definefontdir %{_datadir}/fonts/%{fontname}
 %definecatalogue   %{_sysconfdir}/X11/fontpath.d
 
 Name:  %{fontname}-fonts
@@ -8,13 +7,15 @@
 Summary:   16x16 JIS X 0212:1990 Bitmap font
 Group: User Interface/X
 License:   Public Domain
+
 URL:   http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/fonts/
 Source0:   
http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/ftp/fonts/jisksp16-1990.bdf.Z
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch: noarch
+BuildRequires: gzip mkfontdir xorg-x11-font-utils fontpackages-devel
 
-BuildRequires: gzip mkfontdir xorg-x11-font-utils
+Requires:  fontpackages-filesystem
 Conflicts: fonts-japanese = 0.20061016-11.fc8
 Provides:  jisksp16-1990 = 0.1-16
 Obsoletes: jisksp16-1990 = 0.1-16
@@ -35,25 +36,23 @@
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -m 0755 -d $RPM_BUILD_ROOT%{fontdir}
+install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
 install -m 0755 -d $RPM_BUILD_ROOT%{catalogue}
 
-install -m 0644 -p jisksp16-1990.pcf.gz $RPM_BUILD_ROOT%{fontdir}/
+install -m 0644 -p jisksp16-1990.pcf.gz $RPM_BUILD_ROOT%{_fontdir}/
 
-%{_bindir}/mkfontdir $RPM_BUILD_ROOT%{fontdir}
+%{_bindir}/mkfontdir $RPM_BUILD_ROOT%{_fontdir}
 
 # Install catalogue symlink
-ln -sf %{fontdir} $RPM_BUILD_ROOT%{catalogue}/%{name}
+ln -sf %{_fontdir} $RPM_BUILD_ROOT%{catalogue}/%{name}
 
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%files
-%defattr(0644, root, root, 0755)
-%dir %{fontdir}
-%{fontdir}/jisksp16-1990.pcf.gz
-%verify(not md5 size mtime) %{fontdir}/fonts.dir
+%_font_pkg jisksp16-1990.pcf.gz
+
+%verify(not md5 size mtime) %{_fontdir}/fonts.dir
 %{catalogue}/*
 
 %changelog

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


Re: Problem : japanese-fonts (vlgothic-fonts-20090204-2.fc10)

2009-02-25 Thread Akira TAGOH
 On Wed, 25 Feb 2009 01:36:17 -0500,
 QF == Qianqian Fang fan...@gmail.com wrote:

QF I think this basically means the Japanese fonts are now
QF having higher
QF priorities under non-CJK locales, is this really what we
QF want?

Current fontconfig policy doesn't really helps in this
case. if one really wants to see a text with proper font,
they need to set PANGO_LANGUAGE with the appropriate locales
ordered or embed Pango attributes in text for GNOME.

However right now cjkunifonts fontconfig config affected
Japanese desktop too because current fontconfig policy in
Fedora suggests having a recipe to override default
substitution lists for specific locale and all of Japanese
fonts has already followed these rules, but cjkunifonts
didn't and fontconfig reads it prior to Japanese fonts'.

--
Akira TAGOH


pgpFJibMqg0v2.pgp
Description: PGP signature
___
Fedora-fonts-list mailing list
Fedora-fonts-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-list


rpms/VLGothic-fonts/devel dead.package, NONE, 1.1 Makefile, 1.1, NONE VLGothic-fontconfig-monospace.conf, 1.2, NONE VLGothic-fontconfig-proportional.conf, 1.2, NONE VLGothic-fonts.spec, 1.18, NONE sou

2009-02-17 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25068

Added Files:
dead.package 
Removed Files:
Makefile VLGothic-fontconfig-monospace.conf 
VLGothic-fontconfig-proportional.conf VLGothic-fonts.spec 
sources 
Log Message:
This package has renamed to vlgothic-fonts.


--- NEW FILE dead.package ---
This package has renamed to vlgothic-fonts.


--- Makefile DELETED ---


--- VLGothic-fontconfig-monospace.conf DELETED ---


--- VLGothic-fontconfig-proportional.conf DELETED ---


--- VLGothic-fonts.spec DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/F-9 dead.package, NONE, 1.1 59-VLGothic-monospace.conf, 1.2, NONE 59-VLGothic-proportional.conf, 1.1, NONE Makefile, 1.1, NONE VLGothic-fonts.spec, 1.13, NONE branch, 1.1, NONE sou

2009-02-17 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25437

Added Files:
dead.package 
Removed Files:
59-VLGothic-monospace.conf 59-VLGothic-proportional.conf 
Makefile VLGothic-fonts.spec branch sources 
Log Message:
This package has renamed to vlgothic-fonts.


--- NEW FILE dead.package ---
This package has renamed to vlgothic-fonts.


--- 59-VLGothic-monospace.conf DELETED ---


--- 59-VLGothic-proportional.conf DELETED ---


--- Makefile DELETED ---


--- VLGothic-fonts.spec DELETED ---


--- branch DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/F-10 dead.package, NONE, 1.1 59-VLGothic-monospace.conf, 1.2, NONE 59-VLGothic-proportional.conf, 1.1, NONE Makefile, 1.1, NONE VLGothic-fonts.spec, 1.16, NONE branch, 1.1, NONE so

2009-02-17 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25230

Added Files:
dead.package 
Removed Files:
59-VLGothic-monospace.conf 59-VLGothic-proportional.conf 
Makefile VLGothic-fonts.spec branch sources 
Log Message:
This package has renamed to vlgothic-fonts.


--- NEW FILE dead.package ---
This package has renamed to vlgothic-fonts.


--- 59-VLGothic-monospace.conf DELETED ---


--- 59-VLGothic-proportional.conf DELETED ---


--- Makefile DELETED ---


--- VLGothic-fonts.spec DELETED ---


--- branch DELETED ---


--- sources DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/devel import.log, NONE, 1.1 vlgothic-fontconfig-gothic.conf, NONE, 1.1 vlgothic-fontconfig-pgothic.conf, NONE, 1.1 vlgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1,

2009-02-10 Thread Akira TAGOH
 2009 Akira TAGOH ta...@redhat.com - 20090204-1
- New upstream release.
- Update spec file for new packaging policy.
  - Renamed VLGothic-fonts to vlgothic-fonts.
  - Renamed VLGothic-fonts-proportional to vlgothic-p-fonts.
  - Added vlgothic-fonts-common.

* Fri Dec  5 2008 Akira TAGOH ta...@redhat.com - 20081203-2
- update fontconfig config according to Fontconfig packaging tips.

* Thu Dec  4 2008 Akira TAGOH ta...@redhat.com - 20081203-1
- update to 20081203 release.
- clean up spec file.
- changed the priority prefix for fontconfig to 66 according to Fontconfig 
packaging tips.

* Wed Oct 29 2008 Akira TAGOH ta...@redhat.com - 20081029-1
- update to 20081029 release.

* Tue Sep  9 2008 Akira TAGOH ta...@redhat.com - 20080908-1
- update to 20080908 release.

* Thu Jul 31 2008 Jens Petersen peter...@redhat.com - 20080624-1.fc10
- update to 20080624 release

* Wed May  7 2008 Jens Petersen peter...@redhat.com - 20080429-1
- update to 20080429 release
- rename 59-VLGothic-sans.conf to 59-VLGothic-proportional.conf

* Thu Jan 17 2008 Jens Petersen peter...@redhat.com - 20071215-2.fc9
- move monospace font to main package and obsolete monospace subpackage
- rename sans subpackage to proportional and obsolete sans subpackage
- use a separate font dir for the proportional font subpackage
- add fc-cache scriptlets and drop superfluous removal of old font config
- drop the docs subpackage
- use fontname, fontdir, and fontconfdir macros
- improve summaries and descriptions
- do not require fontconfig
- drop VLGothic obsoletes and provides

* Sat Jan 12 2008 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20071215-1
- Update to 20071215

* Thu Oct 18 2007 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20071015-2
- Rename the font directory.
- Fix font selection problem in Flash 9.
- Make it remove the old configuration files on updating.

* Thu Oct 18 2007 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20071015-1
- Update to 20071015
- Make it separated into subpackages

* Sat Sep 09 2007 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20070901-1
- Update to 20070901

* Sat Jun 02 2007 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20070507-1
- Update to 20070507

* Sun Apr 22 2007 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20070328-1
- Update to 20070328

* Wed Jan 03 2007 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20070101-1
- Update to 20070101

* Sun Dec 10 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20061026-5
- Decrease the priority of the VLGothic fonts lower than DejaVu fonts.
- Now config files are replaced by every updating.

* Wed Nov 29 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20061026-4
- Fix the mistyped dist tag.

* Sat Nov 18 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20061026-3
- Modify the specfile along with the Fedora Extras packaging policy.

* Sun Nov 12 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20061026-2
- Modify the specfile.

* Sun Nov 12 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20061026-1
- Preparing for Fedora Extras.

* Sat Oct 28 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20061021-2
- Update to 20061021.

* Tue Sep 19 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20060913-2
- Update to 20060913.

* Thu Aug 31 2006 Ryo Dairiki ryo-dair...@users.sourceforge.net - 20060831-1
- Initial packaging.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  8 Feb 2009 21:58:28 -   1.1
+++ .cvsignore  10 Feb 2009 11:48:21 -  1.2
@@ -0,0 +1 @@
+VLGothic-20090204.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 8 Feb 2009 21:58:28 -   1.1
+++ sources 10 Feb 2009 11:48:21 -  1.2
@@ -0,0 +1 @@
+54298db27daf7b3ec92aff5cfab72f02  VLGothic-20090204.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/devel vlgothic-fonts.spec,1.1,1.2

2009-02-10 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv10757

Modified Files:
vlgothic-fonts.spec 
Log Message:
* Tue Feb 10 2009 Akira TAGOH ta...@redhat.com - 20090204-2
- clean up.


Index: vlgothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/vlgothic-fonts/devel/vlgothic-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vlgothic-fonts.spec 10 Feb 2009 11:48:21 -  1.1
+++ vlgothic-fonts.spec 10 Feb 2009 11:53:19 -  1.2
@@ -2,7 +2,6 @@
 %define fontname   vlgothic
 %definearchivename VLGothic-%{version}
 %definefontconf%{priority}-%{fontname}
-%definecatalogue   %{_sysconfdir}/X11/fontpath.d
 %definecommon_desc \
 VLGothic provides Japanese TrueType fonts from the Vine Linux project.\
 Most of the glyphs are taken from the M+ and Sazanami Gothic fonts,\
@@ -10,7 +9,7 @@
 
 Name:  %{fontname}-fonts
 Version:   20090204
-Release:   1%{?dist}
+Release:   2%{?dist}
 Summary:   Japanese TrueType font
 
 License:   mplus and BSD
@@ -94,6 +93,9 @@
 
 
 %changelog
+* Tue Feb 10 2009 Akira TAGOH ta...@redhat.com - 20090204-2
+- clean up.
+
 * Wed Feb  4 2009 Akira TAGOH ta...@redhat.com - 20090204-1
 - New upstream release.
 - Update spec file for new packaging policy.

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/vlgothic-fonts/F-10 import.log, NONE, 1.1 vlgothic-fontconfig-gothic.conf, NONE, 1.1 vlgothic-fontconfig-pgothic.conf, NONE, 1.1 vlgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1,

2009-02-10 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12200/F-10

Modified Files:
.cvsignore sources 
Added Files:
import.log vlgothic-fontconfig-gothic.conf 
vlgothic-fontconfig-pgothic.conf vlgothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
vlgothic-fonts-20090204-2_fc11:F-10:vlgothic-fonts-20090204-2.fc11.src.rpm:1234267291


--- NEW FILE vlgothic-fontconfig-gothic.conf ---
?xml version=1.0?
!DOCTYPE fontconfig SYSTEM fonts.dtd
fontconfig
match target=font
test name=family
stringVL Gothic/string
/test
edit name=hinting mode=assign
boolfalse/bool
/edit
/match

match
test name=lang
stringja-jp/string
/test
test name=family
stringmonospace/string
/test
edit name=family mode=prepend binding=same
stringVL Gothic/string
/edit
/match

alias
familymonospace/family
prefer
familyVL Gothic/family
/prefer
/alias

alias
familyVL Gothic/family
default
familymonospace/family
/default
/alias
/fontconfig


--- NEW FILE vlgothic-fontconfig-pgothic.conf ---
?xml version=1.0?
!DOCTYPE fontconfig SYSTEM fonts.dtd
fontconfig
match target=font
test name=family
stringVL PGothic/string
/test
edit name=hinting mode=assign
boolfalse/bool
/edit
/match

match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringVL PGothic/string
/edit
/match

alias
familysans-serif/family
prefer
familyVL PGothic/family
/prefer
/alias

alias
familyVL PGothic/family
default
familysans-serif/family
/default
/alias
/fontconfig


--- NEW FILE vlgothic-fonts.spec ---
%define priority66
%define fontnamevlgothic
%define archivename VLGothic-%{version}
%define fontconf%{priority}-%{fontname}
%define common_desc \
VLGothic provides Japanese TrueType fonts from the Vine Linux project.\
Most of the glyphs are taken from the M+ and Sazanami Gothic fonts,\
but some have also been improved by the project.

Name:   %{fontname}-fonts
Version:20090204
Release:2%{?dist}
Summary:Japanese TrueType font

License:mplus and BSD
Group:  User Interface/X
URL:http://dicey.org/vlgothic
Source0:http://vinelinux.org/~daisuke/vlgothic/%{archivename}.tar.bz2
Source1:%{fontname}-fontconfig-pgothic.conf
Source2:%{fontname}-fontconfig-gothic.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:  noarch
BuildRequires:  fontpackages-devel

Requires:   %{name}-common = %{version}-%{release}
Obsoletes:  VLGothic-fonts  20090204-1
Provides:   VLGothic-fonts = %{version}-%{release}
%description
%common_desc

This package provides the monospace VLGothic font.

%packagecommon
Summary:Common files for VLGothic Japanese TrueType fonts
Group:  User Interface/X
Requires:   fontpackages-filesystem

%descriptioncommon
%common_desc

This package consists of files used by other %{name} packages.

%package -n %{fontname}-p-fonts
Summary:Proportional Japanese TrueType font
Group:  User Interface/X
Requires:   %{name}-common = %{version}-%{release}
Obsoletes:  VLGothic-fonts-proportional  20090204-1
Provides:   VLGothic-fonts-proportional = %{version}-%{release}

%description -n %{fontname}-p-fonts
%common_desc

This package provides the VLGothic font with proportional glyphs for some
non-Japanese characters.

%prep
%setup -q -n VLGothic


%build
%{nil}


%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.ttf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir} \
$RPM_BUILD_ROOT%{_fontconfig_confdir}

install -m 0644 -p %{SOURCE1} 
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}-pgothic.conf
install -m 0644 -p %{SOURCE2} 
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}-gothic.conf

for fconf in %{fontconf}-pgothic.conf %{fontconf}-gothic.conf; do
ln -s %{_fontconfig_templatedir}/$fconf 
$RPM_BUILD_ROOT%{_fontconfig_confdir}/$fconf
done


%clean
rm -rf ${RPM_BUILD_ROOT}


%files common
%defattr(0644, root, root, 0755)
%doc README* LICENSE*
%dir %{_fontdir}

%_font_pkg -f %{fontconf}-gothic.conf VL-Gothic-Regular.ttf

%_font_pkg -n p -f %{fontconf}-pgothic.conf VL-PGothic-Regular.ttf


%changelog
* Tue Feb 10 2009 Akira TAGOH ta...@redhat.com - 20090204-2
- clean up

rpms/vlgothic-fonts/F-9 import.log, NONE, 1.1 vlgothic-fontconfig-gothic.conf, NONE, 1.1 vlgothic-fontconfig-pgothic.conf, NONE, 1.1 vlgothic-fonts.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1

2009-02-10 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/vlgothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12984/F-9

Modified Files:
.cvsignore sources 
Added Files:
import.log vlgothic-fontconfig-gothic.conf 
vlgothic-fontconfig-pgothic.conf vlgothic-fonts.spec 
Log Message:
Initial import


--- NEW FILE import.log ---
vlgothic-fonts-20090204-2_fc11:F-9:vlgothic-fonts-20090204-2.fc11.src.rpm:1234267503


--- NEW FILE vlgothic-fontconfig-gothic.conf ---
?xml version=1.0?
!DOCTYPE fontconfig SYSTEM fonts.dtd
fontconfig
match target=font
test name=family
stringVL Gothic/string
/test
edit name=hinting mode=assign
boolfalse/bool
/edit
/match

match
test name=lang
stringja-jp/string
/test
test name=family
stringmonospace/string
/test
edit name=family mode=prepend binding=same
stringVL Gothic/string
/edit
/match

alias
familymonospace/family
prefer
familyVL Gothic/family
/prefer
/alias

alias
familyVL Gothic/family
default
familymonospace/family
/default
/alias
/fontconfig


--- NEW FILE vlgothic-fontconfig-pgothic.conf ---
?xml version=1.0?
!DOCTYPE fontconfig SYSTEM fonts.dtd
fontconfig
match target=font
test name=family
stringVL PGothic/string
/test
edit name=hinting mode=assign
boolfalse/bool
/edit
/match

match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringVL PGothic/string
/edit
/match

alias
familysans-serif/family
prefer
familyVL PGothic/family
/prefer
/alias

alias
familyVL PGothic/family
default
familysans-serif/family
/default
/alias
/fontconfig


--- NEW FILE vlgothic-fonts.spec ---
%define priority66
%define fontnamevlgothic
%define archivename VLGothic-%{version}
%define fontconf%{priority}-%{fontname}
%define common_desc \
VLGothic provides Japanese TrueType fonts from the Vine Linux project.\
Most of the glyphs are taken from the M+ and Sazanami Gothic fonts,\
but some have also been improved by the project.

Name:   %{fontname}-fonts
Version:20090204
Release:2%{?dist}
Summary:Japanese TrueType font

License:mplus and BSD
Group:  User Interface/X
URL:http://dicey.org/vlgothic
Source0:http://vinelinux.org/~daisuke/vlgothic/%{archivename}.tar.bz2
Source1:%{fontname}-fontconfig-pgothic.conf
Source2:%{fontname}-fontconfig-gothic.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:  noarch
BuildRequires:  fontpackages-devel

Requires:   %{name}-common = %{version}-%{release}
Obsoletes:  VLGothic-fonts  20090204-1
Provides:   VLGothic-fonts = %{version}-%{release}
%description
%common_desc

This package provides the monospace VLGothic font.

%packagecommon
Summary:Common files for VLGothic Japanese TrueType fonts
Group:  User Interface/X
Requires:   fontpackages-filesystem

%descriptioncommon
%common_desc

This package consists of files used by other %{name} packages.

%package -n %{fontname}-p-fonts
Summary:Proportional Japanese TrueType font
Group:  User Interface/X
Requires:   %{name}-common = %{version}-%{release}
Obsoletes:  VLGothic-fonts-proportional  20090204-1
Provides:   VLGothic-fonts-proportional = %{version}-%{release}

%description -n %{fontname}-p-fonts
%common_desc

This package provides the VLGothic font with proportional glyphs for some
non-Japanese characters.

%prep
%setup -q -n VLGothic


%build
%{nil}


%install
rm -rf $RPM_BUILD_ROOT

install -m 0755 -d $RPM_BUILD_ROOT%{_fontdir}
install -m 0644 -p *.ttf $RPM_BUILD_ROOT%{_fontdir}

install -m 0755 -d  $RPM_BUILD_ROOT%{_fontconfig_templatedir} \
$RPM_BUILD_ROOT%{_fontconfig_confdir}

install -m 0644 -p %{SOURCE1} 
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}-pgothic.conf
install -m 0644 -p %{SOURCE2} 
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}-gothic.conf

for fconf in %{fontconf}-pgothic.conf %{fontconf}-gothic.conf; do
ln -s %{_fontconfig_templatedir}/$fconf 
$RPM_BUILD_ROOT%{_fontconfig_confdir}/$fconf
done


%clean
rm -rf ${RPM_BUILD_ROOT}


%files common
%defattr(0644, root, root, 0755)
%doc README* LICENSE*
%dir %{_fontdir}

%_font_pkg -f %{fontconf}-gothic.conf VL-Gothic-Regular.ttf

%_font_pkg -n p -f %{fontconf}-pgothic.conf VL-PGothic-Regular.ttf


%changelog
* Tue Feb 10 2009 Akira TAGOH ta...@redhat.com - 20090204-2
- clean up

rpms/sazanami-fonts/devel sazanami-fonts.spec,1.4,1.5

2009-01-28 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/sazanami-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16599

Modified Files:
sazanami-fonts.spec 
Log Message:
* Wed Jan 28 2009 Akira TAGOH ta...@redhat.com - 0.20040629-6.20061016
- Rename the package name again.


Index: sazanami-fonts.spec
===
RCS file: /cvs/pkgs/rpms/sazanami-fonts/devel/sazanami-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sazanami-fonts.spec 25 Dec 2008 05:59:47 -  1.4
+++ sazanami-fonts.spec 28 Jan 2009 10:50:08 -  1.5
@@ -10,7 +10,7 @@
 
 Name:  %{fontname}-fonts
 Version:   0.20040629
-Release:   5.%{fontver}%{?dist}
+Release:   6.%{fontver}%{?dist}
 BuildArch: noarch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: ttmkfdir = 3.0.6
@@ -44,30 +44,30 @@
 
 This package consists of files used by other %{name} packages.
 
-%package   gothic
+%package -n%{fontname}-gothic-fonts
 Summary:   Sazanami Gothic Japanese TrueType font
 License:   BSD
 Group: User Interface/X
 Conflicts: fonts-japanese = 0.20061016-9.fc8
-Provides:  ttfonts-ja = 1.2-37
-Obsoletes: ttfonts-ja  1.2-37
+Provides:  ttfonts-ja = 1.2-37, %{fontname}-fonts-gothic = 
%{version}-%{release}
+Obsoletes: ttfonts-ja  1.2-37, %{fontname}-fonts-gothic  
0.20040629-6.20061016
 Requires:  %{name}-common = %{version}-%{release}
 
-%description   gothic
+%description -n%{fontname}-gothic-fonts
 %common_desc
 
 This package contains Japanese TrueType font for Gothic type face.
 
-%package   mincho
+%package -n%{fontname}-mincho-fonts
 Summary:   Sazanami Mincho Japanese TrueType font
 License:   BSD
 Group: User Interface/X
 Conflicts: fonts-japanese = 0.20061016-9.fc8
-Provides:  ttfonts-ja = 1.2-37
-Obsoletes: ttfonts-ja  1.2-37
+Provides:  ttfonts-ja = 1.2-37, %{fontname}-fonts-mincho = 
%{version}-%{release}
+Obsoletes: ttfonts-ja  1.2-37, %{fontname}-fonts-mincho  
0.20040629-6.20061016
 Requires:  %{name}-common = %{version}-%{release}
 
-%description   mincho
+%description -n%{fontname}-mincho-fonts
 %common_desc
 
 This package contains Japanese TrueType font for Mincho type face.
@@ -133,6 +133,9 @@
 %dir %{_fontdir}
 
 %changelog
+* Wed Jan 28 2009 Akira TAGOH ta...@redhat.com - 0.20040629-6.20061016
+- Rename the package name again.
+
 * Thu Dec 25 2008 Akira TAGOH ta...@redhat.com - 0.20040629-5.20061016
 - Update the spec file to fit into new guideline. (#477453)
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/devel hanazono-fonts.spec,1.1,1.2

2008-12-24 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29102

Modified Files:
hanazono-fonts.spec 
Log Message:
* Wed Dec 24 2008 Akira TAGOH ta...@redhat.com - 20081012-6
- Update the spec file to fit into new guideline. (#477395)


Index: hanazono-fonts.spec
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/hanazono-fonts.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hanazono-fonts.spec 17 Nov 2008 02:23:06 -  1.1
+++ hanazono-fonts.spec 24 Dec 2008 12:31:13 -  1.2
@@ -1,12 +1,11 @@
 %definefontnamehanazono
-%definefontdir %{_datadir}/fonts/%{fontname}
-%definefontconfdir %{_sysconfdir}/fonts/conf.d
 %define archivename%{fontname}-%{version}
 %definepriority66
+%define fontconf   %{priority}-%{fontname}.conf
 
 Name:  %{fontname}-fonts
 Version:   20081012
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Japanese Mincho-typeface TrueType font
 
 Group: User Interface/X
@@ -17,6 +16,8 @@
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch: noarch
+BuildRequires: fontpackages-devel
+Requires:  fontpackages-filesystem
 
 %description
 Hanazono Mincho typeface is a Japanese TrueType font that developed with
@@ -44,36 +45,28 @@
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -dm 0755 $RPM_BUILD_ROOT%{fontdir}
-install -pm 0644 hanazono.ttf $RPM_BUILD_ROOT%{fontdir}
-install -dm 0755 $RPM_BUILD_ROOT%{fontconfdir}
-install -pm 0644 %{SOURCE1} 
$RPM_BUILD_ROOT%{fontconfdir}/%{priority}-%{fontname}.conf
+install -dm 0755 $RPM_BUILD_ROOT%{_fontdir}
+install -pm 0644 hanazono.ttf $RPM_BUILD_ROOT%{_fontdir}
+install -dm 0755 $RPM_BUILD_ROOT%{_fontconfig_templatedir} \
+$RPM_BUILD_ROOT%{_fontconfig_confdir}
+install -pm 0644 %{SOURCE1} 
$RPM_BUILD_ROOT%{_fontconfig_templatedir}/%{fontconf}
 
+ln -s %{_fontconfig_templatedir}/%{fontconf} 
$RPM_BUILD_ROOT%{_fontconfig_confdir}/%{fontconf}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 
-%post
-if [ -x %{_bindir}/fc-cache ]; then
-   %{_bindir}/fc-cache %{fontdir} || :
-fi
-
-%postun
-if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ]; then
-   %{_bindir}/fc-cache %{fontdir} || :
-fi
+%_font_pkg -f %{fontconf} hanazono.ttf
 
-
-%files
-%defattr(0644, root, root, 0755)
 %doc LISENCE.txt README.txt THANKS.txt
-%config(noreplace) %{fontconfdir}/%{priority}-%{fontname}.conf
-%dir %{fontdir}/
-%{fontdir}/*.ttf
+%dir %{_fontdir}
 
 
 %changelog
+* Wed Dec 24 2008 Akira TAGOH ta...@redhat.com - 20081012-6
+- Update the spec file to fit into new guideline. (#477395)
+
 * Fri Nov 14 2008 Akira TAGOH ta...@redhat.com - 20081012-5
 - Fix a typo in fontconfig config again.
 

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/sazanami-fonts/devel sazanami-gothic-fontconfig.conf, NONE, 1.1 sazanami-mincho-fontconfig.conf, NONE, 1.1 sazanami-fonts.spec, 1.3, 1.4

2008-12-24 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/sazanami-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2826

Modified Files:
sazanami-fonts.spec 
Added Files:
sazanami-gothic-fontconfig.conf 
sazanami-mincho-fontconfig.conf 
Log Message:
* Thu Dec 25 2008 Akira TAGOH ta...@redhat.com - 0.20040629-5.20061016
- Update the spec file to fit into new guideline. (#477453)


--- NEW FILE sazanami-gothic-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
match
test name=lang
stringja-jp/string
/test
test name=family
stringsans-serif/string
/test
edit name=family mode=prepend binding=same
stringSazanami Gothic/string
/edit
/match

alias
familySazanami Gothic/family
default
familysans-serif/family
/default
/alias
/fontconfig


--- NEW FILE sazanami-mincho-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringSazanami Mincho/string
/edit
/match

alias
familySazanami Mincho/family
default
familyserif/family
/default
/alias
/fontconfig


Index: sazanami-fonts.spec
===
RCS file: /cvs/pkgs/rpms/sazanami-fonts/devel/sazanami-fonts.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sazanami-fonts.spec 28 Aug 2007 06:20:56 -  1.3
+++ sazanami-fonts.spec 25 Dec 2008 05:59:47 -  1.4
@@ -1,15 +1,21 @@
-%define gothfontdir%{_datadir}/fonts/%{name}-gothic
-%define minfontdir %{_datadir}/fonts/%{name}-mincho
-%define catalogue  %{_sysconfdir}/X11/fontpath.d
 %definefontver 20061016
+%definepriority66
+%definefontnamesazanami
+%definearchivename %{fontname}-%{fontver}
+%definefontconf%{priority}-%{fontname}
+%define catalogue  %{_sysconfdir}/X11/fontpath.d
+%definecommon_desc \
+The Sazanami type faces are automatically generated from Wadalab font kit.\
+They also contains some embedded Japanese bitmap fonts.
 
-Name:  sazanami-fonts
+Name:  %{fontname}-fonts
 Version:   0.20040629
-Release:   4.%{fontver}%{?dist}
+Release:   5.%{fontver}%{?dist}
 BuildArch: noarch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: ttmkfdir = 3.0.6
 BuildRequires: mkfontdir
+BuildRequires: fontpackages-devel
 URL:   http://efont.sourceforge.jp/
 
 # original is 
http://prdownloads.sourceforge.jp/efont/10087/sazanami-20040629.tar.bz2
@@ -17,6 +23,8 @@
 Source0:   sazanami-%{fontver}.tar.bz2
 Source1:   fonts.alias.sazanami-gothic
 Source2:   fonts.alias.sazanami-mincho
+Source3:   %{fontname}-gothic-fontconfig.conf
+Source4:   %{fontname}-mincho-fontconfig.conf
 
 
 Summary:   Sazanami Japanese TrueType fonts
@@ -24,36 +32,45 @@
 Group: User Interface/X
 
 %description
-The Sazanami type faces are automatically generated from Wadalab font kit.
-They also contains some embedded Japanese bitmap fonts.
+%common_desc
+
+%package   common
+Summary:   Common files for Sazanami Japanese TrueType fonts
+Group: User Interface/X
+Requires:  fontpackages-filesystem
+
+%description   common
+%common_desc
+
+This package consists of files used by other %{name} packages.
 
-%package gothic
+%package   gothic
 Summary:   Sazanami Gothic Japanese TrueType font
 License:   BSD
 Group: User Interface/X
 Conflicts: fonts-japanese = 0.20061016-9.fc8
 Provides:  ttfonts-ja = 1.2-37
 Obsoletes: ttfonts-ja  1.2-37
+Requires:  %{name}-common = %{version}-%{release}
 
-%description gothic
-This package contains Japanese TrueType font for Gothic type face.
+%description   gothic
+%common_desc
 
-The Sazanami type faces are automatically generated from Wadalab font kit.
-They also contains some embedded Japanese bitmap fonts.
+This package contains Japanese TrueType font for Gothic type face.
 
-%package mincho
+%package   mincho
 Summary:   Sazanami Mincho Japanese TrueType font
 License:   BSD
 Group: User Interface/X
 Conflicts: fonts-japanese = 0.20061016-9.fc8
 Provides:  ttfonts-ja = 1.2-37
 Obsoletes: ttfonts-ja  1.2-37
+Requires:  %{name}-common

rpms/VLGothic-fonts/devel VLGothic-fontconfig-monospace.conf, 1.1, 1.2 VLGothic-fontconfig-proportional.conf, 1.1, 1.2 VLGothic-fonts.spec, 1.17, 1.18

2008-12-05 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8440

Modified Files:
VLGothic-fontconfig-monospace.conf 
VLGothic-fontconfig-proportional.conf VLGothic-fonts.spec 
Log Message:
* Fri Dec  5 2008 Akira TAGOH [EMAIL PROTECTED] - 20081203-2
- update fontconfig config according to Fontconfig packaging tips.


Index: VLGothic-fontconfig-monospace.conf
===
RCS file: 
/cvs/pkgs/rpms/VLGothic-fonts/devel/VLGothic-fontconfig-monospace.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- VLGothic-fontconfig-monospace.conf  5 Dec 2008 03:13:31 -   1.1
+++ VLGothic-fontconfig-monospace.conf  5 Dec 2008 09:49:29 -   1.2
@@ -10,23 +10,29 @@
 /edit
 /match
 
-match target=pattern
+match
+test name=lang
+stringja-jp/string
+/test
 test name=family
 stringmonospace/string
 /test
-test name=lang compare=contains
-stringjp/string
-/test
-edit name=lang mode=prepend binding=strong
-stringen/string
+edit name=family mode=prepend binding=same
+stringVL Gothic/string
 /edit
 /match
 
 alias
 familymonospace/family
 prefer
-familyDejaVu Sans Mono/family
 familyVL Gothic/family
 /prefer
 /alias
+
+alias
+familyVL Gothic/family
+default
+familymonospace/family
+/default
+/alias
 /fontconfig


Index: VLGothic-fontconfig-proportional.conf
===
RCS file: 
/cvs/pkgs/rpms/VLGothic-fonts/devel/VLGothic-fontconfig-proportional.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- VLGothic-fontconfig-proportional.conf   5 Dec 2008 03:13:31 -   
1.1
+++ VLGothic-fontconfig-proportional.conf   5 Dec 2008 09:49:29 -   
1.2
@@ -10,23 +10,29 @@
 /edit
 /match
 
-match target=pattern
+match
+test name=lang
+stringja-jp/string
+/test
 test name=family
 stringsans-serif/string
 /test
-test name=lang compare=contains
-stringjp/string
-/test
-edit name=lang mode=prepend binding=strong
-stringen/string
+edit name=family mode=prepend binding=same
+stringVL PGothic/string
 /edit
 /match
 
 alias
 familysans-serif/family
 prefer
-familyDejaVu Sans/family
 familyVL PGothic/family
 /prefer
 /alias
+
+alias
+familyVL PGothic/family
+default
+familysans-serif/family
+/default
+/alias
 /fontconfig


Index: VLGothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/VLGothic-fonts.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- VLGothic-fonts.spec 5 Dec 2008 03:13:31 -   1.17
+++ VLGothic-fonts.spec 5 Dec 2008 09:49:29 -   1.18
@@ -5,7 +5,7 @@
 
 Name: %{fontname}-fonts
 Version: 20081203
-Release: 1%{?dist}
+Release: 2%{?dist}
 Summary: Japanese TrueType font
 
 License: mplus and BSD
@@ -108,6 +108,9 @@
 
 
 %changelog
+* Fri Dec  5 2008 Akira TAGOH [EMAIL PROTECTED] - 20081203-2
+- update fontconfig config according to Fontconfig packaging tips.
+
 * Thu Dec  4 2008 Akira TAGOH [EMAIL PROTECTED] - 20081203-1
 - update to 20081203 release.
 - clean up spec file.

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/devel .cvsignore,1.6,1.7 sources,1.12,1.13

2008-12-04 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv3379

Modified Files:
.cvsignore sources 
Log Message:



Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore  29 Oct 2008 05:41:33 -  1.6
+++ .cvsignore  5 Dec 2008 03:27:37 -   1.7
@@ -1,3 +1,4 @@
 VLGothic-20080624.tar.bz2
 VLGothic-20080908.tar.bz2
 VLGothic-20081029.tar.bz2
+VLGothic-20081203.tar.bz2


Index: sources
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 29 Oct 2008 05:41:33 -  1.12
+++ sources 5 Dec 2008 03:27:37 -   1.13
@@ -1 +1 @@
-c7ef9b60744cba71b7ea7ff402812f4d  VLGothic-20081029.tar.bz2
+c397377f4ffef7611247cf52de16e0da  VLGothic-20081203.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/devel hanazono-fonts-fontconfig.conf, NONE, 1.1 hanazono-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2008-11-16 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24619/devel

Modified Files:
.cvsignore sources 
Added Files:
hanazono-fonts-fontconfig.conf hanazono-fonts.spec import.log 
Log Message:
Initial import



--- NEW FILE hanazono-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringHanaMin/string
/edit
/match

alias
familyHanaMin/family
default
familyserif/family
/default
/alias
/fontconfig



--- NEW FILE hanazono-fonts.spec ---
%define fontnamehanazono
%define fontdir %{_datadir}/fonts/%{fontname}
%define fontconfdir %{_sysconfdir}/fonts/conf.d
%define archivename %{fontname}-%{version}
%define priority66

Name:   %{fontname}-fonts
Version:20081012
Release:5%{?dist}
Summary:Japanese Mincho-typeface TrueType font

Group:  User Interface/X
License:Copyright only
URL:http://fonts.jp/hanazono/
Source0:http://fonts.jp/hanazono/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildArch:  noarch

%description
Hanazono Mincho typeface is a Japanese TrueType font that developed with
a support of Grant-in-Aid for Publication of Scientific Research Results from
Japan Society for the Promotion of Science and the International Research
Institute for Zen Buddhism (IRIZ), Hanazono University. also with volunteers
who work together on glyphwiki.org.

This font supports:
 - 6359 characters in JIS X 0208:1997
 - 3695 characters in JIS X 0213:2004
 - 22 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+9FA6~U+9FBB)
 - 8 characters in Unicode 5.1 (U+9FBC~U+9FC3)
 - 16 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+31C0~U+31CF)
 - 20 characters in ISO/IEC 10646:2003/Amd.3:2008 (U+31D0~U+31E3)
 - 84 characters in IBM extensions

%prep
%setup -q -T -c -a 0


%build


%install
rm -rf $RPM_BUILD_ROOT

install -dm 0755 $RPM_BUILD_ROOT%{fontdir}
install -pm 0644 hanazono.ttf $RPM_BUILD_ROOT%{fontdir}
install -dm 0755 $RPM_BUILD_ROOT%{fontconfdir}
install -pm 0644 %{SOURCE1} 
$RPM_BUILD_ROOT%{fontconfdir}/%{priority}-%{fontname}.conf


%clean
rm -rf $RPM_BUILD_ROOT


%post
if [ -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache %{fontdir} || :
fi

%postun
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache %{fontdir} || :
fi


%files
%defattr(0644, root, root, 0755)
%doc LISENCE.txt README.txt THANKS.txt
%config(noreplace) %{fontconfdir}/%{priority}-%{fontname}.conf
%dir %{fontdir}/
%{fontdir}/*.ttf


%changelog
* Fri Nov 14 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-5
- Fix a typo in fontconfig config again.

* Thu Nov 13 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-4
- Try to test the language with the exact match in fontconfig config.

* Wed Nov 12 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-3
- Fix a typo in fontconfig config.

* Mon Nov 10 2008 Akira TAGOH [EMAIL PROTECTED]
- Drop -f from fc-cache.
- Improve fontconfig config.

* Mon Nov 10 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-2
- Improve a bit in the spec file.

* Tue Oct 28 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-1
- Initial packaging.



--- NEW FILE import.log ---
hanazono-fonts-20081012-5_fc9:HEAD:hanazono-fonts-20081012-5.fc9.src.rpm:1226888502


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  16 Nov 2008 20:16:22 -  1.1
+++ .cvsignore  17 Nov 2008 02:23:06 -  1.2
@@ -0,0 +1 @@
+hanazono-20081012.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 16 Nov 2008 20:16:22 -  1.1
+++ sources 17 Nov 2008 02:23:06 -  1.2
@@ -0,0 +1 @@
+eed4ae19b1fbee96ac334bf7af4c564a  hanazono-20081012.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/F-10 hanazono-fonts-fontconfig.conf, NONE, 1.1 hanazono-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2008-11-16 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25245/F-10

Modified Files:
.cvsignore sources 
Added Files:
hanazono-fonts-fontconfig.conf hanazono-fonts.spec import.log 
Log Message:
Initial import for F-10



--- NEW FILE hanazono-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringHanaMin/string
/edit
/match

alias
familyHanaMin/family
default
familyserif/family
/default
/alias
/fontconfig



--- NEW FILE hanazono-fonts.spec ---
%define fontnamehanazono
%define fontdir %{_datadir}/fonts/%{fontname}
%define fontconfdir %{_sysconfdir}/fonts/conf.d
%define archivename %{fontname}-%{version}
%define priority66

Name:   %{fontname}-fonts
Version:20081012
Release:5%{?dist}
Summary:Japanese Mincho-typeface TrueType font

Group:  User Interface/X
License:Copyright only
URL:http://fonts.jp/hanazono/
Source0:http://fonts.jp/hanazono/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildArch:  noarch

%description
Hanazono Mincho typeface is a Japanese TrueType font that developed with
a support of Grant-in-Aid for Publication of Scientific Research Results from
Japan Society for the Promotion of Science and the International Research
Institute for Zen Buddhism (IRIZ), Hanazono University. also with volunteers
who work together on glyphwiki.org.

This font supports:
 - 6359 characters in JIS X 0208:1997
 - 3695 characters in JIS X 0213:2004
 - 22 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+9FA6~U+9FBB)
 - 8 characters in Unicode 5.1 (U+9FBC~U+9FC3)
 - 16 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+31C0~U+31CF)
 - 20 characters in ISO/IEC 10646:2003/Amd.3:2008 (U+31D0~U+31E3)
 - 84 characters in IBM extensions

%prep
%setup -q -T -c -a 0


%build


%install
rm -rf $RPM_BUILD_ROOT

install -dm 0755 $RPM_BUILD_ROOT%{fontdir}
install -pm 0644 hanazono.ttf $RPM_BUILD_ROOT%{fontdir}
install -dm 0755 $RPM_BUILD_ROOT%{fontconfdir}
install -pm 0644 %{SOURCE1} 
$RPM_BUILD_ROOT%{fontconfdir}/%{priority}-%{fontname}.conf


%clean
rm -rf $RPM_BUILD_ROOT


%post
if [ -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache %{fontdir} || :
fi

%postun
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache %{fontdir} || :
fi


%files
%defattr(0644, root, root, 0755)
%doc LISENCE.txt README.txt THANKS.txt
%config(noreplace) %{fontconfdir}/%{priority}-%{fontname}.conf
%dir %{fontdir}/
%{fontdir}/*.ttf


%changelog
* Fri Nov 14 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-5
- Fix a typo in fontconfig config again.

* Thu Nov 13 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-4
- Try to test the language with the exact match in fontconfig config.

* Wed Nov 12 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-3
- Fix a typo in fontconfig config.

* Mon Nov 10 2008 Akira TAGOH [EMAIL PROTECTED]
- Drop -f from fc-cache.
- Improve fontconfig config.

* Mon Nov 10 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-2
- Improve a bit in the spec file.

* Tue Oct 28 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-1
- Initial packaging.



--- NEW FILE import.log ---
hanazono-fonts-20081012-5_fc9:F-10:hanazono-fonts-20081012-5.fc9.src.rpm:1226888732


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  16 Nov 2008 20:16:22 -  1.1
+++ .cvsignore  17 Nov 2008 02:26:31 -  1.2
@@ -0,0 +1 @@
+hanazono-20081012.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 16 Nov 2008 20:16:22 -  1.1
+++ sources 17 Nov 2008 02:26:32 -  1.2
@@ -0,0 +1 @@
+eed4ae19b1fbee96ac334bf7af4c564a  hanazono-20081012.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/hanazono-fonts/F-9 hanazono-fonts-fontconfig.conf, NONE, 1.1 hanazono-fonts.spec, NONE, 1.1 import.log, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

2008-11-16 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/hanazono-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25577/F-9

Modified Files:
.cvsignore sources 
Added Files:
hanazono-fonts-fontconfig.conf hanazono-fonts.spec import.log 
Log Message:
Initial import for F-9



--- NEW FILE hanazono-fonts-fontconfig.conf ---
?xml version=1.0 encoding=UTF-8?
!DOCTYPE fontconfig SYSTEM ../fonts.dtd
fontconfig
match
test name=lang
stringja-jp/string
/test
test name=family
stringserif/string
/test
edit name=family mode=prepend binding=same
stringHanaMin/string
/edit
/match

alias
familyHanaMin/family
default
familyserif/family
/default
/alias
/fontconfig



--- NEW FILE hanazono-fonts.spec ---
%define fontnamehanazono
%define fontdir %{_datadir}/fonts/%{fontname}
%define fontconfdir %{_sysconfdir}/fonts/conf.d
%define archivename %{fontname}-%{version}
%define priority66

Name:   %{fontname}-fonts
Version:20081012
Release:5%{?dist}
Summary:Japanese Mincho-typeface TrueType font

Group:  User Interface/X
License:Copyright only
URL:http://fonts.jp/hanazono/
Source0:http://fonts.jp/hanazono/%{archivename}.zip
Source1:%{name}-fontconfig.conf
BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildArch:  noarch

%description
Hanazono Mincho typeface is a Japanese TrueType font that developed with
a support of Grant-in-Aid for Publication of Scientific Research Results from
Japan Society for the Promotion of Science and the International Research
Institute for Zen Buddhism (IRIZ), Hanazono University. also with volunteers
who work together on glyphwiki.org.

This font supports:
 - 6359 characters in JIS X 0208:1997
 - 3695 characters in JIS X 0213:2004
 - 22 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+9FA6~U+9FBB)
 - 8 characters in Unicode 5.1 (U+9FBC~U+9FC3)
 - 16 characters in ISO/IEC 10646:2003/Amd.1:2005 (U+31C0~U+31CF)
 - 20 characters in ISO/IEC 10646:2003/Amd.3:2008 (U+31D0~U+31E3)
 - 84 characters in IBM extensions

%prep
%setup -q -T -c -a 0


%build


%install
rm -rf $RPM_BUILD_ROOT

install -dm 0755 $RPM_BUILD_ROOT%{fontdir}
install -pm 0644 hanazono.ttf $RPM_BUILD_ROOT%{fontdir}
install -dm 0755 $RPM_BUILD_ROOT%{fontconfdir}
install -pm 0644 %{SOURCE1} 
$RPM_BUILD_ROOT%{fontconfdir}/%{priority}-%{fontname}.conf


%clean
rm -rf $RPM_BUILD_ROOT


%post
if [ -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache %{fontdir} || :
fi

%postun
if [ $1 -eq 0 -a -x %{_bindir}/fc-cache ]; then
%{_bindir}/fc-cache %{fontdir} || :
fi


%files
%defattr(0644, root, root, 0755)
%doc LISENCE.txt README.txt THANKS.txt
%config(noreplace) %{fontconfdir}/%{priority}-%{fontname}.conf
%dir %{fontdir}/
%{fontdir}/*.ttf


%changelog
* Fri Nov 14 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-5
- Fix a typo in fontconfig config again.

* Thu Nov 13 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-4
- Try to test the language with the exact match in fontconfig config.

* Wed Nov 12 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-3
- Fix a typo in fontconfig config.

* Mon Nov 10 2008 Akira TAGOH [EMAIL PROTECTED]
- Drop -f from fc-cache.
- Improve fontconfig config.

* Mon Nov 10 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-2
- Improve a bit in the spec file.

* Tue Oct 28 2008 Akira TAGOH [EMAIL PROTECTED] - 20081012-1
- Initial packaging.



--- NEW FILE import.log ---
hanazono-fonts-20081012-5_fc9:F-9:hanazono-fonts-20081012-5.fc9.src.rpm:122659


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/F-9/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore  16 Nov 2008 20:16:22 -  1.1
+++ .cvsignore  17 Nov 2008 02:28:08 -  1.2
@@ -0,0 +1 @@
+hanazono-20081012.zip


Index: sources
===
RCS file: /cvs/pkgs/rpms/hanazono-fonts/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 16 Nov 2008 20:16:22 -  1.1
+++ sources 17 Nov 2008 02:28:08 -  1.2
@@ -0,0 +1 @@
+eed4ae19b1fbee96ac334bf7af4c564a  hanazono-20081012.zip

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/F-9 .cvsignore, 1.2, 1.3 VLGothic-fonts.spec, 1.12, 1.13 sources, 1.8, 1.9 59-VLGothic-sans.conf, 1.2, NONE

2008-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv8483

Modified Files:
.cvsignore VLGothic-fonts.spec sources 
Removed Files:
59-VLGothic-sans.conf 
Log Message:
* Wed Oct 29 2008 Akira TAGOH [EMAIL PROTECTED] - 20081029-1
- update to 20081029 release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/F-9/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore  23 Nov 2006 00:10:23 -  1.2
+++ .cvsignore  29 Oct 2008 06:12:27 -  1.3
@@ -1 +1,2 @@
 VLGothic-20061026.tar.bz2
+VLGothic-20081029.tar.bz2


Index: VLGothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/F-9/VLGothic-fonts.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- VLGothic-fonts.spec 17 Jan 2008 06:44:43 -  1.12
+++ VLGothic-fonts.spec 29 Oct 2008 06:12:27 -  1.13
@@ -3,18 +3,19 @@
 %define fontconfdir %{_sysconfdir}/fonts/conf.d
 
 Name: %{fontname}-fonts
-Version: 20071215
-Release: 2%{?dist}
+Version: 20081029
+Release: 1%{?dist}
 Summary: Japanese TrueType font
 
 License: mplus and BSD
 Group: User Interface/X
 URL: http://dicey.org/vlgothic
 Source0: http://vinelinux.org/~daisuke/vlgothic/%{fontname}-%{version}.tar.bz2
-Source1: 59-VLGothic-sans.conf
+Source1: 59-VLGothic-proportional.conf
 Source2: 59-VLGothic-monospace.conf
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch: noarch
+# added for f9 can be dropped in f11:
 Obsoletes: %{name}-monospace  20071215-2
 
 %description
@@ -100,12 +101,25 @@
 %files proportional
 %doc README* LICENSE*
 %dir %{fontdir}-proportional
-%config(noreplace) %{_sysconfdir}/fonts/conf.d/59-VLGothic-sans.conf
+%config(noreplace) %{_sysconfdir}/fonts/conf.d/59-VLGothic-proportional.conf
 %{fontdir}-proportional/VL-PGothic-Regular.ttf
 
 
 %changelog
-* Thu Jan 17 2008 Jens Petersen [EMAIL PROTECTED] - 20071215-2
+* Wed Oct 29 2008 Akira TAGOH [EMAIL PROTECTED] - 20081029-1
+- update to 20081029 release.
+
+* Tue Sep  9 2008 Akira TAGOH [EMAIL PROTECTED] - 20080908-1
+- update to 20080908 release.
+
+* Thu Jul 31 2008 Jens Petersen [EMAIL PROTECTED] - 20080624-1.fc10
+- update to 20080624 release
+
+* Wed May  7 2008 Jens Petersen [EMAIL PROTECTED] - 20080429-1
+- update to 20080429 release
+- rename 59-VLGothic-sans.conf to 59-VLGothic-proportional.conf
+
+* Thu Jan 17 2008 Jens Petersen [EMAIL PROTECTED] - 20071215-2.fc9
 - move monospace font to main package and obsolete monospace subpackage
 - rename sans subpackage to proportional and obsolete sans subpackage
 - use a separate font dir for the proportional font subpackage


Index: sources
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/F-9/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 12 Jan 2008 02:31:32 -  1.8
+++ sources 29 Oct 2008 06:12:27 -  1.9
@@ -1 +1 @@
-830fe98b9c5ba833e9eab9f6570a0d3c  VLGothic-20071215.tar.bz2
+c7ef9b60744cba71b7ea7ff402812f4d  VLGothic-20081029.tar.bz2


--- 59-VLGothic-sans.conf DELETED ---

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/F-9 59-VLGothic-proportional.conf,NONE,1.1

2008-10-29 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9777

Added Files:
59-VLGothic-proportional.conf 
Log Message:



--- NEW FILE 59-VLGothic-proportional.conf ---
?xml version=1.0?
!DOCTYPE fontconfig SYSTEM fonts.dtd
fontconfig
match target=font
test name=family
stringVL PGothic/string
/test
edit name=hinting mode=assign
boolfalse/bool
/edit
/match

match target=pattern
test name=family
stringsans-serif/string
/test
test name=lang compare=contains
stringjp/string
/test
edit name=lang mode=prepend binding=strong
stringen/string
/edit
/match

alias
familysans-serif/family
prefer
familyDejaVu Sans/family
familyVL PGothic/family
/prefer
/alias
/fontconfig

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/devel .cvsignore, 1.5, 1.6 VLGothic-fonts.spec, 1.15, 1.16 sources, 1.11, 1.12

2008-10-28 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5546

Modified Files:
.cvsignore VLGothic-fonts.spec sources 
Log Message:
* Wed Oct 29 2008 Akira TAGOH [EMAIL PROTECTED] - 20081029-1
- update to 20081029 release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore  9 Sep 2008 02:55:11 -   1.5
+++ .cvsignore  29 Oct 2008 05:41:33 -  1.6
@@ -1,2 +1,3 @@
 VLGothic-20080624.tar.bz2
 VLGothic-20080908.tar.bz2
+VLGothic-20081029.tar.bz2


Index: VLGothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/VLGothic-fonts.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- VLGothic-fonts.spec 9 Sep 2008 02:55:11 -   1.15
+++ VLGothic-fonts.spec 29 Oct 2008 05:41:33 -  1.16
@@ -3,7 +3,7 @@
 %define fontconfdir %{_sysconfdir}/fonts/conf.d
 
 Name: %{fontname}-fonts
-Version: 20080908
+Version: 20081029
 Release: 1%{?dist}
 Summary: Japanese TrueType font
 
@@ -106,6 +106,9 @@
 
 
 %changelog
+* Wed Oct 29 2008 Akira TAGOH [EMAIL PROTECTED] - 20081029-1
+- update to 20081029 release.
+
 * Tue Sep  9 2008 Akira TAGOH [EMAIL PROTECTED] - 20080908-1
 - update to 20080908 release.
 


Index: sources
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 9 Sep 2008 02:55:11 -   1.11
+++ sources 29 Oct 2008 05:41:33 -  1.12
@@ -1 +1 @@
-429cd76f7cb6635160da12e28460efef  VLGothic-20080908.tar.bz2
+c7ef9b60744cba71b7ea7ff402812f4d  VLGothic-20081029.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list


rpms/VLGothic-fonts/devel .cvsignore, 1.4, 1.5 VLGothic-fonts.spec, 1.14, 1.15 sources, 1.10, 1.11

2008-09-08 Thread Akira TAGOH
Author: tagoh

Update of /cvs/pkgs/rpms/VLGothic-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv21096

Modified Files:
.cvsignore VLGothic-fonts.spec sources 
Log Message:
* Tue Sep  9 2008 Akira TAGOH [EMAIL PROTECTED] - 20080908-1
- update to 20080908 release.


Index: .cvsignore
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore  31 Jul 2008 04:21:24 -  1.4
+++ .cvsignore  9 Sep 2008 02:55:11 -   1.5
@@ -1 +1,2 @@
 VLGothic-20080624.tar.bz2
+VLGothic-20080908.tar.bz2


Index: VLGothic-fonts.spec
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/VLGothic-fonts.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- VLGothic-fonts.spec 31 Jul 2008 04:21:24 -  1.14
+++ VLGothic-fonts.spec 9 Sep 2008 02:55:11 -   1.15
@@ -3,7 +3,7 @@
 %define fontconfdir %{_sysconfdir}/fonts/conf.d
 
 Name: %{fontname}-fonts
-Version: 20080624
+Version: 20080908
 Release: 1%{?dist}
 Summary: Japanese TrueType font
 
@@ -106,6 +106,9 @@
 
 
 %changelog
+* Tue Sep  9 2008 Akira TAGOH [EMAIL PROTECTED] - 20080908-1
+- update to 20080908 release.
+
 * Thu Jul 31 2008 Jens Petersen [EMAIL PROTECTED] - 20080624-1.fc10
 - update to 20080624 release
 


Index: sources
===
RCS file: /cvs/pkgs/rpms/VLGothic-fonts/devel/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources 31 Jul 2008 04:21:24 -  1.10
+++ sources 9 Sep 2008 02:55:11 -   1.11
@@ -1 +1 @@
-d508d04eeac3d6c74eacfbc258c236b3  VLGothic-20080624.tar.bz2
+429cd76f7cb6635160da12e28460efef  VLGothic-20080908.tar.bz2

___
Fedora-fonts-bugs-list mailing list
Fedora-fonts-bugs-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list