Commit graph

373094 commits

Author SHA1 Message Date
Olli Hauer
80695d3aeb - update to 2.11.6
20150501
       Support for Linux 4.*, and some simplification for future
       makedefs files. Files: makedefs, util/sys_defs.h.

20150718
       Security: opportunistic TLS by default uses "medium" or
       stronger ciphers instead of "export" or stronger. See the
       RELEASE_NOTES file for how to get the old settings back.
       Files: global/mail_params.h, proto/TLS_README.html,
       proto/postconf.proto, and files derived from those.

20150719
       Security: Postfix TLS support by default no longer uses
       SSLv2 or SSLv3.  See the RELEASE_NOTES file for how to get
       the old settings back. Files: global/mail_params.h,
       proto/postconf.proto, and files derived from those.

Incompatible change with Postfix  2.11.6 / 3.0.2
-------------------------------------------------

As of the middle of 2015, all supported Postfix releases no longer
enable "export" grade ciphers for opportunistic TLS, and no longer
use the deprecated SSLv2 and SSLv3 protocols for mandatory or
opportunistic TLS.

These changes are very unlikely to cause problems with server-to-server
communication over the Internet, but they may result in interoperability
problems with ancient client or server implementations on internal
networks.  To address this problem, you can revert the changes with:

Postfix SMTP client settings:

    lmtp_tls_ciphers = export
    smtp_tls_ciphers = export
    lmtp_tls_protocols = !SSLv2
    smtp_tls_protocols = !SSLv2
    lmtp_tls_mandatory_protocols = !SSLv2
    smtp_tls_mandatory_protocols = !SSLv2

Postfix SMTP server settings:

    smtpd_tls_ciphers = export
    smtpd_tls_protocols =
    smtpd_tls_mandatory_protocols = !SSLv2

These settings, if put in main.cf, affect all Postfix SMTP client
or server communication, which may be undesirable. To be more
selective, use "-o name=value" parameter overrides on specific
services in master.cf. Execute the command "postfix reload" to make
the changes effective.
2015-08-02 20:16:26 +00:00
Dmitry Marakasov
7d74b5c0b7 - Add LICENSE 2015-08-02 20:03:40 +00:00
Olli Hauer
77d2213764 - update to 2.2.31
- remove backports
- minor cleanups
- always rebuild configure script
- add patch for acinclude.m4 [1]

Changes with Apache 2.2.31 [2]

  *) Correct win32 build issues for mod_proxy exports, OpenSSL 1.0.x headers.
     [Yann Ylavic, Gregg Smith]

