Commit graph

240210 commits

Author SHA1 Message Date
adam
3d3f0d6112 Changes 1.22.4:
- Fix stupid regression introduced with a bugfix in 1.14.1 to make
  free format streams work again. It took 3 years for someone to notice.
  I added a regression test for that now!
2015-10-18 15:07:06 +00:00
tsutsui
ce03ba252f Updated multimedia/adobe-flash-plugin11 to 11.2.202.540 2015-10-18 14:16:14 +00:00
tsutsui
77a6ecfbdc Update adobe-flash-plugin11 to 11.2.202.540.
Upstream announcement:

 https://helpx.adobe.com/security/products/flash-player/apsb15-27.html

Adobe Security Bulletin

Security updates available for Adobe Flash Player

Release date: October 16, 2015

Vulnerability identifier: APSB15-27

CVE number: CVE-2015-7645, CVE-2015-7647, CVE-2015-7648

Platform: All Platforms
2015-10-18 14:15:23 +00:00
joerg
4bdd56fb47 pbulk-0.59: Belatedly bump PBULK_CONFIG_VERSION to ensure that
sync_packages etc are present.
2015-10-18 13:32:13 +00:00
jmcneill
ecee166f1f add NVIDIA firmware license 2015-10-18 12:24:54 +00:00
jmcneill
00226ac9f5 Added sysutils/tegra-firmware version 20151018 2015-10-18 12:23:32 +00:00
jmcneill
e7b5a200e5 + tegra-firmware 2015-10-18 12:22:33 +00:00
jmcneill
6490723a17 Import NVIDIA Tegra SOC firmware as sysutils/tegra-firmware.
Firmware binary images for use with NVIDIA Tegra SOCs.
2015-10-18 12:20:51 +00:00
khorben
fe282ad48b API bump for devel/deforaos-libsystem 2015-10-18 12:01:19 +00:00
ryoon
4008b4ef22 Added textproc/multimarkdown version 4.7.1 2015-10-18 09:15:32 +00:00
ryoon
57f09381d9 Add multimarkdown 2015-10-18 09:15:03 +00:00
ryoon
133fa1751f Import multimarkdown-4.7.1 as textproc/multimarkdown.
MultiMarkdown, or MMD, is a tool to help turn minimally marked-up
plain text into well formatted documents, including HTML, PDF (by
way of LaTeX), OPML, or OpenDocument (specifically, Flat OpenDocument
or '.fodt', which can in turn be converted into RTF, Microsoft
Word, or virtually any other word-processing format).

MMD is a superset of the Markdown syntax, originally created by
John Gruber. It adds multiple syntax features (tables, footnotes,
and citations, to name a few), in addition to the various output
formats listed above (Markdown only creates HTML). Additionally,
it builds in "smart" typography for various languages (proper left-
and right-sided quotes, for example).
2015-10-18 09:14:11 +00:00
fhajny
6178026710 Updated net/rabbitmq-c to 0.7.1 2015-10-18 08:47:58 +00:00
fhajny
cb8aae5064 Update net/rabbitmq-c to 0.7.1.
- Win32: Use WSAEWOULDBLOCK instead of EWOULDBLOCK on Win32 (win32
  clients would fail to connect)
- Lib: if channel_max is 0 use server's channel_max
- Lib: fix build on OpenBSD
2015-10-18 08:47:46 +00:00
fhajny
37a21746eb Updated databases/redis to 3.0.5 2015-10-18 08:28:34 +00:00
fhajny
307f1d82a8 Update databases/redis to 3.0.5.
--[ Redis 3.0.5 ] Release date: 15 Oct 2015

Upgrade urgency: MODERATE, the most important thing is a fix in the replication
                 code that may make the slave hanging forever if the master
                 remains with an open socket even if it is no longer able to
                 reply.

* [FIX] MOVE now moves the TTL as well. A bug lasting forever... finally
        fixed thanks to Andy Grunwald that reported it.
        (reported by Andy Grunwald, fixed by Salvatore Sanfilippo)
