which again based on following upstream announce.
------------------------------
[ANNOUNCE] font releases, second and final part
Mon, 15 Nov 2010 15:33:04 -0800
http://www.mail-archive.com/xorg-announce@lists.freedesktop.org/msg01323.html
-------
And here are the final font releases. Like in my previous batch, all
changes are by Gaétan and Jesse.
-------------------------------
(30 fonts are listed below,
marked *'s are not imported yet or already up-to-date)
now new
font-arabic-misc 1.0.1 1.0.3
font-bh-lucidatypewriter-100dpi 1.0.1 1.0.3
font-bh-lucidatypewriter-100dpi 1.0.1 1.0.3
font-bh-lucidatypewriter-75dpi 1.0.1 1.0.3
font-bh-lucidatypewriter-75dpi 1.0.1 1.0.3
font-bh-ttf 1.0.1 1.0.3 (with some PLIST change)
font-bh-type1 1.0.1 1.0.3
font-bitstream-100dpi 1.0.1 1.0.3
font-bitstream-75dpi 1.0.1 1.0.3
font-bitstream-speedo 1.0.2*
font-bitstream-type1 1.0.1 1.0.3
font-cronyx-cyrillic 1.0.1 1.0.3
font-cursor-misc 1.0.1 1.0.3
font-daewoo-misc 1.0.1 1.0.3
font-dec-misc 1.0.1 1.0.3
font-ibm-type1 1.0.1 1.0.3
font-isas-misc 1.0.1 1.0.3
font-jis-misc 1.0.1 1.0.3
font-micro-misc 1.0.1 1.0.3
font-misc-cyrillic 1.0.1 1.0.3
font-misc-ethiopic 1.0.1 1.0.3
font-misc-meltho 1.0.1 1.0.3
font-misc-misc 1.0.0 1.1.2 (patch-a[ac] modified and
patch-ab removed)
PLIST change as:
lib/X11/fonts/misc/
share/fonts/X11/misc/
font-mutt-misc 1.0.1 1.0.3
font-schumacher-misc 1.1.2 1.1.2* (Already up-to-date)
font-screen-cyrillic 1.0.2 1.0.4
font-sony-misc 1.0.1 1.0.3
font-sun-misc 1.0.1 1.0.3
font-winitzki-cyrillic 1.0.1 1.0.3
font-xfree86-type1 1.0.2 1.0.4
30 are in the list and 28 out of them are delt this bundle patch
-------------------------------
Also fonts/font-misc-misc/patches/patch-ab is deleted, upstream
no longer has the lines originally patch-ab is removing.
which again based on following announce
--------
Sun, 14 Nov 2010 22:43:47 -0800
[ANNOUNCE] font releases, part 1:
http://www.mail-archive.com/xorg-announce@lists.freedesktop.org/msg01322.html
--------
As promised, here's a first batch of font releases, hopefully in time
for the upcoming katamari. For now, I've only tackled "adobe-*" fonts,
the rest will come later once I get round to it.
The major changes for these fives releases are
- CVS tags purges by Jesse Adkins
- font-util macro bump to 1.2 by Gaétan Nadon
--------
The versions of this update are summarized as:
font-adobe-100dpi 1.0.1 -> 1.0.3
font-adobe-75dpi 1.0.1 -> 1.0.3
font-adobe-utopia-100dpi 1.0.2 -> 1.0.4
font-adobe-utopia-75dpi 1.0.2 -> 1.0.4
font-adobe-utopia-type1 1.0.1 -> 1.0.4
This also includes upstream PATH change, i.e. PLIST.
lib/X11/fonts/Type1 -> share/fonts/X11/Type1
--------
font-util was bumped already separately, so not included
in this commit.
Bump version to 2.9.0
Get rid of $< from Makefile.am
Fix a build fail on some environment.
Fix a build fail on some environment
Fix a build issue
Update to detect the uncommited changes properly
Update the version info
Fix distcheck error
Bug 19128 - Handling whitespace in aliases
Add a workaround alias for Dingbats.
Check null value for given object to avoid possibly segfaulting
Bug 23336 - unable to display bitmap-only (SFNT) TrueType or OpenType
Force to find out a size for bitmap-only ttf to avoid the blank glyphs
in the font.
Patch from Bug Fly
Bug 41694 - FcCache functions have random-number-generator side
effects
Use the own random number generator state if possible.
Bug 25652 - Add ortho file for locale mni_IN
Add mni.orth for Maniputi
Bug 25653 - Add ortho file for locale doi_IN
Add doi.orth for Dogri
Add brx.orth and sat.orth
Bug 25650 - Add ortho file for locale sat_IN
Add sat.orth for Santali
Bug 25651 - Add ortho file for locale brx_IN
Add brx.orth for Bodo.
Bug 27385 - lcdfilter settings for freetype-2.3.12 not available
in fontconfig-2.8.0
Add config files for FT_LcdFilter options.
Patch from Robin Johnson.
Do not update stream->pos when seeking is failed.
Bug 46169 - Pointer error in FcConfigGlobMatch
Fix possibly accessing the invalid memory and a crash in the
worst case
when the glob string is longer than the string.
makealias: handle missing funcs better
When adding new functions, if the actual definition doesn't match the
header (say due to a typo), the regeneration of the internal headers
get confused and output bad cpp logic. This causes gcc to barf due
to mismatched #ifdef/#endif. Which is a pain to figure out due to
the sheer voulme of generated code.
So tweak the makealias script to detect this case and error out.
While we're here, improve the cpp output a bit to indent, include
comments, and merge similar ifdef blocks.
FcObjectValidType: tweak -1 checking
Newer gcc doesn't like when you switch on an enum and use a value
that isn't declared:
fcname.c: In function 'FcObjectValidType':
fcname.c:299:2: warning: case value '4294967295'
not in enumerated type 'FcType' [-Wswitch]
So tweak the logic to avoid this warning.
fix build warnings when using --with-arch
Latest configure code will setup FC_ARCHITECTURE directly rather than
going through ARCHITECTURE, so update fcarch.h accordingly.
fc-{list,match}: constify format string
We don't free this string anywhere, so mark it const to avoid gcc
warnings
and possible bugs in the future (if people did try freeing it).
fc-list.c: In function 'main':
fc-list.c:161:16: warning: pointer targets in assignment
differ in signedness [-Wpointer-sign]
fc-match.c: In function 'main':
fc-match.c:201:13: warning: pointer targets in assignment
differ in signedness [-Wpointer-sign]
fc-match.c:203:13: warning: pointer targets in assignment
differ in signedness [-Wpointer-sign]
FcName{,Get}Constant: constify string input
These funcs don't modify the incoming string, so add const markings.
This is the "right thing", shouldn't change the ABI, and fixes some
gcc warnings:
fccfg.c: In function 'FcConfigEvaluate':
fccfg.c:916:2: warning: passing argument 1 of 'IA__FcNameConstant'
discards 'const' qualifier from pointer target type [enabled
by default]
fcalias.h:253:34: note: expected 'FcChar8 *' but
argument is of type 'const FcChar8 *'
fcxml.c: In function 'FcTypecheckExpr':
fcxml.c:604:2: warning: passing argument 1 of 'IA__FcNameGetConstant'
discards 'const' qualifier from pointer target type [enabled
by default]
fcalias.h:251:37: note: expected 'FcChar8 *' but
argument is of type 'const FcChar8 *'
fc-cat: fix pointer warning
Add a cast to avoid a gcc warning:
fc-cat.c: In function 'cache_print_set':
fc-cat.c:230:2: warning: pointer targets in passing argument 2
of 'FcPatternFormat' differ in signedness [-Wpointer-sign]
../fontconfig/fontconfig.h:860:1: note:
expected 'const FcChar8 *' but argument is of type 'char *'
FcStat: change to FcChar8 for first arg
This shouldn't affect the ABI, makes FcStat more like the rest of the
fontconfig API, and fixes warnings where we pass FcChar8* pointers in
to this func from other places.
delete unused variables
Newer gcc is better at detecting set-but-unused variables.
FcStrPlus: optimize a little
We've already calculated the lengths of these strings, so re-use those
values to avoid having to rescan the strings multiple times.
Bug 44826 - <alias> must contain only a single <family>
Fix invalid syntax around alias elements in 30-metric-aliases.conf
40-nonlatin.conf and 45-latin.conf.
Patch from lolilolicon
Get rid of the unexpected family name
UmePlus P Gothic isn't a serif font.
Bug 43406 - typo of Japanese font name in conf.d/65-nonlatin.conf
Fix a typo.
Bug 43321 - Required corrections in urdu.orth file
Drop U+0629 and U+0647, and add U+06c3 to ur.orth
Bug 42423 - make default Korean font from Un to Nanum
Update 40-nonlatin.conf and 65-nonlatin.conf for Nanum korean fonts.
Bug 40452 - Running 'fc-match --all' core dumps when no fonts are
installed
This would changes the behavior of FcFontSort().
it won't returns NULL afterward.
Bug 35517 - Remove Apple Roman cmap support
Get rid of the apple roman encoding related code
Add a missing file
Bug 32965 - Asturian (ast-ES) language matching missing ḷḷḥ
Add U+1E24, U+1E25, U+1E36 and U+1e37 for Asturian
Remove the unnecessary comment in ks.orth
Bug 27195 - need updates to ks.orth file
Add U+0620, U+0657, U+065f, U+0672, U+0673 and U+06c4 for Kashmiri
See http://www.unicode.org/charts/PDF/U0600.pdf
Bug 24744 - No n'ko orthography
Add nqo.orth for N'Ko
Add FcPublic to FcLangSetUnion and FcLangSetSubtract
Patch from ssp
Fix parallel build
Bug 41171 - Invalid use of memset
Fix stupid bug in FcFontSort()
I broke FcFontSort() language handling at the end of 2008 with this
commit: c7641f28
G-d knows how many of the lang-matching bugs in bugzilla will be
fixed by this changed...
I'm really sorry, everyone!
Switch fc-cat to use FcPatternFormat()
Added the a builtin "fccat" to FcPatternFormat().
Switch fc-match to use FcPatternFormat()
Fix small bug in FcPatternFormat that was letting element-default to
consume the convertor sequence.
Bug 26718 - "fc-match sans file" doesn't work
- Do not throw away FC_FILE in FcNameUnparse
- Update the builtin "fclist" format to remove FC_FILE properly
instead
- Switch fc-list to use FcPatternFormat()
Note that I had previously broken fc-list and it was not showing the
file name anymore. No one noticed that it seems! Now fixed.
Bug 36577 - Updating cache with no-bitmaps disables bitmap fonts...
Do not remove blacklisted fonts during cache generation. We already
apply the blacklist when reading the caches. The idea always has been
that the config should not affect caches built, although that design
was tarnished with the introduction of target="scan" configurations.
[.gitignore] Update
Bug 35587 - Add padding to make valgrind and glibc not hate each other
Fix warning
Always define FcStat as a function
Such that first arg is const char *. We also need to make more
changes
in that function as part of some other bug.
More doc typo fixes
Mark constant strings as constant
Fixes a few compiler warnings in fcxml.c and makes it clear that they
should not be freed.
Bug 30566 - fcformat.c:interpret_enumerate() passes uninitialized
idx to FcPatternGetLangSet()
Bug 20113 - Uighur (ug) orthography incomplete
Documentation fixes
Remove --enable-maintainer-mode from autogen.sh
Update CaseFolding.txt to Unicode 6.0
Remove AM_MAINTAINER_MODE
That macro is simply broken.
This was also brought up in:
Bug 32679 - fontconfig-2.8.0 does not cross compile
Fix assertion failure on le32d4
Reported by Jon TURNEY.
Doc nit
Skip <range> elements with begin > end
Add <range> support for <blank> into the DTD
Merge: 30fd4fa fa269cf
Allow editing charset and lang in target="scan"
Merge commit 'fa269cf812ee304534b0e4c44662202496008db0'
Fixes:
Bug 31969 - Can't modify charset in target="scan"
Bug 23758 - Can't modify lang in target="scan"
Bump version
Make fc-arch stuff cross-compiling-safe
Fixes:
Bug 32679 - fontconfig-2.8.0 does not cross compile
Bug 25462 - Cross-compilation doesn't work
Make most generated-files cross-compiling-safe
By simply including a copy in the tarball.
Remains fc-arch which is trickier.
add some documents
Add editing langset feature.
The syntax to add any langset to the langset table looks like:
<match target="scan">
<test name="family">
<string>Buggy Sans</string>
</test>
<edit name="lang" mode="assign">
<plus>
<name>lang</name>
<langset>
<string>zh-cn</string>
<string>zh-tw</string>
</langset>
</plus>
</edit>
</match>
To remove any langset from the langset table:
<match target="scan">
<test name="family">
<string>Buggy Sans</string>
</test>
<edit name="lang" mode="assign">
<minus>
<name>lang</name>
<langset>
<string>ja</string>
</langset>
</minus>
</edit>
</match>
Add the range support in blank element
add some document for range and charset.
Add charset editing feature.
The syntax to add any characters to the charset table looks like:
<match target="scan">
<test name="family">
<string>Buggy Sans</string>
</test>
<edit name="charset" mode="assign">
<plus>
<name>charset</name>
<charset>
<int>0x3220</int> <!-- PARENTHESIZED IDEOGRAPH
ONE -->
</charset>
</plus>
</edit>
</match>
To remove any characters from the charset table:
<match target="scan">
<test name="family">
<string>Buggy Sans</string>
</test>
<edit name="charset" mode="assign">
<minus>
<name>charset</name>
<charset>
<int>0x06CC</int> <!-- ARABIC LETTER FARSI YEH -->
<int>0x06D2</int> <!-- ARABIC LETTER YEH BARREE -->
<int>0x06D3</int> <!-- ARABIC LETTER YEH BARREE
WITH HAMZA ABOVE -->
</charset>
</minus>
</edit>
</match>
You could also use the range element for convenience:
...
<charset>
<int>0x06CC</int> <!-- ARABIC LETTER FARSI YEH -->
<range>
<int>0x06D2</int> <!-- ARABIC LETTER YEH
BARREE -->
<int>0x06D3</int> <!-- ARABIC LETTER YEH
BARREE WITH HAMZA ABOVE -->
</range>
</charset>
...
Bug 28958 - lang=en matches other langs
Patch from Akira TAGOH.
Fix returned value
Cleanup copyright notices to replace "Keith Packard" with "the
author(s)"
Add more copyright owners
fontconfig.pc.in: Add sysconfdir, localstatedir, and PACKAGE
In the default case, cachedir and confdir will evaluate to something
referencing these other variables (which wouldn't otherwise be defined
in the pkg-config file.
Fixes a regression introduced by
81b542b50f82f8a0ad9f38f7d913fe5433631166
Tested-by: Jon TURNEY <jon.turney@dronecode.org.uk>
fontconfig.pc: Add variables for confdir and cachedir
Bug 24729 - [ne_NP] Fix ortho file
Exclude three characters (U+090C..090E) from Nepalese.
[fc-lang] Support excluding characters
By prefixing a line by a hyphen/minus sign. Useful when including
other orth files.
Add new public API: FcCharSetDelChar()
Bug 29995 - fc-cat does not invoke FcFini()
Add comments
Bug 29338 - fc-pattern.sgml, open para tag
Fix compiler warnings
Add fc-pattern cmdline tool
Fix comment
Remove all training whitespaces
More whitespace
Whitespace
Accept TT_PLATFORM_MICROSOFT, TT_MS_ID_SYMBOL_CS from name table
The OT spec says:
"When building a Unicode font for Windows, the platform ID should
be 3 and the encoding ID should be 1. When building a symbol
font for Windows, the platform ID should be 3 and the encoding
ID should be 0."
We were ignoring the SYMBOL_CS entry before. It's UTF-16/UCS-2
like the UNICODE_CS.
Also, always use UTF-16BE instead of UCS-2BE. The conversion
was doing UTF-16BE anyway.
Don't include unistd.h in fontconfig.h
Bug 26783 patch: unistd.h not exist on ms windows
Bug 25152 Don't sleep(2) if all caches were uptodate
Bug 26157 Solaris/Sun C 5.8: compilation of 2.8.0 and 2.7.3 fails
Bug 18886 installation crashes if fontconfig already installed
Run the uninstalled fc-cache, not the installed one.
More doc typo fixes
Fix doc typo
Add note about autogen.sh to INSTALL
Update INSTALL
Bug 25508 configure assumes bash > 2.0 is on system
Remove dolt. With libtool2, there's not much need for dolt.
[doc] Fix typo
[fc-cache] Document -r argument in man page
1.3.0:
This release includes a number of bug fixes and code cleanups of
the utilities, as well as improvements to the GNU autoconf macros
for X.Org font packages for cross-compiling support.
Existing font packages will need to have autoreconf run after installing
the new fontutil.m4 to take advantage of the cross-compilation fixes - the
next release of the font packages will include this fix in the configure
scripts distributed in their tarballs.
1.2.0:
This release adds two new options that some of the font packages will
offer in their configure scripts:
--disable-all-encodings option to the macros used in the bdf font
packages, to set the default to disabled for all encodings so that
builders/packagers wanting to build just a subset of encodings can
start with none and add the ones they want instead of having to disable
all those they don't want.
--with-fc-confdir to specify the path to fontconfig's configuration
files directory (normally /etc/fonts), for packages like bh-ttf that
install fontconfig configuration snippets. If not specified,
the default will be the confdir variable from fontconfig.pc if present
(which it won't be until the next fontconfig release), otherwise
${sysconfdir}/fonts.
Existing font packages will need to have autoreconf run after installing
the new fontutil.m4 to take advantage of this fix - the next release of
the font packages will include this fix in the configure scripts
distributed in their tarballs.
Changelog:
In Gothic (Sans-serif) family
* Fix glyphs in Unicode : 0020-6905, 946d-ffff (first check)
In Minchi (Serif) family
* Fix glyphs in Unicode : 0020-6905, 946d-ffff (first check)
For most font packages, the only changes other than rebuilding with the
latest autoconf macros & autotools releases are these common janitorial
cleanups:
Gaetan Nadon (4):
.gitignore: use common defaults with custom section # 24239
INSTALL, NEWS, README COPYING or AUTHORS files are missing/incorrect #24206
Makefile.am: add INSTALL target and clean ChangeLog DIST targets
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
This minor maintenance release is built with the latest X.Org autotools macros
and provides the usual recent collection of build configuration improvements
and janitorial cleanups.
This minor feature release adds support for the 'ExtraLight' and 'Heavy'
weights in Type 1 fonts generated by FontForge, and recognizes the fonts
from the Culmus project <http://culmus.sourceforge.net>, mapping them to
the XLFD foundry name "culmus".
1.1.1:
This minor maintenance release fixes several build configuration and
compiler warning issues.
1.1.0:
This release adds support for finding the encoding data-files in
using the standard autoconf macros provided by X.Org's fontutil.m4.
The precedence is now (first found is used):
--with-encodingsdir=<pathname>
encodings subdirectory of fontrootdir found via:
--with-fontrootdir
pkg-config --variable=fontrootdir fontutil
${datadir}/fonts/X11
It also converts to using standard libc memory allocation functions,
and provides the usual recent build configuration improvements and
janitorial cleanups.
Changelog:
VLGothic-20120325
* Sync with M+1C and 1M of 2012.03.25 CVS HEAD
* Add 135 Kanji characters
VLGothic-20120312
* Sync with M+1C and 1M of 2012.03.12 CVS HEAD
* Add 12 Kanji characters and 14 symbols
A geometric sans serif blackboard bold font, for use in
mathematics; MetaFont sources are provided, as well as macros
for use with LaTeX. The Sauter font package has MetaFont
parameter source files for building the fonts at more sizes
than you could reasonably imagine. See the blackboard sampler
for a feel for the font's appearance.
The files offer an Adobe Type 1 format version of the 5pt, 7pt
and 10pt versions of the bbold fonts. The distribution also
includes a map file, for use when incorporating the fonts into
TeX documents, but no macro sets are provided (the fonts will
not provide the correct results using macros designed for use
with the MetaFont versions of the fonts. The fonts were
produced to be part of the TeX distribution from Y&Y; they were
generously donated to the TeX Users' Group when Y&Y closed its
doors as a business.
This update is provided by Miwa Susumu on pkgsrc-users@.
* Use os2version_reviser.sh in post-build, for adjusting spacing of Zenkaku
characters.
Changelog:
Version 3.2.0 (16 Apr. 2012)
* Adjust character spacing
* Add command line options
VERSION 1.9 2012-03-14
CHANGES IN 1.9
Fixed the problem with inverted question mark facing the wrong way. (Thanks
to Swyter for reporting it.)
Modified the small "w" and "g".
Restored the original look for size 6x12 bold.
CHANGES IN 1.8
Fixed a problem where chars showed up as boxes in xfontsel and some apps.
Tweaks, esp. to 8x17 size
CHANGES IN 1.7
Added two new sizes: tiny 5x9 and large 10x20.
Retired size 7x12. (If this presents major problem for you, get in touch.)
Added a pixel to the height of the 6x11 size, making it 6x12.
Added new chars for partial ISO8859-1 support, mainly covering the accented
characters and currency symbols. I consider these new characters to be BETA,
since I don't use them so I'm not sure how they should look. If you have
feedback about them, please get in touch.
Made many minor tweaks to character shapes. In particular, the f, l, and t
have a more "traditional" look. Also, I've changed the w and y again.
Changelog:
In Gothic (Sans-serif) family
* Fix glyphs in Unicode : 0020-6727, 946d-ffff (first check)
In Minchi (Serif) family
* Fix glyphs in Unicode : 0020-6727, 946d-ffff (first check)
Google Croscore fonts package contains a collections of fonts that
offers improved on-screen readability characteristics and the
pan-European WGL character set and solves the needs of developers
looking for width-compatible fonts to address document portability
across platforms.
Changelog:
In Gothic (Sans-serif) family
* Fix glyphs in Unicode : 0020-668f, 9475-ffff (first check)
* Fix glyphs in SJIS : second check completed
In Minchi (Serif) family
* Fix glyphs in Unicode : 0020-668f, 9470-ffff (first check)
* Fix glyphs in SJIS : second check completed
Always use xorg-cf-files and imake from pkgsrc, replacing xpkgwedge.
Always install man pages, not cat pages when using imake.
Unify the various imake PLIST variables in preparation for dropping.
Adjust xbattbar for the new expectations.