Changes with Apache 2.2.30 (not released)

  *) SECURITY: CVE-2015-3183 (cve.mitre.org)
     core: Fix chunk header parsing defect.
     Remove apr_brigade_flatten(), buffering and duplicated code from
     the HTTP_IN filter, parse chunks in a single pass with zero copy.
     Limit accepted chunk-size to 2^63-1 and be strict about chunk-ext
     authorized characters.  [Graham Leggett, Yann Ylavic]

  *) http: Fix LimitRequestBody checks when there is no more bytes to read.
     [Michael Kaufmann <mail michael-kaufmann.ch>]

  *) core: Allow spaces after chunk-size for compatibility with implementations
     using a pre-filled buffer.  [Yann Ylavic, Jeff Trawick]

  *) mod_ssl: bring SNI behavior into better conformance with RFC 6066:
     no longer send warning-level unrecognized_name(112) alerts. PR 56241.
     [Kaspar Brand]

  *) http: Make ap_die() robust against any HTTP error code and not modify
     response status (finally logged) when nothing is to be done. PR 56035.
     [Yann Ylavic]

  *) core, modules: Avoid error response/document handling by the core if some
     handler or input filter already did it while reading the request (causing
     a double response body).  [Yann Ylavic]

  *) FreeBSD: Disable IPv4-mapped listening sockets by default for versions
     5+ instead of just for FreeBSD 5. PR 53824.  [Jeff Trawick,
     Olli Hauer <ohauer gmx de>]

  *) mod_proxy: use the original (non absolute) form of the request-line's URI
     for requests embedded in CONNECT payloads used to connect SSL backends via
     a ProxyRemote forward-proxy.  PR 55892.  [Hendrik Harms <hendrik.harms
     gmail com>, William Rowe, Yann Ylavic]

  *) mpm_winnt: Accept utf-8 (Unicode) service names and descriptions for
     internationalization.  [William Rowe]

  *) mod_log_config: Implement logging for sub second timestamps and
     request end time.  [Rainer Jung]

  *) mod_log_config: Ensure that time data is consistent if multiple
     duration patterns are used in combination, e.g. %D and %{ms}T.
     [Rainer Jung]

  *) mod_log_config: Add "%{UNIT}T" format to output request duration in
     seconds, milliseconds or microseconds depending on UNIT ("s", "ms", "us").
     [Ben Reser, Rainer Jung]

  *) In alignment with RFC 7525, the default recommended SSLCipherSuite
     and SSLProxyCipherSuite now exclude RC4 as well as MD5. Also, the
     default recommended SSLProtocol and SSLProxyProtocol directives now
     exclude SSLv3. Existing configurations must be adjusted by the
     administrator. [William Rowe]

  *) core: Avoid potential use of uninitialized (NULL) request data in
     request line error path. [Yann Ylavic]

  *) mod_proxy_http: Use the "Connection: close" header for requests to
     backends not recycling connections (disablereuse), including the default
     reverse and forward proxies.  [Yann Ylavic]

  *) mod_proxy: Add ap_connection_reusable() for checking if a connection
     is reusable as of this point in processing.  [Jeff Trawick]

  *) mod_proxy: Reuse proxy/balancer workers' parameters and scores across
     graceful restarts, even if new workers are added, old ones removed, or
     the order changes.  [Jan Kaluza, Yann Ylavic]

  *) mod_ssl: 'SSLProtocol ALL' was being ignored in virtual host context.
     PR 57100.  [Michael Kaufmann <apache-bugzilla michael-kaufmann.ch>,
     Yann Ylavic]

  *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by
     allowing custom parameters to be configured via SSLCertificateFile,
     and by adding standardized DH parameters for 1024/2048/3072/4096 bits.
     Unless custom parameters are configured, the standardized parameters
     are applied based on the certificate's RSA/DSA key size. [Kaspar Brand]

  *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA
     keys, and unconditionally disable aNULL, eNULL and EXP ciphers
     (not overridable via SSLCipherSuite). [Kaspar Brand]

  *) mod_ssl: Add support for configuring persistent TLS session ticket
     encryption/decryption keys (useful for clustered environments).
     [Paul Querna, Kaspar Brand]

  *) SSLProtocol and SSLCipherSuite recommendations in the example/default
     conf/extra/httpd-ssl.conf file are now global in scope, affecting all
     VirtualHosts (matching 2.4 default configuration). [William Rowe]

  *) mod_authn_dbd: Fix lifetime of DB lookup entries independently of the
     selected DB engine.  PR 46421.  [Jan Kaluza].

  *) Turn static function get_server_name_for_url() into public
     ap_get_server_name_for_url() and use it where appropriate. This
     fixes mod_rewrite generating invalid URLs for redirects to IPv6
     literal addresses. PR 52831 [Stefan Fritsch]

  *) dav_validate_request: avoid validating locks and ETags when there are
     no If headers providing them on a resource we aren't modifying.
     [Ben Reser]

  *) mod_ssl: New directive SSLSessionTickets (On|Off).
     The directive controls the use of TLS session tickets (RFC 5077),
     default value is "On" (unchanged behavior).
     Session ticket creation uses a random key created during web
     server startup and recreated during restarts. No other key
     recreation mechanism is available currently. Therefore using session
     tickets without restarting the web server with an appropriate frequency
     (e.g. daily) compromises perfect forward secrecy. [Rainer Jung]

  *) mod_deflate: Define APR_INT32_MAX when it is missing so to be able to
     compile against APR-1.2.x (minimum required version). [Yann Ylavic]

  *) mod_reqtimeout: Don't let pipelining checks interfere with the timeouts
     computed for subsequent requests.  PR 56729.  [Eric Covener]

[1]	https://issues.apache.org/bugzilla/show_bug.cgi?id=58126
[2]	http://www.apache.org/dist/httpd/CHANGES_2.2.31

