summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2020-01-03py-logbook: updated to 1.5.3adam2-7/+7
1.5.3: Unknown changes
2020-01-03py-test-xdist: updated to 1.31.0adam2-7/+8
pytest-xdist 1.31.0: Features - Add support for Python 3.8. Bug Fixes - Fix regression that caused custom plugin command-line arguments to be discarded when using ``--tx`` mode.
2020-01-03py-ruamel-ordereddict: updated to 0.4.14adam2-7/+7
0.4.14: Bug fixes.
2020-01-03Add hs-conduitpho1-1/+2
2020-01-03Import conduit-1.2.13.1 from wippho4-0/+55
conduit is a solution to the streaming data problem, allowing for production, transformation, and consumption of streams of data in constant memory. It is an alternative to lazy I/O which guarantees deterministic resource handling, and fits in the same general solution space as enumerator/iteratee and pipes. For a tutorial, please visit https://haskell.fpcomplete.com/user/snoyberg/library-documentation/conduit-overview
2020-01-03Add hs-mono-traversablepho1-1/+2
2020-01-03Downgrade to mono-traversable-1.0.8.1pho3-10/+10
The latest release 1.0.15.1 turned out to be incompatible with GHC 7.10.x. It should be updated when we make a package for GHC 8.
2020-01-03Import mono-traversable-1.0.15.1pho4-0/+50
Type classes for mapping, folding, and traversing monomorphic and polymorphic containers. Haskell is good at operating over polymorphic containers such as a list [a]. A monomorphic container is one such as Text which has a type Text that does not expose a type variable for the underlying characters.
2020-01-03Add hs-unix-compatpho1-1/+2
2020-01-03Import unix-compat-0.5.2 from wippho4-0/+33
This package provides portable implementations of parts of the unix package. This package re-exports the unix package when available. When it isn't available, portable implementations are used.
2020-01-03Add hs-eitherpho1-1/+2
2020-01-03Import either-5.0.1.1pho4-0/+42
Functions for probing and unwrapping values inside of Either.
2020-01-03devel/ruby-delayer: add USE_LANGUAGES linetaca1-1/+3
Add "USE_LANGUAGES= # none".
2020-01-03ruby-delayer: actually update to 1.1.0.tsutsui3-8/+9
2020-01-03ruby-delayer: update to 1.1.0.tsutsui2-7/+7
No upstream changelog.
2020-01-02go-xerrors: fix path in buildlink3.mkwiz1-2/+2
2020-01-02Updated devel/gradle to 4.10.3abs2-7/+7
[#7500] - Please back port 7059 fix to 4.10.3 [#7014] - Gradle 4.10.1+ is unable to build a working war project within a ear project if scala plugin is used [#6849] - 4.10.1 & 4.10.2: Cannot publish artifact 'compileScala.mapping' (PATH) as it does not exist. Given the dropping of backwards compatibility in later gradle versions we are probably at the point where we should split this into gradle{4,5,6} packages
2020-01-02Add hs-asyncpho1-1/+2
2020-01-02Import async-2.2.2pho4-0/+49
This package provides a higher-level interface over threads, in which an Async a is a concurrent thread that will eventually deliver a value of type a. The package provides ways to create Async computations, wait for their results, and cancel them. Using Async is safer than using threads in two ways: When waiting for a thread to return a result, if the thread dies with an exception then the caller must either re-throw the exception (wait) or handle it (waitCatch); the exception cannot be ignored. The API makes it possible to build a tree of threads that are automatically killed when their parent dies (see withAsync).
2020-01-02pango: remove now redundant test targetgutteridge1-4/+1
Now that adam@ has added a generic test target to meson's build.mk, we can just rely on that, instead.
2020-01-02gobject-introspection: remove now redundant test targetgutteridge1-4/+1
Now that adam@ has added a generic test target to meson's build.mk, we can just rely on that, instead.
2020-01-02Add hs-vector-th-unboxpho1-1/+2
2020-01-02Import vector-th-unbox-0.2.1.7pho4-0/+36
A Template Haskell deriver for unboxed vectors, given a pair of coercion functions to and from some existing type with an Unbox instance.
2020-01-02Update to void-0.7.3pho4-38/+10
0.7.3 [2019.05.10] * Backport the Lift Void instance introduced in template-haskell-2.15.0.0. 0.7.2 * Only depend on deepseq, hashable, and semigroups if using GHC 7.8 or earlier. * Cleaned up spurious "redundant constraint" warnings on GHC 8+ 0.7.1 * Support semigroups 0.17 on older GHCs * Backported NFData's semigroup instance to older GHCs. 0.7 * adapt to Data.Void being moved into base-4.8 * vacuousM removed
2020-01-02Update to vector-algorithms-0.8.0.3pho4-59/+10
Version 0.8.0.3 (2019-12-02) Fix out-of-bounds access in Timsort. Version 0.8.0.2 (2019-11-28) Bump upper bounds on primitive and QuickCheck. Expose 'terminate' function from 'AmericanFlag' module. Fix an off-by-one error in Data.Vector.Algorithms.Heaps.heapInsert.
2020-01-02py-ipython: updated to 7.11.1adam2-7/+7
IPython 7.11.1 ============== A couple of deprecated functions (no-op) have been reintroduces in py3compat as Cython was still relying on them, and will be removed in a couple of versions. IPython 7.11 ============ IPython 7.11 received a couple of compatibility fixes and code cleanup. A number of function in the ``py3compat`` have been removed; a number of types in the IPython code base are now non-ambiguous and now always ``unicode`` instead of ``Union[Unicode,bytes]``; many of the relevant code path have thus been simplified/cleaned and types annotation added. IPython support several verbosity level from exceptions. ``xmode plain`` now support chained exceptions. :ghpull:`11999` We are starting to remove ``shell=True`` in some usages of subprocess. While not directly a security issue (as IPython is made to run arbitrary code anyway) it is not good practice and we'd like to show the example. :ghissue:`12023`. This discussion was started by ``@mschwager`` thanks to a new auditing tool they are working on with duo-labs (`dlint <https://github.com/duo-labs/dlint>`_). Work around some bugs in Python 3.9 tokenizer :ghpull:`12057` IPython will now print its version after a crash. :ghpull:`11986` This is likely the last release from the 7.x series that will see new feature. The master branch will soon accept large code changes and thrilling new features; the 7.x branch will only start to accept critical bug fixes, and update dependencies.
2020-01-02Update to vault-0.3.1.3pho4-42/+12
0.3.1.3 Bump dependencies to allow hashable-1.3. Compatibility with GHC-8.8 Bump dependencies to allow base >= 4.5 && < 4.14 0.3.1.2 Bump dependencies to allow containers-0.6. Compatibility with GHC-8.6 Bump dependencies to allow base >= 4.5 && < 4.13. 0.3.1.1 Rename source files to allow building the package with Bazel. 0.3.1.0 Compatibility with GHC-8.4: Bump dependencies to allow base >= 4.5 && < 4.12. Add Semigroup instances. 0.3.0.7 Bump dependencies to allow base >= 4.5 && < 4.11. 0.3.0.6 Bump dependencies to allow base >= 4.5 && < 4.10. 0.3.0.5 Add support for GHC type roles extension, using the RoleAnnotations language pragma. 0.3.0.4 Bump upper version bound for the base dependency.
2020-01-02Remove PLIST; we can no longer use it for Haskell packagespho1-31/+0
2020-01-02Fix build with recent devel/hs-hashablepho3-93/+17
2020-01-02Remove PLIST; we can no longer use it for Haskell packagespho1-28/+0
2020-01-02Update to split-0.2.3.3pho4-32/+10
* 0.2.3.3 (23 Jan 2018) - Update for GHC-8.4, test with GHC 7.0-8.4 * 0.2.3.2 (15 May 2017) - Move to github. * 0.2.3.1 (2 May 2016) - Fix a test case which was causing occasional spurious test suite failures due to too many discarded tests. Thanks to Doug Beardsley and Peter Simons for reporting the issue. * 0.2.3 (12 January 2016) - New function 'divvy' (with associated tests) from Tim Washington. * 0.2.2r2 (7 Jan 2016) - allow base-4.9 * 0.2.2r1 (12 Dec 2014) - allow base-4.8
2020-01-02Update to setlocale-1.0.0.9pho4-28/+9
No changelogs provided by the upstream.
2020-01-02Update to safe-0.3.18pho4-36/+10
0.3.18, released 2019-12-04 #27, deprecate maximumDef and friends, fold*1Def #27, add maximumBounded and friends Stop supporting GHC 7.4 to 7.8 0.3.17, released 2018-03-09 Improve the display of errors, less internal callstack Add a few missing Partial constraints 0.3.16, released 2018-01-06 #22, add Safe index 0.3.15, released 2017-06-18 Support QuickCheck 2.10 0.3.14, released 2017-02-15 #20, fix for GHC 7.10.1 0.3.13, released 2017-02-09 #20, require GHC 7.4 or above 0.3.12, released 2017-02-05 #19, add Safe.Partial exposing a Partial typeclass #19, add support for GHC call stacks 0.3.11, released 2017-01-22 #16, add Safe succ and pred #16, add readEitherSafe for better errors than readEither #14, add Safe zip3Exact 0.3.10, released 2016-11-08 #15, add Safe cycle 0.3.9, released 2015-05-09 #9, add Safe toEnum 0.3.8, released 2014-08-10 #8, remove unnecessary Ord constraints from Foldable functions
2020-01-02Update to reflection-2.1.5pho4-31/+12
2.1.5 [2019.08.27] * Fix a bug in which reifyNat would yield incorrect results for very large Integers on GHC 8.2 or later. 2.1.4 [2018.07.02] * Allow building with GHC 8.6. 2.1.3 [2018.01.18] * Add Semigroup instance for ReflectedMonoid. 2.1.2 * Support cross-compilation and unregistered GHC builds. 2.1.1.1 * Fixed typos in the documentation. 2.1.1 * Fixed support for GHC 7.0 2.1 * Added ReifiedMonoid and ReifiedApplicative. 2 * Added reifyNat and reifySymbol for GHC 7.8+, capable of reflecting into the KnownNat and KnownSymbol classes respectively for use with other APIs. * Back-ported reifyTypeable from lens. This enables us to perform a (less efficient) form of Typeable reflection. 1.5.2 * Renamed the flag for disabling the use of template-haskell, to -f-template-haskell for consistency with my other packages. 1.5.1.2 * Builds warning-free on GHC 7.10. * Added a dynamic FromJSON example. 1.5.1.1 * Updated the link to the paper. * More examples.
2020-01-02Update to hint-0.7.0pho4-62/+10
0.7.0 * Support for GHC 8.2 * Support use in a dynamically-linked executable * Add normalizeType, like ghci's :kind! * Drop support for GHC 7.6 0.6.0 * Support for GHC 8.0 * Add displayException to InterpreterError 0.5.2 * Add runInterpreter variant that takes a GHC libdir at runtime * Add missing negated extensions to the Extension type * Do not throw GHC warnings as errors 0.5.1 * Expose unsafeInterpret in Language.Haskell.Interpreter.Unsafe 0.5.0 * Drop support for GHC 7.4 * Remove deprecated functions and modules: * glasgowExtensions * setUseLanguageExtensions * setInstalledModsAreInScopeQualified * Language.Haskell.Interpreter.GHC * Language.Haskell.Interpreter.GHC.Unsafe * Drop dependencies on ghc-mtl and extensible-exceptions 0.4.3 * New maintainer and source code repo
2020-01-02Update to haskell-src-exts-1.22.0pho4-118/+14
1.21.1 --> 1.22.0 ================= * Support Template Haskell typed splices and quotations (#432) - Breaking change: new constructors on Token data type * Fix unicode identifier parsing (#442) 1.21.0 --> 1.21.1 ================= * GHC 8.8.1 compatibility (MonadFail) 1.20.3 --> 1.21.0 ================= * DerivingVia (#420) * TypeInType (#414) * Parse TH-quoted list constructor (#415) 1.20.2 --> 1.20.3 ================= * GHC 8.6.1 compatability (MonadFail) * Remove cpphs dependency 1.20.1 --> 1.20.2 ================= * Add fixity of (&) * GHC 8.4.1 compatability 1.20.0 --> 1.20.1 =================== * Fix two test failures 1.19.1 --> 1.20.0 =================== * GHC 8.2 updates * Add some missing Generics instances (#380) * Support Template Haskell pattern splices (#352) * Fix overloaded labels starting with _ (#362) * Relax MultiParamTypeClass check (#333) * DeriveAnyClass (#337) * Deriving Strategies (#387) * OVERLAPS/OVERLAPPING/OVERLAPPABLE pragmas * Unboxed Sums * Expression holes in infix expressions * Support multiple pattern synonyms per pattern synonym signature * COMPLETE pragmas * Fix #309, remove unnecessary semi-colon from pretty printer * Refine ExplicitNamespaces to properly export type operators 1.19.0 --> 1.19.1 =================== * Revert making fields of `SrcLoc` strict. (#340) 1.18.2 --> 1.19.0 =================== * Add JavaScriptFFI to known extensions (#335) * Remove space when pretty printing `SrcLoc`. (#307) * Don't reverse arguments in a context. (#328) * Add support for EmptyCase extension (#255) 1.18.1 --> 1.18.2 =================== * Fix overzealous lexing of type applications 1.18.0 --> 1.18.1 =================== * Fix overzealous lexing of overloaded labels. 1.17.1 --> 1.18.0 =================== * Remove simplified AST * GHC 8.0 update: Overloaded labels, type applications, pattern synonym extensions, StrictData, injective type families AST changes: * Add TyQuasiQuote (#279). Other changes: * Only treat 'role' as a keyword in certain contexts (#286). * Prettyprint '!' in patterns correctly when BangPatterns are enabled (#287). * Parse magic hash with multiple trailing hashes (#300). * Apply fixities inside pattern synonym builders * Fix lexing of idents with multiple trailing #
2020-01-02Remove PLIST; we can no longer use it for Haskell packagespho1-19/+0
2020-01-02Update to cpphs-1.20.8pho4-44/+14
Version 1.20 ------------ * bugfixes for #if defined(FOO) && FOO(a,b) * (1.20.1): fix version number * (1.20.2): ensure all input/output is UTF8, regardless of locale * (1.20.3): detect an absolute windows path with a drive letter in a #include * (1.20.4): more windows path handling * (1.20.5): revert change in 1.20.4 * (1.20.6): minor bugfix for crash in obscure corner case * (1.20.7): bugfix for windows drive letter in #include * (1.20.8): another bugfix for windows drive letter in #include Version 1.19 ------------ * (1.19.3): bugfix for hlint ticket #161 - interaction of --unlit/--linepragma
2020-01-02Add hs-base-compat, hs-base-orphans, hs-th-abstractionpho1-3/+6
2020-01-02Derp, I forgot to actually change the versionpho3-11/+10
2020-01-01meson: add test targetadam1-2/+9
2020-01-01Add a package for go-xerrors (golang.org/x/xerrors).bsiegert6-1/+70
Go 1.13 contains new functions in the errors package for wrapping error values. This package contains compatibility code to provide equivalent APIs for older Go versions too.
2020-01-01hs-tf-random: use only ASCII in DESCRwiz1-1/+1
2020-01-01Update to blaze-builder-0.4.1.0pho6-88/+41
* 0.4.1.0 - Gain compatibility with the Semigroup/Monoid proposal - Add Word8 HTML escaping builders - Speed up `fromHtmlEscapedText` and `fromHtmlEscapedLazyText` * 0.4.0.2 - Fixed warnings on GHC 7.10, courtesy of Mikhail Glushenkov. * 0.4.0.1 - Tightened the version constraints on the bytestring package for GHC 7.8 * 0.4.0.0 - This is now a compatibility shim for the new bytestring builder. Most of the old internal modules are gone. See this blog post for more information: <http://blog.melding-monads.com/2015/02/12/announcing-blaze-builder-0-4/> - The 'Blaze.ByteString.Builder.Html.Utf8.fromHtmlEscaped*' functions now strip out any ASCII control characters present in their inputs. See <https://github.com/lpsmith/blaze-builder/issues/1> for more information.
2020-01-01(devel/p5-MooX-late) Convert BUILD_DEPENDS to TEST_DEPENDSmef1-3/+3
2020-01-01(devel/p5-Perl-Critic) Updated to 1.136mef2-10/+9
1.136 Wed Nov 27 09:51:09 CST 2019 Stable release. No changes since 1.135_01. 1.135_01 Tue Nov 26 14:50:11 CST 2019 [New Features] The ProhibitNoWarnings pollicy now handles warnings in the experimental:: group. Thanks, Ren辿e B辰cker. (GH #892) [Documentation] Prevented some example code from showing up in `perldoc`. Thanks, Tom Hukins. (GH #799)
2020-01-01Update to happy-1.19.12pho4-41/+8
1.19.12 * Fix for building with GHC 8.8.x * Move custom Setup preprocessing steps into a separate executable, like Alex 1.19.11 * Fix for building with GHC 8.6.x 1.19.10 * Fix polymorphic (rank-n) non-terminals * Fix for GHC 8.8.1 1.19.9 * Fix cabal warnings * Bump upper bounds * Fix build with GHC 8.4.1-alpha 1.19.8 * Fix issue #94 (some grammars don't compile due to new type signatures introduced to allow overloading to be used) 1.19.7 * Fix misisng test suite files in the sdist 1.19.6 * Manually generate Parser.hs using Makefile before sdist, to fix bootstrapping problems with cabal sandboxes & new-build * Documentation fixes * Fixed GLR support * new option -p/--pretty prints the grammar rules (only) to a file * Added generation of additional type signatures to enable use of typeclasses in monadic parsers.
2020-01-01Update to alex-3.2.5pho4-43/+7
Changes in 3.2.5: * Build fixes for GHC 8.8.x Changes in 3.2.4: * Remove dependency on QuickCheck * Change the way that bootstrapping is done: see README.md for build instructions Changes in 3.2.3: * fix issue when using cpphs (#116) Changes in 3.2.2: * Manage line length in generated files [GH-84] * Fix issue when identifier with multiple single quotes, e.g. foo'' was used * Allow omitting spaces around = in macro definitions * Include pre-generated Parser.hs and Scan.hs in the Hackage upload, to make bootstrapping easier. Changes in 3.2.1: * Fix build problem with GHC; add new test tokens_scan_user.x Changes in 3.2.0: * Allow the token type and productions to be overloaded, and add new directives: %token, %typeclass, %action. See "Type Signatures and Typeclasses" in the manual. * Some small space leak fixes
2020-01-01(devel/p5-Parse-PMFile) Updated to 0.42mef2-8/+7
0.42 2019/11/09 - no code changes - explicitly declared ExtUtils::MakeMaker::CPANfile as a configure requirement (Nikolo++)
2020-01-01Update to resourcet-1.1.11pho5-40/+30
1.1.11 * runResourceTChecked, which checks if any of the cleanup actions threw exceptions and, if so, rethrows them. NOTE This is probably a much better choice of function than runResourceT, and in the next major version release, will become the new behavior of runResourceT. 1.1.10 * Added MonadUnliftIO instances and UnliftIO.Resource 1.1.9 * Add generalized version of resourceForkIO 1.1.8.1 * Allocation actions should be masked 1.1.8 * Add instance MonadFix ResourceT #281 1.1.7.5 * Inline the tutorial from SoH 1.1.7.4 * Make test suite slightly more robust 1.1.7.3 * Doc tweak 1.1.7.2 * Remove upper bound on transformers #249 1.1.7.1 * transformers-compat 0.5 1.1.7 * Canonicalise Monad instances #237 1.1.6 * Safe/Trustworthy for resourcet #220 1.1.5 * Add pass-through instances for Alternative and MonadPlus #214 1.1.4.1 * Allow older exceptions version again 1.1.4 * Add MonadResource ExceptT instance #198 1.1.3.2 * monad-control-1.0 support #191