Commit graph

208381 commits

Author SHA1 Message Date
sno
e469fe0442 Added lang/asn1c version 0.9.24 2013-10-26 14:44:32 +00:00
sno
8524f8f6cb Adding package for ASN.1 to C compiler asn1c from Lev Walkin version
0.9.24 into lang/asn1c.

The asn1c is a free, open source compiler of ASN.1 specifications into C
source code. It supports a range of ASN.1 syntaxes, including ISO/IEC/ITU
ASN.1 1988, '94, '97, 2002 and later amendments. The supported sets of
encoding rules are

  * BER: ITU-T Rec. X.690 | ISO/IEC 8825-1 (2002) (BER/DER/CER).
  * PER: X.691|8825-2 (2002) (PER).
  * XER: X.693|8825-3 (2001) (BASIC-XER/CXER).

The compiler was written specifically to address security concerns while
providing streaming decoding capabilities.
2013-10-26 14:44:12 +00:00
obache
ff22871cf8 Updated www/ruby-sinatra to 1.4.4 2013-10-26 13:44:26 +00:00
obache
f6f004f3ff Update ruby-sinatra to 1.4.4.
= 1.4.4 / 2013-10-21

 * Allow setting layout to false in specifically for a singe rendering engine.
   (Matt Wildig)

 * Allow using wildcard in argument passed to `request.accept?`. (wilkie)

 * Treat missing Accept header like wild card. (Patricio Mac Adden)

 * Improve tests and documentation. (Darío Javier Cravero, Armen P., michelc,
   Patricio Mac Adden, Matt Wildig, Vipul A M, utenmiki, George Timoschenko,
   Diogo Scudelletti)

 * Fix Ruby warnings. (Vipul A M, Patricio Mac Adden)

 * Improve self-hosted server started by `run!` method or in classic mode.
   (Tobias Bühlmann)

 * Reduce objects allocated per request. (Vipul A M)

 * Drop unused, undocumented options hash from Sinatra.new. (George Timoschenko)

 * Keep Content-Length header when response is a `Rack::File` or when streaming.
   (Patricio Mac Adden, George Timoschenko)

 * Use reel if it's the only server available besides webrick. (Tobias Bühlmann)

 * Add `disable :traps` so setting up signal traps for self hosted server can be
   skipped. (George Timoschenko)

 * The `status` option passed to `send_file` may now be a string. (George
   Timoschenko)

 * Reduce file size of dev mode images for 404 and 500 pages. (Francis Go)
2013-10-26 13:44:11 +00:00
asau
808f04bf22 It needs bison to build. 2013-10-26 13:39:37 +00:00
obache
cd9842d5c0 Updated textproc/groonga to 3.0.8 2013-10-26 13:39:02 +00:00
obache
a84cc160ac Update groonga to 3.0.8.
News
====

Release 3.0.8 - 2013/09/29
--------------------------

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

* [admin] Improved error handling of select functionality. This change shows error message
  and hides loading dialog. [Patch by orangain]
* [admin] Improved to submit search form with the enter key. [Patch by orangain]
* [admin] Improved to show placeholder in search form.
  This change shows usage examples. [Patch by orangain]
* [httpd] Supported :ref:`groonga-query-log-path` directive
* [doc] Updated :doc:`/reference/commands/select` documentation about the number of
  hits in select response.
* Improved to ignore an empty token which is generated by continuous spaces from tokenizer.
  [groonga-dev,01729] [Suggested by Naoya Murakami]
* [token delimit] Improved to treat continuous spaces as a space.
  The tokenizer regards 2 or more spaces are valid input.
* [doc] Added note about indexes for each column vs indexes for multiple column.
* [doc] Added language annotation to source label. [groonga-dev,01751] [Suggested by Kazuhiro Isobe]
* Supported :ref:`cascade-delete` to referenced records. In previous version,
  You got an error for the operation.
* [doc] Updated documentation location in README. [groonga-dev,01800] [Reported by Kazuhiro Isobe]
* [experimental] Added :doc:`/reference/commands/ruby_eval` command.
* [doc] Added note about GQTP and HTTP for server use. [groonga-dev,01810] [Reported by Kazuhiro Isobe]

Fixes
^^^^^

* [admin] Fixed a bug that add value button of COLUMN_VECTOR does not work.

Thanks
^^^^^^

* orangain
* Naoya Murakami
* Kazuhiro Isobe

Release 3.0.7 - 2013/08/29
--------------------------

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

* [doc] Added API documentation. [groonga-dev,01593]
  [GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]
  [Patch by whombx]
* [table_remove] Improved not to remove patricia trie table or hash table
  which is still referenced. This change avoids that referenced table is removed accidentally.
* Improved to just ignore too long token (4096 bytes or more).
  This change affects when it is registered. In the previous version, it is treated as an
  error instead of a warning. [groonga-dev,01571] [Suggested by Naoya Murakami]
* Improved to show actual discarded posting term in log message.
  [groonga-dev,01621] [Reported by Naoya Murakami]