With Head apache@

MFH:		2015Q3 ( in case no new issues are reported during the next 7 days )
2015-08-02 19:39:09 +00:00
Kurt Jaeger
d16c728503 net/librdkafka: fix build on 9.3-i386
- Adding -march=pentium to CFLAGS on this arch

PR:		201521
Submitted by:	Victor Yagofarov <xnasx@yandex.ru> (maintainer)
2015-08-02 18:59:01 +00:00
Olivier Duchateau
2251e3a997 Update to 0.4.1
Changelog: http://docs.wand-py.org/en/0.4.1/changes.html
2015-08-02 18:31:15 +00:00
Sean Bruno
5ccf328912 Update to 0.8.15
- cleanup NLS
- cleanup OPTIONS

Differential Revision:	https://reviews.freebsd.org/D3274
Reviewed by:	kwm
2015-08-02 18:15:51 +00:00
Koop Mast
df3e062a9d Add some more X11 / NOX11 checks around USES=ghostscript usage.
While here apply the same checks to IM7.

PR:		201993
Submitted by:	daniel@blodan.se
2015-08-02 18:13:16 +00:00
Danilo Egea Gondolfo
cc229306e6 - Update to 5.3.3 2015-08-02 18:03:05 +00:00
Danilo Egea Gondolfo
fcac383bab - Update to 1.3.3 2015-08-02 17:59:47 +00:00
Kurt Jaeger
421607b901 emulators/dynamips-community: 0.2.12 -> 0.2.15
- Add optional argument 'format' to hypervisor commands
  - 'send_con_msg' and 'send_aux_msg'.
  - Report "X byte(s) written" on succeess.
  - String formats:
    * plain - plain string (default, old behavior)
    * base64 - base64 encoded string
- Use an auxiliary variable to record configured ram size for npe-400
- Fixed issue #49 - IOS crashes after router restart
- Fixed issue #50 - vm send_con_msg

PR:		194066
Submitted by:	Pavel Volkov <pavelivolkov@gmail.com> (maintainer)
2015-08-02 16:39:13 +00:00
Koop Mast
7299f2d25b Update pdf2djvu to 0.7.21.
This version builds with poppler 0.34.0.

Update WWW to new homepage.

PR:		201660
Submitted by:	myself
Approved by:	maintainer timeout (16 days)
2015-08-02 16:08:39 +00:00
Koop Mast
757724fd75 Update poppler to 0.34.0. [1]
Chase all users of shlib version change of libpoppler.so.

PR:		201477 [1]
Submitted by:	olivierd@ [1]
2015-08-02 16:06:16 +00:00
Koop Mast
11bc22f452 Update zeitgeist to 0.9.14 [1]
This version of zeitgeist now bundles libzeitgeist in the port. The
new libzeitgeist was bumped to libzeitgeist-1.0.so -> libzeitgeist-2.0.so.

* deskutils/cairo-dock-plugins: supports both zeitgeist versions.
* net-im/folks: Only supports the new 2.0 libzeitgeist library version. And
  this went unnoticed, woops.
* sysutils/libzeitgeist: Remove since it is now bundled in zeitgeist.
* sysutils/qzeitgeist: Update the port for the new zeitgeist API.
* www/midori: Mark the zeitgeist option (non-default) broken until midori
  can be updated to a version that supports the new libzeitgeist 2.0

PR:		190729 [1]
Submitted by:	olivierd@ [1]
2015-08-02 15:37:19 +00:00
Tijl Coosemans
a374acb969 By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do.  On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).

Bump PORTREVISION on all ports where the build log contains -export-symbols.

audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions.  Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to.  Fix a number of other issues in the same
Makefile.am and clean up the port Makefile.

japanese/scim-honoka: Tries to hide all symbols that start with an
underscore, but because this library is written in C++ all symbols start
with _Z so it ends up hiding everything.  Just don't hide anything at all
like the textproc/scim configure script does.

multimedia/schroedinger: Apply an upstream patch.

textproc/scim-input-pad: Same as japanese/scim-honoka.

