Commit graph

318967 commits

Author SHA1 Message Date
ryoon
02a5ef8cc3 *: Recursive revbump from graphics/ilmbase 2020-05-21 20:53:37 +00:00
rillig
ecee64e6c9 mk/configure: add variable GNU_CONFIGURE_QUIET
This allows bulk builds or other setups to see interesting error
messages, without them being hidden in the noise of "checking ...".
2020-05-21 20:50:54 +00:00
ryoon
4519a9db8a seamonkey-l10n: Add accidentally-removed DISTFILES to fix make fetch 2020-05-21 20:11:12 +00:00
joerg
9f2364482b Restrict MAKE_JOBS_SAFE=no to older-than-current NetBSD. 2020-05-21 19:47:54 +00:00
rillig
b17c22faa8 net/couriertcpd: remove ipv6 option
The configure script does not know --with-ipv6 anymore.
2020-05-21 19:21:17 +00:00
rillig
e45d2e3458 mk/pkgformat/metadata.mk: fix relative paths in PATCHDIR and FILESDIR
Before, relative paths had been stored as-is.  This affected those
packages that defined PATCHDIR or FILESDIR as relative directory instead
of prefixing it with ${.CURDIR}.

Since there are already several other paths that are interpreted relative
to the package directory (CONFLICTS, DEPENDS), allow PATCHDIR and
FILESDIR to be specified as relative paths, too.  This makes the package
Makefiles a bit shorter.
2020-05-21 18:48:43 +00:00
rillig
d8f174738a cross/ppc-morphos-gcc9: skip portability check for libgo 2020-05-21 18:26:46 +00:00
nia
5dfa626c67 doc: Updated games/bzflag to 2.4.20 2020-05-21 18:17:12 +00:00
nia
657883a1a5 bzflag: Update to 2.4.20
BZFlag 2.4.20  "Do You See What I See?" (2020-04-24)
----------------------------------------------------

* Reorganization of the menus to improve usability - Scott Wichser
* Add bz_isWithinWorldBoundaries to API - Vladimir Jimenez
* Use teleporter names in /saveworld .obj exports - Vladimir Jimenez
* Add bz_getSpawnPointWithin to API - Vladimir Jimenez
* Fix NetHandler compiler errors on Alpine Linux - Jim Melton
* Significantly improve platform-dependent header imports - Jim Melton
* Only perform texture conversion to internal format once
    - Alfredo Tupone, Scott Wichser
* Removal of never used logic for expiring builds - Zehra
* Radar size and console height are controlled with BZDB variables - The Noah
* Add bz_getNearestFlagSafetyZone to the API - Vladimir Jimenez
* Don't allow hunt to be used when not connected to a server - Zehra
* Improve vsync settings with SDL2 - Joshua Bodine
* Ignore the -NSDocumentRevisionsDebugMode YES option in Xcode - Joshua Bodine
* Add Slovak translation - Jose Riha, Scott Wichser
* Use a greyscale color scale based on relative height when colored radar shots
    are disabled - Alfredo Tupone
* Sort locally discovered servers to the top of the server list - Scott Wichser
* Add the Open Free For All mode to the Start Server menu - Scott Wichser
* Remove ineffective performance tests and just default to "modern" settings
    - Scott Wichser
* Change default settings to better suit first time players - Scott Wichser
* Standardize the rabbit game mode name to "Rabbit Chase" - Scott Wichser
* Do not scale NPOT textures when OpenGL supports them - Alfredo Tupone
* Generate mipmaps with OpenGL 1.4 extension - Alfredo Tupone
* Fixed SDL 1.2 builds on macOS - Joshua Bodine
* Force zbuffer for Experimental quality - Alfredo Tupone
* Use GLEW to detect GL_EXT_texture_edge_clamp - Alfredo Tupone
* Add new bz_eKillReassignmentEvent to the API - Vladimir Jimenez
* Add support for storing arbitrary data in API player records - Jeff Myers
* Fix API string utility functions sometimes losing values - Vladimir Jimenez
* Add new bz_ePlayerDeathFinalizedEvent API event - Vladimir Jimenez
* Display Time-per-Frame with 2 decimal digits and averaged over time
    - Alfredo Tupone
* Output correct error when loading a nonexistent bzfs plugin
    - Vladimir Jimenez
