Commit graph

352876 commits

Author SHA1 Message Date
pho
3334d4d6bb doc: Added devel/hs-ghc-check version 0.5.0.6 2022-02-16 07:44:42 +00:00
pho
ded38f7e2d devel/hs-ghc-check: import hs-ghc-check-0.5.0.6
A library to detect mismatches between compile-time and run-time versions
of the GHC API.
2022-02-16 07:44:36 +00:00
pho
8ca4b3b4da devel/Makefile: + hs-safe-exceptions 2022-02-16 07:44:11 +00:00
pho
8e02c24411 doc: Added devel/hs-safe-exceptions version 0.1.7.2 2022-02-16 07:44:02 +00:00
pho
156a7579e2 devel/hs-safe-exceptions: import hs-safe-exceptions-0.1.7.2
This package provides additional safety and simplicity versus
Control.Exception by having its functions recognize the difference between
synchronous and asynchronous exceptions. As described below, synchronous
exceptions are treated as recoverable, allowing you to catch and handle
them as well as clean up after them, whereas asynchronous exceptions can
only be cleaned up after. In particular, this library prevents you from
making the following mistakes:

* Catching and swallowing an asynchronous exception
* Throwing an asynchronous exception synchronously
* Throwing a synchronous exception asynchronously
* Swallowing asynchronous exceptions via failing cleanup handlers
2022-02-16 07:43:54 +00:00
pho
5635ab4970 textproc/Makefile: + hs-fuzzy 2022-02-16 07:36:53 +00:00
pho
cc9b85f6ed doc: Added textproc/hs-fuzzy version 0.1.0.1 2022-02-16 07:33:33 +00:00
pho
4c2a1f8f90 textproc/hs-fuzzy: import hs-fuzzy-0.1.0.1
Fuzzy string search in Haskell. Uses TextualMonoid to be able to run on
different types of strings.
2022-02-16 07:33:26 +00:00
pho
c4bc2e360a math/Makefile: + hs-monoid-subclasses 2022-02-16 05:21:14 +00:00
pho
a780a711d8 doc: Added math/hs-monoid-subclasses version 1.1.3 2022-02-16 05:20:54 +00:00
pho
ce052b3029 math/hs-monoid-subclasses: import hs-monoid-subclasses-1.1.3
A hierarchy of subclasses of Monoid together with their instances for all
data structures from base, containers, and text packages.
2022-02-16 05:20:48 +00:00
pho
77232c6eb1 math/Makefile: + hs-primes 2022-02-16 05:09:40 +00:00
pho
9f8407adc4 doc: Added math/hs-primes version 0.2.1.0 2022-02-16 05:09:24 +00:00
pho
3c923b9209 math/hs-primes: import hs-primes-0.2.1.0
This Haskell library provides an efficient lazy wheel sieve for prime
generation inspired by "Lazy wheel sieves and spirals of primes" by Colin
Runciman and "The Genuine Sieve of Eratosthenes" by Melissa O'Neil.
2022-02-16 05:09:18 +00:00
pho
9cd4df592a devel/Makefile: + hs-focus 2022-02-16 05:08:50 +00:00
pho
903957bd7b doc: Added devel/hs-focus version 1.0.3 2022-02-16 05:08:40 +00:00
pho
b258f52b96 devel/hs-focus: import hs-focus-1.0.3
An API for construction of free-form strategies of access and manipulation
of elements of arbitrary data structures. It allows to implement efficient
composite patterns, e.g., a simultaneous update and lookup of an element,
and even more complex things.

Strategies are meant to be interpreted by the host data structure
libraries. Thus they allow to implement all access and modification
patterns of a data structure with just a single function, which interprets
strategies.

This library provides pure and monadic interfaces, so it supports both
immutable and mutable data structures.
2022-02-16 05:08:34 +00:00
pho
8dfe48d1f6 devel/Makefile: + hs-dependent-map 2022-02-16 05:07:39 +00:00
pho
0ef3f406a2 doc: Added devel/hs-dependent-map version 0.4.0.0 2022-02-16 05:07:30 +00:00
pho
d115234fc6 devel/hs-dependent-map: import hs-dependent-map-0.4.0.0
Provides a type called DMap which generalizes Data.Map.Map, allowing keys
to specify the type of value that can be associated with them.
2022-02-16 05:07:23 +00:00
pho
86979ccfe8 devel/Makefile: + hs-dependent-sum 2022-02-16 05:06:45 +00:00
pho
1c19ee0fac doc: Added devel/hs-dependent-sum version 0.7.1.0 2022-02-16 05:06:35 +00:00
pho
e30f2796a2 devel/hs-dependent-sum: import hs-dependent-sum-0.7.1.0
A dependent sum is a generalization of a particular way of thinking about
the Either type. Either a b can be thought of as a 2-tuple (tag, value),
where the value of the tag determines the type of the value. In particular,
either tag = Left and value :: a or tag = Right and value :: b.

