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 (12m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 10:03:12 UTC Now

2021-04-26 11:33:50 UTC MAIN commitmail json YAML

Updated graphics/libjpeg-turbo, net/haproxy

(adam)

2021-04-26 10:54:03 UTC MAIN commitmail json YAML

doc: Updated shells/pbosh to 20210421

(micha)

2021-04-26 10:52:42 UTC MAIN commitmail json YAML

shells/pbosh: Update to 20210421

Changelog from AN-2021-01-05:
- Bourne Shell: When we introduced ${.sh.path} in February 2020, we did
  use the "new" and POSIX-only function realpath() that is not present
  on e.g. Ultrix. We now use abspath() from libschily if realpath() is
  missing.

  Note that abspath() is better than realpath(), as it supports path
  names longer than PATH_MAX, but since ${.sh.path} is only used to
  return the absolute pathname for the current shell binary, this is
  not a problem and on the other side, we can avoid linking against
  libschily this way, so shell scripting with lazy linking is faster
  since less libraries need to be linked at startup.

Changelog from AN-2021-04-21:
- Bourne Shell: gmatch.c: The new version no longer aborts with an
  illegal multi byte sequence as "no match". As a result, the "*"
  now again matches any filename - even if the filename contains an
  illegal multi-byte sequence. This is a problem that did not exist
  on the original Bourne Shell from Solaris that used gmatch() from
  the AT&T libgen, but since we added our private portable gmatch.c.
  to get better portability.

  Thanks to Stephane Chazelas for reporting the problem related to
  multi-byte to wide character conversion and illegal multi byte
  sequences in the case statement and filesystem globbing.

- Bourne Shell: word.c::readwc() no longer uses prwc() but rather
  a loop on the original multi-byte stream to print the "set -v"
  output. This permits to output the original input data in any
  case instead of stumbling over illegal multi-byte sequences.

  Thanks to Stephane Chazelas for reporting the general problem
  with input byte sequences that cause an EILSEQ error.

- Bourne Shell: struct fileblk now remembers lastwc and the related
  input string as fileblk->mbs[] in order to avoid incorrect
  conversions via wctomb() in case that the input wide char was a
  result from an EILSEQ conversion and thus has no related multi
  byte string.

  An important visible result of that change is that input read
  by the builtin command read(1) correctly forwards input that
  caused an EILSEQ error.

  It could not be verified whether this covers all possible similar
  cases, but it is at least very close to a completely correct
  solution.

  Thanks to Stephane Chazelas for reporting the general problem
  with input byte sequences that cause an EILSEQ error.

- Bourne Shell: xec.c: Cstyle changes

- Bourne Shell: the Copyright messages now mention 2021

(micha)

2021-04-26 10:46:59 UTC MAIN commitmail json YAML

doc: Updated shells/bosh to 20210421

(micha)

2021-04-26 10:45:39 UTC MAIN commitmail json YAML

shells/bosh: Update to 20210421

Changelog from AN-2021-01-05:
- Bourne Shell: When we introduced ${.sh.path} in February 2020, we did
  use the "new" and POSIX-only function realpath() that is not present
  on e.g. Ultrix. We now use abspath() from libschily if realpath() is
  missing.

  Note that abspath() is better than realpath(), as it supports path
  names longer than PATH_MAX, but since ${.sh.path} is only used to
  return the absolute pathname for the current shell binary, this is
  not a problem and on the other side, we can avoid linking against
  libschily this way, so shell scripting with lazy linking is faster
  since less libraries need to be linked at startup.

Changelog from AN-2021-04-21:
- Bourne Shell: gmatch.c: The new version no longer aborts with an
  illegal multi byte sequence as "no match". As a result, the "*"
  now again matches any filename - even if the filename contains an
  illegal multi-byte sequence. This is a problem that did not exist
  on the original Bourne Shell from Solaris that used gmatch() from
  the AT&T libgen, but since we added our private portable gmatch.c.
  to get better portability.

  Thanks to Stephane Chazelas for reporting the problem related to
  multi-byte to wide character conversion and illegal multi byte
  sequences in the case statement and filesystem globbing.

- Bourne Shell: word.c::readwc() no longer uses prwc() but rather
  a loop on the original multi-byte stream to print the "set -v"
  output. This permits to output the original input data in any
  case instead of stumbling over illegal multi-byte sequences.

  Thanks to Stephane Chazelas for reporting the general problem
  with input byte sequences that cause an EILSEQ error.

- Bourne Shell: struct fileblk now remembers lastwc and the related
  input string as fileblk->mbs[] in order to avoid incorrect
  conversions via wctomb() in case that the input wide char was a
  result from an EILSEQ conversion and thus has no related multi
  byte string.

  An important visible result of that change is that input read
  by the builtin command read(1) correctly forwards input that
  caused an EILSEQ error.

  It could not be verified whether this covers all possible similar
  cases, but it is at least very close to a completely correct
  solution.

  Thanks to Stephane Chazelas for reporting the general problem
  with input byte sequences that cause an EILSEQ error.

- Bourne Shell: xec.c: Cstyle changes

- Bourne Shell: the Copyright messages now mention 2021

(micha)

2021-04-26 10:39:26 UTC MAIN commitmail json YAML

doc: Updated devel/smake to 1.4

(micha)

2021-04-26 10:38:11 UTC MAIN commitmail json YAML

devel/smake: Update to 1.4

Changelog from AN-2021-04-21:
- smake: We now support the idiosyncratic way, GNU make implements ::=
  that results in unpredictable behavior with larger makefiles since ::=
  creates a different macro type that causes the += operator to behave
  different from the usual way introduced in January 1986 by SunPro Make.
  += does not expand the right hand side before appending to an existing
  make macro since it has been introduced in January 1986.

  += now expands the right hand side before appending to an existing
  ::= typed macro. Such a macro is created if the first assignment
  to that macro is done via ::=.

  Using such a make macro does not expand such macros at use time.
  This includes expansions to the left side and the right side of
  a colon (:) dependency list and expansions for rule commands.

- smake: The new operators :::= and +:= have been introduced in
  order to add an orthogonal (and thus better) counterpart to the
  GNU make ::= feature that has become part of the upcoming POSIX
  ISSUE 8.

  We will propose this as a new POSIX feature soon. In special since
  it has been implemented in smake and SunPro Make, see below.

  :::= assigns a normal make macro after expanding the right hand side

  +:=  appends to any maro type after expanding the right hand side

  This permits predictable behavior for larger or structured makefile
  systems (based on the "include" statement), where it is not possible
  to know easily whether a mace macro has been created with a
  NAME=value assignment or with a NAME:=value assignment.

  Note that the official method in make since 45 years (since make
  exists) to prohibit macro expansion is not to use a ::= type macro
  but rather to use two '$' signs in the related value of the macro.

- smake: The man page now mentions the new features

- smake: The option -j maxjobs is now supported, but ignored.

  This makes smake compatible to the upcoming POSIX ISSUE 8

- smake: added a new function ungetch().

- smake: version bumped to 1.4

(micha)

2021-04-26 08:20:01 UTC MAIN commitmail json YAML

haproxy: updated to 2.3.10

2.3.10
- BUILD: backend: fix build breakage in idle conn locking fix
- BUG/MINOR: tcp: fix silent-drop workaround for IPv6
- BUILD: tcp: use IPPROTO_IPV6 instead of SOL_IPV6 on FreeBSD/MacOS
- BUG/MINOR: ssl: Fix update of default certificate
- BUG/MINOR: ssl: Prevent removal of crt-list line if the instance is a default one
- BUG/MINOR: http_fetch: make hdr_ip() resistant to empty fields
- BUG/MINOR: ssl: Add missing free on SSL_CTX in ckch_inst_free
- REGTESTS: ssl: "set ssl cert" and multi-certificates bundle
- DOC: Explicitly state only IPv4 are supported by forwardfor/originalto options
- REGTESTS: ssl: mark set_ssl_cert_bundle.vtc as broken
- CONTRIB: halog: fix issue with array of type char
- BUG/MINOR: tools: fix parsing "us" unit for timers
- DOC: clarify that compression works for HTTP/2
- MINOR: No longer rely on deprecated sample fetches for predefined ACLs
- BUG/MEDIUM: sample: Fix adjusting size in field converter
- DOC: ssl: Certificate hot update only works on fronted certificates
- BUG/MEDIUM: threads: Ignore current thread to end its harmless period
- BUG/MINOR: checks: Set missing id to the dummy checks frontend
- MINOR: logs: Add support of checks as session origin to format lf strings
- BUG/MINOR: connection: Fix fc_http_major and bc_http_major for TCP connections
- MINOR: connection: Make bc_http_major compatible with tcp-checks
- BUG/MINOR: ssl-samples: Fix ssl_bc_* samples when called from a health-check
- BUG/MINOR: http-fetch: Make method smp safe if headers were already forwarded
- BUG/MINOR: http_htx: Remove BUG_ON() from http_get_stline() function
- BUG/MINOR: logs: Report the true number of retries if there was no connection
- BUG/MINOR: mux-h1: Release idle server H1 connection if data are received
- BUG/MINOR: server: free srv.lb_nodes in free_server
- BUG/MAJOR: mux-h2: Properly detect too large frames when decoding headers
- BUG/MEDIUM: mux-h2: Fix dfl calculation when merging CONTINUATION frames
- BUG/MEDIUM: config: fix cpu-map notation with both process and threads
- BUG/MINOR: mworker/init: don't reset nb_oldpids in non-mworker cases
- BUG/MINOR: mworker: don't use oldpids[] anymore for reload
- BUG/MEDIUM: mux-h2: Properly handle shutdowns when received with data
- BUG/MINOR: peers: remove useless table check if initial resync is finished
- BUG/MEDIUM: peers: re-work connection to new process during reload.
- BUG/MEDIUM: peers: re-work refcnt on table to protect against flush

(adam)

2021-04-26 08:18:48 UTC MAIN commitmail json YAML

libjpeg-turbo: updated to 2.1.0

2.1.0

Significant changes relative to 2.1 beta1

Fixed a regression introduced by 2.1 beta1[6(b)] whereby attempting to decompress certain progressive JPEG images with one or more component planes of width 8 or less caused a buffer overrun.

Fixed a regression introduced by 2.1 beta1[6(b)] whereby attempting to decompress a specially-crafted malformed progressive JPEG image caused the block smoothing algorithm to read from uninitialized memory.

Fixed an issue in the Arm Neon SIMD Huffman encoders that caused the encoders to generate incorrect results when using the Clang compiler with Visual Studio.

Fixed a floating point exception (CVE-2021-20205) that occurred when attempting to compress a specially-crafted malformed GIF image with a specified image width of 0 using cjpeg.

Fixed a regression introduced by 2.0 beta1[15] whereby attempting to generate a progressive JPEG image on an SSE2-capable CPU using a scan script containing one or more scans with lengths divisible by 32 and non-zero successive approximation low bit positions would, under certain circumstances, result in an error ("Missing Huffman code table entry") and an invalid JPEG image.

Introduced a new flag (TJFLAG_LIMITSCANS in the TurboJPEG C API and TJ.FLAG_LIMIT_SCANS in the TurboJPEG Java API) and a corresponding TJBench command-line argument (-limitscans) that causes the TurboJPEG decompression and transform functions/operations to return/throw an error if a progressive JPEG image contains an unreasonably large number of scans. This allows applications that use the TurboJPEG API to guard against an exploit of the progressive JPEG format described in the report "Two Issues with the JPEG Standard".

The PPM reader now throws an error, rather than segfaulting (due to a buffer overrun) or generating incorrect pixels, if an application attempts to use the tjLoadImage() function to load a 16-bit binary PPM file (a binary PPM file with a maximum value greater than 255) into a grayscale image buffer or to load a 16-bit binary PGM file into an RGB image buffer.

Fixed an issue in the PPM reader that caused incorrect pixels to be generated when using the tjLoadImage() function to load a 16-bit binary PPM file into an extended RGB image buffer.

Fixed an issue whereby, if a JPEG buffer was automatically re-allocated by one of the TurboJPEG compression or transform functions and an error subsequently occurred during compression or transformation, the JPEG buffer pointer passed by the application was not updated when the function returned.

2.0.90 (2.1 beta1)

Significant changes relative to 2.0.6:

The build system, x86-64 SIMD extensions, and accelerated Huffman codec now support the x32 ABI on Linux, which allows for using x86-64 instructions with 32-bit pointers. The x32 ABI is generally enabled by adding -mx32 to the compiler flags.

Caveats:

CMake 3.9.0 or later is required in order for the build system to automatically detect an x32 build.
Java does not support the x32 ABI, and thus the TurboJPEG Java API will automatically be disabled with x32 builds.
Added Loongson MMI SIMD implementations of the RGB-to-grayscale, 4:2:2 fancy chroma upsampling, 4:2:2 and 4:2:0 merged chroma upsampling/color conversion, and fast integer DCT/IDCT algorithms. Relative to libjpeg-turbo 2.0.x, this speeds up:

the compression of RGB source images into grayscale JPEG images by approximately 20%
the decompression of 4:2:2 JPEG images by approximately 40-60% when using fancy upsampling
the decompression of 4:2:2 and 4:2:0 JPEG images by approximately 15-20% when using merged upsampling
the compression of RGB source images by approximately 30-45% when using the fast integer DCT
the decompression of JPEG images into RGB destination images by approximately 2x when using the fast integer IDCT
The overall decompression speedup for RGB images is now approximately 2.3-3.7x (compared to 2-3.5x with libjpeg-turbo 2.0.x.)

32-bit (Armv7 or Armv7s) iOS builds of libjpeg-turbo are no longer supported, and the libjpeg-turbo build system can no longer be used to package such builds. 32-bit iOS apps cannot run in iOS 11 and later, and the App Store no longer allows them.

32-bit (i386) OS X/macOS builds of libjpeg-turbo are no longer supported, and the libjpeg-turbo build system can no longer be used to package such builds. 32-bit Mac applications cannot run in macOS 10.15 "Catalina" and later, and the App Store no longer allows them.

The SSE2 (x86 SIMD) and C Huffman encoding algorithms have been significantly optimized, resulting in a measured average overall compression speedup of 12-28% for 64-bit code and 22-52% for 32-bit code on various Intel and AMD CPUs, as well as a measured average overall compression speedup of 0-23% on platforms that do not have a SIMD-accelerated Huffman encoding implementation.

The block smoothing algorithm that is applied by default when decompressing progressive Huffman-encoded JPEG images has been improved in the following ways:

The algorithm is now more fault-tolerant. Previously, if a particular scan was incomplete, then the smoothing parameters for the incomplete scan would be applied to the entire output image, including the parts of the image that were generated by the prior (complete) scan. Visually, this had the effect of removing block smoothing from lower-frequency scans if they were followed by an incomplete higher-frequency scan. libjpeg-turbo now applies block smoothing parameters to each iMCU row based on which scan generated the pixels in that row, rather than always using the block smoothing parameters for the most recent scan.
When applying block smoothing to DC scans, a Gaussian-like kernel with a 5x5 window is used to reduce the "blocky" appearance.
Added SIMD acceleration for progressive Huffman encoding on Arm platforms. This speeds up the compression of full-color progressive JPEGs by about 30-40% on average (relative to libjpeg-turbo 2.0.x) when using modern Arm CPUs.

Added configure-time and run-time auto-detection of Loongson MMI SIMD instructions, so that the Loongson MMI SIMD extensions can be included in any MIPS64 libjpeg-turbo build.

Added fault tolerance features to djpeg and jpegtran, mainly to demonstrate methods by which applications can guard against the exploits of the JPEG format described in the report "Two Issues with the JPEG Standard".

Both programs now accept a -maxscans argument, which can be used to limit the number of allowable scans in the input file.
Both programs now accept a -strict argument, which can be used to treat all warnings as fatal.
CMake package config files are now included for both the libjpeg and TurboJPEG API libraries. This facilitates using libjpeg-turbo with CMake's find_package() function. For example:

find_package(libjpeg-turbo CONFIG REQUIRED)

add_executable(libjpeg_program libjpeg_program.c)
target_link_libraries(libjpeg_program PUBLIC libjpeg-turbo::jpeg)

add_executable(libjpeg_program_static libjpeg_program.c)
target_link_libraries(libjpeg_program_static PUBLIC
  libjpeg-turbo::jpeg-static)

add_executable(turbojpeg_program turbojpeg_program.c)
target_link_libraries(turbojpeg_program PUBLIC
  libjpeg-turbo::turbojpeg)

add_executable(turbojpeg_program_static turbojpeg_program.c)
target_link_libraries(turbojpeg_program_static PUBLIC
  libjpeg-turbo::turbojpeg-static)
Since the Unisys LZW patent has long expired, cjpeg and djpeg can now read/write both LZW-compressed and uncompressed GIF files (feature ported from jpeg-6a and jpeg-9d.)

jpegtran now includes the -wipe and -drop options from jpeg-9a and jpeg-9d, as well as the ability to expand the image size using the -crop option. Refer to jpegtran.1 or usage.txt for more details.

Added a complete intrinsics implementation of the Arm Neon SIMD extensions, thus providing SIMD acceleration on Arm platforms for all of the algorithms that are SIMD-accelerated on x86 platforms. This new implementation is significantly faster in some cases than the old GAS implementation-- depending on the algorithms used, the type of CPU core, and the compiler. GCC, as of this writing, does not provide a full or optimal set of Neon intrinsics, so for performance reasons, the default when building libjpeg-turbo with GCC is to continue using the GAS implementation of the following algorithms:

32-bit RGB-to-YCbCr color conversion
32-bit fast and accurate inverse DCT
64-bit RGB-to-YCbCr and YCbCr-to-RGB color conversion
64-bit accurate forward and inverse DCT
64-bit Huffman encoding
A new CMake variable (NEON_INTRINSICS) can be used to override this default.

Since the new intrinsics implementation includes SIMD acceleration for merged upsampling/color conversion, 1.5.1[5] is no longer necessary and has been reverted.

The Arm Neon SIMD extensions can now be built using Visual Studio.

The build system can now be used to generate a universal x86-64 + Armv8 libjpeg-turbo SDK package for both iOS and macOS.

(adam)

2021-04-26 07:42:57 UTC MAIN commitmail json YAML

doc: Updated textproc/py-ICU to 2.7.2

(nia)

2021-04-26 07:42:44 UTC MAIN commitmail json YAML

py-ICU: update to 2.7.2. fixes build with icu 69.1.

Version 2.7.1 -> 2.7.2
----------------------
  - worked around limitation of Visual Studio 2017 (cgohlke)
  - added missing test and samples files to distribution (foutrelis)

Version 2.7 -> 2.7.1
--------------------
  - added some tests for TimeZone classes
  - fixed bug w/FormattedNumberRange.getFirst|SecondDecimal() gone w/ ICU 68.1+
  - fixed bug with VTimeZone.write() wrapper invoking VTimeZone.writeSimple()

Version 2.6 -> 2.7
------------------
  - added wrapper for Locale.canonicalize()
  - added wrappers for MeasureUnit.product(), reciprocal(), getDimensionality()
  - added wrapper for MeasureUnit.forIdentifier()
  - implemented *, /, **, 1/m for MeasureUnit in terms of product and reciprocal
  - added wrappers for BasicTimeZone, RuleBasedTimeZone, VTimeZone
  - added wrappers for TimeZoneTransition, TimeZoneRule and its subclasses
  - added wrappers for DateTimeRule, DateRuleType, TimeRuleType
  - added support for ICU 69.1

(nia)

2021-04-26 07:41:21 UTC MAIN commitmail json YAML

2021-04-26 07:34:31 UTC MAIN commitmail json YAML

Add a comment about the kludge

(pho)

2021-04-26 07:15:24 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.5.7

(pin)

2021-04-26 07:15:03 UTC MAIN commitmail json YAML

sysutils/xplr: update to 0.5.7

-fixed terminal interaction when piping output (xplr Z /dev/null).
-Reduced col_spacig from 3 to 1 to use more screen space.
-Minor formatting fixes.

(pin)

2021-04-26 00:35:03 UTC MAIN commitmail json YAML

bump pkg version as two patches were not being applied properly.

(mrg)

2021-04-26 00:34:41 UTC MAIN commitmail json YAML

add missing patch info.

(mrg)

2021-04-25 22:07:26 UTC MAIN commitmail json YAML

request c++11, not c++03.  some of the demos in this library need
to be built with c++11, though the library itself is c++03 clean.
necessary for GCC 10 hosts.  also tested on GCC 7 / netbsd 9.x.

from Chavdar Ivanov on current-users.

(mrg)

2021-04-25 22:05:08 UTC MAIN commitmail json YAML

doc: Updated www/goaccess to 1.4.6

(wiedi)

2021-04-25 22:04:06 UTC MAIN commitmail json YAML

goaccess: update to 1.4.6

Changes to GoAccess 1.4.6 - Sunday, February 28, 2021

  - Added additional feed reader clients.
  - Added additional browsers and bots to the main list.
  - Added command line option '--unknowns-log' to log unknown browsers and
    OSs.
  - Added 'Referer' to the pre-defined 'Caddy JSON' log format.
  - Added support for real-time piping as non-root user.
  - Added the ability to Handle case when IPv4 is encoded as IPv6 in
    GeoIP1/legacy.
  - Ensure we capture linux (lowercase) when extracting an OS.
  - Fixed a regression in parsing Google Cloud Storage or possibly other
    non-JSON formats.
  - Fixed inability to parse escaped formats.
  - Fixed issue when using '%s' with 'strptime(3)' under musl libc. This
    addresses mostly the Docker image.
  - Fixed possible buffer over-read for certain log-format patterns.
  - Fixed segfault when attempting to process a malformed JSON string.
  - Fixed segfault when setting an empty log-format from the TUI dialog.
  - Fixed sorting on hits and visitors when larger than INT_MAX.
  - Updated CloudFront pre-defined log-format to reflect the latest fields.
  - Updated 'Dockerfile' image to use 'alpine:3.13' instead of edge due to
    compatibility issue with the GNU coreutils.

(wiedi)

2021-04-25 21:28:49 UTC MAIN commitmail json YAML

doc: Updated devel/gopls to 0.6.10

(wiz)

2021-04-25 21:28:40 UTC MAIN commitmail json YAML

gopls: update to 0.6.10.

Features

t.Fatal snippet

If you trigger completion in a test function, on the line after a
call to a function that returns an error, you will be offered a
completion snippet for:

if err != nil {
    t.Fatal(err) }

Experimental

Postfix completion snippets

Postfix completions are a new style of completions that can save
you time by inserting more complex pieces of commonly-written code.
All of the results end with !. Enable this feature by setting
"ui.completion.experimentalPostfixCompletions": true.

(wiz)

2021-04-25 19:58:44 UTC MAIN commitmail json YAML

doc: Updated security/pleaser to 0.4.1

(pin)

2021-04-25 19:58:20 UTC MAIN commitmail json YAML

security/pleaser: update to 0.4.1

Upstream provides no changelog, but NetBSD fixes have been merged.
Drop patch

(pin)

2021-04-25 19:56:43 UTC MAIN commitmail json YAML

doc: Updated www/hackernews-tui to 0.5.1

(pin)

2021-04-25 19:56:23 UTC MAIN commitmail json YAML

www/hackernews-tui: update to 0.5.1

-add ? as a hot key to open help dialog
-reduce the crate size
-add demo videos to project description
-fix parsing HTML text ordering error

(pin)

2021-04-25 18:58:43 UTC MAIN commitmail json YAML

doc: Updated net/youtube-dl to 20210426

(leot)

2021-04-25 18:58:32 UTC MAIN commitmail json YAML

youtube-dl: Update to 20210426

Changes:
20210426
--------
Extractors
+ [xfileshare] Add support for wolfstream.tv (#28858)
* [francetvinfo] Improve video id extraction (#28792)
* [medaltv] Fix extraction (#28807)
* [tver] Redirect all downloads to Brightcove (#28849)
* [go] Improve video id extraction (#25207, #25216, #26058)
* [youtube] Fix lazy extractors (#28780)
+ [bbc] Extract description and timestamp from __INITIAL_DATA__ (#28774)
* [cbsnews] Fix extraction for python <3.6 (#23359)

(leot)

2021-04-25 18:24:43 UTC MAIN commitmail json YAML

2021-04-25 16:56:44 UTC MAIN commitmail json YAML

perl5: avoid hardcoding path to pwd

(nia)

2021-04-25 16:17:17 UTC MAIN commitmail json YAML

doc: Updated sysutils/broot to 1.2.10

(pin)

2021-04-25 16:16:57 UTC MAIN commitmail json YAML

sysutils/broot: update to 1.2.10

v1.2.10
-fix shift based key shortcuts - Fix #363
-check there's another panel before executing verbs with other-panel argument
- Fix #366

v1.2.9
-Fix crash on :input_del_word_left - Fix #361
-Remove diacritics and normalize unicode from input on fuzzy search (an
unnormalized string with unwanted diacritics most often happen when you paste
a string in the input)

v1.2.8
-It's possible to define several key shortcuts for a verb, using the "keys"
property
-Improvements of fuzzy matching

v1.2.7
-Don't ask again for installation if no sourcing file has been found

v1.2.6
-Clipboard features (copy and paste verbs) now work on Android/Termux (needs
the Termux API to be installed)
-Fix a compilation problem on non gnu windows - Thanks @Stargateur
-Obey '--color no' even in standard application mode. In that case,
automatically enable selection marks or you wouldn't know what line is selected

v1.2.5
-Fix style characters being written in --no-style mode - Fix #346
-Replace --no-style with --color taking yes, no or auto, with detection of
output being piped in auto mode (default). --no-style is still usable but it's
not documented anymore - Fix #347
-Fix wrong version number written in log file - Fix #349
-By default the number of panels is now limited to 2 (can be changed in conf
with max_panels_count). The goal is to improve the global ergonomics for the
most common (universal?) use case - Fix #345

(pin)

2021-04-25 15:28:44 UTC MAIN commitmail json YAML

2021-04-25 14:32:12 UTC MAIN commitmail json YAML

2021-04-25 14:19:34 UTC MAIN commitmail json YAML

2021-04-25 14:07:02 UTC MAIN commitmail json YAML

bsdgames: fix fetch, pointed out by wiz

(nia)

2021-04-25 13:43:55 UTC MAIN commitmail json YAML

doc: Updated misc/cabal-install to 3.4.0.0

(pho)

2021-04-25 13:43:45 UTC MAIN commitmail json YAML

Update to cabal-install-3.4.0.0

3.4.0.0 Oleg Grenrus <oleg.grenrus@iki.fi> February 2021
* See https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.4.0.0.md

3.2.0.0 Herbert Valerio Riedel <hvr@gnu.org> April 2020
* `v2-build` (and other `v2-`prefixed commands) now accept the
  `--benchmark-option(s)` flags, which pass options to benchmark executables
  (analogous to how `--test-option(s)` works). (#6209)
* Add solver optimization to skip a version of a package if it does not resolve
  any conflicts encountered in the last version, controlled by flag
  '--fine-grained-conflicts'. (#5918)
* `cabal v2-exec` doesn't fail in clean package (#6479)
* Show full ABI hash for installed packages in solver log (#5892)
* Create incoming directory even for empty packages (#4130)
* Start GHCi with `main-is` module in scope (#6311)
* Implement `--benchmark-options` for `v2-bench` (#6224)
* Fix store-dir in ghc env files generated by `cabal install --lib
  --package-env` (#6298)
* `cabal v2-run` works with `.lhs` files (#6134)
* `subdir` in source-repository-package accepts multiple entries (#5472)

3.0.1.0 Herbert Valerio Riedel <hvr@gnu.org> April 2020
* Create store incoming directory
  ([#4130](https://github.com/haskell/cabal/issues/4130))
* `fetchRepoTarball` output is not marked
  ([#6385](https://github.com/haskell/cabal/pull/6385))
* Update `setupMinCabalVersionConstraint` for GHC-8.8
  ([#6217](https://github.com/haskell/cabal/pull/6217))
* Implement `cabal install --ignore-project`
  ([#5919](https://github.com/haskell/cabal/issues/5919))
* `cabal install executable` solver isn't affected by default
  environment contents
  ([#6410](https://github.com/haskell/cabal/issues/6410))
* Use `lukko` for file locking
  ([#6345](https://github.com/haskell/cabal/pull/6345))
* Use `hackage-security-0.6`
  ([#6388](https://github.com/haskell/cabal/pull/6388))
* Other dependency upgrades

(pho)

2021-04-25 12:00:24 UTC MAIN commitmail json YAML

2021-04-25 11:39:28 UTC MAIN commitmail json YAML

doc: Updated lang/idris to 1.3.3

(pho)

2021-04-25 11:39:03 UTC MAIN commitmail json YAML

2021-04-25 10:51:13 UTC MAIN commitmail json YAML

doc: Updated lang/rust-bin to 1.50.0

(nia)

2021-04-25 10:50:57 UTC MAIN commitmail json YAML

rust-bin: sync with lang/rust by updating to 1.50.0

(nia)

2021-04-25 10:31:18 UTC MAIN commitmail json YAML

doc: updated databases/{postgresql-timescaledb,promscale}

(tnn)

2021-04-25 10:18:46 UTC MAIN commitmail json YAML

cinepaint: work around glib2-2.68.0 breakage

(nia)

2021-04-25 10:11:10 UTC MAIN commitmail json YAML

promscale: update to 0.3.0

  New high-availability system (experimental)
  Major performance improvements
  Bug fixes
  support for PostgreSQL 13

(tnn)

2021-04-25 10:07:42 UTC MAIN commitmail json YAML

timescaledb: update to 2.2.0

Major Features
  Add distributed restore point functionality
  SkipScan to speed up SELECT DISTINCT

Bugfixes
  Refactor and harden size and stats functions
  Reduce memory usage for distributed inserts
  Fix extremely slow multi-node order by queries
  Fix chunk index column name mapping
  Keep Append pathkeys in ChunkAppend

(tnn)

2021-04-25 09:29:58 UTC MAIN commitmail json YAML

paper-icon-theme: various fixes

- needs explicit tool dependency on python3
- remove dead patches from distinfo
- set ICON_THEMES

(nia)

2021-04-25 09:16:16 UTC MAIN commitmail json YAML

rkdeveloptool: strip -Werror

(nia)

2021-04-25 09:10:43 UTC MAIN commitmail json YAML

2021-04-25 09:00:50 UTC MAIN commitmail json YAML

py-xapian: regen PLIST due to new sphinx-generated files

(nia)

2021-04-25 08:49:49 UTC MAIN commitmail json YAML

py-ICU: update HOMEPAGE, needs actually updating

(nia)

2021-04-25 08:30:02 UTC MAIN commitmail json YAML

frozen-bubble: strip -Werror

(nia)

2021-04-25 08:15:21 UTC pkgsrc-2021Q1 commitmail json YAML

Pullup tickets up to #6450

(bsiegert)

2021-04-25 08:15:05 UTC pkgsrc-2021Q1 commitmail json YAML

Pullup ticket #6448 - requested by nia
www/firefox78-l10n: dependent update

Revisions pulled up:
- www/firefox78-l10n/Makefile                                  1.12
- www/firefox78-l10n/distinfo                                  1.12

---
  Module Name: pkgsrc
  Committed By: nia
  Date: Mon Apr 19 20:07:41 UTC 2021

  Modified Files:
  pkgsrc/www/firefox78-l10n: Makefile distinfo

  Log Message:
  firefox78-l10n: sync with firefox78

(bsiegert)

2021-04-25 08:05:09 UTC pkgsrc-2021Q1 commitmail json YAML

Pullup ticket #6447 - requested by nia
www/firefox78: security fix

Revisions pulled up:
- www/firefox78/Makefile                                        1.25
- www/firefox78/distinfo                                        1.15

---
  Module Name: pkgsrc
  Committed By: nia
  Date: Mon Apr 19 20:01:06 UTC 2021

  Modified Files:
  pkgsrc/www/firefox78: Makefile distinfo

  Log Message:
  firefox78: update to 78.10.0

  security fixes:
  https://www.mozilla.org/en-US/security/advisories/mfsa2021-15/

(bsiegert)

2021-04-25 08:04:14 UTC MAIN commitmail json YAML

2021-04-25 07:52:38 UTC MAIN commitmail json YAML

zzuf: disable FORTIFY to fix build

(nia)

2021-04-25 07:51:27 UTC MAIN commitmail json YAML

2021-04-25 07:50:24 UTC MAIN commitmail json YAML

doc: Updated converters/pandoc to 2.13

(pho)

2021-04-25 07:50:13 UTC MAIN commitmail json YAML

2021-04-25 07:50:03 UTC MAIN commitmail json YAML

openrct2: strip -Werror

(nia)

2021-04-25 07:47:27 UTC MAIN commitmail json YAML

taisei: needs explicit python3 tool dependency.

(nia)

2021-04-25 07:23:10 UTC MAIN commitmail json YAML

extend the arm64 vs GCC hack to arm64eb, but also disable it from GCC 10
onwards -- the problem is no longer present.

(mrg)

2021-04-25 07:21:17 UTC MAIN commitmail json YAML

libfm-extra: remove unnecessary gtk2 dependency, from Mike Qin

(nia)

2021-04-25 07:16:47 UTC MAIN commitmail json YAML

doc/TODO: add some

+ Inter-UI-3.18, QuantLib-1.22, R-TTR-0.24.2, R-fBasics-3042.89.1,
  R-quantmod-0.4.18, R-timeSeries-3062.100, R-tseries-0.10.48,
  TeXmacs-1.99.19, ce-4.8, ce-doc-4.8, ce-x11-4.8, cpuminer-2.5.1,
  devilutionx-1.2.1, dosbox-x-0.83.12, dte-1.10, ed-1.17,
  emulationstation-2.9.4, endless-sky-0.9.13, fortunes-de-0.34,
  freecell-solver-6.2.0, freeciv-client-2.6.4, freeciv-server-2.6.4,
  freeciv-share-2.6.4, fuse-bindfs-1.15.1, fuse-encfs-1.9.5,
  fuse-sshfs-3.7.1, fuse-unionfs-2.1, gbrainy-2.43, gearboy-3.3.0,
  gearsystem-3.3.0, glusterfs-9.1, gobby-0.6.0, greed-4.2, gummi-0.8.1,
  haxm-7.6.6, homebank-5.5.1, ibm-plex-otf-5.1.3, ibm-plex-ttf-5.1.3,
  libdsk-1.5.15, libretro-core-info-1.9.1, libretro-gearboy-3.3.0,
  libretro-gearsystem-3.3.0, libretro-sameboy-0.14.3, lyx-2.3.6.1,
  maelstrom-sdl-3.0.7, mftrace-1.2.20, naev-0.8.2, nono-0.1.6,
  onscripter-20200722, openmsx-0.16.0, openrct2-0.3.3, p5-Module-Path-0.33,
  p5-Path-Tiny-0.118, p5-Term-Size-0.211, p5-Test-Class-0.52,
  p5-Test-EOL-2.02, p5-Test-LeakTrace-0.17, p5-Test-Manifest-2.022,
  p5-Test-MockModule-0.176.0, p5-Test-Output-1.033, p5-Test-Script-1.27,
  p5-Test-TempDir-0.018, p5-Test2-Suite-0.000139, p5-Tie-Cycle-1.226,
  p5-Tree-DAG_Node-1.32, p5-Tree-Simple-1.34,
  p5-Tree-Simple-VisitorFactory-0.16, p5-Type-Tiny-1.012001,
  p5-Type-Tiny-XS-0.022, p5-Types-Serialiser-1.01,
  p5-UNIVERSAL-require-0.19, p5-XString-0.005, php-igbinary-3.2.2,
  php-psr-1.1.0, plasma-wayland-protocols-1.2.0, ply-3.11,
  powwow-1.2.22, purpose-5.81.0, py-angr-9.0.6852, py-cle-9.0.6852,
  py-fastimport-0.9.11, py-fecon235-6.18.1203, py-filebytes-0.10.2,
  py-gcovr-4.2, py-hyperscan-0.2.0, py-incremental-21.3.0,
  py-lazr.config-2.2.3, py-lupa-1.9, py-newt-0.52.21, py-polib-1.1.1,
  py-pyvex-9.0.6852, py-quixote-3.3, py-serpent-1.30.2,
  py-setuptools-rust-0.12.1, py-singledispatch-3.6.1, py-tortoisehg-5.7.1,
  py-treq-21.1.0, py-unpaddedbase64-2.1.0, py-usb-1.1.1,
  py-zanata-python-client-1.5.3, q5go-2.1.1, qconf-2.5,
  radare2-cutter-2.0.1, rates-0.2.1, rcs-5.10.0, recursive-ttf-1.078,
  reposurgeon-4.26, rgbds-0.5.0, ropper-1.13.6, rpc2-2.14, rt4-4.4.4,
  ruby-delayer-1.2.0, ruby-redmine-4.2.0, ruby-redmine-gitmike-theme-1.2.1,
  ruby-redmine41-4.2.0, rvm-1.20, sameboy-0.14.3, sasm-3.12.1,
  skalibs-2.10.0.3, slibtool-0.5.33, sparse-0.6.3, sparsehash-2.0.4,
  spin-649, tcllib-20, texworks-0.6.6, threadweaver-5.81.0,
  tkcon-2.7.3, ttftot42-0.4.1, tyrquake-0.66, userspace-rcu-0.12.2,
  valgrind-3.17.0, verifast-21.04, vim-8.2.2792, visualvm-2.0.7,
  vms-empire-1.16, wine-6.6, wordwarvi-1.0.4, x16-emulator-38,
  x16-rom-38, xfce4-conf-4.16.0, yudit-3.0.7, z80-asm-2.4, zile-2.6.1,
  zookeeper-3.7.0.

(wiz)

2021-04-25 06:56:09 UTC MAIN commitmail json YAML

opera: remove

This Linux binary was last updated in 2013 even though newer releases
exist. If someone is interested, please package a current version instead.

(wiz)

2021-04-25 06:53:21 UTC MAIN commitmail json YAML

doc/TODO: + google-benchmark-1.5.3, py-astroid-2.5.5, root-6.24.

(wiz)

2021-04-25 06:51:35 UTC MAIN commitmail json YAML

xfmail: remove dead download link

(wiz)

2021-04-25 06:51:03 UTC MAIN commitmail json YAML

xcin: remove dead download link

(wiz)

2021-04-25 06:50:24 UTC MAIN commitmail json YAML

wxWindows-docs: remove dead download links

(wiz)

2021-04-25 06:48:57 UTC MAIN commitmail json YAML

e16themes: remove dead links

(wiz)

2021-04-25 06:47:52 UTC MAIN commitmail json YAML

2021-04-25 06:47:11 UTC MAIN commitmail json YAML

kp: remove dead download link

(wiz)

2021-04-25 06:46:33 UTC MAIN commitmail json YAML

skkserv: remove dead download link

(wiz)

2021-04-25 06:45:56 UTC MAIN commitmail json YAML

root: remove dead download link

(wiz)

2021-04-25 06:43:48 UTC MAIN commitmail json YAML

2021-04-25 06:42:49 UTC MAIN commitmail json YAML

latin-words-bin: remove dead download link

(wiz)

2021-04-25 06:41:21 UTC MAIN commitmail json YAML

2021-04-25 06:39:47 UTC MAIN commitmail json YAML

tinyfugue: remove dead download link

(wiz)

2021-04-25 06:39:01 UTC MAIN commitmail json YAML

STk: remove dead links

(wiz)

2021-04-25 06:36:52 UTC MAIN commitmail json YAML

otter: update links

(wiz)

2021-04-25 06:35:22 UTC MAIN commitmail json YAML

tcx: remove dead download link

(wiz)

2021-04-25 06:34:43 UTC MAIN commitmail json YAML

untex: remove dead download link

(wiz)

2021-04-25 06:34:05 UTC MAIN commitmail json YAML

ja-vflib-lib: update download link

(wiz)

2021-04-25 06:32:56 UTC MAIN commitmail json YAML

xrn: remove dead download link

(wiz)

2021-04-25 06:31:22 UTC MAIN commitmail json YAML

pcps: remove dead links

(wiz)

2021-04-25 06:28:37 UTC MAIN commitmail json YAML

2021-04-25 06:27:36 UTC MAIN commitmail json YAML

w3c-httpd: update download link

(wiz)

2021-04-25 06:25:57 UTC MAIN commitmail json YAML

xbuffy: remove dead downlod link

(wiz)

2021-04-25 06:24:59 UTC MAIN commitmail json YAML

vnc: remove dead links

(wiz)

2021-04-25 06:19:46 UTC MAIN commitmail json YAML

urlview: remove dead download link

(wiz)

2021-04-25 06:17:05 UTC MAIN commitmail json YAML

newmail: remove dead download link

(wiz)

2021-04-25 06:16:29 UTC MAIN commitmail json YAML

ucarp: remove dead links

(wiz)

2021-04-25 06:15:39 UTC MAIN commitmail json YAML

2021-04-25 06:13:05 UTC MAIN commitmail json YAML

squid4: remove dead download link

(wiz)

2021-04-25 06:09:41 UTC MAIN commitmail json YAML

mpv: only disable EGL if unavailable in Mesa

reported by mikeqin on IRC

(nia)

2021-04-25 06:05:21 UTC MAIN commitmail json YAML

2021-04-25 05:59:36 UTC MAIN commitmail json YAML

rclock: remove dead download link

(wiz)

2021-04-25 05:58:54 UTC MAIN commitmail json YAML

spell-fr: remove dead download link

(wiz)

2021-04-25 05:58:18 UTC MAIN commitmail json YAML

sysinfo: remove dead download link

(wiz)

2021-04-25 05:57:10 UTC MAIN commitmail json YAML

metamail: remove dead download link

(wiz)

2021-04-25 05:56:29 UTC MAIN commitmail json YAML

libdes: remove dead download link

(wiz)

2021-04-25 05:55:54 UTC MAIN commitmail json YAML

procmail: remove dead links

(wiz)

2021-04-25 05:54:07 UTC MAIN commitmail json YAML

pgp5: remove dead download link

(wiz)

2021-04-25 05:53:28 UTC MAIN commitmail json YAML

www6to4: remove dead download link

(wiz)

2021-04-25 05:52:44 UTC MAIN commitmail json YAML

pam-ldap: remove dead links

(wiz)

2021-04-25 05:51:00 UTC MAIN commitmail json YAML

opera: remoe dead download links

(wiz)

2021-04-25 04:43:31 UTC MAIN commitmail json YAML

2021-04-25 04:15:19 UTC MAIN commitmail json YAML

sysutils: +hs-hslua-module-path

(pho)

2021-04-25 04:14:52 UTC MAIN commitmail json YAML

2021-04-25 04:07:33 UTC MAIN commitmail json YAML

textproc: +hs-commonmark-pandoc

(pho)

2021-04-25 04:07:07 UTC MAIN commitmail json YAML

2021-04-25 04:02:22 UTC MAIN commitmail json YAML

textproc: +hs-commonmark-extensions

(pho)

2021-04-25 04:01:56 UTC MAIN commitmail json YAML

2021-04-24 20:09:45 UTC MAIN commitmail json YAML

queryperf: remove dead links

(wiz)

2021-04-24 20:08:28 UTC MAIN commitmail json YAML

traceroute-as: remove dead download link

(wiz)

2021-04-24 20:06:35 UTC MAIN commitmail json YAML

xjdic: remove dead download link

(wiz)

2021-04-24 20:05:22 UTC MAIN commitmail json YAML

ncm: remove dead download link

(wiz)

2021-04-24 20:04:28 UTC MAIN commitmail json YAML

mrt: remove dead links

(wiz)

2021-04-24 20:04:11 UTC MAIN commitmail json YAML

x11/xnotify: reset maintainer

(pin)

2021-04-24 20:03:25 UTC MAIN commitmail json YAML

x11/xdo: reset maintainer

(pin)

2021-04-24 20:02:35 UTC MAIN commitmail json YAML

graphics/viu: reset maintainer

(pin)

2021-04-24 20:01:47 UTC MAIN commitmail json YAML

x11/unibar: reset maintainer

(pin)

2021-04-24 20:01:03 UTC MAIN commitmail json YAML

sysutils/tiramisu: reset maintainer

(pin)

2021-04-24 19:59:11 UTC MAIN commitmail json YAML

wm/sdorfehs: reset maintainer

(pin)

2021-04-24 19:58:23 UTC MAIN commitmail json YAML

wm/sowm: reset maintainer

(pin)

2021-04-24 19:58:15 UTC MAIN commitmail json YAML

geocode-glib: Remove unnecessary dependency on gnome-icon-theme

(cirnatdan)

2021-04-24 19:57:27 UTC MAIN commitmail json YAML

textproc/sd: reset maintainer

(pin)

2021-04-24 19:56:29 UTC MAIN commitmail json YAML

sysutils/refi: reset maintainer

(pin)

2021-04-24 19:55:22 UTC MAIN commitmail json YAML

finance/rates: reset maintainer

(pin)

2021-04-24 19:54:29 UTC MAIN commitmail json YAML

graphics/qrrs: reset maintainer

(pin)

2021-04-24 19:53:44 UTC MAIN commitmail json YAML

graphics/pastel: reset maintainer

(pin)

2021-04-24 19:52:59 UTC MAIN commitmail json YAML

graphics/oxipng: reset maintainer

(pin)

2021-04-24 19:52:03 UTC MAIN commitmail json YAML

sysutils/navi: reset maintainer

(pin)

2021-04-24 19:51:09 UTC MAIN commitmail json YAML

print/lumina-pdf: reset maintainer

(pin)

2021-04-24 19:50:06 UTC MAIN commitmail json YAML

sysutils/lsfp: reset maintainer

(pin)

2021-04-24 19:49:05 UTC MAIN commitmail json YAML

sysutils/lsd: reset maintainer

(pin)

2021-04-24 19:48:13 UTC MAIN commitmail json YAML

textproc/lok: reset maintainer

(pin)

2021-04-24 19:47:11 UTC MAIN commitmail json YAML

math/kalk: reset maintainer

(pin)

2021-04-24 19:46:03 UTC MAIN commitmail json YAML

time/heliocron: reset maintainer

(pin)

2021-04-24 19:44:53 UTC MAIN commitmail json YAML

math/funst: reset maintainer

(pin)

2021-04-24 19:43:41 UTC MAIN commitmail json YAML

editors/focuswriter: reset maintainer

(pin)

2021-04-24 19:42:31 UTC MAIN commitmail json YAML

sysutils/fff: reset maintainer

(pin)

2021-04-24 19:41:09 UTC MAIN commitmail json YAML

geography/echomap: reset maintainer

(pin)

2021-04-24 19:38:40 UTC MAIN commitmail json YAML

sysutils/ddiff: reset maintainer

(pin)

2021-04-24 19:37:33 UTC MAIN commitmail json YAML

www/ddgr: reset maintainer

(pin)

2021-04-24 19:36:41 UTC MAIN commitmail json YAML

sysutils/broot: reset maintainer

(pin)

2021-04-24 19:36:26 UTC MAIN commitmail json YAML

aribas: update download link

(wiz)

2021-04-24 19:35:44 UTC MAIN commitmail json YAML

textproc/bk: reset maintainer

(pin)

2021-04-24 19:33:14 UTC MAIN commitmail json YAML

textproc: +hs-commonmark

(pho)

2021-04-24 19:32:48 UTC MAIN commitmail json YAML

LPRng-core: remove dead download link

(wiz)

2021-04-24 19:32:45 UTC MAIN commitmail json YAML

2021-04-24 19:30:50 UTC MAIN commitmail json YAML

yodl: remove dead download link

(wiz)

2021-04-24 19:26:55 UTC MAIN commitmail json YAML

textproc: +hs-citeproc

(pho)

2021-04-24 19:26:27 UTC MAIN commitmail json YAML

2021-04-24 19:26:24 UTC MAIN commitmail json YAML

poster: remove dead download link

(wiz)

2021-04-24 19:19:42 UTC MAIN commitmail json YAML

textproc: +hs-rfc5051

(pho)

2021-04-24 19:19:15 UTC MAIN commitmail json YAML

2021-04-24 19:04:20 UTC MAIN commitmail json YAML

2021-04-24 19:02:54 UTC MAIN commitmail json YAML

2021-04-24 18:53:19 UTC MAIN commitmail json YAML

doc: Updated security/pleaser to 0.4.0

(pin)

2021-04-24 18:52:59 UTC MAIN commitmail json YAML

2021-04-24 18:51:09 UTC MAIN commitmail json YAML

doc: Updated www/hackernews-tui to 0.5.0

(pin)

2021-04-24 18:50:45 UTC MAIN commitmail json YAML

www/hackernews-tui: update to 0.5.0

This release has a lot of changes compared to v0.4.0

Application changes
Major:
-add more StoryView support: All Stories, Show HN, Ask HN, Jobs
-add paging, filtering, sorting options for StoryView and SearchView
-allow multiple View to be stacked (can use <ctrl-p>/<alt-p> to go to the previous View)

Minor:
-add n, p shortcuts for CommentView
-modify footer button to include only [help] and [quit] option.
-add --example-config command line option to print an example configuration
-add config options for story_pooling

Codebase changes
-implementation for new application changes
-add cursive-aligned-view package to improve loading screen

(pin)

2021-04-24 18:50:09 UTC MAIN commitmail json YAML

doc: Updated sysutils/macchina to 0.7.2

(pin)

2021-04-24 18:49:48 UTC MAIN commitmail json YAML

sysutils/macchina: update to 0.7.2

  - CPU Usage is allowed to exceed a 100% when bars are disabled, and appears
  capped at 100% when they are enabled.
  - Merged a PR by @CuriouslyCurious that adds the ability to use custom ASCII
  art: --custom-ascii lets you import your own ASCII art, overriding the
  default one. --custom-ascii-color lets you change your custom ASCII art color.
  - libmacchina: (Android) Performance improvements.

(pin)

2021-04-24 18:04:03 UTC MAIN commitmail json YAML

Update to HTTP-4000.3.16

Version 4000.3.16: release 2021-03-20
* Support GHC-9.0 (Oleg Genrus)
* Various dependency bumps (multiple people)
* Try all addresses returned by getAddrInfo (Fraser Tweedale)

(pho)

2021-04-24 18:01:16 UTC MAIN commitmail json YAML

2021-04-24 18:00:16 UTC MAIN commitmail json YAML

Fix a typo in my previous commit

(pho)

2021-04-24 17:57:51 UTC MAIN commitmail json YAML

Update to http-client-0.7.8

0.7.8
* Include the original Request in the Response. Expose it via
  getOriginalRequest.

0.7.7
* Allow secure cookies for localhost without HTTPS #460

0.7.6
* Add applyBearerAuth function #457

0.7.5
* Force closing connections in case of exceptions throwing #454.

0.7.4
* Depend on base64-bytestring instead of memory #453

0.7.3
* Added withSocket to Network.HTTP.Client.Connection.

0.7.2.1
* Fix bug in useProxySecureWithoutConnect.

0.7.2
* Add a new proxy mode, proxySecureWithoutConnect, for sending HTTPS
  requests in plain text to a proxy without using the CONNECT method.

0.7.1
* Remove AI_ADDRCONFIG #400

0.7.0
* Remove Eq instances for Cookie, CookieJar, Response, Ord instance
  for Cookie #435

0.6.4.1
* Win32 2.8 support #430

(pho)

2021-04-24 17:54:25 UTC MAIN commitmail json YAML

net: +hs-iproute

(pho)

2021-04-24 17:53:42 UTC MAIN commitmail json YAML

2021-04-24 17:51:41 UTC MAIN commitmail json YAML

sysutils: +hs-byteorder

(pho)

2021-04-24 17:51:16 UTC MAIN commitmail json YAML

2021-04-24 17:48:04 UTC MAIN commitmail json YAML

textproc: +hs-appar

(pho)

2021-04-24 17:47:44 UTC MAIN commitmail json YAML

2021-04-24 17:40:07 UTC MAIN commitmail json YAML

2021-04-24 17:39:07 UTC MAIN commitmail json YAML

2021-04-24 17:38:08 UTC MAIN commitmail json YAML

2021-04-24 17:35:47 UTC MAIN commitmail json YAML

2021-04-24 17:33:55 UTC MAIN commitmail json YAML

2021-04-24 17:32:41 UTC MAIN commitmail json YAML

2021-04-24 17:31:23 UTC MAIN commitmail json YAML

2021-04-24 17:25:42 UTC MAIN commitmail json YAML

Update to cheapskate-0.1.1.2

cheapskate 0.1.1.1 (24 Jan 2020)
  * Add Paths_cheapskate to other-modules
  * Support base 4.13 (Fumiaki Kinoshita)

(pho)

2021-04-24 17:21:54 UTC MAIN commitmail json YAML

2021-04-24 17:18:03 UTC MAIN commitmail json YAML

Update to texmath-0.12.2

texmath (0.12.2)
  * MathML input: support mmultiscripts element (#158, #100).
  * Make MathML tag/attr recognition case-insensitive (#158).
  * Pandoc writer: better handling of styling such as `\mathrm` (#145).
    Previously identifiers were always italic, no matter what
    styling was applied.
  * Ignore `\tag` in TeX input (#162).
  * TeX writer: avoid unneeded `\left` and `\right` for delimited.
    We don't need `\left` and `\right` when the contents are
    "standard height."
  * TeX reader: parse implicit EDelimited sections (#172).
    We now parse `(x)` as EDelimited, even though `\right` and `\left`
    are not used.

texmath (0.12.1.1)
  * Fix compilation with GHC-9.0.1 (#169, Simon Jakobi).
    Background:
    https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.0#simplified-subsumption
  * Add eqn to online demo.
  * Improve error messages for unknown control sequences, and restructure
    tex parser to be more efficient (#167).

texmath (0.12.1)
  * OMML writer: explicitly mark symbols as non-italic (#109).
    Otherwise, for some reason, they appear as italic by default.
  * Improve error messages in reading tex arrays.
  * Improve support for `\bmod`, `\mod`, etc. (#165).
    Allow them to take complex arguments like `\left( 1 \right)`.
  * Improve support for `\genfrac` (#164).
  * Ignore `\textstyle`, `\scriptstyle`, `\scriptscriptstyle`,
    as we currently ignore `\displaystyle`.
  * Parse siunitx commands in reading tex (#157).
  * Improve handling of `\not` in reading tex (#161).
    Previously we only handled `\not` in front of certain symbols.
  * Support `\pod` and `\pmod` and clean up spacing and font for
    `\mod` and `\bmod` (#160).

texmath (0.12.0.3)
  * Allow pandoc-types 1.22.

texmath (0.12.0.2)
  * Allow pandoc-types 1.21.
  * Pandoc output: omit empty Emph for sub/superscript without base (#155).
  * tex writer: Use `\overline{\overline{B}}` instead of unicode
    double line accent (#153).

texmath (0.12.0.1)
  * OMML writer: Fix overline and accent rendering (#152).
  * OMML reader: Fix dropped arrows (#153). Add tests.

(pho)

2021-04-24 17:09:50 UTC MAIN commitmail json YAML

2021-04-24 17:07:42 UTC MAIN commitmail json YAML

2021-04-24 17:05:03 UTC MAIN commitmail json YAML

Update to pandoc-types-1.22

[1.22]

  * Deprecate isNull from Builder:  null can serve just as well (#67).
    Use null instead of isNull in Arbitrary (Christian Despres, #84).

  * Use untagged JSON encoding for single-constructor types (#75, #76,
    Christian Despres).  All of the single constructor types related
    to Table are now represented in JSON either as arrays (for
    multi-argument constructors) or as the representation of the
    inner type (for single argument constructors). This behaviour
    for newtype-defined and multi-argument non-record types is now
    consistent across the entire JSON interface, with the exception
    of Pandoc itself (which is represented as a JSON object with
    additional metadata). Multi-argument records (of which Citation
    is the only example) are still represented as objects with the
    record accessors as keys.

  * The Meta and Citation types now use derived JSON serialization (newtype
    and generic, respectively). The format remains the same as before
    (Christian Despres).

  * New serialization tests now test that Meta and the Table types are
    encoded properly in JSON (Christian Despres).

  * Use TH To/FromJSON instances (Christian Despres).

  * Remove unused Legacy modules (#80, Despres).
    They are not exported, and are not used internally.

  * Change the table builder to permit looser intermediate table heads (#77,
    Christian Despres).

    The table builder (and the normalizeTableBody function) now permit
    cells in the intermediate head of a TableBody to extend past the
    RowHeadColumns. This allows for intermediate tables to have
    subheadings that extend across the entire table.

    Formerly the table builder would treat the intermediate head like the
    intermediate body, and clip or drop cells that extended past the row
    head.

  * Update QuickCheck lower bound.

  * Fix redundant pattern match.

[1.21]

  * Add Underline constructor (#68, Vaibhav Sagar).

  * Improve table types to allow col, rowspans and more (#65, Christian
    Despres).  The additions include modification of the Block type, some
    newtypes related to tables, and changes to the table builders.  The table
    builder is now aware of the new Table constructor, and normalizes the
    input table appropriately, so that when laid onto a grid the resulting
    table has no empty spaces, overlapping cells, or cells that extend beyond
    their section boundary.

    Three properties of normalization are checked:

    - Normalization is idempotent.
    - Each row of a normalized table is an initial segment of the
      corresponding row in the unnormalized table, modulo changed cell
      dimensions, dropped cells, and padding with empty cells. This is only
      checked for the first row of the TableBody, however, due to row head
      difficulties.
    - The sum of the cell lengths in the first row of every
      normalized table section is always equal to the total table width.

    `simpleTable` has been changed so that a null header list becomes a
    TableHead with a null body, not a TableHead with a single empty row.

  * Bump QuickCheck upper bound.

  * Change lower bound for QuickCheck to 2.10 (needed for `liftShrink2`).

  * Small code quality improvements (Joseph C. Sible, #69).

  * Allow aeson 1.5 (#72, Felix Yan).

  * Fixed documentation typo (Merlin Gæ—¦ttlinger).

  * Add COMPLETE pragmas to the pattern definitions (Christian Despres).

(pho)

2021-04-24 17:00:46 UTC MAIN commitmail json YAML

2021-04-24 16:50:41 UTC MAIN commitmail json YAML

2021-04-24 16:49:17 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-cgrep to 6.6.32

(pho)

2021-04-24 16:48:46 UTC MAIN commitmail json YAML

Update to cgrep-6.6.32

No change logs are provided by the upstream.

(pho)

2021-04-24 16:44:13 UTC MAIN commitmail json YAML

2021-04-24 16:42:40 UTC MAIN commitmail json YAML

2021-04-24 16:41:17 UTC MAIN commitmail json YAML

2021-04-24 16:38:04 UTC MAIN commitmail json YAML

2021-04-24 16:34:54 UTC MAIN commitmail json YAML

2021-04-24 16:32:23 UTC MAIN commitmail json YAML