* Remove obsolete bzfs option from Start Server menu on Windows - Scott Wichser
2020-05-21 18:16:46 +00:00
leot
370f091b61 python*: findlib subst class can be a noop
It is licit to be a noop for findlib subst class when PREFIX is
`/usr/local'.

Thanks to <jklos>! (via PR pkg/54758)
2020-05-21 17:25:13 +00:00
adam
8d0b236d9c Updated devel/protobuf, devel/py-protobuf 2020-05-21 16:31:31 +00:00
adam
01f6e5a366 py-protobuf: updated to 3.12.1
Protocol Buffers v3.12.0

Python
[experimental] Added proto3 presence support.
[experimental] fast import protobuf module, only works with cpp generated code linked in.
Truncate 'float' fields to 4 bytes of precision in setters for pure-Python
implementation (C++ extension was already doing this).
Fixed a memory leak in C++ bindings.
Added a deprecation warning when code tries to create Descriptor objects
directly.
Fix unintended comparison between bytes and string in descriptor.py.
Avoid printing excess digits for float fields in TextFormat.
Remove Python 2.5 syntax compatibility from the proto compiler generated _pb2.py module code.
Drop 3.3, 3.4 and use single version docker images for all python tests
2020-05-21 16:31:15 +00:00
adam
9a0fa7a009 protobuf: updated to 3.12.1
Protocol Buffers v3.12.1

Ruby
Re-add binary gems for Ruby 2.3 and 2.4. These are EOL upstream, however
many people still use them and dropping support will require more
coordination.


Protocol Buffers v3.12.0

Protocol Compiler
[experimental] Singular, non-message typed fields in proto3 now support
presence tracking. This is enabled by adding the "optional" field label and
passing the --experimental_allow_proto3_optional flag to protoc.
For usage info, see docs/field_presence.md.
During this experimental phase, code generators should update to support
proto3 presence, see docs/implementing_proto3_presence.md for instructions.
Allow duplicate symbol names when multiple descriptor sets are passed on
the command-line, to match the behavior when multiple .proto files are passed.
Deterministic protoc --descriptor_set_out

C++
[experimental] Added proto3 presence support.
New descriptor APIs to support proto3 presence.
Fix for 7463 in -rc1 (core dump mixing optional and singular fields in proto3)
Enable Arenas by default on all .proto files.
Documented that users are not allowed to subclass Message or MessageLite.
Mark generated classes as final; inheriting from protos is strongly discouraged.
Add stack overflow protection for text format with unknown fields.
Add accessors for map key and value FieldDescriptors.
Add FieldMaskUtil::FromFieldNumbers().
MessageDifferencer: use ParsePartial() on Any fields so the diff does not
fail when there are missing required fields.
ReflectionOps::Merge(): lookup messages in the right factory, if it can.
Added Descriptor::WellKnownTypes enum and Descriptor::well_known_type()
accessor as an easier way of determining if a message is a Well-Known Type.
Optimized RepeatedField::Add() when it is used in a loop.
Made proto move/swap more efficient.
De-virtualize the GetArena() method in MessageLite.
Improves performance of json_stream_parser.cc by factor 1000
bug: 7076 undefine Windows OUT and OPTIONAL macros
Fixed a bug in FieldDescriptor::DebugString() that would erroneously print
an "optional" label for a field in a oneof.
Fix bug in parsing bool extensions that assumed they are always 1 byte.
Fix off-by-one error in FieldOptions::ByteSize() when extensions are present.
Clarified the comments to show an example of the difference between
Descriptor::extension and DescriptorPool::FindAllExtensions.
Add a compiler option 'code_size' to force optimize_for=code_size on all
protos where this is possible.
2020-05-21 16:30:33 +00:00
taca
06f5769b31 doc: Updated databases/ruby-activeldap to 6.0.2 2020-05-21 16:09:39 +00:00
taca
5ba9bf6c15 databases/ruby-activeldap: update to 6.0.2
Update ruby-activeldap to 6.0.2.

pkgsrc change: remove RUBY_VERSIONS_INCOMPATIBLE for ruby24.


6.0.2: 2020-05-19 {#release-6-0-2}

Improvements

* Added options to {ActiveLdap::Persistance#reload}.
  [GitHub#176][Reported by Kevin McCormack]

* jndi: Improved DN escaping. [GitHub#178][Patch by Kevin McCormack]

Thanks

* Kevin McCormack
2020-05-21 16:09:04 +00:00
taca
ef93aa81c7 devel/ruby-gettext-setup: remove RUBY_VERSIONS_INCOMPATIBLE
Remove RUBY_VERSIONS_INCOMPATIBLE for ruby24.
2020-05-21 16:05:56 +00:00
taca
70e54393f8 Remove RUBY_VERSIONS_INCOMPATIBLE for ruby24. 2020-05-21 16:04:21 +00:00
rillig
3dd0f6c9f9 games/freeciv-share: remove redundant SUBST block
Since common/Makefile.in is already patched, common/Makefile doesn't need
to.
2020-05-21 15:58:40 +00:00
taca
987b9d724e lang/ruby: drop support of Ruby 2.4
Drop support of ruby24 (Ruby 2.4).
2020-05-21 15:57:59 +00:00
rillig
883ee65d92 games/freeciv-*: remove unknown configure option 2020-05-21 15:55:14 +00:00
taca
009937ee41 doc: Removed lang/ruby24-base 2020-05-21 15:54:42 +00:00
taca
744bc5dc83 lang/ruby24-base: remove pacakge
Remove ruby24-base, Ruby 2.4 was EOL on 31 Mar. 2020.
Now, no pacakge depends on it.
2020-05-21 15:54:23 +00:00
taca
c4119f35d2 lang/Makefile: retire ruby24-base
Remove ruby24-base.
2020-05-21 15:53:30 +00:00
taca
2e00400b9f remove ruby24 support. 2020-05-21 15:51:51 +00:00
taca
081e8987d6 doc: Removed lang/ruby24 2020-05-21 15:50:51 +00:00
taca
4e9a32bbbc lang/ruby24: remove package
Start removing ruby24, it was EOL on 31 Mar. 2020.
2020-05-21 15:50:29 +00:00
taca
958e31823c lang/Makefile: retire ruby24
Remove ruby24.
2020-05-21 15:49:22 +00:00
rillig
d30e9a20cd x11/vte: remove unknown configure option 2020-05-21 15:42:52 +00:00
rillig
6db54dcb27 devel/pkg-config: suppress USE_TOOLS+=perl option 2020-05-21 15:30:48 +00:00
rillig
6c80597618 mk/configure/gnu-configure.mk: disable built-in option check
The rewritten check for unknown configure options already checks for
options that are not defined anywhere.  After that, the configure scripts
don't need to check for these options anymore since all remaining options
are known to the package, in at least one of its configure scripts.
2020-05-21 15:29:25 +00:00
rillig
93c1b04fcf math/maxima: remove nonexistent file from REPLACE_SH 2020-05-21 15:15:56 +00:00
taca
81f8f84671 doc: Updated meta-pkgs/bulk-medium to 20200521 2020-05-21 15:06:48 +00:00
taca
d6abbbea8c meta-pkgs/bulk-medium: update to 20200521
* Drop lang/ruby24-base.
* Build lang/ruby27-base.

Bump to 20200521.
2020-05-21 15:06:16 +00:00
rillig
7b7195db9f graphics/cinepaint: remove unknown configure option 2020-05-21 14:56:32 +00:00
nia
04db5ed7cb inkscape: fix PLIST 2020-05-21 14:54:08 +00:00
rillig
ffbe1d0651 misc/celestia: remove unknown configure option 2020-05-21 14:50:11 +00:00
rillig
d39230a57e comms/asterisk15: remove unknown configure option --with-ltdl
This option has been removed in 2018, see ChangeLog.
2020-05-21 14:25:59 +00:00
nia
ccb0014700 doc: Updated mail/balsa to 2.6.1 2020-05-21 14:19:56 +00:00
nia
400c33f713 balsa: Update to 2.6.1
* Balsa-2.6.1 release. Release date 2020-05-10

- fix server identity verification.
2020-05-21 14:19:46 +00:00
rillig
4124f475f6 games/asc: remove unknown configure option --with-wx-version
This is needed to build the package with GNU_CONFIGURE_STRICT=yes.
2020-05-21 14:00:51 +00:00
nia
ba44022faf doc: Updated devel/amtk to 5.0.2 2020-05-21 13:52:02 +00:00
nia
89ea0db1a7 amtk: Update to 5.0.2
News in 5.0.2, 2020-01-25
-------------------------
* Small maintenance stuff.
* Translation updates.
2020-05-21 13:51:52 +00:00
rillig
cc8614f669 mk/configure: completely rewrite check for unknown configure options
The previous implementation could not reliably detect outdated configure
options.  This was apparent in devel/gettext-tools, where the option
--with-included-libcroco had become unknown between May 2019 and May
2020, but the check was not run.

The behavior is the same in the pkgsrc default configuration.  Only if
GNU_CONFIGURE_STRICT=yes, the new check is activated and will make
packages fail that previously succeeded to build.  Since that variable is
not widely known, there won't be much sudden breakage, if any.
2020-05-21 13:42:10 +00:00
nia
10d31fb346 doc: Updated audio/adplug to 2.3.2 2020-05-21 13:40:07 +00:00
nia
018db7aaed adplug: Update to 2.3.2
Changes for version 2.3.2:
--------------------------
- Bug fixes:
  - FMOPL: Fix global variable pointer double-free (CVE-2018-17825)
  - HERAD: Fix compilation on GCC 4.2.1
  - ADL: Calling rewind() before update() causes access violation
  - Move OPL reset/init code to rewind() for some players
2020-05-21 13:39:55 +00:00
jperkin
4a95214422 doc: Updated www/gitea to 1.11.5nb1 2020-05-21 13:37:18 +00:00
jperkin
26bcf2d529 gitea: Bump PKGREVISION for previous.
Apologies for the double commit, accidentally specified filename to cvs ci.
2020-05-21 13:37:09 +00:00
jperkin
54447c9d7a gitea: Various fixes.
Add a target to generate the frontend artefacts that are required at
runtime, but do not build them by default as they require nodejs/npm which
will download node modules during the build.  Instead use a pre-built copy
stored in LOCAL_PORTS.  The web interface should now look correct.

Use the supplied Makefile to simplify some of the targets.

Remove unnecessary MAKE_DIRS (shadows an OWN_DIRS_PERMS), and fix
permissions on some of the installed files.

Based on joyent/pkgsrc#263 from GitHub user teutat3s.
2020-05-21 13:35:12 +00:00
rillig
71763e7061 regress/tools-platform: add test for "$@" and ksh 2020-05-21 13:33:35 +00:00
mef
53a7211e97 (mail/courier-imap) Remove (one more) no-op files from SUBST block 2020-05-21 13:31:59 +00:00