Commit graph

229274 commits

Author SHA1 Message Date
wiz
6fbdee2435 Updated misc/calibre to 2.19.0 2015-02-17 14:18:29 +00:00
wiz
874fa34d74 Update to 2.19.0:
- version: 2.19.0
  date: 2015-02-06

  new features:
    - title: "Quick view window: Allow the quickview window to be
    docked into the main calibre window."

    - title: "Add empty book: Allow setting the title as well as
    the author and series for the added empty book records"

    - title: "Windows driver for Grammata Papyre 602."

    - title: "Edit Book: Add an option to turn off auto-completion
    of closing tags"

    - title: "Allow adding a description for custom columns."

    - title: "Book Details panel: Allow any identifier of the form
    url+number to become a clickable link. For example:
    url1:http://example.com"

  bug fixes:
    - title: "Conversion: Convert entities that reference non-BMP
    unicode codepoints on Windows and OS X correctly. Linux was
    not affected by this bug."

    - title: "Edit Book: Do not autocomplete the closing tag wen
    typing the / key inside an existing tag."

    - title: "Fix Booken Lev e-book reader not being detected in
    OS X and Linux."

    - title: "DOCX Input: Change handling of sequences of space
    characters to more closely follow Microsoft Word."

    - title: "Edit Book: Fix Table of Contents editor not remembering
    its saved state across calibre sessions"

    - title: "Edit book: Disallow drag and drop of documents onto
    the preview panel to workaround crashing bug in Qt."

    - title: "E-book viewer: Fix current page not being preserved
    when opening and then immediately closing the footnote window."

    - title: "PDF Output: Fix incorrect encoding for some chinese
    characters in the PDF Outline (Table of Contents)"

  improved recipes:
    - FAZ.net
    - Indian Express
    - CNN