* [FIX] Fix a false positive in HSTRLEN test.
* [FIX] Fix a bug in redis-cli --pipe mode that was not able to read back
        replies from the server incrementally. Now a mass import will use
        a lot less memory, and you can use --pipe to do incremental streaming.
        (reported by Twitter user @fsaintjacques, fixed by Salvatore
        Sanfilippo)
* [FIX] Slave detection of master timeout. (fixed by Kevin McGehee, refactoring
        and regression test by Salvatore Sanfilippo)

* [NEW] Cluster: redis-trib fix can fix an additional case for opens lots.
        (Salvatore Sanfilippo)
* [NEW] Cluster: redis-trib import support for --copy and --replace options
        (David Thomson)

--[ Redis 3.0.4 ] Release date: 8 Sep 2015

Upgrade urgency: HIGH for Redis and Sentinel. However note that in order to
                 fix certain replication bugs, the replication internals were
                 modified in a very heavy way. So while this release is
                 conceptually saner, it may contain regressions. For this
                 reason, before the release, QA activities were performed by
                 me (antirez) and Redis Labs and no evident bug was found.

* [FIX] A number of bugs related to replication PSYNC and the (yet experimental)
        diskless replication feature were fixed. The bugs could lead to
        inconsistency between masters and slaves. (Salvatore Sanfilippo, Oran
        Agra fixed the issue found by Yuval Inbar)
* [FIX] A replication bug in the context of PSYNC partial resynchonization was
        found and fixed. This bug happens even when diskless replication is off
        in the case different slaves connect at different times while the master
        is creating an RDB file, and later a partial resynchronization is
        attempted by a slave that connected not as the first one. (Salvatore
        Sanfilippo, Oran Agra)
* [FIX] Chained replication and PSYNC interactions leading to potential stale
        chained slaves data set, see issue #2694. (Salvatore Sanfilippo fixed
        an issue reported by "GeorgeBJ" user at Github)
* [FIX] redis-cli --scan iteration fixed when returned cursor overflows
        32 bit signed integer. (Ofir Luzon, Yuval Inbar)
* [FIX] Sentinel: fixed a bug during the master switch process, where for a
        failed conditional check, the new configuration is rewritten, during
        a small window of time, in a corrupted way where the master is
        also reported to be one of the slaves. This bug is rare to trigger
        but apparently it happens in the wild, and the effect is to see
        a replication loop where the master will try to replicate with itself.
        The bug was found by Jan-Erik Rediger using a static analyzer and
        fixed by Salvatore Sanfilippo.
* [FIX] Sentinel lack of arity checks for certain commands.
        (Rogerio Goncalves, Salvatore Sanfilippo)

* [NEW] Replication internals rewritten in order to be more resistant to bugs.
        The replication handshake in the slave side was rewritten as a non
        blocking state machine. (Salvatore Sanfilippo, Oran Agra)
* [NEW] New "replication capabilities" feature introduced in order to signal
        from the master to the slave what are the features supported, so that
        the master can choose the kind of replication to start (diskless or
        not) when master and slave are of different versions. (Oran Agra,
        Salvatore Sanfilippo)
* [NEW] Log clients details when SLAVEOF command is received. (Salvatore
        Sanfilippo with inputs from Nick Craver and Marc Gravell).
2015-10-18 08:28:22 +00:00
tsutsui
babb9f454f Updated inputmethod/kinput2 to 3.1nb4 2015-10-18 06:46:28 +00:00
tsutsui
fe6b648121 Apply kinput2-v3.1-canna37.diff, which enables Canna 3.7 new APIs.
Bump PKGREVISION.

Tested on NetBSD/i386 7.0 and NetBSD/luna68k 7.0.
2015-10-18 06:44:38 +00:00
ryoon
3a30be0b8c Updated databases/mongodb to 3.0.7 2015-10-18 05:46:01 +00:00
ryoon
bf5ce919c1 Update to 3.0.7
Changelog:
3.0.7 – Oct 13, 2015

    Improvements to WiredTiger memory handling and performance: SERVER-20159, SERVER-20204, SERVER-20091, and SERVER-20176.
    Fixed issue where replica set nodes will not step down: SERVER-19464.
    Additional privileges for built-in roles: SERVER-19131, SERVER-15893, and SERVER-13647.
    All issues closed in 3.0.7
