Commit graph

12701 commits

Author SHA1 Message Date
taca
8f049f84b5 lang/php80: update to 8.0.5
29 Apr 2021, PHP 8.0.5

- Core:
  . Fixed bug #75776 (Flushing streams with compression filter is broken). (cmb)
  . Fixed bug #80811 (Function exec without $output but with $restult_code
    parameter crashes). (Nikita)
  . Fixed bug #80814 (threaded mod_php won't load on FreeBSD: No space
    available for static Thread Local Storage). (Dmitry)
  . Changed PowerPC CPU registers used by Zend VM to work around GCC bug.
    Old registers (r28/r29) might be clobbered by _restgpr routine used for
    return from C function compiled with -Os. (Dmitry)

- Dba:
  . Fixed bug #80817 (dba_popen() may cause segfault during RSHUTDOWN). (cmb)

- DOM:
  . Fixed bug #66783 (UAF when appending DOMDocument to element). (cmb)

- FFI:
  . Fixed bug #80847 (CData structs with fields of type struct can't be passed
    as C function argument). (Nickolas Daniel da Silva, Dmitry)

- FPM:
  . Fixed bug #80024 (Duplication of info about inherited socket after pool
    removing). (Jakub Zelenka)

- FTP:
  . Fixed bug #80880 (SSL_read on shutdown, ftp/proc_open). (cmb, Jakub
    Zelenka)

- IMAP:
  . Fixed bug #80800 (imap_open() fails when the flags parameter includes
    CL_EXPUNGE). (girgias)
  . Fixed bug #80710 (imap_mail_compose() header injection). (cmb, Stas)

- Intl:
  . Fixed bug #80763 (msgfmt_format() does not accept DateTime references).
    (cmb)

- LibXML:
  . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb)
  . Fixed bug #51903 (simplexml_load_file() doesn't use HTTP headers). (cmb)

- MySQLnd:
  . Fixed bug #80837 (Calling stmt_store_result after fetch doesn't throw an
    error). (Kamil Tekiela)

- Opcache:
  . Fixed bug #80839 (PHP problem with JIT). (Dmitry)
  . Fixed bug #80861 (erronous array key overflow in 2D array with JIT).
    (Dmitry)
  . Fixed bug #80786 (PHP crash using JIT). (Nikita)
  . Fixed bug #80782 (DASM_S_RANGE_VREG on PHP_INT_MIN-1). (Dmitry)

- Pcntl:
  . Fixed bug #79812 (Potential integer overflow in pcntl_exec()). (cmb)

- PCRE:
  . Fixed bug #80866 (preg_split ignores limit flag when pattern with \K has
    0-width fullstring match). (Kamil Tekiela)

- PDO_ODBC:
  . Fixed bug #80783 (PDO ODBC truncates BLOB records at every 256th byte).
    (cmb)

- PDO_pgsql:
  . Fixed bug #80892 (PDO::PARAM_INT is treated the same as PDO::PARAM_STR).
    (Matteo)

- Session:
  . Fixed bug #80889 (Cannot set save handler when save_handler is invalid).
    (cmb)
  . Fixed bug #80774 (session_name() problem with backslash). (cmb)

- SOAP:
  . Fixed bug #69668 (SOAP special XML characters in namespace URIs not
    encoded). (cmb)

- Standard:
  . Fixed bug #80915 (Taking a reference to $_SERVER hides its values from
    phpinfo()). (Rowan Tommins)
  . Fixed bug #80914 ('getdir' accidentally defined as an alias of 'dir').
    (Rowan Tommins)
  . Fixed bug #80771 (phpinfo(INFO_CREDITS) displays nothing in CLI). (cmb)
  . Fixed bug #78719 (http wrapper silently ignores long Location headers).
    (cmb)
  . Fixed bug #80838 (HTTP wrapper waits for HTTP 1 response after HTTP 101).
    (manuelm)

- Zip:
  . Fixed bug #80825 (ZipArchive::isCompressionMethodSupported does not exist).
    (cmb)
2021-04-30 14:59:15 +00:00
taca
92ab75f869 lang/php74: update to 7.4.18
29 Apr 2021, PHP 7.4.18

- Core:
  . Fixed bug #80781 (Error handler that throws ErrorException infinite loop).
    (Nikita)
  . Fixed bug #75776 (Flushing streams with compression filter is broken). (cmb)

- Dba:
  . Fixed bug #80817 (dba_popen() may cause segfault during RSHUTDOWN). (cmb)