2015-02-17 14:18:20 +00:00
wiz
fabd9fa35e Updated print/cups-filters to 1.0.65 2015-02-17 14:07:33 +00:00
wiz
1451335ad5 Update to 1.0.65:
CHANGES IN V1.0.65

	- cups-browsed: Listen for NetworkManager changes (Red Hat bug #975933).
	- cups-browsed: Fix for memory leak introduced in BZR rev 7059.
	- cups-browsed: Memory leak/uninit fixes.
	- cups-browsed: Cache prepared browse data to send.
	- cups-browsed: Only get local notifications once per BrowsePoll run.
	- cups-browsed: Fix BrowsePoll now notifications work properly. Need
	  to maintain a list of printers to keep alive for the case of there
	  being no notifications of changes.
	- cups-browsed: Use local browsepolling for getting initial printer
	  list.
	- cups-browsed: Ignore browse packets for deleted printers.
	- cups-browsed: Cache connection to local cupsd.
	- cups-browsed: Use notifications to track local printers.
  	  This avoids expensive calls to cupsGetDests().
	- cups-browsed: Manage subscriptions for local browsepolling.
	- cups-browsed: Track notify-sequence-number for notifications.
2015-02-17 14:07:25 +00:00
ryoon
1a0c631b61 Updated www/apache-tomcat7 to 7.0.59 2015-02-17 14:04:44 +00:00
wiz
d6049020c5 Updated sysutils/dbus-glib to 0.104 2015-02-17 14:04:02 +00:00
wiz
26abd19c3d Update to 0.104. You should read the changelog below.
dbus-glib 0.104 (2015-02-09)
============================

The “smoke and ashes” release.

Deprecations:

• Document the entire library as deprecated (Simon McVittie, Philip Withnall)

Dependencies:

• libdbus 1.8 is required
• GLib 2.32 is required

Enhancements:

• The libdbus 1.8 dependency means we can now document that
  dbus_g_thread_init() is idempotent and thread-safe
  (fd.o #54770, Simon McVittie)

• Use g_cclosure_marshal_generic for all marshalling (fd.o #64214,
  Simon McVittie)

Fixes:

• Allow timeouts to be migrated from one main context to another
  without an assertion failure (fd.o #30574, Mike Gorse)

• Don't trip a libdbus fatal warning if a Unix fd or other unsupported type
  is encountered in a message (fd.o #80557, Alban Crequy)

• Make the tests pass with newer GLib by not removing removed sources
  (fd.o #83530, Simon McVittie)

• Fix some typos in the documentation (fd.o #45686, Jiří Klimeš)

• Make the Autotools setup less awful (fd.o #58698;
  Rafał Mużyło, Simon McVittie)
2015-02-17 14:03:54 +00:00
ryoon
fd45bc21b2 Update to 7.0.59
Changelog:
Tomcat 7.0.59 (violetagg)
Jasper
	fix	57504: Initialize TLD locations cache when creating the ServletContext. (jboynes)

Tribes
	fix	Fix a possible deadlock when receiver thread invokes mapMemberAdded() while ping thread invokes memberAlive(). (kfujino)
2015-02-17 14:03:30 +00:00
wiz
dabf59980a Updated databases/py-psycopg2 to 2.6 2015-02-17 14:02:04 +00:00
wiz
032b9e2d81 Update to 2.6:
What's new in psycopg 2.6
-------------------------

New features:

- Added support for large objects larger than 2GB. Many thanks to Blake Rouse
  and the MAAS Team for the feature development.
- Python `time` objects with a tzinfo specified and PostgreSQL :sql:`timetz`
  data are converted into each other (🎫`#272`).

Bug fixes:

- Json apapter's `!str()` returns the adapted content instead of the `!repr()`
  (🎫`#191`).
2015-02-17 14:01:56 +00:00
wiz
9bbb9c0793 Updated devel/py-cython to 0.22 2015-02-17 14:00:09 +00:00
wiz
4d74ebee0e Update to 0.22:
0.22 (2015-02-11)
=================

Features added
--------------

* C functions can coerce to Python functions, which allows passing them
  around as callable objects.

* C arrays can be assigned by value and auto-coerce from Python iterables
  and to Python lists (and tuples).

* Extern C functions can now be declared as cpdef to export them to
  the module's Python namespace.  Extern C functions in pxd files export
  their values to their own module, iff it exists.

* Anonymous C tuple types can be declared as (ctype1, ctype2, ...).

* PEP 479: turn accidental StopIteration exceptions that exit generators
  into a RuntimeError, activated with future import "generator_stop".
  See http://legacy.python.org/dev/peps/pep-0479/

* Looping over ``reversed(range())`` is optimised in the same way as
  ``range()``.  Patch by Favian Contreras.

Bugs fixed
----------

* Mismatching 'except' declarations on signatures in .pxd and .pyx files failed
  to produce a compile error.

* Failure to find any files for the path pattern(s) passed into ``cythonize()``
  is now an error to more easily detect accidental typos.

* The ``logaddexp`` family of functions in ``numpy.math`` now has correct
  declarations.

* In Py2.6/7 and Py3.2, simple Cython memory views could accidentally be
  interpreted as non-contiguous by CPython, which could trigger a CPython
  bug when copying data from them, thus leading to data corruption.
  See CPython issues 12834 and 23349.

Other changes
-------------

* Preliminary support for defining the Cython language with a formal grammar.
  To try parsing your files against this grammar, use the --formal_grammar directive.
  Experimental.

* ``_`` is no longer considered a cacheable builtin as it could interfere with
  gettext.

* Cythonize-computed metadata now cached in the generated C files.

* Several corrections and extensions in numpy, cpython, and libcpp pxd files.
2015-02-17 14:00:01 +00:00
joerg
d686fdbc97 rpath flag and directory are one option, don't pass the path without
-Wl prefix.
2015-02-17 13:57:47 +00:00
mef
702628569b Updated ham/gr-osmosdr to 0.1.4 2015-02-17 13:57:25 +00:00
wiz
57da88c0de Updated devel/py-setuptools to 12.1 2015-02-17 13:56:13 +00:00
mef
91b7c7a58a Update to 0.1.4
---------------
(From http://git.osmocom.org/gr-osmosdr/log/)
2014-11-04 update version to 0.1.4  Dimitri Stolnikov
2014-11-03 bladeRF: Don't fail out until 3 consecutive errors have occurred	Jon Szymaniak
2014-11-03 bladeRF: Default num_transfers to min(32, num_buffers/2)	Jon Szymaniak
2014-11-03 bladeRF: Removed unused bladerf_metadata parameter from rx/tx calls	Jon Szymaniak
2014-10-21 hackrf: update copyright for SSE/AVX routines	Dimitri Stolnikov
2014-10-21 hackrf: disable AMP gain stage by default to protect it from damage	Dimitri Stolnikov
2014-10-21 source/sink: don't discover devices if already specified via args	Dimitri Stolnikov
2015-02-17 13:56:08 +00:00
wiz
d5d3aa0b72 Update to 12.1:
12.1

* Pull Request #118: Soften warning for non-normalized versions in
  Distribution.
2015-02-17 13:56:05 +00:00
wiz
e8e35909cd Updated devel/waf to 1.8.6 2015-02-17 13:55:25 +00:00
wiz
a1713d78e9 Update to 1.8.6:
NEW IN WAF 1.8.6
----------------
* Python file installation fixes
* Fix for classes containing utf-8 names
* Hide the progress bar when running waf -ppp
* Support more header extensions in subst/is_copy
* Handle non-string and non-list values in substitutions (subst)
* Show how to track build files timestamps to force partial rebuilds (build_file_tracker.py)
* Added a new extension to detect blender libraries
* Added extras/prefork.py, extras/preforkunix.py and extras/preforkjava.py
* Updated demos/d
* Updated demos/vala
* Updated playground/protobuf
* Updated playground/cython
* Updated playground/dynamic_headers
* Updated playground/netcache
* Qt5 detection improvements
2015-02-17 13:55:17 +00:00
wiz
aa7d8c29f0 Updated print/cups to 2.0.2 2015-02-17 13:53:57 +00:00
wiz
ad157cbf68 Update to 2.0.2:
CHANGES IN CUPS V2.0.2

	- Security: cupsRasterReadPixels buffer overflow with invalid page
	  header and compressed raster data (STR #4551)
	- Command-line programs were not localized on Mac OS X
	  (<rdar://problem/14546232>)
	- The scheduler incorrectly cleared the MakeModel string in the
	  printers.conf file after a restart (<rdar://problem/16827518>)
	- CUPS did not compile with older versions of GNU TLS (STR #4527)
	- CUPS did not compile without Avahi or mDNSResponder (STR #4523)
	- ippLength() did not return the correct length for IPP_TAG_CONST
	  string values.
	- The scheduler incorrectly aborted jobs after a job was restarted
	  (<rdar://problem/19129387>)
	- The cups-files.conf file contained the old ServerCertificate/Key
	  directives instead of ServerKeychain.
	- Fixed builds when no SSL/TLS library is available, or when explicitly
	  disabled (STR #4531)
	- Fixed an OpenBSD charset transcoding issue.
	- Fixed USB printing on OpenBSD (STR #4525)
	- The --without-xinetd configure option did not work (STR #4542)
	- Backends needing to load OS X kernel extensions did not work
	  (<rdar://problem/19015679>)
	- Mapping of PPD keywords to IPP keywords did not work if the PPD
	  keyword was already an IPP keyword (<rdar://problem/19121005>)
	- cupsGetPPD* sent bad requests (STR #4567)
	- ippserver used the wrong temporary directory on Windows (STR #4547)
	- ippserver did not handle Bonjour registrations properly (STR #4548)
	- The scheduler could crash during shutdown if Avahi was shutdown
	  first (STR #4550)
	- Added a USB quirk rule for Intermec printers (STR #4553)
	- The scheduler did not always log which configuration file had the
	  error (STR #4559)
	- The ippfind and ipptool programs now correctly match hostnames with
	  trailing dots (STR #4563)
	- The ipptool timeout option did not work (STR #4515)
	- Fixed several issues with client.conf, CUPS_SERVER, and the "-h"
	  option of most commands (STR #4528)
	- Another change for OpenBSD (STR #4526)
	- Added Japanese localization (STR #4524)
	- Documentation changes (STR #4569)
2015-02-17 13:53:48 +00:00
wiz
c59372c260 Updated sysutils/dbus to 1.8.16 2015-02-17 13:48:32 +00:00
wiz
0b9aacb81b Update to 1.8.16:
D-Bus 1.8.16 (2015-02-09)
==

The “poorly concealed wrestlers” release.

Security fixes:

• Do not allow non-uid-0 processes to send forged ActivationFailure
  messages. On Linux systems with systemd activation, this would
  allow a local denial of service: unprivileged processes could
  flood the bus with these forged messages, winning the race with
  the actual service activation and causing an error reply
  to be sent back when service auto-activation was requested.
  This does not prevent the real service from being started,
  so it only works while the real service is not running.
  (CVE-2015-0245, fd.o #88811; Simon McVittie)

Other fixes:

• fix a Windows build failure (fd.o #88009, Ralf Habacker)

• on Windows, allow up to 8K connections to the dbus-daemon instead of the
  previous 64, completing a previous fix which only worked under
  Autotools (fd.o #71297, Ralf Habacker)
2015-02-17 13:48:24 +00:00
wiz
0943c8c367 + afio-2.5.1, cloog-0.18.3, cups-2.0.2, cups-filters-1.0.65,
dbus-glib-0.104, ispell-3.4.00, nodejs-0.12.0, py-cython-0.22,
  py-psycopg2-2.6, py-setuptools-12.1, waf-1.8.6.
2015-02-17 13:45:32 +00:00
wiz
3286317e52 gnome-admin removed. 2015-02-17 13:44:45 +00:00
wiz
be95d69778 Remove gnome-admin, nothing in it was packaged since 2008 when
this was created. Requested by joerg.
2015-02-17 13:43:18 +00:00
he
67c772139f Note update of net/exabgp to 3.3.2nb2. 2015-02-17 13:42:17 +00:00
he
3aa10d6ad4 Fix healthcheck.py so that it works with NetBSD's (and other) outputs
from "ifconfig lo0" -- no sense in insisting on leading spaces in the
regexp after having done string.strip() on the target string...
Add dependency on py-ipaddr for healthcheck.py.
Remove *.orig files before installing, and make install target re-runnable.
Bump PKGREVISION.
2015-02-17 13:41:36 +00:00
mef
7f2fdc05a6 Updated devel/p5-ExtUtils-InstallPaths to 0.011
Updated devel/p5-Module-CoreList to 5.20150214
2015-02-17 13:38:26 +00:00
mef
82035ca377 Update to 5.20150214
--------------------
5.20150214
  - Updated for v5.20.2
2015-02-17 13:37:30 +00:00
mef
048c909868 Update to 0.011
---------------
0.011     2015-02-16 00:47:54+01:00 Europe/Amsterdam
          Make EU::IP compatible with perl 5.6
          Declare dependency on File::Spec 0.83 for case_sensitive
2015-02-17 13:35:18 +00:00
mef
b02285e961 Updated devel/p5-Test-Script-Run to 0.08
Updated devel/p5-Test-SharedFork to 0.29
Updated devel/p5-Test-TempDir to 0.09
Updated devel/p5-Test-TinyMocker to 0.05
Updated devel/p5-Test-TinyMocker to 0.05
Updated devel/p5-Test-Trap to 0.3.0
Updated devel/p5-Test-UseAllModules to 0.17
Updated devel/p5-Test-Version to 1.004001
Updated devel/p5-Test-Without-Module to 0.18
Updated devel/p5-Test-YAML-Meta to 0.22
2015-02-17 13:31:19 +00:00
mef
7572f007a6 Update to 0.22
--------------
0.22    2015-01-31
        - META marked distribution as deprecated.
2015-02-17 13:28:13 +00:00
mef
9f3c5a0909 0.18 20140830
- Eliminate segfault on Perl 5.8 (by Graham Knop, Karen Etheridge, RT 98207)
  - Only add the @INC hook once (by Graham Knop, RT #91857)
  - Updated documentation
2015-02-17 13:26:15 +00:00
mef
849b9223f8 Update 1.002004 to 1.004001
----------------------------
1.004001  2014-10-20
        - improved consistent check diagnostics GH #11 (SZABGAB)

1.004000  2014-10-18
        - add consistent check GH #10 (SZABGAB)

1.003001  2014-09-06
        - remove inline and remove _get_version, trying to skip test there won't
          work GH #4 (ETHER)

1.003000  2014-09-05
        - skip packages unindexable by pause GH #4 (ETHER)
2015-02-17 13:24:24 +00:00
mef
3771e63f4b Update 0.14 to 0.17
-------------------
0.17 2014/11/13
  - oops, forgot to update MANIFEST...

0.16 2014/11/13
  - dropped cpanfile support, as it forced users of this module
    to update too many modules, especially while testing backward
    compatibility with older perls.

0.15 2014/07/13
  - dropped (experimental) Test::More 1.5/2.0 support
2015-02-17 13:22:30 +00:00
mef
84362512eb Update 0.2.5 to 0.3.0
---------------------
(From the Changes)
0.3.0   Thu Dec 18 21:57:51 CET 2014
        This release, in brief:
        - improves clarity through nomenclature:
              * renames "(output layer) backend implementation" to
                "(capture) strategy", for more standard nomenclature
                (and less of a mouthful);
              * renames "pseudo-layer" to "multi-layer" (if so
                declared) or "non-trapping layer" (neither is a direct
                analogue to PerlIO pseudo layers, so the nomenclature
                was misleading);
        - adds (import) options to the TempFile and SystemSafe capture
          strategy factories, allowing for different ways to handle
          PerlIO layers;
        - using these for two new standard capture strategies,
          "tempfile-preserve" and "systemsafe-preserve"; and
        - fixes a bug in SystemSafe.
2015-02-17 13:20:28 +00:00
mef
147e722f32 Update 0.03 to 0.05
-------------------
0.05      2013-11-27 15:06:40 Europe/Paris
    * Support for mocking of unknown symbols (Damiano Turrisi, Alexis Sukrieh).

0.04      2013-09-14 11:17:48 Europe/Paris
    *   Removed a spurious Unicode space which caused failures in t/pod.t.
        (chromatic)
2015-02-17 13:12:54 +00:00
wiz
04a59f1490 Updated devel/p5-List-MoreUtils to 0.405 2015-02-17 13:12:22 +00:00
wiz
a3346eac42 Update to 0.405:
0.405	2015-02-14
    - fix RT#78527 - first_val/last_val in documentation
    - fix RT#102055 - ExtUtils::MakeMaker required version absurdly high
    - update README (deploy it as README.md now)
    - fix compiler issue for older/ansi-c89 compilers
    - remove local compat workarounds in favour for ppport.h
2015-02-17 13:12:13 +00:00
wiz
b8ab28c56b Updated www/p5-libwww to 6.13 2015-02-17 13:11:25 +00:00
wiz
e4e383ce34 Update to 6.13:
2015-02-14  Release 6.13

Karen Etheridge (1):
    - fixed Makefile.PL compatibility with older ExtUtils::MakeMaker (from
      release 6.12)

_______________________________________________________________________________
2015-02-13  Release 6.12

Karen Etheridge (1):
    - fixed prereq declarations in release 6.11

_______________________________________________________________________________
2015-02-13  Release 6.11

Graham Knop (1):
    - cleanup of the test running mechanism; allowing greater flexibility and
      should also resolve RT#102083

_______________________________________________________________________________
2015-02-12  Release 6.10

Karen Etheridge (1):
    - lower runtime prereqs recommendation on LWP::Protocol::https to suggests,
      to work around a circular dependency in CPAN clients when the 'install
      recommendations' option is enabled (RT#101732)

_______________________________________________________________________________
2015-02-09  Release 6.09

Steffen Ullrich (1):
    - checks for EINTR now also check EWOULDBLOCK (they sometimes differ on
      MSWin32)

Daina Pettit (1):
    - fixed pod syntax

Jason A Fesler (2):
    - Fixed checking the % character in address regex
    - Improved regex for literal IPv6 addresses
2015-02-17 13:11:16 +00:00
mef
80e02704f0 Update to 0.09
--------------
0.09   2014-11-05 03:55:58Z
  - add formal deprecation notice - please use Test::TempDir::Tiny instead!
2015-02-17 13:11:07 +00:00
wiz
0a1759640c Updated devel/p5-Error to 0.17023 2015-02-17 13:09:14 +00:00
wiz
0c62edac62 Update to 0.17023:
Feb 12 2015 <shlomif@shlomifish.org> (Shlomi Fish)

  Error.pm #0.17023
  - Minimal version of Module-Build reduced to 0.280801
    - https://rt.cpan.org/Public/Bug/Display.html?id=102062
2015-02-17 13:09:05 +00:00
mef
5834ab6158 Update 0.21 to 0.29
-------------------
0.29 2014-09-20T04:21:14Z

0.28 2014-07-04T07:37:50Z
    - Fixed minor testing issue on Win32.
      (charsbar++)

0.27 2014-07-03T05:37:00Z
    - Fix another issue with Result_Stream branch of TB

0.26 2014-06-27T04:20:47Z
    - Fix support for Result_Stream Test::Builder branch
      (exodist)

0.25 2014-06-24T01:34:10Z
    - Switch to EUMM

0.24 2014-04-07T21:21:56Z
    - Cygwin 64-bit - allow tests to pass
    (rwhitworth)

0.23 2014-03-12T20:12:11Z
    - 06_fail_lineno.t fails on Windows due to path separator #9
      (nanis)

0.22 2014-03-11T00:01:43Z
    - Care the is_passing value.
      https://rt.cpan.org/Public/Bug/Display.html?id=93726
      (Reported by RHOELZ++)
2015-02-17 13:05:40 +00:00
mef
75debed849 Update 0.05 to 0.08
-------------------
0.08 Sun Oct 20 20:14:17 2013 +0800
    doc updates only(copyright years, changes, etc)

0.07 Sun Oct 20 20:03:50 2013 +0800
    quote arguments in test names(requires String::ShellQuote or Win32::ShellQuote)
2015-02-17 13:02:57 +00:00
abs
86706685f7 Fix off by one error which caused SEGV when no valid scaling option found
Add comments to patch-ab
Bump PKGREVISION
2015-02-17 09:59:30 +00:00
pho
3c1f659e8a Add upstream Trac URL for our workaround to non-standard curses path 2015-02-17 09:29:17 +00:00
wiz
48e21024d8 Use ${PY_DISTVERSION} in PKGNAME instead of 0.
Noted by mef on pkgsrc-users.
2015-02-17 08:08:31 +00:00