Commit graph

210990 commits

Author SHA1 Message Date
tron
30a03305c1 Update the "cacti" package to version 0.8.8b. Changes since 0.8.8a:
- bug: Fixed issue with custom data source information being lost when
       saved from edit
- bug: Repopulate the poller cache on new installations
- bug: Fix issue with poller not escaping the script query path correctly
- bug: Allow snmpv3 priv proto none
- bug: Fix issue where host activate may flush the entire poller item
       cache
-security: SQL injection and shell escaping issues

Also add the fix for the security vulnerability reported in SA54531
taken from the SVN repository.
2014-01-08 20:51:28 +00:00
joerg
f2ed2ac6a6 Pass URL to fetch_ssl to fix build and add a cast for some OpenSSL
constloss.
2014-01-08 20:25:34 +00:00
ryoon
459c407273 Updated net/aria2 to 1.18.2 2014-01-08 16:33:07 +00:00
ryoon
46b357ef9c Update to 1.18.2
* This package requires gcc 4.7 later from pkgsrc

Changelog:
aria2 1.18.2
============

Release Note
------------

This release fixes the wrong handling of return value of fork(), which
leads to high CPU usage. The progress readout has some color output.
Mingw32 build now receives colorized output. Mingw32 build now can
read unicode command-line arguments. The build script of OSX was
rewritten. The --bt-max-open-files now limits the number of opened
file globally for multi-file downloads instead of per download basis.

Changes
-------

* Remove the outdated, broken build_osx_release.sh

* Initial revision of the a new OSX release Makefile

* Allow using libgmp with AppleTLS/WinTLS

* Fix crash when metaurl contains unsupported URI or text

* Fix bad fork() return value handling

* Use some colors in progress reports (where available)