- DOM:
  . Fixed bug #66783 (UAF when appending DOMDocument to element). (cmb)

- FPM:
  . Fixed bug #80024 (Duplication of info about inherited socket after pool
    removing). (Jakub Zelenka)

- FTP:
  . Fixed bug #80880 (SSL_read on shutdown, ftp/proc_open). (cmb, Jakub
    Zelenka)

- Imap:
  . Fixed bug #80710 (imap_mail_compose() header injection). (cmb, Stas)

- Intl:
  . Fixed bug #80763 (msgfmt_format() does not accept DateTime references).
    (cmb)

- LibXML:
  . Fixed bug #51903 (simplexml_load_file() doesn't use HTTP headers). (cmb)
  . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb)

- MySQLnd:
  . Fixed bug #80713 (SegFault when disabling ATTR_EMULATE_PREPARES and
    MySQL 8.0). (Nikita)
  . Fixed bug #80837 (Calling stmt_store_result after fetch doesn't throw an
    error). (Kamil Tekiela)

- Opcache:
  . Fixed bug #80805 (create simple class and get error in opcache.so). (Nikita)
  . Fixed bug #80950 (Variables become null in if statements). (Nikita)

- Pcntl:
  . Fixed bug #79812 (Potential integer overflow in pcntl_exec()). (cmb)

- PCRE:
  . Fixed bug #80866 (preg_split ignores limit flag when pattern with \K has
    0-width fullstring match). (Kamil Tekiela)

- PDO_ODBC:
  . Fixed bug #80783 (PDO ODBC truncates BLOB records at every 256th byte).
    (cmb)

- PDO_pgsql:
  . Fixed bug #80892 (PDO::PARAM_INT is treated the same as PDO::PARAM_STR).
    (Matteo)

- phpdbg:
  . Fixed bug #80757 (Exit code is 0 when could not open file). (Felipe)

- Session:
  . Fixed bug #80774 (session_name() problem with backslash). (cmb)
  . Fixed bug #80889 (Cannot set save handler when save_handler is invalid).
    (cmb)

- SOAP:
  . Fixed bug #69668 (SOAP special XML characters in namespace URIs not
    encoded). (cmb)

- Standard:
  . Fixed bug #78719 (http wrapper silently ignores long Location headers).
    (cmb)
  . Fixed bug #80771 (phpinfo(INFO_CREDITS) displays nothing in CLI). (cmb)
  . Fixed bug #80838 (HTTP wrapper waits for HTTP 1 response after HTTP 101).
    (manuelm)
  . Fixed bug #80915 (Taking a reference to $_SERVER hides its values from
    phpinfo()). (Rowan Tommins)
