Commit graph

35953 commits

Author SHA1 Message Date
Vincent Laporte
369230cc76 ocamlPackages.cpuid: init at 0.1.0
cpuid allows detection of CPU features from OCaml.

Homepage: https://github.com/pqwy/cpuid
2017-03-13 20:58:51 +00:00
Will Dietz
f54813d767 llvm4: rc4 -> release! 2017-03-13 14:54:39 -05:00
Michael Raskin
90f2b24fd7 Merge pull request #23850 from makefu/update/radare2
radare2: 0.10.6 -> 1.3.0
2017-03-13 19:32:41 +01:00
Vincent Laporte
b2b8a412fb ocaml-llvm: 3.7.1 -> 3.9.1 2017-03-13 19:14:11 +01:00
makefu
bc1011b330
radare2: 0.10.6 -> 1.3.0 2017-03-13 17:53:12 +01:00
Frederik Rietdijk
57e768f58e hypothesis: 3.6.0 -> 3.6.1 2017-03-13 16:37:25 +01:00
Frederik Rietdijk
6f90badeac pythonPackages.hypothesis: fix for python 3.3 2017-03-13 16:37:24 +01:00
Tristan Helmich
4efed1d0d4 jenkins: 2.44 -> 2.49 2017-03-13 15:43:06 +01:00
Fatih Altinok
d23effdedf flow: 0.39.0 -> 0.41.0 2017-03-13 17:04:36 +03:00
Domen Kožar
609f2fefce Merge pull request #23836 from expipiplus1/jailbreak-strict-io
Haskell Packages: jailbreak strict-io
2017-03-13 13:27:37 +01:00
Joe Hermaszewski
0867ac9963 Haskell Packages: jailbreak strict-io 2017-03-13 11:27:08 +00:00
Robin Gloster
dbbdccdd65
ispc: fix build 2017-03-13 12:07:48 +01:00
Robin Gloster
80bd50a6e4
ponyc: 0.10.0 -> 0.11.0 2017-03-13 11:43:24 +01:00
Robin Gloster
c836651084
purePackages.octave: 0.7 -> 0.9 2017-03-13 11:03:52 +01:00
Michael Raskin
a77380b34c Merge pull request #23780 from asppsa/pure-0.66
pure: 0.64 -> 0.66
2017-03-13 10:56:08 +01:00
Vladimír Čunát
b264486cf1
gnutls: bugfix+security 3.5.9 -> 3.5.10
http://gnutls.org/security.html#GNUTLS-SA-2017-3
2017-03-13 10:28:53 +01:00
Robin Gloster
89747d357b
msilbc: fix build 2017-03-13 09:33:15 +01:00
Michael Raskin
7dc3edaa6a slimerjs: 0.10.2 -> 0.10.3 2017-03-13 08:23:52 +01:00
ndowens
afeb989c5c gtkspell:3.0.8 -> 3.0.9 2017-03-12 20:38:46 -05:00
ndowens
b64c6b46b1 gssdp: 0.14.11 -> 1.0.1 2017-03-12 19:41:00 -05:00
ndowens
86a23bcfff gmm: 4.3 -> 5.1
gmm: Remove whitespace
2017-03-12 18:51:15 -05:00
Michael Raskin
54b7c3b63f clisp-git: update to the upstream fix of 32-bit builds
The current exact tip fails to build on x86_64, there probably is a
fresher safe commit, but I haven't try bisecting.
2017-03-13 00:00:13 +01:00
ndowens
a2d50e744a gloox: 1.0.14 -> 1.0.20 2017-03-12 17:56:33 -05:00
Thomas Tuegel
65592837b6
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.

To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.

TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.

With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.

There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.

Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.

The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!

The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.

The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.

Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.

The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.

