Commit graph

335676 commits

Author SHA1 Message Date
mef
98ce4710cc (devel/go-thrift) regen PLIST 2021-03-28 03:11:29 +00:00
mef
208691092f (devel/pointfree) +.include hs-haskell-src-exts/buildlink3.mk 2021-03-28 03:00:17 +00:00
mef
e2bacf1cd8 (databases/sqlrelay-nodejs) +DEPENDS+= http-parser-[0-9], not packaged yet 2021-03-28 02:33:10 +00:00
wen
adb3c51f5c Updated time/p5-DateTime-Format-Strptime to 1.78 2021-03-28 00:21:00 +00:00
wen
ba9a0eaa82 Update to 1.78
Update DEPENDS

Upstream changes:
1.78     2020-12-15

* Fix tests for new failure caused by locale data changes in DateTime::Locale
  1.29. Reported by cthulhu8zombie. GH #28.

* Added a warning about using locale-specific patterns. Some of these patterns
  can change quite a bit as the locale data is updated, so using them for
  parsing does not produce stable results across time. This is what caused the
  test failures that this release fixes.
2021-03-28 00:17:53 +00:00
wen
ca769ddfe8 Updated time/p5-DateTime-Locale to 1.31 2021-03-28 00:14:23 +00:00
wen
f9f07a990a Update to 1.31
Upstream changes:
1.31     2020-12-22

- The docs for each locale now show examples of its strftime patterns as well.


1.30     2020-12-15

- The previous release included some locale data for locales that had been
  deleted from CLDR 38.0.0.


1.29     2020-12-14