PR:		201922
Approved by:	portmgr (antoine)
Exp-run by:	antoine
2015-08-02 15:03:19 +00:00
Koop Mast
4e92ca9229 Update gnumeric to 1.12.23. 2015-08-02 15:02:57 +00:00
Koop Mast
c998768b8a Update goffice010 to 0.10.23. 2015-08-02 15:02:30 +00:00
Koop Mast
d061b7a81a Update libgsf to 1.14.34. 2015-08-02 15:02:01 +00:00
Jason Unovitch
67f82a13c0 sysutils/automount: update 1.5.3 -> 1.5.7
PR:		201943
Submitted by:	vermaden@interia.pl (maintainer)
Approved by:	feld (mentor)
2015-08-02 14:24:20 +00:00
Thomas Zander
be19e9ffcc Fix shuffle playback
(random number generator is not initialised properly)

While on it:
Pet portlint

PR:		201645
Submitted by:	yamagi@yamagi.org (maintainer)
MFH:		2015Q3
2015-08-02 14:03:56 +00:00
Michael Gmelin
44b3670721 Add debug output in an attempt to figure out why certain tests fail on
package builders.

PR:		201743
Approved by:	mentors (implicit)
2015-08-02 13:47:42 +00:00
Ashish SHUKLA
41eaef7684 - Add a note to UPDATING about configuration file changes, which were
missed in r392161

Reported by:	John Nielsen <john@jnielsen.net> (via private email)
2015-08-02 13:26:57 +00:00
Kurt Jaeger
29826ed8e1 New port: deskutils/ladon
Process many files in parallel. It is meant for people comfortable
with using a terminal but strives to be as easy to use as humanly
possible.

Ladon is named after the multiheaded serpent dragon from Greek mythology,
slain by Heracles and thrust into the sky as the constellation Draco. His
many heads allow you to efficiently work on many files at once.

WWW: https://github.com/danielgtaylor/ladon

PR:		201906
Submitted by:	Carlos Jacobo Puga Medina <cpm@fbsd.es>
2015-08-02 08:45:55 +00:00
Koop Mast
728b229f77 Case after avahi-app changes that removed :keepla from libtool USES.
While here resolve a stage qa issue.

Submitted by:	pkg-fallout
2015-08-02 08:37:21 +00:00
Andrej Zverev
7d3ec466d4 Deprecate and set expiration date to 2015-08-08: Development has been
discontinued for many years.
2015-08-02 07:24:31 +00:00
Sunpoet Po-Chuan Hsieh
e94be3282f - Update to 4.25.0
Changes:	https://github.com/jeremyevans/sequel/blob/master/CHANGELOG
2015-08-02 06:43:00 +00:00
Sunpoet Po-Chuan Hsieh
cf7c8bbd8c - Update to 0.10
- Sort PLIST

Changes:	http://search.cpan.org/dist/Syntax-Highlight-Engine-Kate/Changes
2015-08-02 06:42:55 +00:00
Sunpoet Po-Chuan Hsieh
4a08346450 - Update to 0.24
Changes:	http://search.cpan.org/dist/Data-Object/CHANGES
2015-08-02 06:42:49 +00:00
Sunpoet Po-Chuan Hsieh
7e3df5c02a - Update to 1.4.0
Changes:	https://github.com/github/markup/blob/master/HISTORY.md
		https://github.com/github/markup/commits/master
2015-08-02 06:29:53 +00:00
Sunpoet Po-Chuan Hsieh
0fa750cb4b - Bump PORTREVISION for rubygem-github-markup 1.4.0 update
- Rename gemspec patch to patch-gemspec
- Bump PORTREVISION for package change
2015-08-02 06:28:18 +00:00
Sunpoet Po-Chuan Hsieh
2f75e4162e - Add NO_ARCH 2015-08-02 06:28:13 +00:00
Sunpoet Po-Chuan Hsieh
b213df5e5b - Update to 1.402
- Sort PLIST