2015-10-18 05:45:37 +00:00
tsutsui
8ee3c3c6ce Updated inputmethod/canna to 3.7pl3
Updated inputmethod/canna-canuum to 3.7pl3
Updated inputmethod/canna-dict to 3.7pl3
Updated inputmethod/canna-lib to 3.7pl3
Updated inputmethod/canna-server to 3.7pl3
2015-10-18 04:02:51 +00:00
tsutsui
e069d8e6c6 Update canna packages to 3.7pl3.
pkgsrc changes:
 - reorganize patch filenames for maintainability
  - patch-ac is also merged into existing patch-dic_phono_Imakefile
 - fix a missed 64 bit time_t issue in libRK
 - add a hook in cmd.tmpl to disable installation of cmd/forcpp and
   cmd/kpdic in canna-lib
 - tweak SUBDIRS patches in Makefiles to avoid unnecessary builds
   for each packages
 - pull various updates to canuum from the original FreeWnn's uum,
   including posix_openpt(3) support, and disable the default but
   obsolete libspt support
 - reorganize curses(3) ops in canuum per curses(3) documents
 - fix misc compiler warnings
 - take maintainership

Upstream changes:

 All changes are noted in ChangeLog and CHANGES.jp in distfile.
 I won't bother to quote ~1700 line ChangeLogs here,
 because this latest 3.7pl3 was released on 2004/05/20 and
 the previous 3.6pl4 was 2003/09/22.
 Highlight points are:
  - binary dictionary format is changed
  - shlib versions are bumped to 1.2 from 1.1
  - new APIs for wchar
  - experimental 64 bit architecture support
  - IPv6 support

Both server and clients (canuum and mule-1.1) are tested on
NetBSD/i386 7.0, NetBSD/amd64 7.0, and NetBSD/luna68k 7.0.
Also thanks to Nobuyoshi SATO, for his initial patch posted
to tech-pkg-ja@.
2015-10-18 03:58:31 +00:00
wen
cba951f20d Updated www/drupal7 to 7.40 2015-10-18 03:32:38 +00:00
wen
b7a55419c6 Update to 7.40
Upstream changes:
Drupal 7.40, 2015-10-14
-----------------------
- Made Drupal's code for parsing .info files run much faster and use much less
  memory.
- Prevented drupal_http_request() from returning an error when it receives a
  201 through 206 HTTP status code.
- Added support for autoloading traits via the registry on sites running PHP
  5.4 or higher.
- Allowed the user-picture.tpl.php theme template to have HTML classes besides
  the default "user-picture" class printed in it (markup change).
- Fixed the URL text filter to convert e-mail addresses with plus signs into
  mailto: links.
- Added alternate text to file icons displayed by the File module, to improve
  accessibility (string change, and minor API addition to theme_file_icon()).
- Changed one-time login link failure messages to be displayed as errors or
  warnings as appropriate, rather than as regular status messages (minor UI
  change and data structure change).
- Changed the default settings.php configuration to exclude private files from
  the "404_fast_paths" behavior.
- Changed the page that displays filter tips for a particular text format, for
  example filter/tips/full_html, to return "page not found" or "access denied"
  if the format does not exist or the user does not have access to it. This
  change adds a new menu item to the Filter module's hook_menu() entry (minor
  data structure change).
- Added a new hook, hook_block_cid_parts_alter(), to allow modules to alter the
  cache keys used for caching a particular block.
- Made drupal_set_message() display and return messages when "0" is passed in
  as the message to set.
- Fixed non-functional "Files displayed by default" setting on file fields.
- The "worker callback" provided in hook_cron_queue_info() and the "finished"
  callback specified during batch processing can now be any PHP callable
  instead of just functions.
- Prevented drupal_set_time_limit() from decreasing the time limit in the case
  where the PHP maximum execution time is already unlimited.