- Rebuilt all locale data with the data from CLDR 38.0.0 and glibc 2.32.
2021-03-28 00:13:28 +00:00
mef
94a8cf898f (databases/php-redis) +.include php-json/buildlink3.mk 2021-03-28 00:05:47 +00:00
wen
57e7c6a339 Updated time/p5-DateTime-Format-Pg to 0.16014 2021-03-27 23:57:53 +00:00
wen
e57351c828 Update to 0.16014
Upstream changes:
0.16014 2021-03-15T13:37:16Z
    - Fix handling for fractional seconds (#17)
    - Accept concatenated dates (#18)
2021-03-27 23:56:50 +00:00
wen
efe4df94b4 Updated time/p5-DateTime-Format-Natural to 1.12 2021-03-27 23:53:11 +00:00
wen
8ba806de1d Update to 1.12
Upstream changes:
1.12  2021-03-19  <schubiger@cpan.org>

 - Merged development version to stable.

1.11_03  2021-03-13  <schubiger@cpan.org>

 - Refactor extracting duration.

 - Don't try to trim the extract string twice.

 - Amend documentation of ::Utils.

1.11_02  2020-10-16  <schubiger@cpan.org>

 - Introduce utility function trim().

1.11_01  2020-10-03  <schubiger@cpan.org>

 - Assert that error() returns '' on success.
2021-03-27 23:52:15 +00:00
mef
778fd303ac (geography/viking) +BUILD_DEPENDS+= itstool-[0-9]*, (DEPENDS+= ?) 2021-03-27 23:49:17 +00:00
wen
707ae8c2f7 Updated time/p5-DateTime-Calendar-Julian to 0.104 2021-03-27 23:45:24 +00:00
wen
026d21ad5e Update to 0.104
Upstream changes:
0.104           2021-03-15      T. R. Wyant
    Add rt.cpan.org back to bug reporting methods. Long live RT!

    Correct GitHub ticket link.

    Get prerequisites up to snuff and add xt/author/prereq.t to ensure
    they stay that way.
2021-03-27 23:44:41 +00:00
wen
6d0d804a49 Updated textproc/p5-PDF-Table to 1.002 2021-03-27 23:35:06 +00:00
wen
14e2db1b1d Update to 1.002
Upstream changes:
=== Version 1.002 (2020-12-27)

 README.md, lib/PDF/Table.pm, Makefile.PL
  Miscellaneous updates to clean up support URLs, emails, etc.

 util/pod2cpanhtml.pl
  Remove use of search.cpan.org CSS reference, as that site no longer exists.
   Looking for a good replacement, possibly Bootstrap, that doesn't require
   that a phone be turned to landscape orientation in order to read text at
   a decent size.

 lib/PDF/Table.pm
  Cells spanning columns only had the first part (cell) of the bottom
   horizontal rule drawn. Reported by "stefanalt". Fixed to draw full spanned
   width.

 t/PDF-Table.t
  One calculated value was considerably different between standard Perl (uses
   doubles for floats), long-double Perl, and quad-math Perl. Round the
   calculated value to 6 decimal digits so that it works on any system.
2021-03-27 23:34:09 +00:00
wen
a3363d1a34 Updated textproc/p5-PDF-API2 to 2.039 2021-03-27 23:32:17 +00:00
wen
8fa5410ffa Update to 2.039
Upstream changes:
2.039     2021-03-04

    - PDF::API2->open($filename) no longer reads the entire file into memory
      before working on it, instead reading from the file as needed.  This
      results in a substantial reduction in memory usage and start-up time for
      large PDF files, particularly in cases where the calling script doesn't
      need to access all of the contents of the PDF.

    - PDF files containing cross-reference streams can now be modified and saved
      normally.  Previously, they were read-only.

    - $text->paragraph(...) and $text->paragraphs(...) (formerly "section") are
      no longer undocumented and experimental.  If you were previously using
      them at your own risk, note that "-spillover" is no longer an option (text
      will always wrap inside the specified width if possible).  In addition,
      paragraphs(...) no longer collapses consecutive newlines.

    - [RT #98546] There is now an -align-last option for justified text to
      specify how the final line should be justified.  Left is still the
      default.

    - Code in the PDF::API2::Basic::PDF namespace was originally licensed under
      the Perl Artistic License, which has been determined to not be
      (L)GPL-compatible.  Martin Hosken has graciously granted an MIT license
      for use of his code contained in PDF::API2, so the distribution may now be
      used solely under the terms of the LGPL rather than requiring both
      licenses simultaneously.  Many thanks to Petr Pisar for his help in
      working through the licensing issues.

    - Renamed $text->lead(...) to $text->leading(...).  The old name is
      deprecated but will continue to work.  If you're modifying PDF::API2
      objects by editing their hash values instead of using these accessors,
      you'll need to update your code.

    - Added a -compress option (on by default) to PDF::API2->new(), open(), and
      open_scalar().  If disabled, most streams won't be compressed, which can
      simplify debugging.
2021-03-27 23:31:07 +00:00
mef
ae7735fd00 (www/nsm) regen distinfo 2021-03-27 23:18:59 +00:00
mef
890aacf8b5 (emulators/PC6001VX) update MASTER_SITES 2021-03-27 23:17:03 +00:00
mef
1f0c1dcc35 (security/volatility) regen distinfo, correct ? 2021-03-27 23:07:56 +00:00
pin
491ab33bd8 textproc/bk: add update warning
Newer versions require rust-1.51, I will update the package
when rust-1.51 is default.
2021-03-27 17:01:23 +00:00
fox
8ecfeb55b9 doc: Updated print/foliate to 2.6.2 2021-03-27 08:20:58 +00:00
fox
7cabfd918e print/foliate: Updates to 2.6.2
Changes since 2.5.0:

2.6.2

Changes:

  * Fix UI when running with libhandy 1.x

2.6.1

Changes:

  * Fixed automatic layout

2.6.0

Changes:

  * Added support for opening HTML files (#641)
  * Consistent inner and outer margins (#255)
  * The automatic layout no longer supports 4 columns (58d5e50)
  * Fixed long words overflowing (#654)
  * Fixed custom themes not saved across sessions (#660)
  * Fixed shortcuts for key pads (#677)
  * Fixed opening non-UTF-8 zipped FB2 files (#629)
  * Fixed books not opening on GNOME 40 (#689)
2021-03-27 08:18:29 +00:00
thor
d804aa5612 doc: Updated math/py-numpy to 1.19.5nb2 2021-03-26 20:34:39 +00:00
thor
d16d888673 math/py-numpy: hotfix for building py-scipy
The downstream configure code freaked out when info['define_macros'] was not set.
It is now defined and empty.

I hope it's fine to just push this without further notice.

Build was confirmed by oster on NetBSD-9.1/amd64 and tested by me
on Linux/amd64.
2021-03-26 20:34:28 +00:00
gdt
b2029f2122 guide: Note that "make regen" will commit the new versions
It seemed obvious to me that regen would create the files, so they
could be reviewed, and that one would then commit them manually.  Warn
the next person...
2021-03-26 17:44:56 +00:00
gdt
d20e4a1e22 guide: Modernize MESSAGE section
Based on tech-pkg traffic over the last few years that appears to have
rough consensus, adjust MESSAGE section to explain that it should only
be used for exceptional circumstances, and specifically not to
substitute for documentation that belongs in the package's docdir.
2021-03-26 17:43:20 +00:00
gdt
e1e56cd598 doc/pkgsrc.*: regen 2021-03-26 17:40:36 +00:00
ryoon
ab2b92f66a doc: LLVM 11.1.0 is available 2021-03-26 13:15:05 +00:00
wiz
b8f5703e99 doc/TODO: + expat-2.3.0. 2021-03-26 09:47:50 +00:00
fox
bb4403293c doc: Updated emulators/cannonball to 0.32 2021-03-26 08:54:36 +00:00
fox
3e421f1089 emulators/cannonball: Updates to 0.32
Changes since 0.31:

Controller Improvements & Rumble Support

This release focuses on Controller Support & Improvements.

Please replace your old config.xml file when upgrading to this release.

  * [Controllers] Basic rumble support can now be enabled from the CONTROLS
    menu. The strength can be adjusted. The code that controls the rumble is
    identical to that of the upright arcade machine motor shaker. The option
    will only show in the menu if your controller is supported.
  * [Controllers] Auto-detection and assignment of controller buttons and axis
    should be much improved. I will update the manual to call out the default
    controls in due course. (Right trigger = accelerate, Left trigger = brake,
    Start = Start, Back = Menu, A = Gear Change, X = Change View, Y = Coin).
    These can be redefined as desired.
  * [Controllers] D-Pad can be used in menus.
  * [Menus] Gamepad/Joystick settings has its own menu.
  * [Menus] Ensure that 'A' button on controllers can be used to select items.
    Analog accelerate is now only used when run via original arcade cabs as
    it's not optimal.
  * [Rom Loader] Sped up CRC32 based loading by using a Hashmap. It was
    reportedly slow when used over a network.
  * [Rom Loader] It is possible to switch back to the old filename loading
    system via a setting in config.xml
  * [Config] It is now possible to change and configure the location of the
    'res' directory.
2021-03-26 08:53:07 +00:00
pin
28f13b5f7d doc: Updated net/yaydl to 0.4.0 2021-03-26 07:57:12 +00:00
pin
31b6018d04 net/yaydl: update to 0.4.0
-Add a couple of sites, update dependencies
2021-03-26 07:43:17 +00:00
gutteridge
3ef5b93569 doc: Updated textproc/ispell-en_GB to 3.4.02nb1 2021-03-26 04:11:29 +00:00
gutteridge
ea654e69be ispell-en_GB: generate usable dictionary files
Addresses PR pkg/55972, report and patch provided by Greg A. Woods,
additional adjustments by me. (Several people have noted that there
really should be a Makefile.common used here, but I'm not going to
touch more than this leaf package right now, since we're in a freeze.)
2021-03-26 04:11:08 +00:00
gdt
554c86befc doc: Updated comms/asterisk16 to 16.17.0 2021-03-26 00:04:14 +00:00
gdt
833d9b293c comms/asterisk16: Update to 16.17.0
This is a micro update that is mostly security fixes and bug fixes
with very small improvements.  In addition to this being a security
fix, asterisk16 is a leaf package.

Upstream changes:

Security bugs fixed in this release:
-----------------------------------
 * ASTERISK-29305 - ASTERISK-29203 / AST-2021-002 -- Another
      scenario is causing a crash
      (Reported by Gregory Massel)
 * ASTERISK-29260 - sRTP Replay Protection ignored; even tears
      down long calls
      (Reported by Alexander Traud)
 * ASTERISK-29227 - res_pjsip_diversion: sending multiple 181
      responses causes memory corruption and crash
      (Reported by
      Ivan Poddubny)

Bugs fixed in this release:
-----------------------------------
 * ASTERISK-29215 - res_pjsip_session: NULL active_media_state
      topology caused asterisk crash
      (Reported by sungtae kim)
 * ASTERISK-29035 - chan_local: Multistream support breaks T.38
      faxing
      (Reported by Matthias Hensler)
 * ASTERISK-29071 - app_confbridge: Memory rises when
      jitterbuffer enabled and muting over AMI occurs
      (Reported
      by Stefan Ruf)
 * ASTERISK-29329 - app_dial: DTMF to 'D' option gets duplicated
      if there are multiple progress events
      (Reported by N A)
 * ASTERISK-24434 - Fix differing usage of assignment operators
      in modules.conf
      (Reported by Rusty Newton)
 * ASTERISK-29306 - strings: Incorrect use of
      __attribute__((pure)) in ast_str_to_lower definition

      (Reported by Vitezslav Novy)
 * ASTERISK-29300 - res_rtp_asterisk: When native local bridging
      the remote SSRC becomes permanent
      (Reported by Sebastian
      Damm)
 * ASTERISK-29235 - res_pjsip_nat: Contact is rewritten on
      REGISTER responses with external_signaling_address

      (Reported by Brian Paboojian)
 * ASTERISK-29266 - ICE Role conflict with an unauthorized
      session
      (Reported by Salah Ahmed)
 * ASTERISK-29105 - chan_pjsip: 180 Ringing with SDP not changed
      into progress
      (Reported by Sebastian Damm)
 * ASTERISK-29297 - say: Y2021 problem – Asterisk cannot say
      year 2021 in Dutch
      (Reported by Jacek Konieczny)
 * ASTERISK-29315 - res_pjsip: re-registration gets stuck if
      setting initial auth credentials fails
      (Reported by Nick
      French)
 * ASTERISK-29312 - res_fax: asterisk fails to publish the
      Stasis and ReceiveFax status messages if the remote Station ID
      contains invalid UTF-8 characters
      (Reported by Alexei
      Gradinari)
 * ASTERISK-16799 - Callee declined when 'beep' audio file does
      not exist
      (Reported by IAMJames_)
 * ASTERISK-29313 - res_pjsip_refer:  Segfault in progress
      notify
      (Reported by George Joseph)
 * ASTERISK-29293 - res_config_pgsql: Limit realtime_pgsql() to
      return one (no more) record
      (Reported by Boris P. Korzun)
 * ASTERISK-29303 - pjsip: Re-invite occurs when it shouldn't

      (Reported by Benjamin Keith Ford)
 * ASTERISK-29311 - res_odbc_transaction sets forcecommit
      default value based on isolation level instead of forcecommit

      (Reported by Jaco Kroon)
 * ASTERISK-28452 - pjsip: <sess-version> of SDP is not
      incremented though SDP may be changed on reinvite without SDP
      offer
      (Reported by Michael Maier)
 * ASTERISK-29287 - app.h: C++ compatibility broken

      (Reported by Jean Aunis - Prescom)
 * ASTERISK-28369 - app_queue: Member device state "invalid"
      when second call is ringing and hint is used
      (Reported by
      Boolah )
 * ASTERISK-29203 - res_pjsip_t38: Crash when changing state

      (Reported by Gregory Massel)
 * ASTERISK-29205 - res_rtp_asterisk: Asterisk crashes when
      making hold/unhold from webrtc client
      (Reported by Edvin
      Vidmar)
 * ASTERISK-29196 - res_pjsip: Segmentation fault

      (Reported by Mauri de Souza Meneguzzo (3CPlus))
 * ASTERISK-29280 - chan_sip: Allow peers without audio
      (text+video).
      (Reported by Alexander Traud)
 * ASTERISK-29265 - chan_sip: Allow text+video media streams,
      again.
      (Reported by Alexander Traud)
 * ASTERISK-29261 - res_pjsip: user=phone validation fail for
      isup numbers containing *#
      (Reported by Mark Petersen)
 * ASTERISK-29259 - channel: Allow text+video media streams,
      again.
      (Reported by Alexander Traud)
 * ASTERISK-29258 - chan_sip: Audio stream rejected, Other
      stream present: Invalid SDP.
      (Reported by Alexander Traud)
 * ASTERISK-29220 - After T38 reinvite response of 488 a
      subsequent G711 reinvite is not processed correctly. Instead the
      previous T38 session media is used
      (Reported by Robert
      Cripps)
 * ASTERISK-29248 - res_pjsip_session: res sometimes
      uninitialized reported by compiler Clang.
      (Reported by
      Alexander Traud)

Improvements made in this release:
-----------------------------------
 * ASTERISK-29321 - sorcery: Add support for more intelligent
      reloading.
      (Reported by Joshua C. Colp)
 * ASTERISK-29325 - res_pjsip_registrar: Include source IP
      address and port in log messages
      (Reported by Joshua C.
      Colp)
 * ASTERISK-29326 - asterisk: Update copyright/company

      (Reported by Joshua C. Colp)
 * ASTERISK-29244 - Add MixMonitorStart / Stop / Mute AMI
      events
      (Reported by Sébastien Duthil)
 * ASTERISK-29275 - Support of MIME-type for wav16

      (Reported by Boris P. Korzun)
 * ASTERISK-29252 - TRANSFERSTATUSPROTOCOL variable to report
      Transfer (REFER) failure SIP code
      (Reported by Dan Cropp)
 * ASTERISK-29262 - Support of various URL-schemes by MoH

      (Reported by Boris P. Korzun)
2021-03-26 00:04:08 +00:00
thor
aa246f99a3 doc: Updated audio/mpg123 to 1.26.5 2021-03-25 23:53:34 +00:00
thor
6925445dd2 mpg123: update to 1.26.5 and use default optimization
This approaches a serious performance issue with 1.26.x when
resampling is used on certain platforms (observed on SPARC).
Floating point denormals crop up. This change approaches that
two-fold

1. Do not disable default optimization flags for GCC.
2. Update to 1.26.5 that contains code to avoid denormals.

The default flags are about code optimization (like -ffast-math),
not the target architecture, so should not affect portability.
They are also rather safe and tested as development of mpg123
always has them in place. This is how it is meant to be played;-)

Approved during freeze by wiz.
2021-03-25 23:53:13 +00:00
thor
4d0501b8aa doc: Updated math/openblas to 0.3.10 2021-03-25 23:22:59 +00:00
thor
dae0127757 openblas: update to 0.3.10, fixing build with gcc 10
Fix openblas build issues, mainly by updating to 0.3.10.

This pulls in these commits from WIP (newest first):

commit 3c6284cba90280bc367cf4d1d8252ae4d6e92e76
Author: Jason Bacon <bacon@NetBSD.org>
Date:   Thu Feb 25 11:56:13 2021 -0600

    openblas: Update ONLY_FOR_PLATFORMS documentation

commit 8071bf28f3ffc95af046ff3eaaac6983f4f70035
Author: Jason Bacon <bacon@NetBSD.org>
Date:   Thu Feb 25 11:51:32 2021 -0600

    openblas*: Successful build on NetBSD

commit 056e3d5c972a4b286e8755dbee323a9951855165
Author: Dr. Thomas Orgis <thomas.orgis@uni-hamburg.de>
Date:   Wed Feb 24 18:40:17 2021 +0100

    openblas: flags from environment again to un-break PICy build

    The bug that prompted us to force the compiler flags in the
    make arguments is fixed. Now we got a different one: The logic
    that decides to add -fPIC where needed is overridden when doing
    this, resulting in relocation errors (strangely, not with every
    toolchain).

    So let's remove that again and take FFLAGS and friends from the
    environment again.

commit 86af17db8526e629c2c02c6af1f1ce7db6f6ba6d
Author: Dr. Thomas Orgis <thomas.orgis@uni-hamburg.de>
Date:   Thu Nov 12 12:44:39 2020 +0100

    openblas: version 0.3.10

    This updated fixes the build with gcc 10 (segfault in cblat1 test).

    I did not go all the way to the current 0.3.12, as that would
    need some hacking of chosen compiler flags. 0.3.13 should be
    the next one.

    This commit also fixes the ARCH → ARCH_ sed to change all
    occurences on a line.

This fulfills pkg/55999 and was approved by wiz during freeze.
2021-03-25 23:22:35 +00:00
thor
735b695279 doc: Updated math/py-numpy to 1.19.5nb1 2021-03-25 22:09:24 +00:00
thor
59e16fa6c0 math/py-numpy: Actually use BLAS_LIBS and LAPACK_LIBS.
The previous state included our BLAS choice but the build
did not honour the selected libs. This patches the config
script to not search for LAPACK and BLAS, using our settings
instead. Hopefull we can get that option upstreamed.

Approved during freeze by wiz.
2021-03-25 22:09:07 +00:00
rillig
f2977e7ca9 doc: Updated pkgtools/pkglint to 21.1.0 2021-03-25 21:55:19 +00:00
rillig
2d305569db pkgtools/pkglint: bump version to 21.1.0
Just to match the upcoming pkgsrc branch 2021Q1.  No functional change.
2021-03-25 21:55:05 +00:00
thor
488090a652 math/py-numpy: Actually use BLAS_LIBS and LAPACK_LIBS.
The previous state included our BLAS choice but the build
did not honour the selected libs. This patches the config
script to not search for LAPACK and BLAS, using our settings
instead. Hopefull we can get that option upstreamed.

Approved during freeze by wiz.
2021-03-25 21:47:50 +00:00
pin
77aa1e5729 sysutils/macchina: fix broken builds 2021-03-25 19:43:44 +00:00