This package allows you to define your own dependent sum types by using
your own "tag" types.
2022-02-16 05:06:29 +00:00
pho
c0f502a89d devel/Makefile: + hs-some 2022-02-16 05:04:43 +00:00
pho
580f01314b doc: Added devel/hs-some version 1.0.3 2022-02-16 05:04:31 +00:00
pho
0e1fc56e27 devel/hs-some: import hs-some-1.0.3
This library defines an existential type Some.

data Some f where
    Some :: f a -> Some f

in few variants, and utilities to work with it.

If you are unsure which variant to use, use the one in Data.Some module.
2022-02-16 05:04:23 +00:00
pho
ffce9df4a1 +hs-constraints-extras 2022-02-16 05:00:57 +00:00
pho
ccde4859b1 doc: Added devel/hs-constraints-extras version 0.3.2.1 2022-02-16 05:00:45 +00:00
pho
5ecd423358 devel/hs-constraints-extras: import hs-constraints-extras-0.3.2.1
Convenience functions and TH for working with constraints.
2022-02-16 05:00:36 +00:00
pho
5ed8425e97 +hs-cryptohash-sha1 2022-02-16 03:32:35 +00:00
pho
feaea0147d doc: Added security/hs-cryptohash-sha1 version 0.11.101.0 2022-02-16 03:32:02 +00:00
pho
f21fd1a620 security/hs-cryptohash-sha1: import hs-cryptohash-sha1-0.11.101.0
A practical incremental and one-pass, pure API to the SHA-1 hash algorithm
(including HMAC support) with performance close to the fastest
implementations available in other languages.

The implementation is made in C with a haskell FFI wrapper that hides the C
implementation.
2022-02-16 03:31:53 +00:00
wiz
00c6507d5e emacs-packages: clean some pkglint 2022-02-15 23:20:18 +00:00
wiz
592d634045 doc: Updated editors/emacs-packages to 0.12 2022-02-15 23:19:23 +00:00
wiz
0eb714cb4c emacs-packages: remove python-mode, bump version 2022-02-15 23:19:12 +00:00
rillig
d477b0e9a8 intellij-ce-bin: fix pkglint warnings 2022-02-15 23:13:18 +00:00
rillig
f9db4c6b95 doc: Updated devel/intellij-ce-bin to 2021.3.2 2022-02-15 23:10:41 +00:00
wiz
870db7b193 suse131_linux: pre-built binaries, no PIE support
XXX: I had thought that
MKPIE_SUPPORTED=       no
would be enough but I also had to set
CHECK_PIE_SUPPORTED=   no
why?
2022-02-15 22:33:03 +00:00
rillig
8af2d1795d devel/intellij-ue-bin: fix DESCR
IntelliJ Ultimate Edition is not Open Source.

Bump PKGREVISION.
2022-02-15 21:26:14 +00:00
rillig
e60153ec54 devel/intellij-ce-bin: update to 2021.3.2
Changes since 2019.1.2:

From https://www.jetbrains.com/idea/whatsnew/:
IntelliJ IDEA 2021.3 provides support for remote development (Beta) and
introduces a new way to troubleshoot IDE problems with the Repair IDE...
action. It also brings debugger updates and the Constant conditions
inspection for Kotlin, along with other valuable changes.

From https://www.jetbrains.com/idea/whatsnew/2021-2/:
IntelliJ IDEA 2021.2 introduces project-wide analysis for Java, new
actions that can be triggered when you save changes, a new UI for
managing Maven and Gradle dependencies, and other useful updates.

From https://www.jetbrains.com/idea/whatsnew/2021-1/:
IntelliJ IDEA 2021.1 introduces Java 16 and WSL 2 support, Space
integration, Code With Me, a HTML preview window inside the IDE, the
option to run code on SSH hosts and in Docker containers, and other
useful updates.

From https://www.jetbrains.com/idea/whatsnew/2020-3/:
IntelliJ IDEA 2020.3 adds interactive hints and inline watches in the
debugger, improves support for Java 15, and introduces support for Git
staging, along with a variety of other features.