* [httpd] Supported loading data using POST method. [GitHub#101]
  [Patch by Motoi Washida]
* [httpd] Supported groonga log as ``groonga_log_path`` directive.
* [httpd] Supported groonga log level as ``groonga_log_level`` directive.
* [httpd] Supported customizing cache limit as ``groonga_cache_limit`` directive.

Fixes
^^^^^

* Fixed a bug that error in expression may cause stack overflow.
  This change avoids that groonga crashes suddenly as a result of error accumlation.
* Fixed a crash bug that offline index construction for vector column which has
  orphan reference causes.
* Fixed a bug that groonga doesn't exit on error while daemon mode starts.
  For example, ``groonga -d /tmp/non-existence.db`` reproduce this bug.
* [dump] Fixed a bug that wrong table type is dumped.
  This bug occurs when table type is TABLE_PAT_KEY and key is reference type.
* Fixed a bug that the default ``--cache-limit`` value is 0.
  The default value is changed to '100'.
* Fixed a memory leak when :doc:`/reference/functions/sub_filter` is used.
* [doc] Fixed description of defrag command. [Reported by @naoina]
* [doc] Fixed description about the way to contribute. [GitHub#77]
  [Patch by Masafumi Yokoyama]
* [plugin] Fixed a crash bug on multiple DB open case.
  This bug affects the case that multiple plugin is used and the same database is opened from
  multiple process. [groonga-dev,01596] [Reported by Naoya Murakami]
* Fixed a bug that nested match operation after ``AND`` operator doesn't work.
  The ``select ... --filter '... && nested.column @ "keyword"'`` query reproduces this bug.
  [groonga-dev,01599] [Reported by Motoi Washida]
* [doc] Fixed a typo about documentation of special characters.
  [Reported by Genki Takiuchi]
* Fixed a typo in error message when invalid character is given.
  [Reported by YOSHIDA Mitsuo]

Thanks
^^^^^^

* whombx
* @naoina
* Masafumi Yokoyama
* Motoi Washida
* Genki Takiuchi
* YOSHIDA Mitsuo
2013-10-26 13:38:40 +00:00
obache
4d59ebfc4a Updated math/ruby-spreadsheet to 0.9.1 2013-10-26 12:58:03 +00:00
obache
a83450a1e4 Update ruby-spreadsheet to 0.9.1.
### 0.9.1 / 24.10.2013

Date:   Thu Oct 24 09:41:50 2013 +0300

* Add support for worksheet visibility
2013-10-26 12:57:40 +00:00
obache
51bb2e5910 python25 is not in pkgsrc now. 2013-10-26 12:18:47 +00:00
obache
cce33d5799 drop maintainership.
I've just imported py-ipython for update of devel/accerciser, not interesting to
itself. Furthermore, pacaginf of py-ipython012 and py-ipython013 are not by me.
2013-10-26 12:15:59 +00:00
richard
41b905137d update mit-krb5 builtin for solaris and better krb5-config support 2013-10-26 05:28:43 +00:00
asau
4ae096a9e3 Follow declared prototype. 2013-10-26 00:28:02 +00:00
wiz
57a67a437c Include compiler.mk before checking PKGSRC_COMPILER. 2013-10-25 22:24:58 +00:00
joerg
b7c0a47156 Don't use -fforce-addr. 2013-10-25 21:48:16 +00:00
joerg
f29d446a48 Override clang -R test, the wrappers drop -R/usr/lib. 2013-10-25 21:47:51 +00:00
joerg
5de495a101 Don't pessimize the compilation by forcing per-function call pushs. 2013-10-25 21:47:20 +00:00
joerg
d98579ce0a Override the test for clang -R support as it gets broken by the
wrappers.
2013-10-25 21:46:27 +00:00
jperkin
515346fd3e Updated databases/tokyocabinet to 1.4.48 2013-10-25 20:27:31 +00:00
jperkin
5faad01737 Update to 1.4.48. Add patches to fix build on OSX.
Changes since 1.4.46:

  * tcadb.cc (tcadbmisc): compilation warnings ware supressed.
  * tchdb.cc (tchdbfbpmerge): size checking was added.
  * tcbdb.cc (tcbdbrangeimpl): a bug of dead locking was fixed.
2013-10-25 20:27:18 +00:00
joerg
bac1073623 GC 2013-10-25 14:32:57 +00:00
joerg
71bda04a66 Some Linux systems now use DT_RUNPATH, so match it here as well. 2013-10-25 14:11:13 +00:00
jperkin
fb8e42eea0 Updated pkgtools/bootstrap-mk-files to 20131025 2013-10-25 13:59:27 +00:00
jperkin
5c6e705850 Use the compiler front-end to generate shared libraries on OSX - the
native linker uses different arguments compared to GNU ld.  Fixes various
builds.

Bump version to 20131025.
2013-10-25 13:53:03 +00:00
adam
672dd7c93b Updated graphics/lensfun to 0.2.8 2013-10-25 13:00:06 +00:00
adam
294785579e Changes 0.2.8:
Another minor maintenance release. Most fixes were related to the build system.
But as always we have many(!) new lens profiles.
2013-10-25 12:59:07 +00:00
taca
456be24d6e Note update of contao packages:
www/contao211	2.11.12nb1
	www/contao31	3.1.4nb1
2013-10-25 11:15:42 +00:00
taca
a566f68f8a Don't mechanically install .htaccess. It accidently block glogal setting
of httpd.conf.

Bump PKGREVISION.
2013-10-25 11:14:10 +00:00
obache
71e95372ab + gitolite-3.5.3.1 (3.5.3 IS vulnerable). 2013-10-25 10:53:44 +00:00
obache
4d501d768d Add conditions for NetBSD, especially fixes build on NetBSD-current. 2013-10-25 10:49:23 +00:00
jperkin
eba22e778e Do not enable aqua on OSX when using modular X11, avoids file conflicts
with libX11.  Bump PKGREVISION.
2013-10-25 10:21:57 +00:00
jperkin
966bee2921 Fix build on SunOS. Add LICENSE. Patch from Thomas Merkel. 2013-10-25 09:43:20 +00:00
jperkin
33d46ffeb5 Add stdbool.h workaround for older OSX. 2013-10-25 09:03:12 +00:00
adam
7f48c193d5 Updated graphics/enblend-enfuse to 4.1.2 2013-10-25 08:14:32 +00:00
adam
9c413d272b Changes 4.1.2:
** Bug Fixes
- [Enblend and Enfuse] Fix a bug in the highlight-recovery that caused
  Enfuse to bail out with the uncaught exception
    "Minimizer1D::set_bracket: minimum not bracketed".
  This addresses LaunchPad Bug 1214004.
- [Enfuse] Clean up seemingly random, bright-colored pixels that
  sometimes show up when fusing images with high contrast and "large"
  color profiles.
2013-10-25 08:13:04 +00:00
wiz
4282a6d566 Remove program that is obsolete since 2006, according to upstream. 2013-10-25 07:24:12 +00:00
wiz
1f5f72db38 Remove legacy support that was scheduled for removal. 2013-10-25 06:53:33 +00:00
wiz
31b158e07b GNU Make check is broken -- does not recognize 4.0 as newer than 3.81.
http://developer.berlios.de/bugs/?func=detailbug&bug_id=19153&group_id=9034
2013-10-25 06:41:47 +00:00
dholland
6274b71980 nhc98 2013-10-25 06:30:27 +00:00
dholland
a5ef90ff9d Update to 1.22.
Does not include all the changes in PR 45318, some of which need
further investigation.

pkgsrc changes:
   - update MASTER_SITES and HOMEPAGE
   - remove LP64 restriction (LP64 platforms are supported using -m32)
   - add destdir support (provided by upstream) and lift BROKEN
   - remove some pkglint
   - mark MAKE_JOBS_SAFE=no
   - add readline.bl3.mk
   - patch-ag was applied upstream
   - remove patch-ah and handle the issue involved a cleaner way

Caution: so far the LP64 build does not actually work yet, -m32
notwithstanding; it dies with
   PreludeList.init: empty list
   PreludeList.init: empty list
   PreludeList.init: empty list
i386 works though.

Upstream changes:

nhc98 1.22 (2010-07-09) features

    There are no new features, just an update to the current set of
    libraries as of the release date.

nhc98 1.20 (2007-11-22) features

    New: Pattern guards are supported.
    New: More hierarchical libraries have been added to the base package.
    Bugfix: Now builds on 64-bit machines (in 32-bit mode)
    Bugfix: Newer version of hmake (3.13)
    Bugfix: The evil mangler is now less evil (and more robust)
    Bugfix: Add a workaround for the hi-membug that caused build
            failures on many recent Linux platforms.
    Bugfix: Lexical error on varid _2a is fixed.
    Bugfix: Renaming bug in newtype A a = A a.
    Bugfix: hp2graph problem with x-axis resolution in interval (-i) sampling.
    Bugfix: hp2graph end-of-file parsing bug.
    New: The runtime system code is now documented using funnelweb.
2013-10-25 06:25:18 +00:00
dholland
b2895adefc Commit partial update to 1.22 so I can work on it on multiple
machines. Doesn't build yet, so leave the package marked BROKEN.
2013-10-25 04:09:14 +00:00
jperkin
30dfb8dd6f Apply upstream patch to fix build on OSX. 2013-10-24 22:18:03 +00:00
jperkin
846e1277e9 Fix build on OSX. 2013-10-24 21:19:12 +00:00
martin
33ed66cfcc Ooops, stupid typo in previous 2013-10-24 19:25:43 +00:00
martin
9bd6ddf2ed Add a few VAX specific changes. 2013-10-24 18:31:12 +00:00
jperkin
7f68284231 Fix build on OSX 10.6, and possibly later. 2013-10-24 17:48:53 +00:00
ryoon
a99c25376a Updated games/py-renpy to 6.15.7nb1 2013-10-24 12:44:28 +00:00
ryoon
606d236559 Use devel/py-game instead. 2013-10-24 12:43:52 +00:00
ryoon
935f67a1e2 Revbump from devel/py-game update 2013-10-24 12:32:38 +00:00
ryoon
f18d178a7e Remove obsolete patch and regen distinfo.
checksum for tar ball is fixed.
2013-10-24 12:20:46 +00:00