2021-04-30 14:56:26 +00:00
rjs
e003829adc Update to version 2.1.4.
New in version 2.1.4

    * platform support:
        * work around address-space randomization causing instability
          on new versions of MinGW. (#1921141)
    * bug fix: RANDOM on floats returns values strictly less than the
      float argument.
    * bug fix: compiler error on x86-64 resulting from attempting to
      zero a memory location with xor. (reported by Eric Marsden)
    * optimization: extended loops updating iteration variables with
      THEN can perform specialized arithmetic for those updates.
    * optimization: in some cases, the jump table resulting from a
      compilation of TYPECASE is simpler.
    * optimization: on x86-64, IF BOUNDP followed by SYMBOL-VALUE can
      elide some memory loads and tests.

New in version 2.1.3

    * minor incompatible change: support for the
      :SB-SAFEPOINT-STRICTLY, :SB-THRUPTION, and :SB-WTIMER build
      features has been removed
    * platform support:
        * support for :SB-CORE-COMPRESSION on Darwin/ARM64
        * support ARM v8.1 atomic and compare-and-swap instructions
        * x86, x86-64: microoptimizations in multiple type-checking routines
    * bug fix: structures and conditions are now TYPEP all
      classes in the class precedence list of their
      class. (reported by Luis Oliveira)
    * bug fix: derivation of the result type from subtraction
      sometimes erroneously excluded zero. (#1916895)
    * bug fix: reduce the number of places where the system
      permissively accepts the symbol * as a type specifier where
      it should not be accepted. (#1860919)
    * bug fix: the code-walker used by the system's
      implementation of CLOS can handle defuns declared
      inline. (reported by Don Cohen)
    * optimization: EQUALP on specialized vectors and arrays is faster.
    * optimization: support routines for EQUALP hash tables
      generate less garbage.

New in version 2.1.2

    * platform support:
        * support for ARM64 macOS;
        * improvement in coverage mark implementation on non-x86oid backends,
          approaching the existing x86oid support;
        * more empirically-robust retrieval of the program counter from
          illegal instruction traps on SPARC;
        * retain fewer dead objects when saving cores with precise collectors.
    * incompatible change: MAP-ALL-SAMPLES and MAP-TRACE-SAMPLES
      are no longer present in the SB-SPROF contrib module.
    * minor incompatible change: SB-SPROF:WITH-PROFILING defaults
      to all threads. SB-SPROF:START-PROFILING no longer accepts
      a :SAMPLING keyword.
    * enhancement: the sb-introspect contrib now supports finding
      the lambda lists of method combinations. (thanks to Didier
      Verna)
    * enhancement: short-form DEFSETF now stores a source-location.
    * bug fix: canonical unions of CONS types were being
      incorrectly computed. (#1912863, reported by James
      Kalenius)
    * bug fix: better understanding of array simplicity (or
      otherwise) in the type system. (#1903241)
    * bug fix: unions of rational and integer types now have a
      single canonical form, allowing more correct reasoning
      about them in the type system.
    * bug fix: less likely to overclaim certainty about type
      equality of union types. (#1916040)
    * bug fix: HANDLER-BIND evaluates the forms producing handler
      functions only once. (#1916302, reported by Christophe
      Junke)
    * optimization: FIND on constant sequences can be compiled
      into a jump table, in a similar manner to POSITION
    * optimization: the compiler's awareness of numeric contagion
      rules for operations on pairs of floating point numbers is
      improved. (#1914094, thanks to Andrew Berkley)

New in version 2.1.1

    * platform support:
        * restore non-threaded NetBSD builds;
        * adjust how the finalizer thread is started; (#1906571, #1907872)
        * fix the encoding of PEXTR on x86-64;
    * minor incompatible change: emit warnings for list iteration
      forms when the object being iterated over is known not to be a
      list. (#1908819, reported by Michael Fiano)
    * bug fix: detect 2 or 1 as an invalid number of arguments passed
      to optimized slot reading or writing effective method
      respectively. (#1909659, reported by Michal Herda)
    * bug fix: division by zero errors were in some cases not being
      signalled. (#1910098, reported by il71)
    * bug fix: erroneous coercions in the type system could lose
      precision. (#1910294)
    * bug fix: literal (read-time evaluated) NaNs in source code no
      longer cause compiler crashes. (#1909881, reported by Michal
      Herda)
    * bug fix: detect more erroneous syntax in method
      bodies. (#1912362, reported by Paul M. Rodriguez)
    * optimization: the compiler's understanding of EXPT is improved,
      reducing the introduction of COMPLEX types. (#1908830, reported
      by Michael Fiano)
    * optimization: the compiler is better at computing numeric
      contagion when (COMPLEX FLOAT) types are involved.
    * micro-optimizations:
        * moving from slightly-bigger-than-fixnum ranges is more
          efficient on x86-64;
        * encode character comparisons with smaller operands on x86-64;
        * truncating (and related operations) on floats can be inlined
          in more cases on 64-bit platforms;
        * rounding can use specialized instructions on ARM64 and on
          x86-64 when SSE4 is available;
2021-04-30 13:55:29 +00:00
pho
9c3e0ac1f4 Rebuilt the bootkit for FreeBSD/i386
It was accidentally depending on pkgsrc gmp.
2021-04-30 08:10:24 +00:00
pho
e71d477508 Rebuilt the bootkit for Darwin/x86_64
It was accidentally depending on pkgsrc gmp.
2021-04-30 06:08:19 +00:00
pho
b5dfdf84c3 Add a bootkit for SunOS/x86_64
Also fixed a bug in the previous commit which would produce
non-installable bootkits.
2021-04-30 03:05:30 +00:00
pho
0a69a01785 Apply jperkin@'s $ORIGIN removal patch 2021-04-29 07:02:42 +00:00
pho
7dbad2a71d Eliminate use of @rpath and @loader_path on Darwin
They are essentially equivalent to $ORIGIN of ELF.
2021-04-29 05:09:08 +00:00
tnn
52199b6e47 openjdk8: fix build w/ GCC>=10 2021-04-28 17:32:12 +00:00
pho
bd4c5003f8 Apply jperkin@'s patch to remove $ORIGIN use
On Darwin it still uses @loader_path though. I'm going to handle it later.
2021-04-28 15:39:23 +00:00
pho
6f51e3cece Swith to CHECK_SHLIBS_SUPPORTED=no from individual CHECK_SHLIBS_SKIP list (pkg/56125)
Our binary packages have been broken because of bad "REQUIRES"
entries: GHC uses $ORIGIN in rpath but mk/pkgformat/pkg/metadata.mk
uses ldd(1) to extract the list of required .so objects, which causes
them to be wrongly expanded.
2021-04-27 13:55:25 +00:00
pho
85faa55f9d Added a bootkit for Darwin/x86-64 2021-04-27 11:59:42 +00:00
pho
e06f4f6568 Improve my last patch according to a suggestion from jperkin@ 2021-04-27 10:31:52 +00:00
pho
6f0a0a82a4 Fix build on Darwin 2021-04-27 09:10:07 +00:00
wiz
a1c9228537 parrot: update HOMEPAGE 2021-04-27 07:49:45 +00:00
pho
5a60420e8b Added a bootkit for FreeBSD/amd64 2021-04-27 00:48:17 +00:00
schmonz
14b0563a6c Update to 2.8.0.1. From the changelog:
- Libraries and binaries don't have the .note.GNU-stack section stripped
  anymore. Previously, "make strip" would strip that section, which
  would sometimes (depending on the toolchain) cause binaries to be
  incorrectly tagged as needing an executable stack. This is not a
  security issue in itself, but an executable stack makes it easier for
  an attacker to turn bugs into exploits, so it should be avoided
  whenever possible. Thanks to Xavier Stonestreet for reporting and
  finding the cause of the problem.

- Link tests are now performed with a regular file as their
  output, instead of /dev/null, which makes them more portable to
  old/buggy linkers.

Bump default BUILDLINK_API_DEPENDS to match.
2021-04-26 15:02:52 +00:00
pho
3e9c171043 Add a bootkit for FreeBSD-*-i386 2021-04-26 07:41:21 +00:00
nia
b2480065d1 perl5: avoid hardcoding path to pwd 2021-04-25 16:56:44 +00:00
pho
b1d825ffcb Update to idris-1.3.3
* Updated to work with GHC 8.8 and cabal 3.0
* Bugfixes and documentation updates
2021-04-25 11:39:03 +00:00
nia
5730aac9df rust-bin: sync with lang/rust by updating to 1.50.0 2021-04-25 10:50:57 +00:00
mrg
0a843265c7 various fixes for arm64 big endian support.
most of these simply extend matching from "aarch64" to "aarch64eb"
in various forms of code.  most remaining uses in pkgsrc of
"MACHINE_ARCH == aarch64" are because of missing aarch64eb support,
such as most of the binary-bootstrap requiring languages like rust,
go, and java.

no pkg-bump because this shouldn't change packages on systems that
could already build all of these.
2021-04-25 07:51:24 +00:00
mrg
59bbf085d1 extend the arm64 vs GCC hack to arm64eb, but also disable it from GCC 10
onwards -- the problem is no longer present.
2021-04-25 07:23:09 +00:00
wiz
5350451c9c STk: remove dead links 2021-04-25 06:39:01 +00:00
wiz
deca282459 kaffe: remove dead download link 2021-04-24 11:49:19 +00:00
wiz
dd8f06f1c1 cu-prolog: remove dead download link 2021-04-24 11:41:29 +00:00
wiz
d7d7c2c0bf umb-scheme: remove dead download link 2021-04-24 10:39:59 +00:00
wiz
1e67ab2bd0 sr*: remove dead download links, update HOMEPAGE 2021-04-24 09:41:23 +00:00
mrg
8e988a6631 pull in fixes for arm64eb from netbsd src. 2021-04-24 09:35:31 +00:00
schmonz
bef258a4d4 Add another post-install dylib rpath fixup for macOS (libserde_derive).
Bump PKGREVISION.
2021-04-24 08:27:59 +00:00
rin
45b80efa9f nodejs: fix previous; bump revision to nb3. 2021-04-24 06:32:00 +00:00
rin
26787661e9 nodejs: Fix support for NetBSD/aarch64. Bump revision.
- Fix malformed preprocessor directive: ``#ifdef FOO && BAR''
- Use V8_OS_NETBSD instead of defined(__NetBSD__) consistently where appropriate

XXX
Unfortunately, nodejs does not work for aarch64eb yet.
We need to add big-endian support to built-in assembler.
2021-04-24 06:30:28 +00:00
wiz
8f69160359 p2c: remove dead download link 2021-04-23 23:44:38 +00:00
nia
1bf62ee83c pyversion.mk: handle more cmake module goop 2021-04-23 19:20:08 +00:00
nia
9acd467493 rust: add some more arm and aarch64 targets
not tested, so not added to platforms.mk for now.
2021-04-23 11:41:55 +00:00
pho
37f83d1938 Update to hslua-1.3.0.1
1.3.0.1: Released 2021-02-06
* Fixed build with GHC 9.0.1 (Simon Jakobi).
* Improved test-suite; fixed memory leaks in some tests.
* Moved CI to GitHub Actions.

1.3.0: Released 2020-10-16
* Upgrade included Lua version to new bug-fix release 5.3.6. See the
  upstream documentation https://www.lua.org/bugs.html#5.3.5 for the
  bugs which have been fixed.
* Stop exporting c_loaded_table and c_prelad_table from module
  Foreign.Lua.Raw.Auxiliary. Both values are defined only if the flag
  HARDCODE_REG_KEYS is disabled, leading to compilation errors when
  the flag is enabled.
* Add new function peekStringy to Peek module. It allows to peek a
  value of any IsString type from an UTF-8 encoded string.
* Various improvements to the continuous integration setup, including
  cleanup of the config files, version bumps to the ghc/cabal versions
  used for testing, and running the linter in a dedicated GitHub
  Action.

1.2.0: Released 2020-08-15
* New module Foreign.Lua.Call: the module offers an alternative method
  of exposing Haskell functions to Lua. The focus is on
  maintainability: types and marshaling methods are made explicit; the
  possibility of adding documentation and parameter names improves
  error messages and allows for automatic documentation extraction.

  Work on this module is ongoing; the interface is likely to
  change. Suggestions and feedback are welcome.
* New types Module, Field, and new functions registerModule,
  preloadModule, pushModule, and render exported from
  Foreign.Lua.Module: this builds on the new Call module and allows
  the creation of documented modules as well as automatic generation
  of Markdown-formatted module documentation.
* Export new items nth and top from Foreign.Lua.Core and
  Foreign.Lua. They are short-hands for nthFromTop and stackTop.
* Performance improvements: Calling of Lua functions and creation of
  Haskell data wrapping userdata has been sped up by about 10%. This
  is mostly due to using of previously missed optimization
  opportunities.
* All foreign imports have been moved to into the new Foreign.Lua.Raw
  module. This module will replace the current Foreign.Lua.Core module
  in the future and will be distributed as a separate package (likely
  starting with the 2.0 release); the remaining parts of the current
  Core module will be promoted one level in the module hierarchy.
* The Raw module can be used whenever the full power of HsLua is not
  needed.
* Error-signaling of API wrapper functions has been changed: instead
  of returning special integer values, functions now take an
  additional pointer argument, which is set to the status result of
  the computation.
* The Failable type in Core.Error is no longer needed and has been
  removed.
* CI builds now include GHC 8.8 and GHC 8.10, ensuring that all GHC
  8.* versions are supported.

1.1.2: Released 2020-06-27
* Revert signature of function pushList to it's proper 1.1 value. This
  fixes a mistake which caused the 1.1.1 release to be in violation of
  the PVP versioning policy.
* Module Foreign.Lua.Peek: add function pushKeyValuePairs (Alex
  Loomis).

1.1.1: Released 2020-06-02

WARNING: This version does not conform to the PVP versioning policy,
due to a unintended signature change of function pushList. It is
recommended not to use this version.

* New module Foreign.Lua.Push: provides functions which marshal and
  push Haskell values onto Lua's stack.
* Most functions in Foreign.Lua.Types.Pushable are now defined using
  functions from this module.
* New module Foreign.Lua.Peek: provides functions which unmarshal and
  retrieve Haskell values from Lua's stack. Contrary to peek from
  Foreign.Lua.Types.Peekable, the peeker functions in this module will
  never throw errors, but use an Either type to signal retrieval
  failure.
* The error type PeekError should not be considered final and will
  likely be subject to change in later versions.
* Module Foreign.Lua.Utf8: never throw errors when decoding UTF-8
  strings. Invalid UTF-8 input bytes no longer cause exceptions, but
  are replaced with the Unicode replacement character U+FFFD.
* Fixed missing and faulty Haddock documentation.
* Fixed a bug which caused unnecessary use of strings to represent
  floating point numbers under certain configurations.

1.1.0: Released 2020-03-25.

WARNING: The changes in this release are experimental. It is
recommended to skip this release unless the newly introduced features
are required.

* Allow custom error handling: conversion of Lua errors to Haskell
  exceptions and back is made configurable. Users can define their own
  exception/error handling strategies, even opening up the option to
  pass arbitrary exceptions through Lua.
  - New types exported from Foreign.Lua.Types:
    * ErrorConversion: defines the ways in which exceptions and errors
      are handled and converted.
    * LuaEnvironment: environment in which Lua computations are
      evaluated. Contains the Lua interpreter state and the error
      conversion strategy.
  - The environment of the Lua type is changed from a plain Lua State
    to the above mentioned LuaEnvironment.
  - New functions run' is exported from Foreign.Lua.Util and
    Foreign.Lua: it is analogous to run, but allows to run
    computations with a custom error conversion strategy.
  - New function runWithConverter exported from Foreign.Lua.Core.Types
    and Foreign.Lua.Core; like run', but takes a custom state.
  - New function unsafeRunWith exported from Foreign.Lua.Core.Types
    and Foreign.Lua.Core; runs a computation without proper error
    handling.
  - New function errorConversion exported from Foreign.Lua.Core.Types
    and Foreign.Lua.Core: extract the error conversion strategy from
    the Lua type.
  - New function throwErrorAsException exported from
    Foreign.Lua.Core.Error and Foreign.Lua.Core: throws a Lua error as
    Haskell exception, using the current error conversion strategy.
  - Function runWith is moved from module Foreign.Lua.Core to
    Foreign.Lua.Util.
  - The module Foreign.Lua.Utf8 is now exported.
2021-04-23 09:47:37 +00:00
nia
bc3872542a rust: Update supported platforms 2021-04-23 08:52:12 +00:00
adam
17d9af6949 npm: updated to 6.14.13
6.14.13 (2021-04-08)

DEPENDENCIES

285ab3f65 hosted-git-info@2.8.9
63b5c56c5 ssri@6.0.2
2021-04-23 07:15:49 +00:00
pho
13e4fbd350 Drop run-time dependency on perl
GHC has stopped requiring perl since 8.2.1 release. The last component
written in Perl was the evil splitter (-fsplit-objs), which has been
superseded by -fsplit-sections. Hooray!
2021-04-23 00:08:02 +00:00
pho
48bcbf609e Enable PaX MPROTECT and ASLR for everything but ghc-iserv and ghc-iserv-prof
Now that allocateExec() in rts/sm/Storage.c uses libffi to map executable
pages, we no longer have to disable these protections unless the RTS linker
is to be used.
2021-04-22 18:15:00 +00:00
ryoon
b4b80d8c14 nodejs: Add a patch really and remove obsolete comment
Noticed by adam@. Thank you.
2021-04-22 17:33:04 +00:00
ryoon
e365802e9e nodejs: Fix build with icu-69.1
* Backported from nodejs-16.0.0.
* Internal icu is not built under NetBSD/amd64 9.99.81 at least.
2021-04-22 15:52:25 +00:00
ryoon
a5a4742bdb mozjs78: Fix build with recent cargo from lang/rust 2021-04-22 15:50:51 +00:00
pho
210df64d96 Implement getNumberOfProcessors() for NetBSD 2021-04-22 14:20:23 +00:00
adam
31e50eccdc gcc10: fix building for any zlib 2021-04-22 12:08:16 +00:00
adam
da0a125726 revbump for boost-libs 2021-04-21 13:24:06 +00:00
adam
9d0e79c401 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
wiz
d257b8d322 *: remove dead download site 2021-04-21 08:44:30 +00:00
wiz
cd7104a6f7 vala: update to 0.52.2.
Vala 0.52.2
===========
 * Regression and bug fixes:
  - codegen:
    + Don't free temp-var for element-access to array with boxed structs [#1174]
    + Don't free unowned heap allocated struct

 * Bindings:
  - glib-2.0: Add simple_generics attribute to GenericArray.find_custom()
2021-04-20 16:19:31 +00:00
he
63e442989a Fix errors and most warnings flagged by pkglint.
Note to self: run pkglint before committing.
Thanks to jperkin@ for the note.
2021-04-20 11:54:32 +00:00