From https://www.jetbrains.com/idea/whatsnew/2020-2/:
IntelliJ IDEA 2020.2 lets you review and merge GitHub pull requests
right from inside the IDE, quickly navigate between warnings and errors
in a file with the Inspections widget, view the full list of issues in a
current file with the Problems tool window, and get notified if your
changes would break other files. You can use Jakarta EE, and get better
support for Quarkus, Micronaut, and OpenAPI.

From https://www.jetbrains.com/idea/whatsnew/2020-1/:
IntelliJ IDEA 2020.1 adds support for Java 14 and new features for a
number of frameworks, upgrades the debugger with dataflow analysis
assistance, adds a new LightEdit mode, downloads and configures the JDK
for you, and does so much more!

From https://www.jetbrains.com/idea/whatsnew/2019-3/:
IntelliJ IDEA 2019.3 delivers major performance and usability
improvements, including faster startup, easier installation of theme and
keymap plugins, enhanced VCS workflows, and adds support for
microservices frameworks, MongoDB and more.

From https://www.jetbrains.com/idea/whatsnew/2019-2/:

Java 13, Refactoring methods with multiple exit points, Each directory
can have its own code style, Syntax highlighting is available for over
20 languages, IntelliJ IDEA works with large files smoothly, Maven
dependency completion works out of the box, Step Into action offers you
a choice of methods to step into, and several more.
2022-02-15 21:21:24 +00:00
wiz
fd8e2bd0e0 doc: Updated print/poppler to 22.02.0 2022-02-15 19:27:02 +00:00
wiz
08f3f66b6b poppler*: update to 22.02.0
Release 22.02.0:
        core:
         * Signature: Add a way to detect unsigned FormFieldSignature
         * Signature: Suport background image when using left and right text
         * Signature: Fix path where to search for Firefox NSS in Windows
         * Signature: Fix NSS code to work correctly in Windows/Android
         * Count only signature fields in PDFDoc::getNumSignatureFields
         * Minor code improvements

        qt:
         * Allow signing unsigned signature fields
         * Allow passing a background image for the signature when signing
         * Allow passing the document password when signing
         * Fix leftFontSize being ignored when signing

        glib:
         * try with utf8 password if latin1 fails
         * New method for getting all signature fields of a document
         * Fix compile with MSVC

        utils:
         * pdfsig: Fix compile with MSVC

        build system:
         * Fix NSS cmake check for MSVC
2022-02-15 19:26:48 +00:00
wiz
4e9f94233b poppler: remove patch that was rejected upstream
The patch makes one header file more usable from C; but upstream
says poppler is a C++ library

https://gitlab.freedesktop.org/poppler/poppler/-/issues/1219
2022-02-15 19:26:31 +00:00
fcambus
d4162c535d elf: comment out dead HOMEPAGE and MASTER_SITES. 2022-02-15 19:19:04 +00:00
fcambus
9ee20e0964 doc: Updated devel/mimalloc to 2.0.5 2022-02-15 19:13:16 +00:00
fcambus
5b60631766 mimalloc: update to 2.0.5.
ChangeLog:

- macOS fix
2022-02-15 19:13:04 +00:00
wiz
abd92b9d5a doc: Updated devel/gobject-introspection to 1.70.0 2022-02-15 17:34:41 +00:00
wiz
2157c1070f gobject-introspection: update to 1.70.0.
Add upstream patch to fix build with latest meson.

1.70.0 - 2021-09-17
-------------------

* Update the GIR data for GLib, GObject, and GIO

1.69.0 - 2021-08-24
-------------------

* Fix build when gobject-introspection is a subproject :mr:`266`
* Add more float types :issue:`384`, :mr:`269`
* Make test suite work with cross-related options :issue:`227`
* Fix several leaks found by Coverity :mr:`272`
* Fix enum member c:identifier :mr:`264`
* Add g-ir-doc-tool man page :mr:`284`
* Export warnlib sources as variables :mr:`287`
* Update the GLib annotations :mr:`288`
* Add "final" class attribute :mr:`257`, :mr:`291`
* Add option to make .gir files installation paths configurable :mr:`63`
* Handle constructors with mismatched GTypes :issue:`399`, :mr:`292`
* Add property accessors annotations :issue:`13`, :mr:`279`
2022-02-15 17:34:32 +00:00
wiz
dc8dde0583 TODO: py-flower done, remove 2022-02-15 16:46:52 +00:00
wiz
c1130a14ad doc: Added devel/py-test-celery version 0.0.0 2022-02-15 16:44:28 +00:00