Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (4h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 23:54:52 UTC Now

2023-10-30 12:40:14 UTC MAIN commitmail json YAML

bulk-small: Additions requested on tech-pkg@.

(nia)

2023-10-30 12:39:30 UTC MAIN commitmail json YAML

doc: Updated sysutils/hs-hslua-module-path to 1.1.0

(pho)

2023-10-30 12:39:21 UTC MAIN commitmail json YAML

sysutils/hs-hslua-module-path: Update to 1.1.0

hslua-module-path-1.1.0 - Released 2023-03-13.
* Update to hslua-2.3; this includes the addition of type initializers to
  the module and type specifiers to the fields.
* Fixed tests for make_relative on Windows.

(pho)

2023-10-30 12:37:37 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-hslua-module-text to 1.1.0.1

(pho)

2023-10-30 12:37:27 UTC MAIN commitmail json YAML

textproc/hs-hslua-module-text: Update to 1.1.0.1

hslua-module-text-1.1.0.1 - Released 2023-03-26.
* Improved doc strings.

hslua-module-text-1.1.0 - Released 2023-03-13.
* Update to hslua-2.3; this includes the addition of type initializers to
  the module and type specifiers to the fields.

hslua-module-text-1.0.3.1 - Released 2023-01-06.
* Generalized a test to avoid failures with stack nightly.
* Added GHC 9.4 to test matrix.

(pho)

2023-10-30 12:35:39 UTC MAIN commitmail json YAML

bulk-large: Additions proposed on tech-pkg@.

(nia)

2023-10-30 12:35:09 UTC MAIN commitmail json YAML

www/hs-wai-cors: Fix build with GHC 9.6

(pho)

2023-10-30 12:31:51 UTC MAIN commitmail json YAML

doc: Updated devel/hs-monad-dijkstra to 0.1.1.4

(pho)

2023-10-30 12:31:43 UTC MAIN commitmail json YAML

2023-10-30 12:30:54 UTC MAIN commitmail json YAML

bulk-medium: Additions proposed on tech-pkg@.

(nia)

2023-10-30 12:30:12 UTC MAIN commitmail json YAML

doc: Updated devel/hs-hiedb to 0.4.3.0

(pho)

2023-10-30 12:30:03 UTC MAIN commitmail json YAML

devel/hs-hiedb: Update to 0.4.3.0

0.4.3.0 -- 2023-03-13
* Support GHC 9.6
* Set sqlite pragma busy_timeout to 500ms to mitigate frequent failures on
  concurrent access

(pho)

2023-10-30 12:26:32 UTC MAIN commitmail json YAML

doc: Updated devel/hs-apply-refact to 0.13.0.0

(pho)

2023-10-30 12:26:24 UTC MAIN commitmail json YAML

2023-10-30 12:25:15 UTC MAIN commitmail json YAML

bulk-medium: pulseaudio is no longer essential for desktop use.

(nia)

2023-10-30 12:24:41 UTC MAIN commitmail json YAML

bulk-large: Remove some more unpopular packages / victim of time packages

(nia)

2023-10-30 12:22:33 UTC MAIN commitmail json YAML

bulk-medium: Make less x86 centric.

(nia)

2023-10-30 12:20:42 UTC MAIN commitmail json YAML

2023-10-30 11:55:24 UTC MAIN commitmail json YAML

doc: Updated devel/hs-ghc-exactprint to 1.7.0.1

(pho)

2023-10-30 11:55:15 UTC MAIN commitmail json YAML

devel/hs-ghc-exactprint: Update to 1.7.0.1

2022-11-08 v1.7.0.1
* Add CI for GHC 9.6.2
* Correctly deal with comments when using GHC flag -haddock

2022-11-08 v1.7
* Support GHC 9.6.1

(pho)

2023-10-30 11:34:02 UTC MAIN commitmail json YAML

devel/hs-conduit-extra: Fix build with GHC 9.6

(pho)

2023-10-30 11:19:45 UTC MAIN commitmail json YAML

devel/hs-dependent-map: Fix build with GHC 9.6

(pho)

2023-10-30 11:16:37 UTC MAIN commitmail json YAML

devel/hs-dependent-sum: Fix build with GHC 9.6

(pho)

2023-10-30 11:08:41 UTC MAIN commitmail json YAML

devel/hs-enummapset: Fix build with GHC 9.6

(pho)

2023-10-30 11:07:18 UTC MAIN commitmail json YAML

2023-10-30 11:00:38 UTC MAIN commitmail json YAML

doc: Updated devel/hs-shelly to 1.12.1

(pho)

2023-10-30 11:00:27 UTC MAIN commitmail json YAML

devel/hs-shelly: Update to 1.12.1

1.12.1 - Andreas Abel, 2023-04-03
* Add print_commands_with and echoWith which can be used to override the
  default printing functions (e.g. to add color). (Chris Wendt, PR #228.)
* Tested with GHC 8.2 - 9.6 (cabal) and GHC 8.10 - 9.6 (stack).

1.12.0.1 - Andreas Abel, 2023-04-02
* Make show_command more robust to special characters and only quote when
  necessary. (Chris Wendt, PR #229.)
* Tested with GHC 8.2 - 9.6 (cabal) and GHC 8.10 - 9.6 (stack).

1.12.0 - Andreas Abel, 2023-02-27
* Rework ShellCmd and ShellCommand instances to support String arguments:
  Issue #143 fixed by Cunning Defenstrator in PR #221.

  This involves a breaking change in classes CmdArg and ShellArg: Method
  toTextArg has been replaced by toTextArgs.

  Sample migration:

    #if MIN_VERSION_shelly(1,12,0)
    -- new
    import Shelly (toTextArgs)
    snoc opts arg = opts ++ toTextArgs arg
    #else
    -- old
    import Shelly (toTextArg)
    snoc opts arg = opts ++ [ toTextArg arg ]
    #endif

* Dropped GHC 8.0 to get rid of deprecated LANGUAGE IncoherentInstances.
* Builds with GHC 8.2 - 9.6.

1.11.0 - Andreas Abel, 2023-01-24
* Restore running of local scripts, e.g. cmd "./foo.sh": Issue #107 fixed
  by Alfredo di Napoli in PR #216.
* Builds with GHC 8.0 - 9.4.

1.10.0.1 - Andreas Abel, 2023-01-24
* Allow unix-compat-0.6.
* Builds -Wall warning-free with GHC 8.0 - 9.4.

(pho)

2023-10-30 10:57:02 UTC MAIN commitmail json YAML

doc: Updated devel/hs-generic-lens to 2.2.2.0

(pho)

2023-10-30 10:56:53 UTC MAIN commitmail json YAML

devel/hs-generic-lens: Update to 2.2.2.0

generic-lens-2.2.2.0 (2023-04-15)
* Support unprefixed constructor prisms on GHC 9.6 (#152)

(pho)

2023-10-30 10:54:01 UTC MAIN commitmail json YAML

doc: Updated math/hs-free to 5.2

(pho)

2023-10-30 10:53:51 UTC MAIN commitmail json YAML

math/hs-free: Update to 5.2

5.2 [2023.03.12]
* Drop support for GHC 7.10 and earlier.
* Drop redundant Monad constraints on many functions and instances. These
  constraints were only present for compatibility with pre-7.10 versions of
  GHC, which free no longer supports.
* Add Eq, Eq1, Ord, Ord1, and Foldable instances for Ap in
  Control.Applicative.Free.
* Switch out bifunctors dependency for bifunctor-classes-compat.

(pho)

2023-10-30 10:49:28 UTC MAIN commitmail json YAML

doc: Updated devel/hs-list-t to 1.0.5.7

(pho)

2023-10-30 10:49:20 UTC MAIN commitmail json YAML

2023-10-30 10:44:25 UTC MAIN commitmail json YAML

devel/Makefile: + hs-git-lfs

(pho)

2023-10-30 10:43:29 UTC MAIN commitmail json YAML

doc: Added devel/hs-git-lfs version 1.2.1

(pho)

2023-10-30 10:43:22 UTC MAIN commitmail json YAML

2023-10-30 10:40:07 UTC MAIN commitmail json YAML

doc: Updated devel/hs-lifted-async to 0.10.2.4

(pho)

2023-10-30 10:39:56 UTC MAIN commitmail json YAML

devel/hs-lifted-async: Update to 0.10.2.4

v0.10.2.4 - 2022-03-19
    Support mtl-2.3.1, allow base-4.18 (GHC 9.6) (#41)

(pho)

2023-10-30 10:30:15 UTC MAIN commitmail json YAML

textproc/Makefile: + hs-attoparsec-aeson

(pho)

2023-10-30 10:29:52 UTC MAIN commitmail json YAML

doc: Added textproc/hs-attoparsec-aeson version 2.2.0.1

(pho)

2023-10-30 10:29:45 UTC MAIN commitmail json YAML

2023-10-30 10:27:09 UTC MAIN commitmail json YAML

doc: Updated devel/hs-storable-tuple to 0.1

(pho)

2023-10-30 10:27:01 UTC MAIN commitmail json YAML

2023-10-30 10:23:56 UTC MAIN commitmail json YAML

doc: Updated devel/hs-tasty-hunit to 0.10.1

(pho)

2023-10-30 10:23:47 UTC MAIN commitmail json YAML

devel/hs-tasty-hunit: Update to 0.10.1

Version 0.10.1
* Provide an explicit implementation of displayException in instance
  Exception HUnitFailure (#330).

(pho)

2023-10-30 10:21:35 UTC MAIN commitmail json YAML

doc: Updated devel/hs-turtle to 1.6.2

(pho)

2023-10-30 10:21:18 UTC MAIN commitmail json YAML

devel/hs-turtle: Update to 1.6.2

1.6.2
* Build against latest ansi-wl-pprint and optparse-applicative [#445] /
  [#446] / [#447]

(pho)

2023-10-30 10:15:19 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-shakespeare to 2.1.0.1

(pho)

2023-10-30 10:15:07 UTC MAIN commitmail json YAML

textproc/hs-shakespeare: Update to 2.1.0.1

2.1.0.1
* Fix 100⨯ slowdown on parsec-3.1.15 #277

2.1.0
* Add OverloadedRecordDot-style record access in expressions

(pho)

2023-10-30 10:09:48 UTC MAIN commitmail json YAML

textproc/hs-cassava-megaparsec: Fix build with GHC 9.6

(pho)

2023-10-30 10:07:06 UTC MAIN commitmail json YAML

2023-10-30 10:00:31 UTC MAIN commitmail json YAML

Updated graphics/py-Willow, devel/py-filelock

(adam)

2023-10-30 09:59:51 UTC MAIN commitmail json YAML

py-filelock: updated to 3.13..0

3.13.0

Support reentrant locking on lock file path via optional singleton instance

(adam)

2023-10-30 09:57:17 UTC MAIN commitmail json YAML

lang/hs-sourcemap: Fix build with GHC 9.6

(pho)

2023-10-30 09:56:03 UTC MAIN commitmail json YAML

py-Willow: updated to 1.6.2

v1.6.2 - mime(-type) it all the way

This release ensures that all Willow ImageFile subclasses define a mime_type attribute.

(adam)

2023-10-30 09:55:52 UTC MAIN commitmail json YAML

doc: Updated math/hs-invariant to 0.6.2

(pho)

2023-10-30 09:55:43 UTC MAIN commitmail json YAML

math/hs-invariant: Update to 0.6.2

0.6.2 [2023.08.06]
* The Template Haskell machinery now uses TemplateHaskellQuotes when
  building with GHC 8.0+ instead of manually constructing each Template
  Haskell Name. A consequence of this is that invariant will now build with
  GHC 9.8, as TemplateHaskellQuotes abstracts over some internal Template
  Haskell changes introduced in 9.8.

0.6.1 [2023.02.27]
* Support th-abstraction-0.5.*.

(pho)

2023-10-30 09:46:01 UTC MAIN commitmail json YAML

security/Makefile: + hs-crypton-x509-store

(pho)

2023-10-30 09:45:18 UTC MAIN commitmail json YAML

doc: Added security/hs-crypton-x509-store version 1.6.9

(pho)

2023-10-30 09:45:10 UTC MAIN commitmail json YAML

security/hs-crypton-x509-store: import hs-crypton-x509-store-1.6.9

X.509 collection accessing and storing methods for certificate, crl,
exception list

(pho)

2023-10-30 09:44:07 UTC MAIN commitmail json YAML

Updated audio/mpg123*

(adam)

2023-10-30 09:43:40 UTC MAIN commitmail json YAML

mpg123: updated to 1.32.3

1.32.3:

ports/cmake: Only enable modules with GetThreadErrorMode() on Windows.
compat: Define EOVERFLOW for ancient Windows toolchains.
libmpg123, libsyn123: always ifdef LFS_LARGEFILE_64 (not just if)
libsyn123: re-introduce _32 wrappers in addition to suffix-less ones (regression from 1.31, bug 363)

1.32.2:

libmpg123: Re-introduce _64 symbols on native 64 bit offset platforms. This was a regression since 1.31 series. Sorry, too much cleanup, not enough testing.
build:
Better O_LARGEFILE logic, avoiding redefintion.
ports/cmake:
Require C99 (bug 360, among other points, thanks to Ozkan Sezer).
Fix broken O_LARGEFILE logic (bug 360).
Typo fix and cleanup, also manual SSE switch for Android on old x86 (bug 359).

1.32.1:

Include man pages again in tarball and install. We cannot avoid the empty man directory when disabling programs with autoconf.
Fix signal handler prototype, avoiding some justified warnings.
ports/cmake:
Include CheckTypeSize, which seems to be needed sometimes (bug 357).
Avoid O_LARGEFILE redefinition, logic closer to autoconf.

1.32.0:

build:
Move version handling out of configure.ac to ease other build systems.
Include "fmt123.h" instead of <fmt123.h> in main API headers to make it more likely the correct one is included (at least gcc picks the one in the same directory as the including header first).
All headers are build-independent now.
Fix build for picky linkers by avoiding definition of wrap_getcpuflags() where it is not used (spurious linker error to non-exitent getcpuflags(), bug 353).
Handle deprecation of C99 detection macro in autoconf 2.70.
No use of AC_SYS_LARGEFILE anymore for explicit handling and differing choice for the libraries and frontend programs.
Added --enable-portable and --disable-largefile to configure, removing the other largefile-related options.
Added --disable-components --enable-libmpg123 to only build libmpg123 (and likewise --enable-libout123, --enable-libout123-modules, --enable-libsyn123) to autoconf build. CMake build has something similar with BUILD_PROGRAMS and BUILD_LIBOUT123, which leave only libmpg123 and libsyn123 if disabled). (bug 351)
Consistent formatting of ./configure --help with AS_HELP_STRING().
ports/Sony_PSP: removed
mpg123:
Added --libversion.
Added proper A-B looping with terminal control key 'o', renamed --pauseloop to --presetloop.
Really get rid of mpg123_position() usage. (It was all lies before!)
Fix terminal progress info when seeking in stopped mode (1.31 regression).
Patch up interaction of output buffer with generic remote control, adding non-interruptible drain after P 3, and dropping buffer on QUIT.
Uppercase some generic control replies for consinstency: SILENCE, PROGRESS, MUTE, UNMUTE
libmpg123, libout123, libsyn123:
Bumped API version for version query functions.
Replaced nearly all symbol renames with explicit INT123_ prefix declarations (intsym.h close to empty now).
libout123:
Add sleep builtin output module (silent, but proper timing).
libsyn123:
Introduced SYN123_PORTABLE_API for an API without off_t and ssize_t (see NEWS.libsyn123).
libmpg123:
Internal I/O using explicit largefile support via off64_t, lseek64, fallback to plain 32 bit off_t.
Added explicit 64 bit API with 64 suffix (mpg123_tell64(), not mpg123_tell_64()). This allows full avoidance of ambiguus off_t. The API is always using 64 bit integers, regardless of internal implementation. (bug 344)
Introduced MPG123_PORTABLE_API for an API subset without off_t and ssize_t.
Made mpg123_seek() and friends ignore offset sign for SEEK_END (always seeking towards beginning, assuming negative offset) to make lseek()-conforming usage possible. Seeking beyond the end never made sense, so no loss of valid functionality.
Overall use of INT123_strerror(), trying to use thread-safe strerror_l() if possible.

(adam)

2023-10-30 09:39:07 UTC MAIN commitmail json YAML

shells/shellcheck: Fix build with GHC 9.6

(pho)

2023-10-30 09:31:13 UTC MAIN commitmail json YAML

textproc/hs-HsYAML-aeson: Fix build with GHC 9.6

(pho)

2023-10-30 09:26:40 UTC MAIN commitmail json YAML

textproc/hs-libyaml: Fix build with GHC 9.6

(pho)

2023-10-30 09:24:54 UTC MAIN commitmail json YAML

doc: Updated www/hs-http-api-data to 0.6

(pho)

2023-10-30 09:24:44 UTC MAIN commitmail json YAML

www/hs-http-api-data: Update to 0.6

0.6
* Use text-iso8601 to parse and serialise time types. (Instead of
  attoparsec-iso8601). Due this change some formats are slightly changed:
  - Space between timezone is not accepted
  - Timezone offset can be between -23:59..23:59
  - Timezone offset is output with colon between hours and minutes
* Require at least GHC-8.2

(pho)

2023-10-30 09:19:31 UTC MAIN commitmail json YAML

www/hs-wai-websockets: Fix build with GHC 9.6

(pho)

2023-10-30 09:19:05 UTC MAIN commitmail json YAML

Updated www/py-httpcore, textproc/py-phonenumbers

(adam)

2023-10-30 09:18:27 UTC MAIN commitmail json YAML

py-phonenumbers: updated to 8.13.23

8.13.23
Unknown changes

(adam)

2023-10-30 09:17:40 UTC MAIN commitmail json YAML

doc: Updated archivers/hs-hslua-module-zip to 1.1.0

(pho)

2023-10-30 09:17:31 UTC MAIN commitmail json YAML

2023-10-30 09:16:30 UTC MAIN commitmail json YAML

py-httpcore: updated to 1.0.0

1.0.0 (October 6th, 2023)

>From version 1.0 our async support is now optional, as the package has minimal dependencies by default.

For async support use either pip install 'httpcore[asyncio]' or pip install 'httpcore[trio]'.

The project versioning policy is now explicitly governed by SEMVER. See https://semver.org/.

Async support becomes fully optional.
Add support for Python 3.12.

(adam)

2023-10-30 09:15:17 UTC MAIN commitmail json YAML

doc: Updated lang/hs-hslua-packaging to 2.3.0

(pho)

2023-10-30 09:15:07 UTC MAIN commitmail json YAML

lang/hs-hslua-packaging: Update to 2.3.0

hslua-packaging-2.3.0 - Released 2023-03-13.
* Type initializers as part of Module records. This allows to associate
  types with a module. For performance reasons, the types are not
  initialized when the module is pushed, but only on first use. However,
  the documentation Lua object for each module now has an additional field
  types. The new field contains a function that returns the names of all
  associated types. Calling the function will also initialize these types,
  thereby making the respective metatables available in the registry.
* Field records now have an additional fieldType entry. [API change]
* The pushUD function is now specialized to documented types.
* Export initType. The function ensures that the metatable of a type has
  been fully initialized. This can be helpful when the default method of
  lazy initialization is not desired, e.g. when the type object is to be
  inspected or extended.
* Re-export udDocs, udTypeSpec, allowing to generate typing info for
  userdata classes.

(pho)

2023-10-30 09:13:11 UTC MAIN commitmail json YAML

Updated misc/py-trove-classifiers, devel/py-toolconfig

(adam)

2023-10-30 09:11:53 UTC MAIN commitmail json YAML

doc: Updated converters/hs-aeson to 2.2.1.0

(pho)

2023-10-30 09:11:42 UTC MAIN commitmail json YAML

2023-10-30 09:07:54 UTC MAIN commitmail json YAML

2023-10-30 09:04:19 UTC MAIN commitmail json YAML

doc: Updated devel/hs-semialign to 1.3

(pho)

2023-10-30 09:04:09 UTC MAIN commitmail json YAML

devel/hs-semialign: Update to 1.3

1.3
    Depend on bifunctor-classes-compat instead of bifunctors See changelog
    note in bifunctors-5.6:
    https://hackage.haskell.org/package/bifunctors-5.6/changelog This is
    breaking change, but affects only GHC-8.0 and older users. In that case
    you should check various combinations of newer/older bifunctors, these,
    and semialign packages.

(pho)

2023-10-30 08:59:47 UTC MAIN commitmail json YAML

py-trove-classifiers: updated to 2023.10.18

2023.10.18

Add Framework :: Mkdocs classifier

(adam)

2023-10-30 08:20:41 UTC MAIN commitmail json YAML

www/hs-wai: Fix build with GHC 9.6

(pho)

2023-10-30 08:18:36 UTC MAIN commitmail json YAML

databases/hs-sqlite-simple: Fix build with GHC 9.6

(pho)

2023-10-30 08:16:43 UTC MAIN commitmail json YAML

doc: Updated devel/hs-conduit to 1.3.5

(pho)

2023-10-30 08:16:32 UTC MAIN commitmail json YAML

2023-10-30 08:12:32 UTC MAIN commitmail json YAML

devel/hs-optparse-simple: Fix build with GHC 9.6

(pho)

2023-10-30 08:10:06 UTC MAIN commitmail json YAML

doc: Updated devel/hasktags to 0.73.0

(pho)

2023-10-30 08:09:57 UTC MAIN commitmail json YAML

2023-10-30 08:05:46 UTC MAIN commitmail json YAML

devel/hs-mono-traversable: Fix build with GHC 9.6

(pho)

2023-10-30 08:02:31 UTC MAIN commitmail json YAML

2023-10-30 08:00:09 UTC MAIN commitmail json YAML

doc: Updated devel/hs-deferred-folds to 0.9.18.5

(pho)

2023-10-30 07:59:16 UTC MAIN commitmail json YAML

2023-10-30 07:54:51 UTC MAIN commitmail json YAML

doc: Updated devel/hs-foldl to 1.4.15

(pho)

2023-10-30 07:54:42 UTC MAIN commitmail json YAML

2023-10-30 07:51:31 UTC MAIN commitmail json YAML

devel/hs-dlist-instances: Fix build with GHC 9.6

(pho)

2023-10-30 07:49:42 UTC MAIN commitmail json YAML

devel/hs-either: Fix build with GHC 9.6

(pho)

2023-10-30 07:48:00 UTC MAIN commitmail json YAML

math/hs-profunctors: Fix build with GHC 9.6

(pho)

2023-10-30 07:45:43 UTC MAIN commitmail json YAML

doc: Updated math/hs-semigroupoids to 6.0.0.1

(pho)

2023-10-30 07:45:17 UTC MAIN commitmail json YAML

2023-10-30 07:13:02 UTC MAIN commitmail json YAML

doc: Updated pkgtools/url2pkg to 23.2.1

(wiz)

2023-10-30 07:12:49 UTC MAIN commitmail json YAML

2023-10-30 06:37:55 UTC MAIN commitmail json YAML

devel/hs-enclosed-exceptions: Fix build with GHC 9.6

(pho)

2023-10-30 06:34:56 UTC MAIN commitmail json YAML

devel/hs-lifted-base: Fix build with GHC 9.6

(pho)

2023-10-30 06:33:35 UTC MAIN commitmail json YAML

devel/hs-heapsize: Fix build with GHC 9.6

(pho)

2023-10-30 06:31:33 UTC MAIN commitmail json YAML

sysutils/hs-process-extras: Fix build with GHC 9.6

(pho)

2023-10-30 06:29:21 UTC MAIN commitmail json YAML

doc: Updated devel/ormolu to 0.7.3.0

(pho)

2023-10-30 06:28:51 UTC MAIN commitmail json YAML

devel/ormolu: Update to 0.7.3.0

Ormolu 0.7.3.0
* Switched to ghc-lib-parser-9.8, with the following new syntactic features:
  - ExtendedLiterals: 123#Int8 is a literal of type Int8#. (disabled by
    default)
  - TypeAbstractions: @k-binders in data type declarations (enabled by
    default)
  - GHC proposal #134: deprecating/warning about exports
  - GHC proposal #541: warning categories

Ormolu 0.7.2.0
* Preserve necessary braces for final function arguments. Issue 1044.
* Put "this" PackageImports at the end. Issue 1048.
* Format parenthesized operators starting with a # correctly in the
  presence of UnboxedSums. Issue 1062.
* Fix false positives in AST diffing related to empty Haddock comments in
  data declarations. Issue 1065.

Ormolu 0.7.1.0
* Include base fixity information when formatting a Haskell file that's not
  mentioned in an existing cabal file. Issue 1032
* Update displayException for OrmoluException to pretty print the
  exception. PR 1031.
* Ormolu is now aware of more common module re-exports by default.
* Support explicit mention of target package name in module
  re-exports. Even if the exported package is not specified as a direct
  dependency of the component being formatted it will still be taken into
  account correctly. Issue 1037.
* Ormolu no longer fails when CPP directly follows the import section (a
  regression introduced in 0.7.0.0). Issue 1040.

Ormolu 0.7.0.0
* Inference of operator fixity information is now more precise and takes
  into account the import section of the module being formatted. Issue 892
  and issue 929.
* Ormolu can now be made aware of module re-exports through either special
  declarations in .ormolu files (see the readme for a description of the
  syntax), or on the command line with the --reexport/-r option. Issue
  1017.
* Ormolu now looks for .ormolu files independently of .cabal files. This
  means that it is now possible to have one .ormolu file for multiple Cabal
  packages. Issue 1019.
* Consistently format do blocks/cases/MultiWayIfs with 4 spaces if and only
  if they occur as the applicand. Issue 1002 and issue 730.
* Support the (deprecated) DatatypeContexts extension to avoid
  surprises. Issue 1012.
* Don't let comments escape from empty export lists. Issue 906.
* Format \cases with multiple patterns across multiple lines
  correctly. Issue 1025.

Ormolu 0.6.0.1
* Fix false positives in AST diffing related to UnicodeSyntax. PR 1009.

Ormolu 0.6.0.0
* Haddocks attached to arguments of a data constructor are now formatted in
  the pipe style (rather than the caret style), consistent with everything
  else. As a consequence, now Ormolu's output will be deemed invalid by the
  Haddock shipped with GHC <9.0. Issue 844 and issue 828.
* Insert space before char literals in ticked promoted constructs when
  necessary. Issue 1000.
* Switched to ghc-lib-parser-9.6:
  - Extended OverloadedLabels: #Foo, #3, #"Hello there".
  - Also, it is now disabled by default, as it causes e.g. a#b to be parsed
    differently.
  - New extension: TypeData, enabled by default.
  - Parse errors now include error codes, cf. https://errors.haskell.org.
* Updated to Cabal-syntax-3.10.
* Now whenever Ormolu fails to parse a .cabal file it also explains why. PR
  999.

Ormolu 0.5.3.0
* Stop making empty lets move comments. Issue 917.
* Now .ormolu fixity override files can use both LF and CRLF line
  endings. PR 969.
* Normalize parentheses around constraints. Issue 264.
* The ormolu function now consumes Text instead of String due to an
  internal refactoring.
* Exposed a more complete public API in the Ormolu module. The API is
  supposed to be stable and change according to PVP.
* Now warnings regarding Ormolu not being able to find .cabal files or
  finding such files but them not mentioning the source file in question
  are only displayed when --debug is used. Printing the warnings by default
  seems to have been confusing, see e.g. Issue 971 and issue 924.

(pho)

2023-10-30 06:20:30 UTC MAIN commitmail json YAML

doc: Updated devel/hs-ghc-lib-parser-ex to 9.8.0.0

(pho)

2023-10-30 06:20:22 UTC MAIN commitmail json YAML

2023-10-30 06:17:27 UTC MAIN commitmail json YAML

doc: Updated devel/hs-ghc-lib-parser to 9.8.1.20231009

(pho)

2023-10-30 06:17:17 UTC MAIN commitmail json YAML

2023-10-30 03:33:18 UTC MAIN commitmail json YAML

2023-10-30 03:29:06 UTC MAIN commitmail json YAML

devel/hs-pretty-simple: Fix build with GHC 9.6

(pho)

2023-10-30 03:26:51 UTC MAIN commitmail json YAML

devel/hs-random-shuffle: Fix build with GHC 9.6

(pho)

2023-10-30 03:25:56 UTC MAIN commitmail json YAML

devel/hs-rio: Fix build with GHC 9.6

(pho)

2023-10-30 03:24:26 UTC MAIN commitmail json YAML

doc: Updated devel/hs-singleton-bool to 0.1.7

(pho)

2023-10-30 03:24:16 UTC MAIN commitmail json YAML

2023-10-30 03:21:33 UTC MAIN commitmail json YAML

doc: Updated devel/hs-storable-record to 0.0.7

(pho)

2023-10-30 03:21:24 UTC MAIN commitmail json YAML

2023-10-30 03:17:58 UTC MAIN commitmail json YAML

doc: Updated devel/hs-tasty to 1.5

(pho)

2023-10-30 03:17:48 UTC MAIN commitmail json YAML

devel/hs-tasty: Update to 1.5

Version 1.5 - 2023-09-10
* Progress reporting is no longer ignored. PrintTest constructor of
  TestOutput now has an extra field used to report progress. Supply const
  (pure ()) as this extra field value if you want to skip progress
  reporting (#311).
* foldGroup now takes [b] instead of b as its last argument to allow for
  custom fold strategies. This is a backwards incompatible change, but you
  can get the old behavior by applying mconcat (#364).
* Dependency loop error now lists all test cases that formed a cycle
  (#340).
* Dependencies can now be defined pattern-free with sequentialTestGroup
  (#343).
* Added --min-duration-to-report flag that specifies the time a test must
  take before tasty outputs timing information (#341).
* When a test failed with an exception, print it using displayException
  instead of show (#330).
* The -p / --pattern option can be specified multiple times; only tests
  that match all patterns are run (#380).
* Fix color scheme to make info messages visible in terminals with white
  background (#369).
* When parsing of a command-line option failed, report received option
  (#368).
* Support WASM (#365).
* Tested with GHC 8.0 - 9.8.

(pho)

2023-10-30 03:13:25 UTC MAIN commitmail json YAML

doc: Updated devel/hs-versions to 6.0.3

(pho)

2023-10-30 03:13:10 UTC MAIN commitmail json YAML

devel/hs-versions: Update to 6.0.3

6.0.3 (2023-10-23)
Added
* Data instances for the various data types.
* Simple conversion types between the main version types.
* Compile-time constructors via Template Haskell, like versioningQ.

6.0.2 (2023-10-12)
Added
* Lift instances for the various types, which allows parsing version
  numbers at compile time within Template Haskell quotes. Currently there
  is no exported function that supports this directly, but you could write
  one like:

-- | Parse a `Versioning` at compile time.
thVer :: Text -> Q Exp
thVer nm =
  case versioning nm of
    Left err -> fail (errorBundlePretty err)
    Right v  -> lift v

Changed
* Due to the new dependency on template-haskell, GHC 8.8 is now the lowest
  supported compiler version.

6.0.1 (2023-05-08)
Fixed
* Restored the ability to compile with GHC versions earlier than 9.

6.0.0 (2023-04-29)

A number of type changes have been made to improve parsing and comparison
logic. Doing so fixed several bugs and made the code cleaner overall.

If you're just doing basic parsing and comparisons and not actually
inspecting the types themselves, you shouldn't notice a difference.

Added
* New types Release, Chunks, and Chunk.

Changed
* Both SemVer and Version now contain a better-behaving Release type for
  their prerelease info.
* Similarly, Version now also has a better-behaving Chunks type for its
  main version number sections.
* The release traversal now yields a Maybe Release.
* Versions with ~ in their metadata will now parse as a Mess. Example:
  12.0.0-3ubuntu1~20.04.5

Removed
* The various Semigroup instances. Adding version numbers together is a
  nonsensical operation and should never have been added in the first
  place.
* The VChunk and VUnit types and their associated functions.

Fixed
* Leading zeroes are handled a little better in SemVer pre-release data.

5.0.5 (2023-03-23)
Changed
* Bumped base bound to support GHC 9.6.

(pho)

2023-10-30 03:06:44 UTC MAIN commitmail json YAML

textproc/hs-cassava: Fix build with GHC 9.6

(pho)

2023-10-30 03:02:06 UTC MAIN commitmail json YAML

textproc/hs-parsers: Fix build with GHC 9.6

(pho)

2023-10-30 03:00:30 UTC MAIN commitmail json YAML

doc: Updated lang/hs-hslua-objectorientation to 2.3.0

(pho)

2023-10-30 03:00:21 UTC MAIN commitmail json YAML

lang/hs-hslua-objectorientation: Update to 2.3.0

hslua-objectorientation-2.3.0 - Released 2023-03-13.

* Export all constructors and functions of type Property.

* Renamed peekUD to peekUDGeneric and pushUD to pushUDGeneric. Functions
  with the old names are now now defined hslua-packaging.

* Hook for udtype metatable initializer. The function pushUDGeneric takes
  an additional hook parameter. The hook operation can be used to perform
  additional setup operations, e.g., for documentation.

  The old pushUD function can be recovered with

    pushUD = pushUDGeneric (\_ -> pure ())

  The hslua-packaging now exports a pushUD functions that is specialized to documented types.

* Export new function initTypeGeneric: The function ensures that a type's
  metatable is initialized and available from the registry. Just like with
  pushUDGeneric, a hook can be used to augment the initialization.

* Type info for properties: Properties are amended with information on the
  property's type. The functions property, possibleProperty, and readonly
  each now come with typed version property', possibleProperty', and
  readonly'. This allows to specify the type of a property value.

* Functions for object typing info: The functions udDocs and udTypeSpec are
  added, enabling the generation of typing information for UDType objects.

(pho)

2023-10-30 02:56:46 UTC MAIN commitmail json YAML

2023-10-29 23:55:46 UTC MAIN commitmail json YAML

py-click-aliases: make PKGNAME match directory name

(wiz)

2023-10-29 23:27:25 UTC MAIN commitmail json YAML

py-click-aliases: not for Python 2

(wiz)

2023-10-29 22:58:09 UTC MAIN commitmail json YAML

doc: Updated biology/biolibc-tools to 0.1.4.13

(bacon)

2023-10-29 22:58:03 UTC MAIN commitmail json YAML

2023-10-29 22:50:36 UTC MAIN commitmail json YAML

python: wheel.mk: add default test target using py-test

If you want to define your own, define a do-test or set USE_PYTEST to no

(wiz)

2023-10-29 22:44:09 UTC MAIN commitmail json YAML

doc: Added devel/py-click-aliases version 1.0.2

(wiz)

2023-10-29 22:43:57 UTC MAIN commitmail json YAML

devel/Makefile: + py-click-aliases

(wiz)

2023-10-29 22:43:45 UTC MAIN commitmail json YAML

devel/py-click-aliases: import py-click_aliases-1.0.2

Add (multiple) aliases to a click group or command.

(wiz)

2023-10-29 22:34:11 UTC MAIN commitmail json YAML

2023-10-29 22:31:01 UTC MAIN commitmail json YAML

creating.xml: fix phrasing in a sentence

(gutteridge)

2023-10-29 22:19:17 UTC MAIN commitmail json YAML

2023-10-29 22:04:21 UTC MAIN commitmail json YAML

doc: Added devel/py-ruff version 0.1.3

(wiz)

2023-10-29 22:04:07 UTC MAIN commitmail json YAML

devel/Makefile: + py-ruff

(wiz)

2023-10-29 22:03:03 UTC MAIN commitmail json YAML

devel/py-ruff: import py-ruff-0.1.3

Ruff is an extremely fast Python linter, written in Rust.

Ruff aims to be orders of magnitude faster than alternative tools
while integrating more functionality behind a single, common
interface.

Ruff can be used to replace Flake8 (plus dozens of plugins), isort,
pydocstyle, yesqa, eradicate, pyupgrade, and autoflake, all while
executing tens or hundreds of times faster than any individual
tool.

(wiz)

2023-10-29 21:16:21 UTC MAIN commitmail json YAML

fonts/harfbuzz: Needs meson>=1.2.0 for gnome.generate_gir(env=...).

(riastradh)

2023-10-29 19:58:50 UTC MAIN commitmail json YAML

py-qt5: fix PLIST w/o dbus

(tnn)

2023-10-29 19:05:49 UTC MAIN commitmail json YAML

2023-10-29 18:50:17 UTC MAIN commitmail json YAML

math/hs-mwc-random: Fix build with GHC 9.6

(pho)

2023-10-29 18:48:29 UTC MAIN commitmail json YAML

security/Makefile: + hs-crypton-x509

(pho)

2023-10-29 18:48:22 UTC MAIN commitmail json YAML

doc: Added security/hs-crypton-x509 version 1.7.6

(pho)

2023-10-29 18:48:14 UTC MAIN commitmail json YAML

2023-10-29 18:46:11 UTC MAIN commitmail json YAML

Updated math/py-pandas, misc/py-shellingham, graphics/py-seaborn

(adam)

2023-10-29 18:44:52 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-attoparsec-iso8601 to 1.1.0.1

(pho)

2023-10-29 18:44:44 UTC MAIN commitmail json YAML

2023-10-29 18:42:16 UTC MAIN commitmail json YAML

doc: Updated www/hs-xss-sanitize to 0.3.7.2

(pho)

2023-10-29 18:42:06 UTC MAIN commitmail json YAML

www/hs-xss-sanitize: Update to 0.3.7.2

0.3.7.2
* Stops Tag Soup from escaping &"<> which breaks HTML entities

(pho)

2023-10-29 18:40:17 UTC MAIN commitmail json YAML

textproc/hs-css-text: Fix build with GHC 9.6

(pho)

2023-10-29 18:39:08 UTC MAIN commitmail json YAML

www/hs-http-date: Fix build with GHC 9.6

(pho)

2023-10-29 18:38:12 UTC MAIN commitmail json YAML

doc: Updated www/hs-http2 to 4.2.2

(pho)

2023-10-29 18:38:03 UTC MAIN commitmail json YAML

www/hs-http2: Update to 4.2.2

4.2.2
* Adding rate limit for RST_STREAM to work around CVE-2023-44487. #94

4.2.1
* This version is identical to v4.2.0 by accident.

4.2.0
* Treating HALF_CLOSED_LOCAL correctly. #90
* Ensuring that GOAWAY is sent after DATA in the client side. #89
* Test uses a random port instead of 8080.
* Breaking change: adding two optional SockAddrs to Config to be copied
  into Aux.
* Close all streams on termination. #83
* Introducing OutBodyStreamingUnmask #80
* Introducing KilledByHttp2ThreadManager instead of ThreadKilled. #79 #81
  #82
* Handle RST_STREAM with NO_ERROR. #78
* Internal changes: #74
* Breaking change: Client is generalized into (forall b. Request ->
  (Response -> IO b) -> IO b) -> IO a. The RankNTypes language extension is
  required. #72

4.1.3
* Using crypton instead of cryptonite.

4.1.2
* Removing the race of frameSender and frameReceiver in the server
  side. This fixes the loss of RST_Stream and TLS bad MAC error. #67

4.1.1
* Fixing memory-blow-up due to no flow control. #62 #66

4.1.0
* Implementing streaming from the client side. #41
* Making use of SettingsMaxFrameSize #44 #57
* Disabling flow control #55
* Fixing buffer overrun by trailers #52
* Proper use of settings
* Breaking change: the data structure of Next was changed. The http3
  package is influenced.

4.0.0
* Breaking change: HTTP2Error is redefined.
* Breaking change: FrameTypeId, SettingsKeyId and ErrorCodeId are
  removed. Use FrameType, SettingsKey and ErrorCode instead.
* A client can receive a concrete HTTP2Error.
* Catching up RFC 9113. Host: and :authority cannot disagree.
* Breaking change: Network.HTTP2 and Network.HTTP2.Priority are removed.
* Breaking change: obsoleted stuff are removed.

(pho)

2023-10-29 18:33:27 UTC MAIN commitmail json YAML

www/hs-websockets: Fix build with GHC 9.6

(pho)

2023-10-29 18:32:21 UTC MAIN commitmail json YAML

py-cffi: fix for Python 2

(wiz)

2023-10-29 18:32:06 UTC MAIN commitmail json YAML

lang/Makefile: + hs-hslua-typing

(pho)

2023-10-29 18:31:58 UTC MAIN commitmail json YAML

doc: Added lang/hs-hslua-typing version 0.1.0

(pho)

2023-10-29 18:31:50 UTC MAIN commitmail json YAML

lang/hs-hslua-typing: import hs-hslua-typing-0.1.0

Type specifiers for Lua.

Structure to hold detailed type information. The primary use-case at this
time are auto-generated docs.

(pho)

2023-10-29 18:30:36 UTC MAIN commitmail json YAML

devel/hs-witherable: Fix build with GHC 9.6

(pho)

2023-10-29 18:28:57 UTC MAIN commitmail json YAML

py-snappy: not for Python 2

(wiz)

2023-10-29 18:28:52 UTC MAIN commitmail json YAML

time/Makefile: + hs-text-iso8601

(pho)

2023-10-29 18:28:46 UTC MAIN commitmail json YAML

doc: Added time/hs-text-iso8601 version 0.1

(pho)

2023-10-29 18:28:37 UTC MAIN commitmail json YAML

time/hs-text-iso8601: import hs-text-iso8601-0.1

Converting time to and from IS0 8601 text. Specifically the RFC3339
profile.

(pho)

2023-10-29 18:27:47 UTC MAIN commitmail json YAML

2023-10-29 18:26:46 UTC MAIN commitmail json YAML

doc: Updated devel/py-logbook to 1.7.0

(wiz)

2023-10-29 18:26:36 UTC MAIN commitmail json YAML

py-logbook: update to 1.7.0.

Version 1.7.0
-------------

Released on October 3rd, 2023

- Dropped support for Python 3.7
- Passing (keyfile, certfile) to MailHandler's ``secure`` argument is deprecated
  in favour of passing an ``ssl.SSLContext``.
- Python 3.12 support

Version 1.6.0
-------------

Released on July 30th, 2023

- Dropped support for Python 2.7, 3.5, and 3.6.
- Uses pyproject.toml based build.
- Added nteventlog extra for NTEventLogHandler.
- Supports SQLAlchemy 1.4 and 2.0.
- Fix various deprecation warnings.
- exc_info arg may be a BaseException instance (thanks Mattijs Ugen)
- FileHandler supports path-like objects.
- Fixed bug which prevented compilation on Cython 3
- Wheels are generated for more platforms and architectures

(wiz)

2023-10-29 18:18:32 UTC MAIN commitmail json YAML

doc: Updated www/py-uwsgi to 2.0.22nb2

(wiz)

2023-10-29 18:18:23 UTC MAIN commitmail json YAML

py-uwsgi: bump PKGREVISION

for the Python 3.12 support code change, to be on the safe side

(wiz)

2023-10-29 18:18:04 UTC MAIN commitmail json YAML

2023-10-29 18:12:11 UTC MAIN commitmail json YAML

doc: Updated math/py-gmpy2 to 2.2.0alpha1

(wiz)

2023-10-29 18:12:01 UTC MAIN commitmail json YAML

py-gmpy2: update to 2.2.0alpha1.

Alpha release packaged for its support for Python 3.12.

Changes in gmpy2 2.2.0
------------------------

* Added prev_prime() when GMP >= 6.3
* support for CPython 3.12

(wiz)

2023-10-29 18:07:18 UTC MAIN commitmail json YAML

doc: Updated math/mpcomplex to 1.3.1

(wiz)

2023-10-29 18:06:59 UTC MAIN commitmail json YAML

mpcomplex: bump mpfr requirement

(wiz)

2023-10-29 18:06:32 UTC MAIN commitmail json YAML

mpcomplex: update to 1.3.1.

Fix pkglint, including renaming a patch.

Changes in version 1.3.1, released in December 2022:
  - Bug fix: It is again possible to include mpc.h without including
    stdio.h.

Changes in version 1.3.0 ("Ipomoea batatas"), released in December 2022:
  - New function: mpc_agm
  - New rounding modes "away from zero", indicated by the letter "A" and
    corresponding to MPFR_RNDA on the designated real or imaginary part.
  - New experimental ball arithmetic.
  - New experimental function: mpc_eta_fund
  - Bug fixes:
    - mpc_asin for asin(z) with small |Re(z)| and tiny |Im(z)|
    - mpc_pow_fr: sign of zero part of result when the base has up to sign
      the same real and imaginary part, and the exponent is an even
      positive integer
    - mpc_fma: the returned 'int' value was incorrect in some cases (indicating
      whether the rounded real/imaginary parts were smaller/equal/greater
      than the exact values), but the computed complex value was correct.
  - Remove the unmaintained Makefile.vc; build files for Visual Studio
    can be found at https://github.com/BrianGladman/mpc .

Changes in version 1.2.1, released in October 2020:
  - Bug fixes:
    - Fix an incompatibility problem with GMP 6.0 and before.
    - Fix an intermediate overflow in asin.

Changes in version 1.2.0 ("Hyacinthus orientalis"), released in August 2020:
  - Minimally required library version: MPFR 4.1.0
  - New functions: mpc_sum, mpc_dot
  - Several functions are more robust with a reduced exponent range
    (for example corresponding to IEEE 754 binary formats)
  - New tool mpcheck.

(wiz)

2023-10-29 18:01:08 UTC MAIN commitmail json YAML

doc: Updated devel/py-game to 2.5.2

(wiz)

2023-10-29 18:00:53 UTC MAIN commitmail json YAML

doc: Added devel/py27-game version 1.9.6nb3

(wiz)

2023-10-29 18:00:13 UTC MAIN commitmail json YAML

singularity: bump for py-game -> SDL2

(wiz)

2023-10-29 17:59:35 UTC MAIN commitmail json YAML

2023-10-29 17:56:02 UTC MAIN commitmail json YAML

2023-10-29 17:53:48 UTC MAIN commitmail json YAML

devel/Makefile: + py27-game

(wiz)

2023-10-29 17:53:19 UTC MAIN commitmail json YAML

devel/py27-game: import py27-game-1.9.6nb3

Pygame is a set of Python modules designed for writing games. It is written on
top of the excellent SDL library. This allows you to create fully featured
games and multimedia programs in the python language. Pygame is highly
portable and runs on nearly every platform and operating system.

(wiz)

2023-10-29 17:52:09 UTC MAIN commitmail json YAML

doc: Added devel/gotelemetry version 0.8.0

(bsiegert)

2023-10-29 17:51:24 UTC MAIN commitmail json YAML

New package, gotelemetry-0.8.0.

This package contains the gotelemetry tool, which allows opting in or
out from Go telemetry reporting. It will also let you see local
telemetry data in a web interface.

Note that by default, uploading telemetry data is always disabled. Run
"gotelemetry on" to enable collection and upload of telemetry data.

(bsiegert)

2023-10-29 17:50:31 UTC MAIN commitmail json YAML

py-seaborn: updated to 0.13.0

v0.13.0 (September 2023)
------------------------

This is a major release with a number of important new features and changes. The highlight is a major overhaul to seaborn's categorical plotting functions, providing them with many new capabilities and better aligning their API with the rest of the library. There is also provisional support for alternate dataframe libraries like `polars <https://www.pola.rs>`_, a new theme and display configuration system for :class:`objects.Plot`, and many smaller bugfixes and enhancements.

Updating is recommended, but users are encouraged to carefully check the outputs of existing code that uses the categorical functions, and they should be aware of some deprecations and intentional changes to the default appearance of the resulting plots (see notes below with |API| and |Defaults| tags).

(adam)

2023-10-29 17:49:58 UTC MAIN commitmail json YAML

py-shellingham: updated to 1.5.4

1.5.4

Fix test_get_shell test according to new code
Bump certifi from 2021.5.30 to 2022.12.7
fix: always detect the host shell on MacOS

(adam)

2023-10-29 17:39:51 UTC MAIN commitmail json YAML

py-pandas: updated to 2.1.2

2.1.2

Deprecations

Reverted deprecation of fill_method=None in DataFrame.pct_change(), Series.pct_change(), DataFrameGroupBy.pct_change(), and SeriesGroupBy.pct_change(); the values 'backfill', 'bfill', 'pad', and 'ffill' are still deprecated (GH 53491)

Fixed regressions

Fixed regression in DataFrame.join() where result has missing values and dtype is arrow backed string (GH 55348)
Fixed regression in rolling() where non-nanosecond index or on column would produce incorrect results (GH 55026, GH 55106, GH 55299)
Fixed regression in DataFrame.resample() which was extrapolating back to origin when origin was outside its bounds (GH 55064)
Fixed regression in DataFrame.sort_index() which was not sorting correctly when the index was a sliced MultiIndex (GH 55379)
Fixed regression in DataFrameGroupBy.agg() and SeriesGroupBy.agg() where if the option compute.use_numba was set to True, groupby methods not supported by the numba engine would raise a TypeError (GH 55520)
Fixed performance regression with wide DataFrames, typically involving methods where all columns were accessed individually (GH 55256, GH 55245)
Fixed regression in merge_asof() raising TypeError for by with datetime and timedelta dtypes (GH 55453)
Fixed regression in read_parquet() when reading a file with a string column consisting of more than 2 GB of string data and using the "string" dtype (GH 55606)
Fixed regression in DataFrame.to_sql() not roundtripping datetime columns correctly for sqlite when using detect_types (GH 55554)
Fixed regression in construction of certain DataFrame or Series subclasses (GH 54922)

Bug fixes

Fixed bug in DataFrameGroupBy reductions not preserving object dtype when infer_string is set (GH 55620)
Fixed bug in SeriesGroupBy.value_counts() returning incorrect dtype for string columns (GH 55627)
Fixed bug in Categorical.equals() if other has arrow backed string dtype (GH 55364)
Fixed bug in DataFrame.__setitem__() not inferring string dtype for zero-dimensional array with infer_string=True (GH 55366)
Fixed bug in DataFrame.idxmin() and DataFrame.idxmax() raising for arrow dtypes (GH 55368)
Fixed bug in DataFrame.interpolate() raising incorrect error message (GH 55347)
Fixed bug in Index.insert() raising when inserting None into Index with dtype="string[pyarrow_numpy]" (GH 55365)
Fixed bug in Series.all() and Series.any() not treating missing values correctly for dtype="string[pyarrow_numpy]" (GH 55367)
Fixed bug in Series.floordiv() for ArrowDtype (GH 55561)
Fixed bug in Series.mode() not sorting values for arrow backed string dtype (GH 55621)
Fixed bug in Series.rank() for string[pyarrow_numpy] dtype (GH 55362)
Fixed bug in Series.str.extractall() for ArrowDtype dtype being converted to object (GH 53846)
Fixed bug where PDEP-6 warning about setting an item of an incompatible dtype was being shown when creating a new conditional column (GH 55025)
Silence Period[B] warnings introduced by GH 53446 during normal plotting activity (GH 55138)
Fixed bug in Series constructor not inferring string dtype when NA is the first value and infer_string is set (:issue:` 55655`)

Other

Fixed non-working installation of optional dependency group output_formatting. Replacing underscore _ with a dash - fixes broken dependency resolution. A correct way to use now is pip install pandas[output-formatting].

(adam)

2023-10-29 17:39:37 UTC MAIN commitmail json YAML

doc: Updated devel/gopls to 0.14.0

(bsiegert)

2023-10-29 17:39:19 UTC MAIN commitmail json YAML

gopls: update to 0.14.0

This release includes initial support for the "inline call to function"
refactoring, as well as a few other smaller features. It also includes several
bug fixes, notably a fix for a performance regression in completion that may be
significant in some environments.

The release also contains support for opt-in telemetry. If you want, you can
enable the periodic uploading of telemetry data, including gopls stack traces
and metrics, but never your source code, to telemetry.go.dev. See below for
details.

New features
------------

- Refactoring: inline call to function
- Refactoring: removing unused parameters
- Improved support for go:embed directives, including hover and
  jump-to-definition

New analyses
------------

This release include three new static analyses, all of which are enabled by
default.

"appends": reports calls to append that pass no values to be appended to the
slice.

"defers": checks for common mistakes in defer statements.

"slog": checks for invalid structured logging calls.

Opt-in telemetry
----------------

This is the first gopls release to include opt-in transparent telemetry.
Telemetry uploading is off by default, and can be enabled with the following
command:

go run golang.org/x/telemetry/cmd/gotelemetry@latest on

After telemetry is enabled, gopls will periodically upload metrics and stack
traces to telemetry.go.dev. If we get enough adoption, this data can
significantly advance the pace of gopls development and help us meet a higher
standard of reliability. For example:

- Even with semi-automated crash reports in VS Code, we've seen several
  crashers go unreported for weeks or months.
- Even with a suite of benchmarks, some performance regressions don't show up
  in our benchmark environment (such as the completion bug mentioned below!).
- Even with lots of great ideas for how to improve gopls, we have limited
  resources. Telemetry can help us identify which new features are most
  important, and which existing features aren't being used or aren't working
  well.

These are just a few ways that telemetry can improve gopls. The telemetry blog
post series contains many more.

Go telemetry is designed to be transparent and privacy-preserving. If you have
concerns about enabling telemetry, you can learn more at
https://telemetry.go.dev/privacy.

(bsiegert)

2023-10-29 17:22:24 UTC MAIN commitmail json YAML

2023-10-29 17:22:06 UTC MAIN commitmail json YAML

guide: recommend using wheel.mk for Python modules

(wiz)

2023-10-29 17:17:13 UTC MAIN commitmail json YAML

Updated devel/py-gitdb, devel/py-limits

(adam)

2023-10-29 17:16:52 UTC MAIN commitmail json YAML

py-limits: updated to 3.6.0

v3.6.0

* Bug Fix

  * Remove default socket timeout from mongo storage
  * Ensure _version.py has stable content when generated
    using `git archive` from a tag regardless of when it is
    run.

* Compatibility

  * Remove references to python 3.7
  * Remove unnecessary setuptools dependency

(adam)

2023-10-29 17:14:15 UTC MAIN commitmail json YAML

py-gitdb: updated to 4.0.11

4.0.11

Use ZLIB_RUNTIME_VERSION if available
Add support for Python 3.12 and drop EOL 3.7
Enable Dependabot version updates for Actions
Test installing project on CI
Fix mkdir race condition in LooseObjectDB.store
Don't cancel other jobs from the 3.12 job failing
Use actions/checkout feature to fetch all commits
Revert "Drop support for EOL Python 3.7"
Fix top-of-file license URLs here in gitdb too
No longer treat 3.12 as experimental on CI
Add all to exc for linting
Have Dependabot update smmap submodule dependency
Bump gitdb/ext/smmap from 334ef84 to f1ace75

(adam)

2023-10-29 17:11:54 UTC MAIN commitmail json YAML

Updated devel/py-anytree, databases/py-apsw

(adam)