Commit graph

316581 commits

Author SHA1 Message Date
rillig
e99cead22a cross/*-binutils: allow unknown --enable-nls configure option
The top-level configure script does not know this option, but it calls
several sub-configures that all know it.
2020-04-26 09:47:39 +00:00
taca
9dd6f5a720 doc: Updated devel/php-xdebug to 2.9.5 2020-04-26 09:41:49 +00:00
taca
c2900c228b devel/php-xdebug: update to 2.9.5
Update php-xdebug to 2.9.5.


php-xdebug 2.9.5 (2020-04-25)

Fixed bugs:

- Fixed issue #1772: Crash with exception thrown inside a destructor
- Fixed issue #1775: Segfault when another extension compiles a PHP file
  during RINIT
- Fixed issue #1779: Nested multi-line built-in function in namespace are
  not covered
2020-04-26 09:40:56 +00:00
taca
44233155db doc/TODO: -postfix
- postfix-3.5.1.
2020-04-26 09:35:14 +00:00
taca
d2744b0ff0 doc: note update of postfix and relatex packages to 3.5.1
mail/postfix
	mail/postfix-cdb
	mail/postfix-ldap
	mail/postfix-lmdb
	mail/postfix-mysql
	mail/postfix-pcre
	mail/postfix-pgsql
	mail/postfix-sqlite
2020-04-26 09:34:42 +00:00
taca
ca7830d27a mail/postfix: update to 3.5.1
Update postfix to 3.5.1.


3.5.0 (2020-03-16)

Postfix stable release 3.5.0 is available. Support has ended for
legacy release Postfix 3.1.

The main changes are below. See the RELEASE_NOTES file for further details.

  * Support for the haproxy v2 protocol. The Postfix implementation
    supports TCP over IPv4 and IPv6, as well as non-proxied
    connections; the latter are typically used for heartbeat tests.

  * Support to force-expire email messages. This introduces new
    postsuper(1) command-line options to request expiration, and
    additional information in mailq(1) or postqueue(1) output.

  * The Postfix SMTP and LMTP client support a list of nexthop
    destinations separated by comma or whitespace. These destinations
    will be tried in the specified order. Examples:

    /etc/postfix/main.cf:
        relayhost = foo.example, bar.example
        default_transport = smtp:foo.example, bar.example

Incompatible changes:

  * Logging: Postfix daemon processes now log the from= and to=
    addresses in external (quoted) form in non-debug logging (info,
    warning, etc.). This means that when an address localpart
    contains spaces or other special characters, the localpart will
    be quoted, for example:

	from=<"name with spaces"@example.com>

    Specify "info_log_address_format = internal" for backwards compatibility.

  * Postfix now normalizes IP addresses received with XCLIENT,
    XFORWARD, or with the HaProxy protocol, for consistency with
    direct connections to Postfix. This may change the appearance
    of logging, and the way that check_client_access will match
    subnets of an IPv6 address.


3.5.1 (2020-04-20)

Postfix versions 3.5.1, 3.4.11, 3.3.9, 3.2.14:

  * Bitrot workaround for broken builds after an incompatible change
    in GCC 10.

  * Bitrot workaround for broken DANE/DNSSEC support after an
    incompatible change in GLIBC 2.31. This change avoids the need
    for new options in /etc/resolv.conf.
2020-04-26 09:33:25 +00:00
taca
439e8f78f9 doc: Updated www/drupal8 to 8.7.12 2020-04-26 09:19:10 +00:00
taca
22e961c790 www/drupal8: update to 8.7.12
Update drupal8 to 8.7.12.


Release notes

Maintenance and security release of the Drupal 8 series.

This release fixes security vulnerabilities. Sites are urged to upgrade
immediately after reading the notes below and the security announcement:

* Drupal core - Moderately critical - Third-party library - SA-CORE-2020-001

No other fixes are included.

Which release do I choose? Security coverage information

* Sites on 8.7.x will receive security coverage until June 3, 2020 (when
  Drupal 8.9.0 is scheduled for release).
* Versions of Drupal 8 prior to 8.7.x are end-of-life and do not receive
  security coverage.

Important update information

No changes have been made to the .htaccess, web.config, robots.txt or
default settings.php files in this release, so upgrading custom versions of
those files is not necessary if your site is already on the previous
release.
2020-04-26 09:18:43 +00:00
taca
748a1050f9 doc: Updated mail/roundcube-plugin-password to 1.4.2nb1 2020-04-26 08:48:52 +00:00
taca
42e9bfb830 mail/roundcube-plugin-password: fix runtime problem
Fix roundcube-plugin-password.

* Patch for roundcube-plugin-password had not been applied accidently.
* More changes were required to make it work on *BSD system.

Bump PKGREVISION.
2020-04-26 08:48:23 +00:00
taca
77ed661671 doc: Updated devel/ruby-backports to 3.17.1 2020-04-26 08:43:28 +00:00
taca
e95d9375a6 devel/ruby-backports: update to 3.17.1
Update ruby-backports to 3.17.1.


## [3.17.1](https://github.com/marcandre/backports/compare/v3.17.0...v3.17.1) - 2020-04-09

### Fixed

Fix Range#size (Ruby 2.0) on Ruby 1.8.7 [#144]
2020-04-26 08:42:36 +00:00
taca
5a94b9f0a0 doc: Updated databases/ruby-sequel to 5.31.0 2020-04-26 08:41:08 +00:00
taca
a683c6638c databases/ruby-sequel: update to 5.31.0
Update ruby-sequel to 5.31.0.


=== 5.31.0 (2020-04-01)

* Fix alter_table drop_constraint :primary_key option on SQLite for non-integer primary keys (jeremyevans)

* Add skip_saving_columns plugin, which supports columns to skip when saving, and skips generated columns by default (joeosburn, jeremyevans) (#1681, #1682)

* Add support for creating partitioned tables in PostgreSQL 10+ using :partition_by and :partition_of options (jeremyevans)

* Dump generated columns as generated columns when using the schema_dumper with :same_db option on PostgreSQL 12+ (jeremyevans) (#1680)

* Ignore defaults for generated columns by default when using the schema dumper (jeremyevans) (#1680)

* Include generated columns in schema on SQLite 3.31+ (jeremyevans)

* Add :generated schema entry on PostgreSQL 12+ and SQLite 3.31+ for whether the columns is generated (jeremyevans)

* Add association_lazy_eager_option plugin for supporting :eager option for association method (jeremyevans)

* Add forbid_lazy_load plugin for forbidding lazy loading of associations, to help find N+1 issues (jeremyevans)
2020-04-26 08:40:46 +00:00
taca
fd31cfed56 doc: Updated databases/ruby-activeldap to 6.0.1 2020-04-26 08:37:40 +00:00
taca
6652b38451 databases/ruby-activeldap: update to 6.0.1
Update ruby-activeldap to 6.0.1.


## 6.0.1: 2020-04-21 {#release-6-0-1}

### Improvements

  * Dropped support for Ruby 2.4.

  * Stopped using paged results when we need only one entry.
    [GitHub#173][Patch by Kevin McCormack]

### Thanks

  * Kevin McCormack

## 6.0.0: 2020-04-16 {#release-6-0-0}

### Improvements

  * Removed needless `rubyforge_project` from `.gemspec`.
    [GitHub#167][Patch by Olle Jonsson]

  * Added support for reusing parent configuration for omitted
    configuration items when creating a connection per class or DN.

  * jndi: Added support for processing DN that includes backslash.

  * jndi: Added a CI job for JRuby 9.
    [GitHub#170][Patch by Kevin McCormack]

  * jndi: Added support for paged search.
    [GitHub#171][Patch by Kevin McCormack]

  * Added support for Active Model 6.

  * `search`: Added `:used_paged_results` and `:page_size` options.

### Thanks

  * Olle Jonsson

  * Kevin McCormack
2020-04-26 08:37:13 +00:00
rillig
363de64c50 mk/misc/can-be-built-here.mk: remove NOT_FOT_UNPRIVILEGED
It is unused, and its error message wrongly said "only for unprivileged",
which nobody complained about for 13 years.
2020-04-26 06:56:29 +00:00
rillig
fe6b5634e1 cross/mingw-w64-x86_64-headers: remove unknown configure option
The packages using this file have multiple configure scripts, but none of
them contains the words "secure api".
2020-04-26 06:47:12 +00:00
rillig
329b27dd24 cross/mingw-w64-x86_64-binutils: allow unknown configure options 2020-04-26 06:40:27 +00:00
rillig
f1b5c08d44 graphics/libraw: remove unknown configure options
The text "mosa" doesn't appear in the configure script anymore.
2020-04-26 06:38:17 +00:00
rillig
ab19b7b153 audio/nas: remove no-op SUBST block
The word "wheel" does not occur in the whole source tree anymore.
2020-04-26 06:35:30 +00:00
rillig
3530fe6978 audio/nas: fix obvious path error in nasd.conf.eg
The path /dev//dev/audio does not make sense.
2020-04-26 06:32:00 +00:00
rillig
0532aeaeac comms/pilot-link: fix unknown configure options 2020-04-26 06:23:58 +00:00
gutteridge
e18af0ecdd lxqt: add a comment about icon themes 2020-04-26 03:34:29 +00:00
gutteridge
68b0a1b5cc doc: Added meta-pkgs/lxqt version 0.14.1 2020-04-26 03:18:25 +00:00
gutteridge
94a653defe options.description: add openbox and xfce4-wm (used by LXQt) 2020-04-26 03:17:41 +00:00
gutteridge
9ed30aecc9 meta-pkgs: add LXQt 0.14.1
LXQt is a free desktop environment with comparatively low resource
requirements. This makes it especially suitable for resource-constrained
personal computers such as netbooks or system-on-a-chip machines.
(Packaged in wip by pin@, additional changes by myself.)
2020-04-26 03:13:14 +00:00
gutteridge
4b71fa6fb7 doc: Updated x11/lxqt-panel to 0.14.1nb1 2020-04-26 03:06:06 +00:00
gutteridge
df1632ca10 lxqt-panel: fix location of default panel settings config
Place the panel settings configuration file where the rest of LXQt (as
configured in pkgsrc presently) expects it to be, so fallbacks work if
a user doesn't already have a custom configuration defined. (Ride
previous commits of LXQt earlier today; this doesn't merit a recursive
dependency bump.)
2020-04-26 03:05:50 +00:00
gutteridge
addeaf506a doc: Updated sysutils/pcmanfm-qt to 0.14.1nb4 2020-04-26 02:22:00 +00:00
gutteridge
bbf1769839 pcmanfm-qt: fix location of default desktop settings config
Place the desktop settings configuration file where the rest of LXQt
(as configured in pkgsrc presently) expects it to be, so fallbacks
work if a user doesn't already have a custom configuration defined.
This does not affect standalone use of this application, only its
functionality that provides the desktop background for LXQt. (Ride
previous commits of LXQt earlier today; this doesn't merit a recursive
dependency bump.)
2020-04-26 02:19:56 +00:00
gutteridge
a16dbca970 lxqt-session: amend a patch comment
These aren't just sample files, they're the system-wide fallback
configurations, should the user not have anything defined.
2020-04-26 02:11:16 +00:00
dsainty
213f5ecf46 doc: Updated cad/diylc to 3.28.0nb1 2020-04-26 01:06:17 +00:00
dsainty
2744af60a7 There are two common ways to select the "java" executable in Pkgsrc.
One is via "${JAVA_BINPREFIX}-java", and one is via
"${PKG_JAVA_HOME}/bin/java".

The "${JAVA_BINPREFIX}-java" way relies on an appropriately named
executable being present in the built-in JRE if you are using the
built-in - something with a "-java" suffix.  That just doesn't exist
in either the MacOS Oracle JRE install or the JDK install.  So switch
to "${PKG_JAVA_HOME}/bin/java" instead, which works (but does require
careful quoting to allow for spaces under MacOS).

Bump PKGREVISION.
2020-04-26 01:05:15 +00:00
nikita
cdc09554bb changes: add devel/go-tmc 2020-04-26 00:21:21 +00:00
nikita
8ccb73d94c Add devel/go-tmc version 0.5.1
tmc provides round-trip serialization of typed Go maps.
2020-04-26 00:17:02 +00:00
nikita
4627ed551f add changes entry for go-goldmark 2020-04-25 23:51:09 +00:00
nikita
3972dc6e06 Add textproc/go-goldmark version 1.1.30
goldmark is a Markdown parser written in Go. It is compliant with
CommonMark 0.29. Its features include:

- Standards-compliant. goldmark is fully compliant with the latest
  CommonMark specification.
- Extensible. Do you want to add a @username mention syntax to
  Markdown? You can easily do so in goldmark. You can add your AST
  nodes, parsers for block-level elements, parsers for inline-level
  elements, transformers for paragraphs, transformers for the whole
  AST structure, and renderers.
- Performance. goldmark's performance is on par with that of cmark,
  the CommonMark reference implementation written in C.
- Robust. goldmark is tested with go-fuzz, a fuzz testing tool.
- Built-in extensions. goldmark ships with common extensions like
  tables, strikethrough, task lists, and definition lists.
- Depends only on standard libraries.
2020-04-25 23:49:20 +00:00
jym
ff41598d54 For clarity, use tomcat_start (resp. tomcat_stop) function instead of
calling ${command} directly for start (resp. stop) within rc.d.

Tested on tomcat9; but applicable down to tomcat6.

Bump PKGREVISION.

ok ryo@.
2020-04-25 22:23:05 +00:00
rillig
e7fb2880a3 games/velena: remove redundant SUBST_FILES pattern 2020-04-25 21:49:38 +00:00
rillig
ab30dd14be mk/build/build.mk: use the login shell by default for build-env 2020-04-25 21:36:17 +00:00
rillig
24d1906b0d lang/ruby27-base: fix typo in REPLACE_RUBY 2020-04-25 21:33:34 +00:00
rillig
0ec2d3e675 sysutils/xe-guest-utilities: fix accidental hard-coded version numbers 2020-04-25 20:53:02 +00:00
rillig
bd3c9616e3 net/ucspi-tcp6: does not need to patch error.h 2020-04-25 20:25:32 +00:00
rillig
bbe9c398c5 net/snort: clean up SUBST_FILES
src/snort.c neither contains "/usr" nor "../".
2020-04-25 20:13:50 +00:00
nikita
906f88a35e wm/fvwm: change docbook-xsl and libxslt to TOOL_DEPENDS 2020-04-25 20:04:23 +00:00
schmonz
9be0550833 Define rcvar so goaccess=NO works. Fix a spell-o. Bump PKGREVISION. 2020-04-25 20:02:35 +00:00
rillig
2cdeca68b6 archivers/ruby-xz: remove redundant SUBST block 2020-04-25 19:56:49 +00:00
gutteridge
d9f7337871 xfce4-wm: update MASTER_SITES 2020-04-25 19:53:13 +00:00
rillig
beaf92ed21 databases/ruby-qdbm: remove redundant SUBST block
The file ruby/configure does not mention pthread at all.
2020-04-25 19:50:42 +00:00