Commit graph

221626 commits

Author SHA1 Message Date
morr
a51432bc98 Update to version 1.5.4.
Changes:

- BUG: config: error in http-response replace-header number of arguments
- BUG/MINOR: Fix search for -p argument in systemd wrapper.
- BUG/MEDIUM: auth: fix segfault with http-auth and a configuration with an unknown encryption algorithm
- BUG/MEDIUM: config: userlists should ensure that encrypted passwords are supported
- MEDIUM: connection: add new bit in Proxy Protocol V2
- BUG/MINOR: server: move the directive #endif to the end of file
- BUG/MEDIUM: http: tarpit timeout is reset
- BUG/MAJOR: tcp: fix a possible busy spinning loop in content track-sc*
- BUG/MEDIUM: http: fix inverted condition in pat_match_meth()
- BUG/MEDIUM: http: fix improper parsing of HTTP methods for use with ACLs
- BUG/MINOR: pattern: remove useless allocation of unused trash in pat_parse_reg()
- BUG/MEDIUM: acl: correctly compute the output type when a converter is used
- CLEANUP: acl: cleanup some of the redundancy and spaghetti after last fix
- BUG/CRITICAL: http: don't update msg->sov once data start to leave the buffer
2014-09-12 21:37:38 +00:00
shattered
9bdc69b5cc Update to 0.90.86 (2013). Notable changes:
Milkyplay license changed from GPL to BSD (MilkyTracker remains GPL).
LHA, gzip and LZX compression support.
Colour table import/export.
Unsafe notes now shown in red when "PT 3 octave limit" option enabled.

Bug in xm loader for old xm variant causing 8 bit samples to not load correctly.
Crash when MilkyTracker attempts to load a non-existant file.
Instrument vibrato depth value gets doubled when copying instruments.
Loss of data when using 'backward' sample filter.
Crash when storing colour presets.
Segfault when loading XMs with zero-length loop.
2014-09-12 21:31:39 +00:00
wiz
0ddca3523e Correct and fix build with ncursesw.
From Leonard Schmidt in PR 49200.
2014-09-12 21:29:22 +00:00
asau
61813809fc Updated lang/abcl to 1.3.1 2014-09-12 21:20:01 +00:00
szptvlfn
7cd5e8faec + hs-resourcet 2014-09-12 21:12:17 +00:00
szptvlfn
d783a7d55c Added devel/hs-resourcet version 1.1.2.3 2014-09-12 21:10:36 +00:00
szptvlfn
04d5883fd8 Import resourcet-1.1.2.3 as devel/hs-resourcet,
packaged for wip.

A full tutorial is available at
https://www.fpcomplete.com/user/snoyberg/library-documentation/resourcet.

This package was originally included with the conduit package, but has
existed as a separate package for quite a while. It is fully usable outside
of conduit.
2014-09-12 21:10:09 +00:00
asau
2d94573469 Update to ABCL 1.3.1
While here, add test target. Temporarily require network access for it.


Changes since previous package:

Version 1.3.1
=============
http://abcl.org/svn/tags/1.3.1/
30-APR-2014

## Fixed

*  The underlying Java Function Interface (JFI) now converts CL:T and
   CL:NIL to JAVA:+TRUE+ and JAVA:+FALSE+.  Users who wish to
   reference a JAVA:+NULL+ should do so explicitly.

*  Make JCALL work in more places.  Thanks to Olof-Joachim Frahm.
   <http://abcl.org/trac/changeset/14683>

*  Interpolate CL:SLEEP and THREADS:OBJECT-WAIT for timeouts below the
   Planck timer ("1ns") to a nanosecond.
   <http://abcl.org/trac/changeset/14679>

*  Update to ASDF 3.1.0.103.
   <http://abcl.org/trac/changeset/14661>

   Fixes loading of Ironclad and other Quicklisp systems.

