Commit graph

210586 commits

Author SHA1 Message Date
tonnerre
14b3cd8e16 Fix detection of useradd user management under NetBSD.
NetBSD doesn't have chage but can use the -e and -f flags to passwd to
achieve the same.

Closes PR pkg/48137.
2014-01-01 23:46:38 +00:00
adam
795f03293f Updated graphics/GraphicsMagick to 1.3.19 2014-01-01 23:23:03 +00:00
adam
496a42bd39 Changes 1.3.19:
Security Fixes:
EPT: Fix crash observed when Ghostscript fails to produce useful output. This was particularly noticeable when Ghostscript was not installed. This crash could be used to cause denial of service.
PNG: With libpng 1.6.X, avoid a crash while copying a PNG with a "known incorrect ICC profile". This crash could be used to cause denial of service.

Bug fixes:
Build: Fix cross-compilation for MinGW64 on Linux build machine.
Build: configure FreeType test no longer insists that <freetype/freetype.h> can be included.
CMS profile: Only delete the CMS transform if it is non-null. Fixes assersion observed when lcms returned a null profile and GraphicsMagick attempted to deallocate it.
Drawing: Improve error handling logic so that drawing returns quickly on pixel access errors rather than plowing on ahead. This avoids problems with SVGs which take seemingly forever to render.
Drawing via C/C++ APIs: BevelJoin no longer causes a MVG parsing error.
EPT: Fix crash observed when Ghostscript fails to produce useful output. This was particularly noticeable when Ghostscript was not installed.
OpenMP: Revert use of omp_set_dynamic() since it caused performance issues when using GCC's GOMP implementation and the number of threads to use is specified.
EXIF profile: Support the SubjectArea EXIF tag.
MIFF writer: PseudoClass format was written incorrectly for depth greater than 8.
MIFF writer: RLE compressed format used inverted alpha from the other subformats and contrary to the MIFF specification.
MIFF reader: Fixes Fixes to be able to read MIFF written by ImageMagick 6.X, including DirectClass grayscale images (except for RLE compressed).
Mosaic: Fixed unsigned underflow problem with -mosaic when page offset is negative and exceeds image width or height, resulting in assertions, out of memory errors, or pixel cache limit errors.
PDF: Consistently initialize Image page width and height to image width and height. While general to all of GraphicsMagick, this change is to assure that the PDF writer computes page dimensioning consistently. PDF page dimensioning was wrong if the image had been resized with -geometry "100%".
PAM: Fix MAXVAL scaling when reading PAM images. PAM was only working correctly for images with 256 or 64k levels.
PNM: PGM "P2" format writer wrote bad output for 8-bit depth.
PNG: With libpng 1.6.X, avoid a crash while copying a PNG with a "known incorrect ICC profile".
PNG: Q8 GM build now correctly reads 16-bit PNG files.
TIFF writer: Try to avoid writing more than 32k strips per image by increasing rows-per-strip since some programs fail to read images with more than 32k strips per image.
TIM reader: PSX TIM reports 8-bit depth (rather than 16).
TTF font rendering: Improve FreeType rendering error logic so that rendering returns immediately on pixel access errors rather than plowing on ahead.
TTF font rendering: Support rendering UTF-8 up to 21-bit code points. Was only supporting 16-bit code points.
Wand API: DrawSetStrokeDashArray() / DrawGetStrokeDashArray(), fix failure to work properly due to this code path never being tested.
Windows Ghostscript: 64-bit GraphicsMagick no longer requires both 32-bit and 64-bit builds of Ghostscript to be installed in order to read Postscript and PDF formats.
XPM reader: Reported depth now depends on the colormap rather than always claiming to be 16-bit.

New Features:
JPEG: Add support for writing 'XMP' profile.
PNM: As a simple non-standard extension to the standard PNM and PAM formats, support writing and reading 32-bit sample depth. Writing such files is only supported by the Q32 build although they may be read by any build.
WebP: Now supports reading and writing Google's WebP format. This feature is not currently supported by the Windows Visual Studio build.
2014-01-01 23:21:34 +00:00
dholland
cb70af6804 bulk-small 2014-01-01 22:52:45 +00:00
dholland
0c23185f8f At some point the emacs in here got changed to emacs24 without
discussion; set it back to emacs22, which was chosen on purpose.

