Age | Commit message (Collapse) | Author | Files | Lines |
|
to fix Darwin build.
|
|
It's now part of GHC.
|
|
|
|
They are now part of GHC.
|
|
|
|
|
|
|
|
Remove patch-CMakeLists.txt from distinfo since it has been removed.
|
|
sqlitebrowser uses qscintilla, make sure it finds the one in pkgsrc and don't
build its own.
bump pkgrevision.
|
|
|
|
These values could not be guessed before the previous commit.
|
|
In pkgtools/pkglint, there are several lines that look almost like RCS
Ids. Some parts of the pkgsrc infrastructure expand them and some others
don't. This needs to be fixed so that all parts of pkgsrc agree what is a
complete RCS Id and what isn't.
As long as that is not the case, pbulk unnecessarily builds pkglint over
and over again, even if nothing changed. There are probably other
unintended side effects as well that just haven't been discovered or
considered grave enough.
|
|
if x11 .. endif clause
|
|
|
|
No changelogs are provided by upstream.
|
|
|
|
|
|
|
|
New in version 2.3.5:
- Support for MonadFail Proposal.
- Documentation updates.
New in version 2.3.4:
- Support for Semigroup (as superclass of) Monoid Proposal.
- Add test-suite to cabal file.
|
|
x11 option.
Thanks dasricht@gmail.com for the report. (Now always enabled by the way)
So PKGREVISION++
|
|
It's not a category since it doesn't contain packages to be installed.
|
|
|
|
|
|
It's now part of GHC.
|
|
|
|
It's now part of GHC.
Also contravariant, fail, and semigroups are no longer required as of GHC 8.
|
|
The regress/ directory does not contain pkgsrc packages, therefore it
should not be listed as a SUBDIR in the top-level Makefile.
This wrong impression could be caused because most of the regression
tests have a Makefile that looks like an actual package Makefile. But
this alone doesn't mean that these are packages. The only relevant file
for a regression test is the spec file. If that test uses a package
Makefile or not is an implementation detail of each test.
|
|
|
|
0.11.2.0
* Reduces some of the code duplication between the encode and
encodePretty functions
* The output of encodePretty has been improved:
* Multiline strings now use Literal style instead of SingleQuoted
* Special keys are now quoted in mappings #179
* Support for complex keys in mappings: #182
* Adds complexMapping function to Data.Yaml.Builder
* Decode functions now return a NonStringKey error when attempting
to decode a mapping with a complex key as it is not possible to
decode these to an Aeson Value
* Adds missing ToYaml instances
0.11.1.2
* Compiles with GHC 8.8.1 (MonadFail split)
0.11.1.1
* Use the appropriate Scientific rendering function to avoid a memory
overflow when rendering. The previously used function from aeson
would not use scientific notation, and could use large amounts of
memory for values such as 1e9999999999999.
0.11.1.0
* Better error messages in the Data.Yaml.Config module #168
* Add LoadSettingsException exception and remove error printing from
loadYamlSettings #172
0.11.0.0
* Split out the libyaml and Text.Libyaml code into its own
package. #145
0.10.4.0
* Add decodeMarked and decodeFileMarked functions to Text.Libyaml, and
extend native bindings to extract mark information. #157
0.10.3.0
* Add support for anchors and aliases to Data.Yaml.Builder #155
* Fix test suite for 32 bit machines #158
0.10.2.0
* Add EncodeOptions and FormatOptions to control the style of the
encoded YAML. #153
* Default to using literal style for multiline strings #152
0.10.1.1
* Correctly declare libyaml dependency on system-libyaml flag #151
0.10.1
* Avoid incurring a semigroups dependency on recent GHCs.
* Fix a space leak that was introduced with 0.10.0 #147
0.10.0
* Add decodeFileWithWarnings which returns warnings for duplicate
fields
0.9.0
* Expose style and tags on mappings and sequences in Text.Libyaml #141
0.8.32
* Escape keys as necessary #137
* Support hexadecimal and octal number values #135
* More resilient isNumeric (should reduce cases of unneeded quoting)
* hpackify
* src subdir
0.8.31.1
* Add a workaround for a cabal bug haskell-infra/hackage-trustees#165
0.8.31
* Add decodeThrow and decodeFileThrow convenience functions.
* Upgrade libyaml versions
* Deprecate decode and decodeEither
|
|
|
|
|
|
This package provides a haskell wrapper over the libyaml C library
version 0.2.1 by Kirill Simonov.
|
|
It's now part of GHC.
Also contravariant, fail, and semigroups are no longer required as of GHC 8.
|
|
It's now part of GHC.
|
|
Parsec is now part of GHC.
|
|
|
|
|
|
They are now part of GHC.
|
|
|
|
* Use Text instead of String in data types and functions
(Christian Despres) [API change]. Note that there are still a few
places where we unpack Text to String with a view pattern:
performance could likely be increased with further rewriting.
* Avoid use of !! with negative index (jgm/pandoc#5853).
|
|
It's now part of GHC.
|
|
|
|
* Change all uses of String in type definitions to strict Text
(Christian Despres) [API change]. The MetaValue instances using String
have been kept, and parallel ones using Text were added.
* Remove the Arbitrary Text orphan instance (Christian Despres).
This instance should not have been in the Text.Pandoc.Arbitrary, since
it would have been exported with the rest of the instances in that
module. Instead, more shrink* functions were added to compensate for
the absence of this instance.
* Add Text.Pandoc.Legacy.Definition (Christian Despres).
To ease the transition to Text, this module provides an interface
compatible with the String one, so that any unqualified imports of
Text.Pandoc.Definition in other packages can be replaced by
Text.Pandoc.Legacy.Definition without other code changes. This is done
with PatternSynonyms.
Some of the constructors of the types Meta, MetaValue, Block, Inline,
Format, and Citation required PatternSynonym handling. The Attr and
Target types had to be redefined, and certain functions had to be
rewritten to handle String or the old Attr and Target types in this
module. This module otherwise exports the definitions in
Text.Pandoc.Definition unchanged.
This is not a perfect drop-in replacement, since some imports like
Inline(..) will no longer work. This may also cause incomplete pattern
warnings when used, since the coverage checker does not seem to be
aware of PatternSynonyms.
* Add Text.Pandoc.Legacy.Builder (Christian Despres).
Like Text.Pandoc.Legacy.Definition, this modules provides a
compatibility interface while the transition to Text takes
place. Unlike that module, this module only requires redefining the
ToMetaValue and HasMeta classes and a few functions so that they use
the old types. No PatternSynonyms are required.
* Change Semigroup/Monoid instance for Meta.
Previously `<>` was left-biased, so if meta1 and meta2 both
contained a field 'foo', the value from meta1 would be retained
in `meta1 <> meta2`, and the value from meta2 ignored.
This is counterintuitive and doesn't work well with pandoc;
for example, we want to be able to override a value in an
earlier `--metadata-file` with a later one on the command line.
It also makes the behavior of metadata more like other
things (such as reference links, where later definitions
take precedence over earlier ones).
Note that this change may break some current workflows,
if one is relying on metadata fields that occur later in
a document to be overridden by those occurring earlier.
|
|
|
|
It's now part of GHC.
Also contravariant, fail, and semigroups are no longer required as of GHC 8.
|
|
It's now part of GHC.
|
|
Having nls enabled on some platforms and not on others doesn't make sense
since the code for doing that didn't provide any rationale. If some
platforms don't support nls, it's better to blacklist them explicitly.
|
|
It's now part of GHC.
Also contravariant, fail, and semigroups are no longer required as of GHC 8.
|
|
It's now part of GHC.
Also fail and semigroups are no longer required as of GHC 8.
|
|
It's no longer required as of GHC 8.
|