*  Fix Uniform Naming Convention (aka "UNC" or "network") paths under Windows.
   <http://abcl.org/trac/changeset/14659>

   DIRECTORY now works again on UNC paths.

   UNC paths may be either specified with either back slash (#\\) or
   forward slash (#\/) doubled as the first character in a Pathname
   namestring.

   The patterns in

        //<server>/<share>/[directories-and-files]

   are parsed as

    <server> is stored as HOST.

    <share> is stored as DEVICE.

    [directories-and-files] gets parsed as per the normal rules under
    Windows.

   Mixing namestrings with both backslash and slash characters can
   lead to unpredictable results.  It is recommended not to use
   backslash characters in namestrings if it can be avoided.  The
   pathname printed representation is always normalized to using
   forward slash delimiters.


*  Find contrib based on system jar name.
   <http://abcl.org/trac/changeset/14657>

   From Olof-Joachim Frahm.


Version 1.3.0
=============
http://abcl.org/svn/tags/1.3.0/
15-MAR-2014

## Features

*  Make LispStackFrame.UNAVAILABLE_ARG a singleton object,
   and lazily create the little used portions of the Lisp stack.

    Aggressively cache and control the use of memory by the underlying
    Lisp stack frame representation by introducing the private
    LispThread.StackFrame and LispThread.StackSegments classes.

    Contributed by Dmitry Nadezhin.

    LispStackFrame object are allocated on every
    LispThread.execute(...) .  However, they are seldom [accessed]
    ([... verify via] inspect[tion of the] stack trace). This patch
    delays allocation of LispStackFrame? objects until they are
    requested.  Raw information about stack frames is stored in
    stack. Stack is an Object[] array (more precisely a list of [...]4
    [Mib] Object[] arrays).

    ME: We are going to need a way to try to less agressively grab 4Mib
    chunks in low memory situations.

    Memory profiling of ABCL shows that the classes with largest
    allocation count are org.armedbear.lisp.LispStackFrame and
    org.armedbear.lisp.LispStackFrame.UnavailableArgument.

    Contributed by Dmitry Nadezhin.

    [r14572]: http://abcl.org/trac/changeset/14572
    [r14579]: http://abcl.org/trac/changeset/14579

*  ASDF 3.0.1.94 shipped with the implementation

*  per function call stack and memory exception handler in CL:COMPILE

   Inline calls to jrun-exception-protected (used by handler-bind to
   catch out of memory conditions).  This commit saves generation
   roughly 50 cls files.

   [r14552]: http://abcl.org/trac/changeset/14552

*  SYS:SHA256 audited

    The functionality if the SYS:SHA256 algorithim has been audited for
    use on inputs of single for files with recently shipping ORCL Java 7
    implementations (through jdk-1.7.0_51).

    [r14582]:  http://abcl.org/trac/changeset/14582

* Connect to NetBeans controlled JDWP via SLIME

    The Netbeans IDE configuration now includes a way to connect to
    the running-under-jdb ABCL via SLIME.  One needs a version of
    SLIME able to be loaded from its 'swank.asd' definition.

* Install 'abcl.jar' and 'abcl-contrib.jar' locally as Maven artifacts

    The Ant `abcl.mvn.install` target now installs build artifacts
    into the local Maven repository (Olof-Joachim Frahm)

    [r14579]: http://abcl.org/trac/changeset/14606

## Compatibility

*  CL:DIRECTORY

   The implementation specific :RESOLVE-SYMLINKS argument to the ANSI
   DIRECTORY function has been changed to nil.  This implements
   behavior closer to SBCL and guarantees that a DIRECTORY operation
   will not signal a file error.

   [r14619]: http://abcl.org/trac/changeset/14619
   [ticket-340]: http://abcl.org/trac/ticket/340

## Fixes

*  Fix CL:SLEEP for intervals less than a millisecond.

   For intervals less than or equal to a nanosecond, including an
   interval of zero, the current thread merely yields execution to
   other threads.

   [r14632]: http://abcl.org/trac/changeset/14632


## Tested

### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.7.0_51-b13" "x86_64-Mac_OS_X-10.9.1"

### "Java_HotSpot(TM)_64-Bit_Server_VM-Oracle_Corporation-1.8.0-b129" "x86_64-Mac_OS_X-10.9.2"

## Contrib

#### abcl-asdf

*  Now working with both Maven 3.0.x and 3.1.x.  Thanks to Anton for
   the help!

   [ticket-328]: http://abcl.org/trac/ticket/328

*  cache Maven dependency resolution to avoid repeated lookups.

   Instead of calling ABCL-ASDF:RESOLVE in both the ASDF COMPILE-OP
   and LOAD-OP, we now cache the result of invocation in COMPILE-OP
   and add this value in the LOAD-OP phase. Contributed by Cyrus
   Harmon.

   [r14631]: http://abcl.org/trac/changeset/14631

#### jna

   Now references jna-4.0.0.  Some incompatibility with CFFI ([in
   progress with fixing upstream][cffi-easye]).

[cffi-easye]: http://github.com/easye/cffi/
2014-09-12 20:29:30 +00:00
schmonz
99c961d754 Updated mail/qmail-run to 20140912 2014-09-12 17:09:24 +00:00
schmonz
e3c1950ff7 Bump default limits for qmail-{pop3d,smtpd} to 140MB, since a process
on NetBSD/amd64 needs 128MB for a stack these days (thanks riastradh@).
Bump version.
2014-09-12 17:07:09 +00:00
schmonz
95cae6a3b8 Replace Python interpreter in __init__.py to squelch pkgsrc warning.
Seems unlikely to matter much in practice; ride recent version bump.
2014-09-12 13:52:20 +00:00
wen
0def9541a0 Added devel/p5-Path-IsDev version 1.001002 2014-09-12 12:55:41 +00:00
wen
8159383eff Add p5-Path-IsDev 2014-09-12 12:54:10 +00:00
wen
f5575d2843 Import Path-IsDev-1.001002 as devel/p5-Path-IsDev.
This module is more or less a bunch of heuristics for determining if a
given path is a development tree root of some kind.

This has many useful applications, notably ones that require
behaviours for "installed" modules to be different to those that are
still "in development".
2014-09-12 12:52:12 +00:00
adam
a9f39a161f Updated www/squidanalyzer to 6.0 2014-09-12 11:27:56 +00:00
adam
2f0daad811 patch-Makefile.PL not needed anymore 2014-09-12 10:39:56 +00:00
adam
cf72e93517 Changes 6.0:
Multiple access.log files can be processed at the same time.
Multiprocess mode can be activated using the -j N command line option.
New ExcludedMimes configuration directive to exclude from statistics a comma separated list of mime-type or using regex like text/.*.
New ExcludedMethods configuration directive to exclude from statistics a comma separated list of HTTP methods (GET,POST,CONNECT,...).
New translation available: pl_PL
2014-09-12 10:21:42 +00:00
wen
d5212f3e18 Updated textproc/p5-Pod-Markdown to 2.002 2014-09-12 09:03:35 +00:00
wen
9202ba406d Update to 2.002
Upstream changes:
2.002     2014-07-05T15:20:40Z

  - Docs: Add example of command line usage to Synopsis.
    Thanks, Cindy Wang!

2.001     2014-04-20T02:40:11Z

  - Use double-asterisk instead of double-underscore for bold Markdown.
    This allows bold and italic to be nested without confusing parsers.
    Thanks to Mike Covington for the great pull request (gh-9)!

2.000     2014-02-01T14:38:27Z

  - Releasing previous (1.99[01]) as stable
    (now uses Pod::Simple instead of Pod::Parser).
    See below for changes.

1.991-TRIAL 2014-01-03T04:07:49Z

  [Test Fixes]
  - Ignore worthless testing of empty links that fail with Pod::Simple 3.16.

1.990-TRIAL 2014-01-02T14:13:40Z

  [Enhancements]
  - Change backend from Pod::Parser to Pod::Simple.
    Previous documented API has been ported
    however the Pod::Simple API should be preferred for new code.
  - Improve escaping of markdown characters.
  - Accept for/begin 'markdown' and 'html' regions by default.
  - Represent over/back regions without items as blockquotes.

  [Backward Incompatible Changes]
  - E<> codes used to produce equivalent html entities (&foo;).
    These now simply print the corresponding unicode character as utf-8.
    If you desire alternate behavior please report a bug.
  - Tabs are now expanded.
2014-09-12 09:02:33 +00:00
wen
e083d7ee52 Updated devel/p5-Test-File to 1.39 2014-09-12 08:50:56 +00:00
wen
89849ab433 Update to 1.39
Add missing BUILD_DEPENDS
Add a patch to fix test

Upstream changes:
1.39 - Thu Sep 11 05:46:58 2014
	* Allow tests to run in parallel (RT #89908 and RT #91862)

1.38 - Thu Sep 11 04:03:42 2014
	* Add xmikew's mtime test fucntions. GitHub issue #8

1.37 - Thu Sep 11 03:46:00 2014
	* Uncomment accidently commented symlink_target_is_absolute_ok
2014-09-12 08:49:52 +00:00
wen
9b6e67f743 Added devel/p5-Test-utf8 version 1.01 2014-09-12 08:12:45 +00:00
wen
3159685074 Add p5-Test-utf8 2014-09-12 08:11:11 +00:00
wen
3b0f91c8d4 Import Test-utf8-1.01 as devel/p5-Test-utf8.
This module is a collection of tests useful for dealing with
utf8 strings in Perl.
2014-09-12 08:09:23 +00:00
spz
3827d8311c small build fix to support PKG_DESTDIR_SUPPORT="user-destdir" 2014-09-12 07:58:12 +00:00
wen
121642b8d2 Updated misc/p5-Vroom to 0.37 2014-09-12 07:03:08 +00:00
wen
a6c1ff2eb4 Update to 0.37
Add missing DEPENDS

Upstream changes:
0.37 Mon Sep  8 16:40:13 PDT 2014
 - All any extension. Fixes issue/14.

0.36 Sat Aug 16 12:52:50 PDT 2014
 - Meta 0.0.2

0.35 Fri Aug 15 21:00:48 PDT 2014
 - Add t/000-compile-modules.t

0.34 Sat Aug  9 00:28:19 PDT 2014
 - Fix swim errors

0.33 Fri Aug  8 12:59:46 PDT 2014
 - Switch hashbang to '#!/usr/bin/env perl'

0.32 Wed Jul 30 12:01:30 PDT 2014
 - Change doc to swim
 - Update Meta and add Contributing

0.31 Mon Jun 16 22:51:56 PDT 2014
 - Try new travis excludes
 - Use manual VERSION

0.30 Sat Jun 14 14:26:02 PDT 2014
 - Update to Zilla::Dist

0.29 Wed Jun 12 09:29:51 PDT 2013
 - Tests fixed by svennieboy++

0.28 Wed May 29 12:36:28 PDT 2013
 - Buddy Burden++ added notes support!

0.27 Tue Jul 17 09:43:41 PDT 2012
 - Support for running shell slides -- mikegrb++
2014-09-12 07:02:09 +00:00
wiz
b39b2bf607 Updated textproc/py-html2text to 2014.9.8 2014-09-12 06:04:45 +00:00
wiz
ac3a20693a Update to 2014.9.8:
2014.9.8 - 2014-09-08
=====================
----

* Fix #28: missing ``html2text`` package in installation.
2014-09-12 06:04:36 +00:00
dholland
662850a63b Rev the distfile patch:
- remove references to <malloc.h>, which failed the build in MacOS
   - silence a bunch more compiler warnings
   - don't use index()
   - roll in the two current pkgsrc patches
   - some tidyup

PKGREVISION -> 7
2014-09-12 05:22:09 +00:00
dholland
7a1c7ef005 Use strerror, not sys_errlist. Probably fixes Solaris build and others.
While here patch some other legacy C issues as well.
2014-09-12 04:17:38 +00:00
dholland
4197cefc5c beav 2014-09-12 03:57:32 +00:00
dholland
17f83b2552 Rip out struct sgttyb. And <termio.h>. This is 2014.
Should fix the build on Solaris and most other OSes that don't keep a
museum of historical BSD curiosities on tap.

Also, make the termios code already present actually work instead of
zeroing some things, using uninitialized values for others, and
thereby hanging up the tty. Given that some of the logic apparently
came from Debian patches, I'm not impressed. (I suppose Linux probably
doesn't honor hangup via setting the speed to 0.)

While here also fix up the window size handling.

Input now works properly for me (on NetBSD) and it didn't before I
started mucking around, so it seems like generally a step forward.

PKGREVISION -> 1.
2014-09-12 03:54:13 +00:00
szptvlfn
e24dc361a8 + hs-temporary 2014-09-11 22:00:55 +00:00
szptvlfn
378b37326a Added sysutils/hs-temporary version 1.2.0.3 2014-09-11 21:59:56 +00:00
szptvlfn
9ab046fa78 Import temporary-1.2.0.3 as sysutils/hs-temporary,
packaged for wip.

The functions for creating temporary files and directories in the base
library are quite limited. The unixutils package contains some good ones,
but they aren't portable to Windows. This library just repackages the Cabal
implementations of its own temporary file and folder functions so that you
can use them without linking against Cabal or depending on it being
installed.
2014-09-11 21:59:29 +00:00
szptvlfn
fffac22eb0 + hs-hint 2014-09-11 21:59:06 +00:00
szptvlfn
3efff92977 Added devel/hs-hint version 0.4.2.0 2014-09-11 21:58:19 +00:00
szptvlfn
290ed8a9eb Import hint-0.4.2.0 as devel/hs-hint,
packaged for wip by pho.

This library defines an Interpreter monad. It allows to load Haskell
modules, browse them, type-check and evaluate strings with Haskell
expressions and even coerce them into values. The library is thread-safe
and type-safe (even the coercion of expressions to values). It is,
esentially, a huge subset of the GHC API wrapped in a simpler API.
2014-09-11 21:57:46 +00:00
jperkin
ea0103c961 Updated devel/libgetopt to 1.4.6 2014-09-11 21:48:52 +00:00
jperkin
c2be8e75b1 libgetopt-1.4.6: Don't replace getopt on SunOS. 2014-09-11 21:48:34 +00:00
wiz
35315cecee Updated x11/xinit to 1.3.4 2014-09-11 21:35:33 +00:00
wiz
cd35090a3c Update to 1.3.4:
Alan Coopersmith (4):
      Fix warnings about parameters to startServer & startClient shadowing globals
      Pass files to cpp via CLI arg instead of stdin to workaround gcc 4.8 change
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1

Brad Smith (1):
      Remove hardcoded path to OpenSSL for OpenBSD

Hans de Goede (7):
      Remove unixware / sco support
      Bump required util-macros version to 1.19
      Replace $RAWCPPFLAGS with $TRADITIONALCPPFLAGS when processing cpp files
      startx: Under Linux start X on the current VT
      startx: Pass vtX as long as the user did not specify one
      startx: Make the bugzilla reference in a comment survive cpp
      processing
      xinit 1.3.4
2014-09-11 21:35:24 +00:00
dholland
006cafa1fd Fix Solaris detection; should fix Solaris build. 2014-09-11 21:27:09 +00:00
jperkin
09070ec240 Add LICENSE=public-domain 2014-09-11 17:08:00 +00:00
jperkin
779b9b68d6 Updated games/exchess-book-small to 20140911 2014-09-11 17:03:32 +00:00
jperkin
6523d8f379 Update package for newer exchess book generation arguments. 2014-09-11 17:03:11 +00:00
jperkin
cd6021bb33 Updated games/exchess-book-medium to 20140911 2014-09-11 17:01:23 +00:00
jperkin
92a5c8efa0 Update package for newer exchess book generation arguments. 2014-09-11 17:01:10 +00:00
jperkin
555bd61b69 Updated games/exchess to 7.31beta 2014-09-11 16:59:43 +00:00