Commit graph

12567 commits

Author SHA1 Message Date
nia
b430fd9bd2 various hacks.mk: use OPSYS_VERSION 2022-05-24 09:53:02 +00:00
pin
82fb26468d textproc/tuc: update to 0.8.0
[0.8.0] - 2022-05-23
    Add support for --greedy-delimiter
    Bounds can be formatted
    Major refactoring for better code maintainability
2022-05-24 08:55:39 +00:00
charlotte
26ce55fd54 the_silver_searcher: Handle cpuset_t quirk with DragonFly 2022-05-24 06:08:35 +00:00
adam
3e0959ff47 py-xmlschema: updated to 1.11.1
v1.11.1
* Protect converter calls in iter_decode()/iter_encode()
* Extend XSD type matching for code generators (fallback to schema types with a local name)
2022-05-23 08:34:28 +00:00
schmonz
f230d89fe8 Update to 6.0.10. From the changelog:
* Populate ``<summary>`` correctly if it comes after
  ``<content>``. (#260)
2022-05-22 17:32:07 +00:00
kleink
eb044bc9ed py-cssselect2: Update to 0.6.0.
Version 0.6.0
.............

Released on 2022-04-15.

**This version deprecates the ``iter_ancestors`` and
``iter_previous_siblings`` methods, that will be removed in 0.7.0.
Use the ``ancestors`` and ``previous_siblings`` properties instead.**

* Improve speed of ancestors and previous siblings


Version 0.5.0
.............

Released on 2022-02-27.

* Support Python 3.10
* Drop support of Python 3.6
* Handle many CSS4 selectors
* Ignore comments at the beginning of selectors
2022-05-22 15:07:50 +00:00
charlotte
87aab36f16 libcyaml: Update MAINTAINER 2022-05-22 02:41:47 +00:00
pin
bdc7d9106a textproc/tuc: update to 0.7.0
[0.7.0] - 2022-05-21
    Add support for --join
    Add support for --lines
    Add support for --complement
    Add support for --zero-terminated
2022-05-21 21:09:44 +00:00
fcambus
5efa146bc2 iso-codes: fix broken HOMEPAGE, and comment out dead MASTER_SITES.
MASTER_SITES must be switched to salsa.debian.org when this package
gets updated.
2022-05-20 11:01:15 +00:00
schmonz
e40e0a6b8c Update to 6.0.9. From the changelog:
* Fix a crash that can occur with GeoRSS feeds that lack a ``<where>``
  tag. (#305)
2022-05-19 17:44:36 +00:00
jaapb
5df4e27eec Fixed build problem in textproc/ocaml-csv, revbump.
There was a problem with modules not being built correctly according to
options set; I've now corrected this. Thanks to mef@ for reporting this.
2022-05-19 08:22:33 +00:00
wiz
c508b1fc27 py-ujson: update to 5.3.0.
Fix test target.

Changes:

Added

    Test Python 3.11 beta (#539) @hugovk

Changed

    Benchmark refactor - argparse CLI (#533) @Erotemic

Fixed

    Fix segmentation faults when errors occur while handling unserialisable objects (#531) @JustAnotherArchivist
    Fix segmentation fault when an exception is raised while converting a dict key to a string (#526) @JustAnotherArchivist
    Fix memory leak dumping on non-string dict keys (#521) @JustAnotherArchivist
    Fix ref counting on repeated default function calls (#524) @JustAnotherArchivist
    Remove redundant wheel dependency from pyproject.toml (#535) @hugovk
2022-05-18 21:52:39 +00:00
pin
3e496dbaf8 textproc/git-delta: update to 0.13.0
What's Changed
   -Update bat dependency so that delta is compatible with latest bat release
    (#1075)
   -Flush line buffers in additional locations by @dandavison in #1003
   -Reorganize wrapping utilities by @dandavison in #1008
   -Bump regex to fix CVE-2022-24713 by @msirringhaus in #1015
   -Apply file-transformation to diff header in addition to hunk header
    by @dandavison in #1012
   -Add support for irreversible-delete by @wescande in #945
   -Add custom env struct to store env at init by @wescande in #1025
   -Apply hyperlinks to diff stat file paths by @dandavison in #1035
   -Add link to bat on README by @eloyesp in #1052
   -Add chameleon theme to themes.gitconfig by @AirOnSkin in #1062
   -Add 'light = false' w/ comment in gitconfig by @toolness in #1073
2022-05-18 12:04:19 +00:00
adam
1182cdb3f8 py-elementpath: updated to 2.5.2
v2.5.2
* Include fixes for `XPathContext.iter_siblings()`
2022-05-18 05:43:43 +00:00
adam
28ffaccc27 py-xmlschema: updated to 1.11.0
v1.11.0
* Add localization for validation related error messages
* Add Italian translation
* Add Russian partial translation
2022-05-15 19:29:25 +00:00
nia
f3d40e7ee4 *: py37 incompatibility via matplotlib via numpy 2022-05-15 10:05:15 +00:00
pin
41db9fb5d8 textproc/tuc: update to 0.6.0
[0.6.0] - 2022-05-13
    Add split-by-byte using --bytes
    Add split-by-character using --characters
    Faster performance when -p (compress delimiters) is on
    Faster performance when reading the input
    CI now fails if the linter is not satisfied
    Reviewd CI/release actions, simpler, faster
    Release binaries for ARM too
2022-05-15 06:45:09 +00:00
dholland
1aba038902 Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
fox
ba9dcfca5b textproc/bat: Updates to 0.21.0
Changes since 0.20.0:

v0.21.0
Features

  * Correctly render tab stops in --show-all, see #2038 (@Synthetica9)
  * Add a --style=default option and make it the default. It is less verbose
    than full, see #2061 (@IsaacHorvath)
  * Enable BusyBox less as pager, see #2162 (@nfisher1226)
  * File extensions are now matched case-insensitively. See #1854, #2181
    (@Enselic)

Bugfixes

  * Bump regex dependency from 1.5.4 to 1.5.5 to fix CVE-2022-24713, see #2145,
    #2139 (@Enselic)
  * bat no longer crashes when encountering files that references missing
    syntaxes. See #915, #2181 (@Enselic)

Performance

  * Skip syntax highlighting on long lines (> 16384 chars) to help improve
    performance. See #2165 (@keith-hall)
  * Vastly improve startup time by lazy-loading syntaxes via syntect 5.0.0. This
    makes bat display small files ~75% faster than before. See #951, #2181
    (@Enselic)

Other

  * Include info about custom assets in --diagnostics if used. See #2107, #2144
    (@Enselic)

Syntaxes

  * Mapped clang-format config file (.clang-format) to YAML syntax
    (@TruncatedDinosour)
  * log syntax: improved handling of escape characters in double quoted
    strings. See #2123 (@keith-hall)
  * Associate /var/spool/mail/* and /var/mail/* with the Email syntax. See #2156
    (@cyqsimon)
  * Added cmd-help syntax to scope --help messages. See #2148 (@victor-gp)
  * Slightly adjust Zig syntax. See #2136 (@Enselic)
  * Associate .inf files with the INI syntax. See #2190 (@Enselic)

Themes
bat as a library

  * Allow configuration of show_nonprintable with PrettyPrinter, see #2142
  * The binary format of syntaxes.bin has been changed due to syntaxes now being
    lazy-loaded via syntect 5.0.0. See #2181 (@Enselic)
  * Mark bat::error::Error enum as #[non_exhaustive] to allow adding new
    variants without future semver breakage. See #2181 (@Enselic)
  * Change Error::SyntectError(syntect::LoadingError) to
    Error::SyntectError(syntect::Error). See #2181 (@Enselic)
  * Add Error::SyntectLoadingError(syntect::LoadingError) enum variant. See
    #2181 (@Enselic)
2022-05-14 15:41:06 +00:00
tsutsui
51e7bca8f1 ruby-nokogiri: update to 1.13.6.
Upstream changes:
 https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.6
 https://github.com/sparklemotion/nokogiri/releases/tag/v1.13.5

1.13.6 / 2022-05-08

Security

  * [CRuby] Address CVE-2022-29181, improper handling of unexpected data types,
    related to untrusted inputs to the SAX parsers. See GHSA-xh29-r2w5-wx8m for
    more information.

Improvements

  * {HTML4,XML}::SAX::{Parser,ParserContext} constructor methods now raise
    TypeError instead of segfaulting when an incorrect type is passed.


1.13.5 / 2022-05-04

Security

  * [CRuby] Vendored libxml2 is updated to address CVE-2022-29824. See
    GHSA-cgx6-hpwq-fhv5 for more information.

Dependencies

  * [CRuby] Vendored libxml2 is updated from v2.9.13 to v2.9.14.

Improvements

  * [CRuby] The libxml2 HTML4 parser no longer exhibits quadratic behavior when
    recovering some broken markup related to start-of-tag and bare <
    characters.

Changed

  * [CRuby] The libxml2 HTML4 parser in v2.9.14 recovers from some broken
    markup differently. Notably, the XML CDATA escape sequence <![CDATA[ and
    incorrectly-opened comments will result in HTML text nodes starting with &
    lt;! instead of skipping the invalid tag. This behavior is a direct result
    of the quadratic-behavior fix noted above. The behavior of downstream
    sanitizers relying on this behavior will also change. Some tests describing
    the changed behavior are in test/html4/test_comments.rb.
2022-05-14 14:33:31 +00:00
pin
c3ffe836b4 textproc/molybdenum: update to 0.1.8
v0.1.8
-Support for working with capture groups. When -P % is specified, the
 replacement string specified via -r will substitute capture groups for all
 occurences of % or %[0-9].
-Support for compact output.
-Rework of colored output: when not specified, the output stream is checked.
 If this is a TTY, no color output will be produced.

v0.1.7
-Filename pattern matching with -f and -F is now case-sensitive only when -s
 is set
-Added primitive method to only output the matches via -m. This should be
 replaced with proper Regex submatch support.
2022-05-12 20:21:16 +00:00
pin
2edf044cc4 textproc/prose: reset maintainer 2022-05-12 09:36:57 +00:00
pin
57bb20bd8d textproc/hck: needs cmake 2022-05-12 09:35:44 +00:00
pin
1c6128743b textproc/angle-grinder: needs gmake 2022-05-12 09:34:31 +00:00
adam
d6d8c825ba py-yamllint: added version 1.26.3
A linter for YAML files.

yamllint does not only check for syntax validity, but for weirdnesses
like key repetition and cosmetic problems such as lines length,
trailing spaces, indentation, etc.
2022-05-12 08:10:26 +00:00
pin
d0a68e6d9a textproc/paperoni: reset maintainer 2022-05-11 21:00:07 +00:00
bsiegert
12cb73e64f Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
adam
3c655db5e2 py-jsonschema: updated to 4.5.1
v4.5.0
------
* Validator classes for each version now maintain references to the correct
  corresponding format checker
* Development has moved to a `GitHub organization
  <https://github.com/python-jsonschema/>`_.
  No functional behavior changes are expected from the change.
2022-05-11 09:30:52 +00:00
adam
e37c847ee0 ugrep: updated to 3.7.11
ugrep v3.7.11

New -Zbest (--fuzzy=best) option argument best to only output the best matching patterns. Updated option -Z (--fuzzy) can now be combined with -U (--binary) to fuzzy match bytes instead of Unicode characters. Additional --stats results with total lines searched and matched, and time elapsed. New complementary options --min-depth, --max-depth, --min-line and --max-line which are added for consistency with the updated options --min-count and --max-count. Updated the --min-count option, which can now be combined with any other option except with -v (--invert-match). Updated option -K (--range) to take a MAX argument instead of a FIRST argument for consistency with other min/max options. Recursive searching sysfd, such as /proc and /sys, no longer blocks on special files/devices. Fixed inconsistent colorization with option -v when used with context options -A, -B and -C. Fixed option -r when combined with file argument - (read standard input), which does both, like GNU grep. Other minor improvements and fixes.
2022-05-11 07:56:38 +00:00
adam
a72c105d04 py-rst2pdf: updated to 0.99
0.99 (2022-01-08)

Added: Python 3.9 & 3.10 are now supported
Added: Sphinx 4 is now supported.
Added: Can now set background images using PageBreak.
Added: Can now set multiple style names in the class directive
Added: pdf_smartquotes option is now supported with Sphinx builds
Added: Add support for styling separations.
Changed: Outline entries that are deeper than the ToC are now collapsed
Changed: math directive updated to support latest matplotlib
Changed: the --very-verbose option provides more information when things go wrong.
Changed: The default stylesheet has been improved. Use the rst2pdf-0.9 stylesheet to apply the previous default as per the "Migrating to the New Default Stylesheet" section of the manual. Also, the twoColumn style is no longer part of the default styles and is now a separate style. Add -s twocolumn to apply it or, for Sphinx add pdf_stylesheets = ['twocolumn']
Changed: Stylesheets are now in YAML. Migrate to the new format using python -m rst2pdf.style2yaml as per the "Migrating Stylesheet Format" section of the manual.
Fixed: An imagine that is too tall in a table cell is now resized to fit.
Fixed: rst2pdf now writes to stdout again
Fixed: Ensure table columns are wide enough for use
Fixed: Better error messages for malformed RST
Fixed: The Sphinx versionadded & versionchanged directives work again
Fixed: Hyperlinks with embedded internal link aliases no longer crash.
Fixed: A more sensible error message is displayed when importing an extension fails
Fixed: If rst2pdf errors, it should now return a non-zero status code.
Fixed: Various documentation improvements
Fixed: Addressed regular expression FutureWarning.
Removed: Documentation related to kerning has been removed as it depended on word-axe which is longer
2022-05-10 07:21:45 +00:00
pin
ac06ecc162 Add hck 2022-05-09 21:53:38 +00:00
pin
43a35b54ea textproc/hck: import pkg
hck is a shortening of hack, a rougher form of cut.

A close to drop in replacement for cut that can use a regex delimiter instead
of a fixed string. Additionally this tool allows for specification of the order
of the output columns using the same column selection syntax as cut.

No single feature of hck on its own makes it stand out over awk, cut, xsv or
other such tools. Where hck excels is making common things easy, such as
reordering output fields, or splitting records on a weird delimiter. It is
meant to be simple and easy to use while exploring datasets. Think of this as
filling a gap between cut and awk.
2022-05-09 21:52:34 +00:00
pin
4646291a74 textproc/lok: update to 0.2.1
No changelog provided.
2022-05-09 21:47:01 +00:00
adam
b5207636fd ugrep: updated to 3.7.10
v3.7.10

Updated option -Z (--fuzzy) can now be combined with -U (--binary) to fuzzy match bytes instead of Unicode characters. Additional --stats results with total lines searched and matched, and time elapsed. New complementary options --min-depth, --max-depth, --min-line and --max-line which are added for consistency with the updated options --min-count and --max-count. Updated the --min-count option, which can now be combined with any other option except with -v (--invert-match). Updated option -K (--range) to take a MAX argument instead of a FIRST argument for consistency with other min/max options. Recursive searching sysfd, such as /proc and /sys, no longer blocks on special files/devices. Fixed inconsistent colorization with option -v when used with context options -A, -B and -C. Fixed option -r when combined with file argument - (read standard input), which does both, like GNU grep. Other minor improvements and fixes.
2022-05-09 11:19:31 +00:00
nikita
7b4a8d4617 guile-json: Update to 4.7.1
Changelog (adapted from ChangeLog file):

4.7.1:
  records: allow optional nested records
  json/record.scm: Fix spelling of "Additionally".
2022-05-09 08:45:39 +00:00
adam
ad5bbbf3b9 yq: updated to 2.14.0
Changes for v2.14.0
- Support binary and set tags.
2022-05-09 08:21:22 +00:00
adam
8411967d0f py-xmltodict: updated to 0.13.0
v0.13.0

Add install info to readme for openSUSE.
Support defaultdict for namespace mapping
parse(generator) is now possible
Processing comments on parsing from xml to dict
Add expand_iter kw to unparse to expand iterables
Fixed some typos
Add support for python3.8
Drop Jython/Python 2 and add Python 3.9/3.10.
Drop OrderedDict in Python >= 3.7
Do not use len() to determine if a sequence is empty
Add more namespace attribute tests
Fix encoding issue in setup.py
2022-05-09 08:13:02 +00:00
adam
919034c0f1 py-tinycss2: updated to 1.1.1
Version 1.1.1
-------------
* Add support of Python 3.10.
* Include tests in source package.
2022-05-09 08:09:19 +00:00
pin
d299fa6ce3 textproc/bk: reset maintainer 2022-05-08 09:13:35 +00:00
pin
7a20405bcf textproc/angle-grinder: declare c-toolchain 2022-05-08 09:12:21 +00:00
jperkin
a6b2f40aad hyperestraier: Use correct ARFLAGS on SunOS. 2022-05-06 06:55:59 +00:00
gutteridge
dc13532f15 libxml2: update to 2.9.14, includes security fixes
v2.9.14: May 02 2022:
   - Security:
  [CVE-2022-29824] Integer overflow in xmlBuf and xmlBuffer
  Fix potential double-free in xmlXPtrStringRangeFunction
  Fix memory leak in xmlFindCharEncodingHandler
  Normalize XPath strings in-place
  Prevent integer-overflow in htmlSkipBlankChars() and xmlSkipBlankChars()
    (David Kilzer)
  Fix leak of xmlElementContent (David Kilzer)

   - Bug fixes:
  Fix parsing of subtracted regex character classes
  Fix recursion check in xinclude.c
  Reset last error in xmlCleanupGlobals
  Fix certain combinations of regex range quantifiers
  Fix range quantifier on subregex

   - Improvements:
  Fix recovery from invalid HTML start tags

   - Build system, portability:
  Define LFS macros before including system headers
  Initialize XPath floating-point globals
  configure: check for icu DEFS (James Hilliard)
  configure.ac: produce tar.xz only (GNOME policy) (David Seifert)
  CMakeLists.txt: Fix LIBXML_VERSION_NUMBER
  Fix build with older Python versions
  Fix --without-valid build
2022-05-06 00:55:54 +00:00
fcambus
e856606c51 py-prettytable: update to 3.3.0.
Added:

- Support Python 3.11
- Add flag to preserve internal borders when border=False

Fixed:

- Alignment timing fix
2022-05-05 21:02:17 +00:00
jaapb
58d7829642 Updated textproc/ocaml-csv to version 2.4.
This introduces compatilibity with later OCaml verions (post-4.08), and
several other minor bugfixes and changes.
2022-05-05 12:00:47 +00:00
jaapb
5f6c102297 Updated devel/ocaml-textutils to version 0.15.0.
There is no changelog, but upstream changes are minor except for
dependency changes.
2022-05-05 11:22:01 +00:00
jaapb
01d601ea77 Created new package textproc/ocaml-textutils_kernel, version 0.15.0.
This contains the functions of textproc/ocaml-textutils that work with
javascript.
2022-05-05 11:08:13 +00:00
jaapb
a569fc63a8 Added ocaml-textutils_kernel to Makefile SUBDIRs 2022-05-05 11:03:10 +00:00
pin
617760d637 textproc/angle-grinder: fix broken build 2022-05-05 06:59:17 +00:00
taca
6ba80386e8 Update rest of Ruby on Rails 70 components.
No change except version.
2022-05-05 03:41:41 +00:00
taca
efdf82d835 textproc/ruby-actiontext61: update to 6.1.5.1
## Rails 6.1.5.1 (April 26, 2022) ##

*   No changes.


## Rails 6.1.5 (March 09, 2022) ##

*   Fix Action Text extra trix content wrapper.

    *Alexandre Ruban*
2022-05-05 03:33:27 +00:00