Changes:	http://search.cpan.org/dist/Feersum/Changes
2015-08-02 06:28:08 +00:00
Sunpoet Po-Chuan Hsieh
c97ee28ddd - Update to 2.1600
Changes:	http://search.cpan.org/dist/Moose/Changes
2015-08-02 06:28:02 +00:00
Sunpoet Po-Chuan Hsieh
174c793341 - Update to 0.68
Changes:	http://search.cpan.org/dist/IO-Async/Changes
2015-08-02 06:27:56 +00:00
Sunpoet Po-Chuan Hsieh
7cc9ea132d - Update to 1.49
Changes:	http://search.cpan.org/dist/Archive-Zip/Changes
2015-08-02 06:27:50 +00:00
Sunpoet Po-Chuan Hsieh
e2b1998190 - Update to 0.06
Changes:	http://search.cpan.org/dist/IO-Async-Resolver-DNS/Changes
2015-08-02 06:27:44 +00:00
Sunpoet Po-Chuan Hsieh
1733c0b74a - Update to 2.76
Changes:	http://search.cpan.org/dist/Encode/Changes
2015-08-02 06:27:39 +00:00
Vanilla I. Shu
900cda080e Upgrade to 9.99.
PR:		201988
Submitted by:	maintainer
2015-08-02 04:06:59 +00:00
Mark Felder
78b618ce2d security/sshguard: update to 1.6.1 2015-08-01 23:24:56 +00:00
Koop Mast
fe2aa61f98 Drop :keepla from libtool USES.
While here fix some stage qa issues, in a couple of these ports.
2015-08-01 20:02:06 +00:00
Koop Mast
e24d02740a Drop :keepla from libtool USES. 2015-08-01 19:51:28 +00:00
Koop Mast
05a3aded4e Drop :keepla from libtool USES. 2015-08-01 19:48:58 +00:00
Ruslan Makhmatkhanov
2826602073 net/py-impacket: update WWW, sort USE_PYTHON 2015-08-01 19:21:26 +00:00
Ruslan Makhmatkhanov
7e792c0f1d net/py-pcapy: fix portlint warnings
Fix second WWW entry and regenerate patch with make makepatch.
2015-08-01 19:03:20 +00:00
Roman Bogorodskiy
5a12b2060f Drop backports.ssl-match-hostname from requirements. We're not using it
since r389589 anyway.

PR:		201901
Submitted by:	Kurt Jaeger
2015-08-01 19:00:11 +00:00
Ruslan Makhmatkhanov
3c155af8e3 net/py-pcapy: update to 0.10.9
- switch to PyPi
- convert to autoplist and limit python version to 2.x
- update WWW urls and package description

Changelog:
2015-05-19  Andres Blanco <ablanco@coresecurity.com>
  * Added sendpacket support by default
2015-08-01 18:53:15 +00:00
Ruslan Makhmatkhanov
d8d405c1d7 net-im/gajim: update to 0.16.3
Gajim 0.16.3 (31 July 2015)

  * Fix reading secret file
  * Fix reconnection after suspend
  * Fix sending GPG-encrypted file to non-trusted key
2015-08-01 18:21:39 +00:00
Thomas Zander
95f10edd34 - Retire WIN32 OPTION for win32 binary codecs support on i386, instead
- always compile in the loader code for win32 dlls on i386:
  i386 users can install multimedia/win32-codecs and just use them
  with mplayer/mencoder without compile-time knobs
- Bump PORTREVISION

Reported by:	Slawa Olhovchenkov <slw@zxy.spb.ru> via personal mail
2015-08-01 17:16:39 +00:00
Veniamin Gvozdikov
f0904698b6 - Update to 9.14
- New maintainer

PR:		ports/202019
Submitted by:	chris@bsdjunk.com
2015-08-01 10:19:24 +00:00
Thomas Zander
9d86ec5bc2 - Convert x11/libfm and x11/libfm-extra to Master-Slave Port
(same application, CATEGORIES, DISTFILES, install path)
- Bump PORTREVISION
- Move patches to Makefile

PR:		200825
Submitted by:	horia@racoviceanu.com (maintainer)
2015-08-01 10:16:31 +00:00
Thomas Zander
bfa3048623 - Convert x11/libfm and x11/libfm-extra to Master-Slave Port
(same application, CATEGORIES, DISTFILES, install path)
- Bump PORTREVISION
- Add missing fm-actions header
- Move patches to Makefile

PR:		200824
Submitted by:	horia@racoviceanu.com (maintainer)
2015-08-01 10:15:50 +00:00