- Changed the default thousand marker for numeric fields from a space ("1 000")
  to nothing ("1000") (minor UI change: https://www.drupal.org/node/1388376).
- Prevented malformed theme .info files (without a "name" key) from causing
  exceptions during menu rebuilds. If an .info file without a "name" key is
  found in a module or theme directory, Drupal will now use the module or
  theme's machine name as the display name instead.
- Made the format column in the {date_format_locale} database table
  case-sensitive, to match the equivalent column in the {date_formats} table.
- Fixed a bug in the Statistics module that caused JavaScript files attached to
  a node while it is being viewed to be omitted from the page.
- Added an optional 'project:' prefix that can be added to dependencies in a
  module's .info file to indicate which project the dependency resides in (API
  addition: https://www.drupal.org/node/2299747).
- Fixed various bugs that occurred after hooks were invoked early in the Drupal
  bootstrap and that caused module_implements() and drupal_alter() to cache an
  incomplete set of hook implementations for later use.
- Set the X-Content-Type-Options header to "nosniff" when possible, to prevent
  certain web browsers from picking an unsafe MIME type.
- Prevented the database API from executing multiple queries at once on MySQL,
  if the site's PHP version is new enough to do so. This is a secondary defense
  against SQL injection (API change: https://www.drupal.org/node/2463973).
- Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused the upgrade
  to fail when there were multiple file records pointing to the same file.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.
2015-10-18 03:30:53 +00:00
wen
053aebe546 Updated www/mediawiki to 1.25.3 2015-10-18 03:15:17 +00:00
wen
5aefbcadeb Updated textproc/p5-Pod-Markdown to 3.003 2015-10-18 03:14:31 +00:00
wen
a36a780a6f Update to 1.25.3
Upstream changes:
== Security fixes ==

* Wikipedia user RobinHood70 reported two issues in the chunked upload API.
The API failed to correctly stop adding new chunks to the upload when the
reported size was exceeded (T91203), allowing a malicious users to upload add an
infinite number of chunks for a single file upload. Additionally, a
malicious user could upload chunks of 1 byte for very large files, potentially
creating a very large number of files on the server's filesystem (T91205).
<https://phabricator.wikimedia.org/T91203>
<https://phabricator.wikimedia.org/T91205>

* Internal review discovered that it is not possible to throttle file
uploads.
<https://phabricator.wikimedia.org/T91850>

* Internal review discovered a missing authorization check when removing
suppression from a revision. This allowed users with the 'viewsuppressed'
user right but not the appropriate 'suppressrevision' user right to unsuppress
revisions.
<https://phabricator.wikimedia.org/T95589>

* Richard Stanway from teamliquid.net reported that thumbnails of PNG files
generated with ImageMagick contained the local file path in the image
metadata.
<https://phabricator.wikimedia.org/T108616>

== Bug Fixes in 1.25.3 ==

* Fix having multiple callbacks for a single hook.
<https://phabricator.wikimedia.org/T98975>
* maintenance/refreshLinks.php did not always remove all links pointing to
  nonexistent pages.
<https://phabricator.wikimedia.org/T107632>
* $wgEmergencyContact and $wgPasswordSender now use their default value if
set to an empty string.
<https://phabricator.wikimedia.org/T104142>
* Provide fallbacks for use of mb_convert_encoding() in HtmlFormatter. It
was causing an error when accessing the api help page if the mbstring PHP
  extension was not installed.
<https://phabricator.wikimedia.org/T62174>
* Confirmation emails would sometimes contain invalid codes.
<https://phabricator.wikimedia.org/T105896>
* Fixed edit stash inclusion queries.
<https://phabricator.wikimedia.org/T105597>
2015-10-18 03:11:26 +00:00
dholland
b2f84fa02d Whitespace. 2015-10-18 00:54:19 +00:00
dholland
ba4a1507d8 Take a stab at enabling threads on openbsd (most of the logic seems to
already be in place, except in the configure script) now that openbsd
has threads.
2015-10-18 00:51:55 +00:00
dholland
0244bb6f93 Fix build with HAVE_ICONV not set, needed on OpenBSD. 2015-10-18 00:29:55 +00:00
dholland
11a5942e9c Since the configure script objects to OpenBSD's grep and this depends
on coreutils anyway, have it always just use ggrep.
2015-10-17 22:48:34 +00:00
dholland
7e3bf295cf Improve the plop message generated when the OS isn't recognized. 2015-10-17 22:34:21 +00:00
dholland
dcee48ed15 Treat openbsd and bitrig as netbsd. 2015-10-17 22:23:25 +00:00
khorben
9e8be2ee8e Updated devel/deforaos-libsystem to 0.2.3 2015-10-17 18:00:11 +00:00
khorben
a97b5e61d8 Package DeforaOS libSystem 0.2.3
This release brings:
- fixes for memory leaks in the Config and Plugin classes
- fix for memory corruption in the Event class
- improvements to configctl(1)
- additional test for the Event class
- portability fixes (build...)
2015-10-17 17:57:28 +00:00
adam
95d90e2d8a Turns out help2man is needed, so it is not in BUILD_DEPENDS 2015-10-17 17:41:49 +00:00
adam
118bdcf3bf Updated sysutils/duplicity to 0.6.26 2015-10-17 13:19:11 +00:00
adam
e69789599b Changes 0.6.26:
Enhancements:
* Merged in lp:~m4ktub/duplicity/0.6-reliability
  - Per fix proposed in Bug 1395341.
* Modded .bzrignore to ignore *.egg test dependencies, normalized, sorted.
* Backport fix for bug 1278529
  - Use try/except around get_bucket() rather than bare lookup()
* Backport _librsyncmodule.c compilation bug
2015-10-17 13:18:14 +00:00
wen
ca4070ae2b Updated textproc/p5-Pod-Markdown to 3.003 2015-10-17 12:42:20 +00:00
wen
e0c074f633 Update to 3.003
Upstream changes:
3.003     2015-09-28T00:29:45Z

  - Bump Pod::Simple prereq to fix bugs that were causing test failures.
  - Use Pod::Simple's nbsp_for_S(1) by default instead of handling S<> sequences internally.
    This means the feature can now also be disabled if desired.
  - Portability improvements for non-ascii platforms.

3.002     2015-08-21T03:24:24Z

  - Add attribution to changelog.

3.001     2015-08-21T03:17:57Z

  - Increase Pod::Simple requirement to 3.26 for detected_encoding().
    Thanks to Lee J for reporting! (gh-15).

3.000     2015-08-16T21:55:14Z

  [Bug Fixes]
  - Literal ampersands and left angle brackets are encoded as html entities
    when necessary to avoid interpretation as html.
    http://stackoverflow.com/questions/28496298/escape-angle-brackets-using-podmarkdown

  [API Changes]
  - Make accessors read/write (instead of read-only)
    for consistency with Pod::Simple classes.
  - Passing unknown arguments to the constructor now produces a warning
    and in the future may throw an error.
  - For consistency with the other html-entity changes, NBSP characters (U+00A0)
    are now used literally for S<> sequences.
    This also fixes a bug with code spans nested inside of S<> sequences.

  [New Attributes]
  - Add `html_encode_chars` attribute to allow customizing what characters
    should be html entity encoded.
  - Add `match_encoding` attribute to use the same encoding as the input pod
    when writing to the output handle.
  - Add `output_encoding` attribute to specify the desired encoding
    to apply to the output handle.

  [pod2markdown script]
  - Add command line options corresponding to new module attributes.
  - The script now defaults to UTF-8 encoding if no encoding options are specified.
    Previous versions did not produce consistent output and would sometimes emit warnings.
    Closes gh-14 and rt-101536.

  [Documentation]
  - Remove documentation for deprecated API
    (parse_from_file(), parse_from_filehandle(), and as_markdown())
    to further discourage use.

  [New Packages]
  - Added Pod::Perldoc::ToMarkdown to enable `perldoc -o Markdown ...`
    Pod::Markdown maintains a backward compatible interface that is incompatible
    with perldoc's `-o` so this module has been added to enable the functionality.
    Thanks to Alberto Sim繭es for investigating (gh-12) and providing some code to fix it (gh-13).
2015-10-17 12:39:25 +00:00
adam
a567b8fb26 Updated www/awstats to 7.4; devel/py-pbr to 1.8.1; devel/py-lockfile to 0.11.0 2015-10-17 11:12:21 +00:00
adam
5cce6bee0f Changes 0.11.0:
* Add deprecated warnings to index.rst
* Fix PIDLockFile.acquire() may loop indefinitely
* Fix failure - from lockfile import *
* lockfile.acquire doesn't accept a timeout of 0
* Update README format for our release script
* Begin moving some of the common code to a shared base
* Add pbr to dependency list
* The version of sphinx being brought in is broken
* Fix Git URLs
2015-10-17 11:09:58 +00:00
adam
32cd88d3ca Changes 1.8.1:
* Handle the case where cmd.distribution has no pbr attribute
* test_integration cleanups
* Remove redundant testscenarios glue
* Add standard code coverage configuration file
* Add shields.io version/downloads links/badges into README.rst
2015-10-17 11:03:33 +00:00
fhajny
7b475f2c75 Fix missing CONFIGURE_ARGS+= from last update 2015-10-17 11:03:09 +00:00
wen
9a74742e8c Updated textproc/p5-Pod-Simple to 3.31 2015-10-17 11:01:56 +00:00
wen
5512cb062c Update to 3.31
Upstream changes:
2015-08-23   Marc Green <marcgreen@cpan.org>
	* Release 3.31
	No changes since 3.30_1.

2015-07-19   Marc Green <marcgreen@cpan.org>
	* Release 3.30_1
	Simplified the detection of case-insensitivity in Pod::Simple::Search.

	Fixed "Use of uninitialized value $1 in lc" warning in
	Pod::Simple::Search.

	If @INC includes the current directory symbol, '.', the survey()
	method of Pod::Simple::Search no longer excludes it from its list
	of directories to search. Instead, The survey() and find() methods
	now both exclude duplicate directories from @INC (RT #102344).

	Moved source repository and updated links to new perl-pod GitHub
	organization: https://github.com/perl-pod/pod-simple.

	Improved repository links and added GitHub issue tracking link to
	the distribution metadata.

	Switched from File::Spec's catdir to catfile for path names, to
	fix failures on VMS. Also now use Unix path semantics where
	they're not required to be platform-specific. Thanks to Craig A.
	Berry for the patch (RT #105511).

	Improved the example use of the 'html_encode_chars()' method in
	the Pod::Simple::XHTML documentation. Patch from Randy Stauner.
2015-10-17 11:00:53 +00:00
adam
9e9660d6e6 Changes 7.4:
New features:
- Add debian patch debian-patches-1019_allow_frame_resize.patch to add
  option nboflastupdatelookuptosave on command line.
- 199 Added geoip6 plugin with support for IPv4 AND IPv6.
- Work with Amazon AWS log files (using %time5 tag).

Fixes:
- Fixes permission on some .pl scripts.
- 205 GetResolvedIP_ipv6 does not strip trailing dot.
- 496 tools scripts should print warnings and errors to STDERR.
- 919 Referrals not getting tracked due to improperly getting flagged as a search.
- Add debian patch 0007_russian_lang.patch.
- Add debian patch 2001_awstatsprog_path.patch.
- 921 Failure in the help text for geoip_generator.pl
- 909 awstats_buildstaticpages.pl noisy debug output.
- 680 Invalid data passed to Time::Local causes global destruction.
- 212 Fix CVE-2006-2237
2015-10-17 10:46:45 +00:00
wen
6c98e136ed Updated mail/p5-Mail-Box to 2.118 2015-10-17 10:35:47 +00:00
wen
e13e705d5a Update to 2.118
Upstream changes:
version 2.118: Thu Feb 26 12:52:42 CET 2015

	Fixes:
	- imap: reconstruction of foldername from url should be kept
	  in folderdir.
	  rt.cpan.org#82983 [Rotkraut]
	- ::Body::Scalar::file() did not construct ::FastScalar correctly
	  [Andrew Beverley]
	- fix attribute continuations
	  rt.cpan.org#90342 [Claus Jeppesen]

	Improvements:
	- accept blanks in some Content-* fields
	  rt.cpan.org#99183 [Randy Diffenderfer]
2015-10-17 10:34:37 +00:00
fhajny
94893540d6 Add graphics/opencv2 2015-10-17 10:29:49 +00:00