emacs24 takes longer to build than the entire intended time budget for
this package.

Bump version.
2014-01-01 22:52:14 +00:00
christos
eff98cdf99 check the proper options variable 2014-01-01 19:47:30 +00:00
kleink
b3f8fc04a7 Updated security/py-passlib to 1.6.2.
Updated www/py-flask-wtf to 0.9.4.
Updated www/py-flask-login to 0.2.9.
2014-01-01 17:59:11 +00:00
kleink
8f027d6255 Update py-flask-login to 0.2.9.
Version 0.2.9-dev
-----------------

Released on December 28th, 2013

- Fixes anonymous user assignment.
- Fixes localization in Python 3.


Version 0.2.8
-------------

Released on December 21st 2013

- Support login via authorization header. This allows login via Basic Auth, for
  example. Useful in an API presentation context.
- Ability to override user ID method name. This is useful if the ID getter is
  named differently than the default.
- Session data is now only read when the user is requested. This can be
  beneficial for cookie and caching control when differenting between
  requests that use user information for rendering and ones where all users
  (including anonymous) get the same result (e.g. static pages)
- BREAKING: User *must* always be accessed through the ``current_user``
  local. This breaks any previous direct access to ``_request_ctx.top.user``.
  This is because user is not loaded until current_user is accessed.
- Fixes unnecessary access to the session when the user is anonymous
  and session protection is active.
  see https://github.com/maxcountryman/flask-login/issues/120
- Fixes issue where order dependency of applying the login manager
  before dependent applications was required.
  see https://github.com/mattupstate/flask-principal/issues/22
- Fixes Python 3 ``UserMixin`` hashing.
- Fixes incorrect documentation.
2014-01-01 17:56:43 +00:00
kleink
aa52d00f3f Update py-flask-wtf to 0.9.4.
Version 0.9.4
-------------

Released 2013/12/20