[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-12 17:31:33 -05:00
Jörg Thalheim
ceeb0de60c Merge pull request #23773 from ndowens/cdk
cdk:5.0-20160131 -> 5.0-20161210
2017-03-12 23:16:19 +01:00
Vladimír Čunát
848423f223
clisp-tip: make the build more reliable
Hydra shows it sometimes fails without autoconf:
http://hydra.nixos.org/job/nixos/trunk-combined/nixpkgs.clisp-tip.x86_64-linux
I can't say I understand why this happened.
2017-03-12 23:07:55 +01:00
Benno Fünfstück
6c99f88eec fix typo in comment 2017-03-12 22:47:28 +01:00
Benno Fünfstück
039c6a6dfa haskell: comment about configuration-nix.nix's intersectAttrs 2017-03-12 22:45:19 +01:00
obadz
1dd16a9374 coreclr: mark broken 2017-03-12 21:32:27 +00:00
ndowens
f0bb10fea3 geis: 2.2.16 -> 2.2.17 2017-03-12 16:25:18 -05:00
ndowens
d80cb1b080 gecode: 4.4.0 -> 5.0.0 2017-03-12 16:21:13 -05:00
ndowens
3d9d879bc0 ace: 6.3.3 -> 6.4.2 2017-03-12 21:03:42 +00:00
Bo Bakker
1d948ddc01
caf: init at 0.15.3
fixes #23772
2017-03-12 21:53:49 +01:00
ndowens
6723703f46 filter-audio: 20150624 -> 0.0.1 2017-03-12 15:43:03 -05:00
ndowens
a7b6f2eee4 ffms: 2.21 -> 2.22 2017-03-12 15:24:05 -05:00
ndowens
fb35166629 fcppt: 1.3.0 -> 2.5.0 2017-03-12 14:53:50 -05:00
ndowens
e86bb4da9d exosip: 4.0.0 -> 4.1.0 2017-03-12 14:44:58 -05:00
ndowens
7b89e8b2b6 exempi: 2.2.2 -> 2.4.2 2017-03-12 14:33:54 -05:00
Nikolay Amiantov
c05ac3ea12 makeDBusConf: re-add XDG directories for session bus
Fixes #23770.
2017-03-12 22:15:51 +03:00
ndowens
498cc60f90 libp11: 0.2.7 -> 0.4.4 2017-03-12 13:27:55 -05:00
ndowens
45cfd3969a drumstick: 1.0.2 -> 1.1.0 2017-03-12 20:23:44 +02:00
Joachim Fasting
3c37edb928
tinycc: 0.9.27pre-20170220 -> 20170225
Contains a fix for x86-64 asm gen and unified cross-compilation.
2017-03-12 18:56:59 +01:00
Jörg Thalheim
55074a0e3c Merge pull request #23783 from ndowens/cl
cl:1.2.1 -> 1.2.3
2017-03-12 18:51:43 +01:00
Jörg Thalheim
879ccfd69c Merge pull request #23779 from ndowens/chipmunk
chipmunk:7.0.0 -> 7.0.1
2017-03-12 18:50:08 +01:00
Karn Kallio
d2e30a74f4
eigen : Fix an extra slash. 2017-03-12 18:40:07 +01:00
Vladimír Čunát
50fadc8b18
cups: split the $lib output
This saves > 10 MB from most closures.
Printing test succeeds on x86_64-linux.
2017-03-12 18:36:30 +01:00
Jörg Thalheim
28337316d1 Merge pull request #23796 from ndowens/dlib
dlib: 18.10 -> 19.4
2017-03-12 18:32:19 +01:00
Jörg Thalheim
d0922896be Merge pull request #23097 from dmjio/halvm
Initial commit of HaLVM support
2017-03-12 18:31:29 +01:00
Jörg Thalheim
bcc3755477 Merge pull request #23784 from ndowens/ck
concurrencykit: 0.4.5 -> 0.6.0
2017-03-12 18:30:38 +01:00
Jörg Thalheim
847a5d11cb Merge pull request #23797 from rvl/scala-docs-subdir
scala: put docs in correct subdirectory
2017-03-12 18:25:53 +01:00