* Implement basic color support for the Windows console

  Only \033[*m (SGR) is supported, with a 16+16 color terminal.

* AppleTLS: Implement PKCS12 loading.

* Limit number of opened file globally with --bt-max-open-files option

  This change changes the behavior of --bt-max-open-files. Previously,
  it specifies the maximum number of opened files for each multi-file
  download. Since it is more useful to limit the number globally, the
  option now specifies the global limit. This change suggests that
  aria2.changeOption() method now ignores --bt-max-open-files and
  aria2.changeGlobalOption now reads it and dynamically change the
  limit.

* Don't fail multiple concurrent dl same file if auto-file-renaming is
  enabled

* mingw32: Use CommandLineToArgvW() and GetCommandLineW() to read
  cmd-line args

  This change enables aria2 to read unicode characters in
  command-line.



aria2 1.18.1
============

Release Note
------------

This release fixes the percent-encoding bug which affects file name
encodings. It adds PKCS12 support in certificate import. It also adds
experimental internal implementation of message digest functions, ARC4
cipher and bignum. It means that no external libraries are required to
build BitTorrent support, but this feature is still marked as
experimental. This release also fixes the android build with NDK r9.

Changes
-------

* LibsslTLSContext: Remove weak cipher suite

* AppleTLS: Enable --certificate

* util::percentEncodeMini: Fix regression bug removed unsignedness

  srange-based for around std::string is convenient but several
  functions depend unsigned char for correctness and readability.

* Log exception; throw error if loading private key and/or certificate
  failed

* Provide internal ARC4 implementation

  Now you can build bittorrent support without without external
  libraries, meaning you can skip libnettle, libgmp, libgcrypt, GnuTLS
  and OpenSSL on OSX (for now).

* Internal implementation of DHKeyExchange

  Reusing a bignum (well, unsigned very-long) implementation I had
  lying around for years and just cleaned up a bit and brought to
  C++11 land.

  It might not be the most performant implementation, but it shoud be
  fast enough for our purposes and will go a long way of removing
  gcrypt, nettle, gmp, openssl dependencies when using AppleTLS and
  WinTLS (upcoming).

* PKCS12 support in --certificate and --rpc-certificate options.

* Add --disable-ssl configure option

* Add internal md5 and sha1 message digests

* Fix AppleMessageDigestImpl use with large data

* Set old cookie's creation-time to new cookie on replacement

  As described in http://tools.ietf.org/html/rfc6265#section-5.3

* Fix link error with Android NDK r9

  Since Android ndk r9, __set_errno is deprecated. It is now defined
  as inline function in errno.h. The syscall assembly calls
  __set_errno, but since libc.so does not export it, the link
  fails. To workaround this, replace all occurrences of __set_errno
  with a2_set_errno and define it as normal C function.



aria2 1.18.0
============

Release Note
------------

This release changes the default disk cache size to 16 MiB. To change
the default size, --with-disk-cache configure option was added.  Now
used URIs are also saved by --save-session option. The control file is
now always saved if --force-save is given. The ctrl-c handling on
Mingw build was improved. The internal intl library is no longer
supplied. From this release, C++11 compiler is required to build aria2
executable. For gcc, at least 4.6.3 is required.

Changes
-------

* Use AM subdir-objects

  Doing so in AM_INIT_AUTOMAKE seems to be the most compatible way of
  doing so.

  Closes GH-120

* AM_SILENT_RULES([yes]) with backwards-compatiblity

  Supported since automake-1.11. There is no point in having the very
  verbose compile stuff running about, which cannot even silenced
  properly with `make -s` by default. Otherwise, `make V=1` or
  `--disable-silent-rules` are your friends

* Fix automake-1.14 am_aux_dir

  AC_USE_SYSTEM_EXTENSIONS will cause AC_PROG_CC, which is overridden
  by automake-1.14, which will then init (part) of automake, in
  particular am_aux_dir expansion, which in turn relies on ac_aux-dir,
  which is not initialized at this point, and thus: certain doom (or
  fun, depending on your POV and mood :p)

  Hence call AC_USE_SYSTEM_EXTENSIONS only after
  AM_INIT_AUTOMAKE. This, of course, caused a lot of related macro
  shuffling.

  Tested against automake-1.10 (OSX Lion/XCode version) and
  automake-1.14 (homebrew version)

* Require external gettext for --enable-nls

  And stop using the internal flavor with ./intl

* Make AX_CXX_COMPILE_STDCXX_11 test for -stdlib=libc++ via std::shared_ptr

  The clang shipped with OSX XCode and clangs not build enabling
  libcpp, will default to the libstdc++ headers and lib installed on
  the system.  In the OSX case, that libstdc++ is the one bundles with
  gcc-4.2, which is far too old to provide all required C++11 types,
  such as std::shared_ptr.  Hence, the C++11 check should try to
  compile a program with a C++11 type and try -stdlib=libc++ if the
  default lib fails to compile said program.

* Make the configure check for C++11 compiler mandatory

  Remove stray "dnl", so that mandatory actually works with (my)
  autoreconf.

* Always build doc/manual-src

  Should sphinx-build be not available AND the man file not be prsent,
  then just "touch" it into existence (and warn about that)

* Win: Use SetConsoleCtrlHandler for SIGINT/SIGTERM

* Implement a simple resource lock (threading)

  In this initial implementation Locks are no-ops on platforms other
  than Windows.

* Check for sphinx-build during configure

* Add --with-disk-cache configure option

  Enables packagers more fine grained control over the default value
  without having to mess with config files.

  See GH-115

* Change defaults: Enable 16M disk cache by default.

* Always save control file if --force-save is given

* Set log level DEBUG for unittests

* Check that C++ compiler supports override keyword

  If the compiler supports override, define CXX11_OVERRIDE as
  override, otherwise define it as empty. Use CXX11_OVERRIDE instead
  of override.

* AppleTLS: Fix MessageDigestImpl

* AppleTLS: Fix session CFRelease stuff

* Use AX_CXX_COMPILE_STDCXX_11 macro to detect C++0x/C++11 support in
  compiler

* Require -std=c++11 and use std::shared_ptr instead of SharedHandle

* Join URI on redirect

* Send HAVE message to the peer which the piece is downloaded from

  Historically, aria2 did not send HAVE message to the peer which the
  piece is coming from, thinking it is obvious that the peer knows we
  have the piece. But it is not obvious if one piece is download from
  more than 1 peers (e.g., end game mode). So it is better to send
  HAVE to all peers connected.

* Improvements to --follow-torrent=false documentation.

  Patch from gt

* SessionSerializer: Truly unique URIs

  Before, only spent uris where sanitized not to be contained within
  remaining uris. Change this so that each uri in the
  union(remaining,spent) get saved once at most.  The order of the
  uris will won't be changed, with remaining uris going first followed
  by spent uris.

  Also avoid copying the uri std::strings around during dupe checking,
  usually resulting in better performance regarding CPU and space.

* Make getOption RPC method return option for stopped downloads

* SessionSerializer: Save spent URIs as well as remaining ones
2014-01-08 16:32:30 +00:00
ryoon
7080d849f2 Updated shells/zsh to 5.0.5 2014-01-08 16:30:30 +00:00
ryoon
5ddc6b149e Update to 5.0.5
* Fix build on Debian GNU/kFreeBSD 7.3
* Update MASTER_SITES

Changelog:
This is version 5.0.5 of the shell.  This is a stable release.
There are minor new features as well as bug fixes since 5.0.2.
5.0.3 and 5.0.4 were short-lived releases with most of the features of
5.0.5 that were replaced owing to significant bugs.

Incompatibilities between 5.0.2 and 5.0.5
-----------------------------------------

The "zshaddhistory" hook mechanism documented in the zshmisc manual page
has been upgraded so that a hook returning status 2 causes a history
line to be saved on the internal history list but not written to the
history file.  Previously any non-zero status return would cause
the line not to be saved on the history at all.  It is recommended
to use status 1 for this (indeed most shell users would naturally do
so).
2014-01-08 16:30:01 +00:00
ryoon
73397b69f1 Updated converters/dos2unix to 6.0.4 2014-01-08 15:14:35 +00:00
ryoon
677b8b373f Update to 6.0.4
Changelog:
2013-12-30: Version 6.0.4

  * New options -ul and -ub to convert UTF-16 files without BOM.
  * New Russian translation of the messages.
  * Build 32 bit Windows binaries with Large File Support (LFS)
    by using mingw-w64 for 32 bit Windows.
  * When a binary symbol is encountered the value is printed.
2014-01-08 15:14:03 +00:00
ryoon
f45ea30b19 Add starbug1 2014-01-08 15:01:12 +00:00
ryoon
65b9d117b5 Added devel/startbug1 version 1.6.01 2014-01-08 15:00:33 +00:00
ryoon
f60475156b Import starbug1-1.6.01 as devel/startbug1.
Starbug1 is lightweight Bug Tracking System. It act as CGI.
It is designed to the following appliations.

* Closed source small development
* Development with less resources
2014-01-08 14:59:15 +00:00
jperkin
81de74cab2 Update SunOS support for recent update. 2014-01-08 13:09:38 +00:00
fhajny
10ab6bd943 Make sure unwanted mkdir is not recorded with full path in rbconfig.rb, fixes packages built with pbulk. 2014-01-08 12:28:18 +00:00
hauke
5e6e1fe6d0 The package's build system does not ensure libsnet is built before
linking to it, so mark unsafe for parallel makes.
2014-01-08 12:11:39 +00:00
hauke
8716dbea59 Back-port and complete the fixes from radmind HEAD to support 64 bit
time_t on NetBSD 6+.

The configure patch had to be generated with autoconf downgraded to 2.61 -
leave it to autohell to ruin your day...

While we are here, shake, rattle & roll the patches.

The resulting gyrations finally fix PR pkg/46555
2014-01-08 11:54:04 +00:00
fhajny
e3009cdfad Fix patch so that 'gem install' actually works outside pkgsrc.
Bump PKGREVISION.
2014-01-08 11:31:18 +00:00
jperkin
348f9402be Remove 64-bit libraries from 32-bit PLIST. 2014-01-08 11:05:57 +00:00
jperkin
8ffec804e5 Needs zlib. 2014-01-08 10:43:02 +00:00
jperkin
52c52b8976 Look for zlib in the correct location. 2014-01-08 10:38:30 +00:00
jperkin
d64d0a4cde Needs zlib. 2014-01-08 10:37:38 +00:00
wiz
3e648d7022 + clang-3.4, eric4-4.5.18, eric5-5.4.0, glusterfs-3.4.2, htmldoc-1.8.28,
kde4-4.11.5, moneyguru-2.7.1, phpmyadmin-4.1.4, puzzle-10108,
  samba-4.0.14, tcpreplay-4.0.0.
2014-01-08 10:36:58 +00:00
jperkin
7675678a9c Needs zlib. 2014-01-08 10:33:29 +00:00
jperkin
5ba6fee786 Needs lex. 2014-01-08 10:24:14 +00:00
jperkin
12c9b78dd0 Needs zlib. 2014-01-08 10:19:16 +00:00
jperkin
dbae531453 Needs pkg-config. 2014-01-08 10:13:44 +00:00
jperkin
18d8258bd2 Needs zlib. 2014-01-08 09:57:30 +00:00
obache
b5f4e9875f change to better URL for BTS. 2014-01-08 09:39:45 +00:00
obache
165a7a3941 Note upstream bug report. 2014-01-08 09:38:23 +00:00
obache
f96d3ef811 Fixes build on Solaris, taken from upstream. 2014-01-08 09:15:58 +00:00
obache
c6825afd77 Use system supplied bswap32 and bswap64 macros on NetBSD.
Fixes build on NetBSD-5-i386 with builtin gcc.
2014-01-08 09:01:39 +00:00
wen
6035b4e84b Updated devel/p5-MooseX-App-Cmd to 0.27 2014-01-08 07:28:33 +00:00
wen
d56d6ca397 Update to 0.27
Update DEPENDS

Upstream changes:
0.27      2013-12-31 14:26:29 UTC
    - update developer and Dist::Zilla author dependencies
0.26      2013-12-16 17:19:52 America/New_York (TRIAL RELEASE)
    - better reporting of skipped Moose/Mouse tests
    - add release test to check changelog for new content
0.25      2013-12-09 10:37:31 America/New_York (TRIAL RELEASE)
    - test for Mo(o|u)seX::Getopt before running Mo(o|u)se-specific tests
0.24      2013-12-08 21:01:55 America/New_York (TRIAL RELEASE)
    - add requirements, recommendations and provides to meta files
0.23      2013-12-08 15:52:56 America/New_York (TRIAL RELEASE)
    - fixes to Moose/Mouse tests
0.22      2013-12-02 10:56:59 America/New_York (TRIAL RELEASE)
    - forgot to update changelog last time, no code changes
0.21      2013-12-02 10:47:32 America/New_York (TRIAL RELEASE)
    - do a better job of not requiring Moose for build/install
0.20      2013-12-01 18:18:42 America/New_York (TRIAL RELEASE)
    - use Any::Moose for Moose and Mouse compatibility in the same package
0.11      2013-11-22 11:48:20 America/New_York
    - gh#6: document --configfile option added in 0.03 (reported by abraxxa)
    - gh#8: fix missing commands in test files (ubermichael)
2014-01-08 07:27:35 +00:00
wen
daa940558e Added devel/p5-MouseX-Getopt version 0.34 2014-01-08 07:20:11 +00:00
wen
c71aefc251 Add p5-MouseX-Getopt 2014-01-08 07:19:15 +00:00
wen
e572e0b8db Import MouseX-Getopt-0.34 as devel/p5-MouseX-Getopt.
This is a role which provides an alternate constructor for creating
objects using parameters passed in from the command line.
2014-01-08 07:17:49 +00:00
wen
659e993bea Updated devel/p5-Moose to 2.1200 2014-01-08 06:40:35 +00:00
wen
ee1d5d82b7 Update to 2.1200
Upstream changes:
2.1200   2014-01-06

  [OTHER]

  - Releasing 2.1108 as stable (last stable release was 2.1005).

2.1108   2014-01-04 (TRIAL RELEASE)

  [OTHER]
    - fixed distribution manifest
    - minor documentation and metadata updates

2.1107   2013-11-29 (TRIAL RELEASE)

  [OTHER]

  - many additions to the list of conflicting modules (those that require
    updates after installing Moose), reflecting recent API changes
  - now failing early at build time, with a useful error message, if a
    compiler is not available

2.1106   2013-11-05 (TRIAL RELEASE)

  [BUG FIXES]

  - throw_error import cleaned from Moose::Object after use (doy)
  - resolved new circular load issue between Moose::Util and Class::MOP (Kent
    Fredric, RT#89713 and PR # 42)

2.1105   2013-10-30 (TRIAL RELEASE)

  [BUG FIXES]

  - legacy throw_error now takes multiple arguments, like confess does
    (Karen Etheridge)

2.1104   2013-10-29 (TRIAL RELEASE)

  [BUG FIXES]

  - Class::MOP::Object::_inline_throw_error is back, used by some MooseX
    modules (Upasana)

2.1103   2013-10-25 (TRIAL RELEASE)

  [BUG FIXES]

  - fix errors in last trial release relating to Moose::Error::Default,
    Moose::Util::throw_error (Upasana)

2.1102   2013-10-20 (TRIAL RELEASE)

  [BUG FIXES]

  - die if a role to consume can't be found -- this restores behaviour as in
    2.1005 (doy)
  - fix test to accomodate Devel::PartialDump possibly not being installed
    (Upasana)

2.1101   2013-10-20 (TRIAL RELEASE)

  [ENHANCEMENTS]

  - Moose string exceptions have been replaced by Moose::Exception objects. See
    Moose::Manual::Delta for details.

2.1100   2013-09-07 (TRIAL RELEASE)

  [DEPRECATIONS]

  - Class::MOP::load_class, Class::MOP::is_class_loaded, and
    Class::MOP::load_first_existing_class are now deprecated. See
    Moose::Manual::Delta for details.

  - The non-arrayref forms of enum and duck_type have been deprecated. See
    Moose::Manual::Delta for details.

  - Many deprecated features have now been removed:
    - optimize_as for type constraints
    - the "default is" and "default default" features for native delegations
    - setting coerce => 1 on an attribute whose type constraint has no coercion
    - the public version of Moose::Meta::Method::Destructor::initialize_body

  [ENHANCEMENTS]

  - Creating classes with Moose now always sets the appropriate entry in %INC,
    even if it wasn't loaded from a file. This should make writing classes
    inline easier, and will allow us to be more intelligent about figuring out
    when classes are loaded in the future. See Moose::Manual::Delta for more
    details. Note that this is slightly backwards-incompatible in some edge
    cases.

  - Moose now uses Module::Runtime instead of Class::Load to load classes. This
    means that there are no more issues with the weird heuristics that
    Class::Load does to determine if a class was previously loaded (inheriting
    from an empty package is now possible, for instance). See
    Moose::Manual::Delta for more details. This is also slightly
    backwards-incompatible in some edge cases.
2014-01-08 06:39:49 +00:00
wen
9a0f3e8915 Updated www/p5-Mojolicious to 4.66 2014-01-08 06:22:37 +00:00
wen
2828a30075 Update to 4.66
Upstream changes:
4.66  2014-01-04
  - Added success attribute to Test::Mojo.
  - Improved Mojo::DOM::CSS and Mojo::DOM::HTML performance.
  - Fixed XML detection bug in Mojo::DOM.
  - Fixed escaping bugs in Mojo::DOM::CSS.

4.65  2014-01-02
  - Deprecated use of hash references for optgroup generation with
    select_field helper in favor of Mojo::Collection objects.
  - Added b and c helpers to Mojolicious::Plugin::DefaultHelpers.
  - Fixed reference handling bug in Mojo::Collection.

4.64  2014-01-01
  - Fixed helper export bug in Mojolicious::Plugin::EPRenderer.

4.63  2013-12-19
  - Deprecated Mojolicious::secret in favor of Mojolicious::secrets.
  - Added support for rotating secrets.
  - Added secrets method to Mojolicious.

4.62  2013-12-17
  - Deprecated Mojo::URL::to_rel.

4.61  2013-12-16
  - Added select_one method to Mojo::DOM::CSS.
  - Improved performance of Mojo::DOM::at significantly.

4.60  2013-12-11
  - Improved Mojolicious::Validator::Validation to allow custom validation
    errors.

4.59  2013-12-04
  - Added CSRF protection support.
  - Added support for permessage-deflate WebSocket compression.
  - Added csrf_protect method to Mojolicious::Validator::Validation.
  - Added build_message method to Mojo::Transaction::WebSocket.
  - Added csrf_token attribute to Mojolicious::Validator::Validation.
  - Added compressed and context_takeover attributes to
    Mojo::Transaction::WebSocket.
  - Added csrf_token helper to Mojolicious::Plugin::DefaultHelpers.
  - Added csrf_field helper to Mojolicious::Plugin::TagHelpers.
  - Removed deprecated mode specific methods in application class.
  - Relicensed all artwork to CC-SA version 4.0.
2014-01-08 06:21:34 +00:00
minskim
0dc0370897 Note PKGREVISION bump of tex-kotex-base 2014-01-08 05:13:32 +00:00
minskim
94513ab419 Sync tex-kotex-base{,-doc} with ko.TeX Live 2013
- Added a new style file: dhucs-untype1.
2014-01-08 05:12:08 +00:00
minskim
8bc5e5ee17 Add tex-tufte-latex{,-doc} 2014-01-08 04:49:50 +00:00
minskim
54606b0ab3 Import tex-tufte-latex-doc-3.5.0 as print/tex-tufte-latex-doc.
This is documentation for tex-tufte-latex.
2014-01-08 04:47:35 +00:00
minskim
14a80be610 Import tex-tufte-latex-3.5.0 as print/tex-tufte-latex.
Provided are two classes inspired, respectively, by handouts
and books created by Edward Tufte.
2014-01-08 04:47:18 +00:00
minskim
4e0e04339f Add tex-lipsum{,-doc} 2014-01-08 04:43:40 +00:00
minskim
8ee91fd469 Import tex-lipsum-doc-1.2 as print/tex-lipsum-doc.
This is documentation for tex-lipsum.
2014-01-08 04:42:22 +00:00
minskim
68185e53b5 Import tex-lipsum-1.2 as print/tex-lipsum.
This package gives you easy access to the Lorem Ipsum dummy
text; an option is available to separate the paragraphs of the
dummy text into TeX-paragraphs. All the paragraphs are taken
with permission from http://lipsum.com/.
2014-01-08 04:41:57 +00:00
minskim
ff78415465 Add tex-sauerj{,-doc} 2014-01-08 02:03:51 +00:00
minskim
dd691f234a Import tex-sauerj-doc-2013 as print/tex-sauerj-doc.
This is documentation for tex-sauerj.
2014-01-08 02:01:46 +00:00
minskim
554854452d Import tex-sauerj-2013 as print/tex-sauerj.
The bundle consists of: a tool for collecting text for later
re-use, a tool for typesetting the "meta-information" within a
text, a tool for use in constructing macros with multiple
optional parameters, a package for multiple column parallel
texts, a tool for processing key-value structured lists, and
macros for typesetting a number as a German-language string.
2014-01-08 02:01:23 +00:00