- Bugfix for csrf module when form has a prefix
- Compatible support for wtforms2
- Remove file API for FileField
2014-01-01 17:51:49 +00:00
kleink
ff4073cb3c Update py-passlib to 1.6.2.
**1.6.2** (2013-12-26)
======================

    Minor changes & compatibility fixes

    * Re-tuned the :attr:`~passlib.ifc.PasswordHash.default_rounds`
      values for all of the hashes.

    * Added the new :doc:`bcrypt_sha256 <lib/passlib.hash.bcrypt_sha256>` hash,
      which wraps BCrypt using SHA256 in order to work around
      BCrypt's password size limitations (:issue:`43`).

    * :doc:`passlib.hash.bcrypt <lib/passlib.hash.bcrypt>`:
      Added support for the `bcrypt <https://pypi.python.org/pypi/bcrypt>`_
      library as one of the possible bcrypt backends that will be
      used if available.  (:issue:`49`)

    * :mod:`passlib.ext.django`: Passlib's Django extension
      (and it's related hashes and unittests) have been updated to
      handle some minor API changes in Django 1.5-1.6. They should
      now be compatible with Django 1.2 and up.  (:issue:`50`)
2014-01-01 17:46:20 +00:00
bsiegert
bafd88e7f1 Add support for MirBSD to re-alpine.
This needs more work but at least allows the package to be built. However,
it segfaults when you try to compose a message. It looks like there are
issues with format strings.
2014-01-01 16:10:09 +00:00
bsiegert
19a15bf4dc Support for MirBSD. Also, no strtold. 2014-01-01 16:08:24 +00:00
bsiegert
7de5dce736 Fix MirBSD build. 2014-01-01 16:06:58 +00:00
bsiegert
242c7819ab Add support for MirBSD.
This needs some more work, there is a segfault when trying to pull
or clone. But at least it builds and basic operations work.
2014-01-01 16:05:51 +00:00
bsiegert
d0e9254cb6 Lower the minimum required OpenSSL version to 0.9.7 for MirBSD.
The MirBSD version contains fixes so the comment in Makefile.PL does
not apply.
2014-01-01 16:04:25 +00:00
schmonz
cc8d93c052 Fix previous for OS X 10.9 with clang (and maybe other non-glibc systems). 2014-01-01 15:50:01 +00:00
schmonz
fa6bbb00c7 64-bit build fails; force 32-bit (via Homebrew). 2014-01-01 15:05:37 +00:00
schmonz
89c335aa6f Avoid conflicting sigaltstack types on OS X 10.9. 2014-01-01 14:44:59 +00:00
mef
e8115ef664 Add patch for interim fix on SunOS 5.11 (bulkbuild)
binutils-2.23.2/bfd/doc/bfd.texinfo:325: unknown command `colophon'
  binutils-2.23.2/bfd/doc/bfd.texinfo:336: unknown command `cygnus'
2014-01-01 14:27:55 +00:00
wiz
d41ddf13da Add pre-test target to improve test results.
From Kai-Uwe Eckhardt.
2014-01-01 14:22:30 +00:00
wen
d43d9eb999 Updated devel/p5-Moo to 1.004002 2014-01-01 14:01:53 +00:00
wen
b39eafddbd Update to 1.004002
Update DEPENDS

Upstream changes:
1.004002 - 2013-12-31
  - fix type inflation in threads when types are inserted by manually
    stringifying the type first (like Type::Tiny)
  - add undefer_all to Sub::Defer

1.004001 - 2013-12-27
  - fix repository links in pod
  - add missing changelog entry regarding strictures to 1.004000 release

1.004000 - 2013-12-26
  - strictures will now be applied to modules using Moo just as if they
    included "use strictures" directly.  This means that strictures extra
    checks will now apply to code in checkouts.
  - fix handling of type inflation when used with threads
  - don't include meta method when consuming Mouse roles
  - inhale Moose roles for has attr => ( handles => "RoleName" )
  - provide useful error if attribute defined as required but with
    init_arg => undef
  - document that BUILDARGS isn't called when there are no attributes
  - omit sub imported before use Moo from Moose method inflation
  - check for FOREIGNBUILDARGS only once per class instead of on each
    instantiation
  - take advantage of XS predicates from newer versions of Class::XSAccessor
  - always try to load superclasses and roles, and only fall back on the
    heuristic of checking for subs if the file doesn't exist
  - fix handling of attributes with names that aren't valid identifiers
  - Quoted subs now preserve the package and pragmas from their calling code
  - the official Moo git repository has moved to the Moose organization on
    GitHub: https://github.com/moose/Moo
2014-01-01 14:00:48 +00:00
wen
45a81ceccf Updated devel/p5-Devel-GlobalDestruction to 0.12 2014-01-01 13:56:37 +00:00
wiz
403539c89a + abcmidi-20131225, apache-ant-1.9.3, aria2-1.18.2, cdrtools-3.01a20,
darktable-1.4, doxygen-1.8.6, dvtm-0.10, etm2-2.3.19 [etm
  successor], libxmp-4.2.1, mawk-1.3.4.20131226, minicom-2.7,
  mpg123-1.17.0, phpmyadmin-4.1.3.
2014-01-01 12:58:12 +00:00
ryoon
a4a10a9a25 Updated editors/OmegaT to 3.0.8.01 2014-01-01 12:41:24 +00:00
ryoon
7264b05d94 Update to 3.0.8.01
Changelog:
----------------------------------------------------------------------
 OmegaT 3.0.8 update 1
----------------------------------------------------------------------
   0 Enhancement
   1 Bug fix
   11 Localisation updates
----------------------------------------------------------------------
3.0.8 update 1 vs. 3.0.8

  Bug fixes:

  - Enabling Remove Tags results in almost empty translated Word files
  https://sourceforge.net/p/omegat/bugs/635/

  Localisation updates:

  - Italian localisation updated to 3.0.8 (UI, Documentation)
  - Hungarian localisation updated to 3.0.8 (Instant Start)
  - Czech localisation updated to 3.0.2 (UI, Documentation)
  - German localisation updated to 3.0 (UI)
  - Russian localisation updated to 3.0.3 (UI, Documentation)
  - Greek localisation updated to 3.0 (Documentation)
  - Belarus localisation updated to 3.0 (UI, Instant Start, Readme)
  - Korean localisation added at 3.0.7 (UI, Instant Start, Readme)
  - Dutch localisation updated to 3.0.8 (UI, Documentation)
  - Simplified Chinese localisation updated to 3.0.8 (UI)
  - Japanese localisation updated to 3.0.8 (UI, Documentation)
2014-01-01 12:40:53 +00:00
wiz
5c627759ff Updated news/pan to 0.139nb13 2014-01-01 12:10:09 +00:00
wiz
8b460e067b Add patches from joerg to fix build with clang/libc++.
Bump PKGREVISION.
2014-01-01 12:10:00 +00:00
wiz
b05c4549fb Fix typo 2014-01-01 11:55:19 +00:00
wiz
e03c03b6dc Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
wiz
8c731cab8a Updated nih/libgcrypt to 1.6.0 2014-01-01 11:50:08 +00:00
wiz
192a80dbc5 Update to 1.6.0:
Noteworthy changes in version 1.6.0 (2013-12-16)
------------------------------------------------

 * Removed the long deprecated gcry_ac interface.  Thus Libgcrypt is
   not anymore ABI compatible to previous versions if they used the ac
   interface.

 * Removed the module register subsystem.

 * The deprecated message digest debug macros have been removed.  Use
   gcry_md_debug instead.

 * Removed deprecated control codes.

 * Improved performance of most cipher algorithms as well as for the
   SHA family of hash functions.

 * Added support for the IDEA cipher algorithm.

 * Added support for the Salsa20 and reduced Salsa20/12 stream ciphers.

 * Added limited support for the GOST 28147-89 cipher algorithm.

 * Added support for the GOST R 34.11-94 and R 34.11-2012 (Stribog)
   hash algorithms.

 * Added a random number generator to directly use the system's RNG.
   Also added an interface to prefer the use of a specified RNG.

 * Added support for the SCRYPT algorithm.

 * Mitigated the Yarom/Falkner flush+reload side-channel attack on RSA
   secret keys.  See <http://eprint.iacr.org/2013/448> [CVE-2013-4242].

 * Added support for Deterministic DSA as per RFC-6969.

 * Added support for curve Ed25519.

 * Added a scatter gather hash convenience function.

 * Added several MPI amd SEXP helper functions.

 * Added support for negative numbers to gcry_mpi_print,
   gcry_mpi_aprint and gcry_mpi_scan.

 * The algorithm ids GCRY_PK_ECDSA and GCRY_PK_ECDH are now
   deprecated.  Use GCRY_PK_ECC if you need an algorithm id.

 * Changed gcry_pk_genkey for "ecc" to only include the curve name and
   not the parameters.  The flag "param" may be used to revert this.

 * Added a feature to globally disable selected hardware features.

 * Added debug helper functions.
2014-01-01 11:49:59 +00:00
wiz
f341ff6e03 Remove references to two non-existing packages. 2014-01-01 11:43:24 +00:00
richard
8ea6090920 gettext-lib/buildlink3.mk adds include/gettext to INCDIRS, so don't collapse
the subdirectory gettext to avoid spewing "directory not found" warnings.
2014-01-01 11:32:34 +00:00
adam
7cd61ec68d Updated devel/git to 1.8.5.2 2014-01-01 11:15:59 +00:00
adam
69f533e673 Changes 1.8.5.2:
* "git diff -- ':(icase)makefile'" was unnecessarily rejected at the
  command line parser.
* "git cat-file --batch-check=ok" did not check the existence of
  the named object.
* "git am --abort" sometimes complained about not being able to write
  a tree with an 0{40} object in it.
* Two processes creating loose objects at the same time could have
  failed unnecessarily when the name of their new objects started
  with the same byte value, due to a race condition.
Also contains typofixes, documentation updates and trivial code clean-ups
2014-01-01 11:14:38 +00:00
wen
ec3a7b910d Update to 0.12
Update DEPENDS

Upstream changes:
0.12  Fri, 01 Nov 2013
  * Fix detection when loaded during global destruction by checking B::main_cv
    instead of B::main_start
  * Bump Sub::Exporter::Progressive dependency to fix loading in global
    destruction

0.11  Wed, 03 Apr 2013
  * Fix upgrading from version 0.09 or older

0.10  Tue, 26 Mar 2013
  * Rewrite pure-perl implementation in terms of B::main_start
    (greatly simplifies code)
  * Fix pure-perl behavior under $^C (RT#78619))
  * Separate XS portion into a compiler-optional dependency
    Devel::GlobalDestruction::XS
2014-01-01 09:43:29 +00:00
wen
4335ea7a96 Updated devel/p5-Sub-Exporter-Progressive to 0.001011 2014-01-01 09:33:45 +00:00
wen
49716ba7ba Update to 0.001011
Upstream changes:
0.001011 - 2013-10-28
  - Fix in global destruction (Graham Knop)
  - Fix SYNOPSIS
  - Fix duplicate word in DESCRIPTION (RT#86072)
2014-01-01 09:32:11 +00:00
wen
7310e4ca33 Updated devel/p5-Import-Into to 1.002000 2014-01-01 09:23:16 +00:00
obache
c88b956eea Use _OPSYS_SHLIB_TYPE instead of SHLIB_TYPE, it is not defined even after
bsd.prefs.mk.
_OPSYS_SHLIB_TYPE is sufficient to check whether shlib is supported or not.
2014-01-01 09:22:05 +00:00
wen
7a739297a8 Update to 1.002000
Remove the patch which included into src upstream

Upstream changes:
1.002000 - 2013-12-10
  - allow specifying by caller level, as well as specifying file, line,
    and version

1.001001   2013-03-25
  - fix NAME in Makefile.PL (RT#84207)
2014-01-01 09:20:33 +00:00
obache
84f1e570c2 egtk was removed. 2014-01-01 08:58:18 +00:00
obache
6dacca1bd8 fix partial update of distinfo 2014-01-01 08:49:50 +00:00
obache
7fac273e41 Updated textproc/groonga to 3.1.1 2014-01-01 08:49:08 +00:00
obache
3d516dee79 Update groonga to 3.1.1.
Release 3.1.1 - 2013/12/29
--------------------------

Improvements
^^^^^^^^^^^^

* [deb] Refined Groonga packages for Debian policy. [groonga-dev,01930]
  [Suggested by Hideki Yamane]
* [deb] Dropped Debian 6.0 (squeeze) support.
* [deb] Dropped Ubuntu 10.04 (lucid) support.
* Supported :doc:`/reference/functions/geo_in_rectangle` in the whole world.
* Supported error report when failed to casting invalid value of geo point type.
* Exported some macros which is used for accessing pseudo column names.
  [groonga-dev,1999] [Suggested by whombx]
* [doc] Refined drilldown documentation. [Reported by @Yahppo]
* Supported :doc:`/reference/functions/between` function which is used for
  filtering the column value in specific range.
* [doc] Updated Travis CI envrinment information. [Patch by cosmo0920]
* [rpm][fedora] Dropped Fedora 19.
* [rpm][fedora] Supported Fedora 20.
* [doc] Updated "Groonga" notation. [Patch by cosmo0920] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]

Fixes
^^^^^

* [munin] Fixed the wrong port number which is specified for GQTP.
* [geo_in_circle] Fixed a bug that if you specify "LONGITUDExLATITUDE" as
  the 3rd argument of :doc:`/reference/functions/geo_in_circle`, Groonga crashes.

Thanks
^^^^^^

* Hideki Yamane
* whombx
* @Yappo
* cosmo0920
2014-01-01 08:48:47 +00:00
obache
b7f5ff5f65 Updated cabocha to 0.67. 2014-01-01 07:51:04 +00:00
obache
75bad0deda reset PKGREVISION from base update. 2014-01-01 07:49:55 +00:00
obache
7da6f0a0db Update cabocha to 0.67
* improve 20% analysis speed
* fixes build errors on OSX
* show version number correctly on Windows
2014-01-01 07:49:32 +00:00
ryoon
ceeca34d4b Added misc/byobu version 5.69 2014-01-01 07:16:54 +00:00