Commit graph

216279 commits

Author SHA1 Message Date
rodent
9ed1922575 Import py27-python-bitcoinlib-0.1 as finance/py-python-bitcoinlib.
This Python2/3 library provides an easy interface to the bitcoin data structures
and protocol. The approach is low-level and "ground up", with a focus on
providing tools to manipulate the internals of how Bitcoin works.
2014-05-08 10:14:10 +00:00
wiz
2748c8ad16 Fix PLIST for non-dtrace case. 2014-05-08 09:15:40 +00:00
imil
920ec46647 Added www/py-gunicorn version 18.0 2014-05-08 09:08:30 +00:00
imil
66298a5bd5 add & enable py-gunicorn 2014-05-08 09:06:50 +00:00
imil
8f21930de9 Initial import of py-gunicorn, version 18.0, into the NetBSD Packages
Collection.

Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a
pre-fork worker model ported from Ruby's Unicorn project. The Gunicorn
server is broadly compatible with various web frameworks, simply
implemented, light on server resource usage, and fairly speedy.
2014-05-08 09:05:51 +00:00
obache
e41d57c6b4 Add RCS Id. 2014-05-08 02:31:50 +00:00
pho
9d6d6edb22 Fix build failure on Darwin
See ${WRKSRC}/libgcc/config/t-slibgcc-darwin: It uses strip(1) to
create a stub library, not just to remove symbols, so we must not
let strip(1) be a no-op regardless of ${INSTALL_UNSTRIPPED} or the
build fails for missing files.
2014-05-08 02:05:29 +00:00
pho
836a04d820 Remove the whitespace between $(LINKER_RPATH_FLAG) and the path. Otherwise the flag may be misinterpreted by linker (e.g. Apple's ld) 2014-05-08 02:03:58 +00:00
ryoon
4436685f77 Fix build with mozilla-common.mk for 24.5.0
Fix PLIST* (remove duplicated entries etc.)
2014-05-07 20:26:12 +00:00
ryoon
b5417664c9 Bump PKGREVISION, fix native HTML5 audio playback
* Set MOZ_SAMPLE_TYPE_FLOAT32 for non-Android platforms.
2014-05-07 20:23:22 +00:00
adam
dccb189832 Updated multimedia/ffmpeg2 to 2.2.2 2014-05-07 19:44:20 +00:00
adam
50baa26d65 Changes 2.2.2:
* lavd/opengl_enc: fix pixel data alignment
* ffmpeg: print an error at the end if conversion failed
* avfilter/graphdump: Fix pointer to local outside scope
* ffmpeg_filter: fix pointer to local outside scope
* avcodec/mjpegdec: Fix undefined shift
* avformat/h263dec: Fix h263 probe
* avfilter/filtfmts: Support dynamically allocated in/outputs
* iavcodec/vc1dec: Fix missing {}
* more...
2014-05-07 19:43:03 +00:00
jaapb
0dd829d508 Added comment to patch. 2014-05-07 18:52:00 +00:00
wiz
509ff22b83 Updated multimedia/xine-ui to 0.99.8 2014-05-07 18:44:39 +00:00
jaapb
1ef2e5c8f2 Updated devel/liblangtag to 0.5.3nb1 2014-05-07 18:44:29 +00:00
wiz
c1b4b1571b Update to 0.99.8. Set LICENSE. Add comments to patches.
Remove unnecessary patches. Report other patches upstream and add bug
report URL.

Changes:
xine-ui (0.99.8)
  * Fixed opening file using menus
  * Fixed exit on panel close
  * Fixed deadlocks
  * Fixed segfault at exit
  * Fixed keymap editor deadlock
2014-05-07 18:44:28 +00:00
jaapb
26414f7436 Revised package (rev 1) - there is a problem with dlopen detection on
NetBSD that results in modules not being built (as opposed to other OSes).
Patch solves problem - reported by Richard Palo (and confirmed fixed).
2014-05-07 18:44:07 +00:00
wiz
adf8e9b7df Updated devel/apache-ant to 1.9.4 2014-05-07 18:23:43 +00:00
wiz
1f3c5c03c3 Update to 1.9.4. Add comment to patch.
Changes from Ant 1.9.3 TO Ant 1.9.4
===================================

Changes that could break older environments:
-------------------------------------------

 * the prefixValues attribute of <property> didn't work as expected
   when set to false (the default).
   It is quite likely existing build files relied on the wrong
   behavior and expect Ant to resolve the value side against the
   properties defined in the property file itself - these build files
   must now explicitly set the prefixValues attribute to true.
   Bugzilla Report 54769

 * when matching an entry of a zip/tarfileset against a pattern a
   leading slash will be stripped from the entry name.  Most archives
   don't contain paths with leading slashes anyway.
   This may cause include/exclude patterns that start with a / to stop
   matching anything.  Such patterns only used to work by accident and
   only on platforms with multiple file system roots.
   Bugzilla Report 53949

 * DirectoryScanner and thus fileset/dirset will now silently drop all
   filesystem objects that are neither files nor directories according
   to java.io.File.  This prevents Ant from reading named pipes which
   might lead to blocking or other undefined behavior.
   Bugzilla Report 56149

 * BuildFileTest and BaseSelectorTest have both been deprecated in
   favour of BuildFileRule and BaseSelectorRule respectively, and the
   tests that previously extended these base tests have been converted to
   JUnit 4 tests using the new "rule"s. Any external test that sub-classed
   a test in the Ant workspace, rather than BuildFileTest, will need
   changed to either use JUnit4's annotations, or be modified to
   extend BuildFileTest directly. This will not affect any tests that are
   being executed by Ant's junit or batchtest tasks that are not specifically
   testing Ant's code.

Fixed bugs:
-----------

 * <import>/<include> failed when the importing file was loaded from an
   URI or a jar and it imported a file from the local file system via
   an absolute path.
   Bugzilla Report 50953

 * <import> could import the same resource twice when imported via
   different resource types.
   Bugzilla Report 55097

 * several calls to File#mkdirs could fall victim to a race condition
   where another thread already created the same directory.
   Bugzilla Report 55290

 * <manifestclasspath> created '/' rather than './' for the parent
   directory of the given jarfile.
   Bugzilla Report 55049

 * <concat>'s fixlastline="true" didn't work when using certain filter
   readers.
   Bugzilla Report 54672

 * several places where resources are read from jars will now
   explicitly disable caching to avoid problems with reloading jars.
   Bugzilla Report 54473

 * AntClassloader will now ignore files that are part of the classpath
   but not zip files when scanning for resources.  It used to throw an
   exception.
   Bugzilla Report 53964

 * <javadoc> caused a NullPointerException when no destdir was set.
   Bugzilla Report 55949

 * <jar filesetmanifest="mergewithoutmain"> would still include the
   Main section of the fileset manifests if there was no nested
   manifest or manifest attribute.
   Bugzilla Report 54171

 * reading of compiler args has become more defensive
   Bugzilla Report 53754

 * <copy> without force="true" would not only fail to overwrite a
   read-only file as expected but also remove the existing file.
   Bugzilla Report 53095

 * <delete removeNotFollowedSymlinks="true"> would remove symbolic
   links to not-included files.  It will still delete symlinks to
   directories that would have been followed even if they are not
   explicitly included.  exclude-Patterns can still be used to
   preserve symbolic links.
   Bugzilla Report 53959

 * Sometimes copy-operations using NIO FileChannels fail.  Ant will
   now try to use a Stream based copy operation as fallback when the
   Channel based copy fails.
   Bugzilla Reports 53102 and 54397

 * Javadoc.postProcessGeneratedJavadocs() fails for Classes that
   extend Javadoc
   Bugzilla Report 56047

 * TarInputStream will now read archives created by tar
   implementations that encode big numbers by not adding a trailing
   NUL.

 * the isExists() method of URLResource returned false positives for
   HTTP and FTP URLs.

Other changes:
--------------

 * initial support for Java 1.9

 * <sshexec> can optionally pass System.in to the remote process
   Bugzilla Report 55393

 * <sshexec> now supports capturing error output of the executed
   process and setting a property from the return code.
   Bugzilla Report 48478

 * <javadoc> now has an option to fail if javadoc issues warnings.
   Bugzilla Report 55015

 * <sql> has a new outputencoding attribute.
   Bugzilla Report 39541

 * changes to JUnitTestRunner and PlainJUnitResultFormatter to make
   OutOfMemoryErrors less likely.
   Bugzilla Report 45536

 * changes to DOMElementWriter to make OutOfMemoryErrors less likely.
   Bugzilla Report 54147

 * <redirector> has a new attribute binaryOutput that prevents Ant
   from splitting the output into lines.  This prevents binary output
   from being corrupted but may lead to error and normal output being
   mixed up.
   Bugzilla Report 55667
   Bugzilla Report 56156

 * the nested <message> elements of <mail> now have an optional
   inputEncoding attribute that can be used to specify the encoding of
   files read that don't use the platform's default encoding.
   Bugzilla Report 56258

 * The <get> task now explicitly accepts and supports the gzip content encoding.
   Bugzilla Report 49453

 * A new resourcecollection type <multirootfileset> acts like a union
   of <fileset>s and <dirset>s that share the same configuration but
   have different base directories.
   Bugzilla Report 48621

 * <get> has a quiet attribute that makes the task log errors only
   when enabled.
   GitHub Pull Request #1

* <junit> has now a threads attribute allowing to run the tests in several threads.
  Bugzilla Report 55925

* addition of a new ProcessUtil class providing the process id of the current process

* changes to allow to run the JUnit testcases of Ant in parallel,
  by making them use unique temporary directories
2014-05-07 18:23:31 +00:00
fhajny
c55b7deb7c Fix typo 2014-05-07 15:48:14 +00:00
fhajny
1be7712efe Add mongo-c-driver 2014-05-07 15:47:58 +00:00
fhajny
cb6be73976 Added databases/mongo-c-driver version 0.94.2 2014-05-07 15:47:14 +00:00
fhajny
eb46d83cbf Import mongo-c-driver as databases/mongo-c-driver.
mongo-c-driver is a client library written in C for MongoDB.
2014-05-07 15:47:00 +00:00
fhajny
6249276b10 Add libbson 2014-05-07 15:44:56 +00:00
fhajny
89a982b034 Added devel/libbson version 0.6.8 2014-05-07 15:44:15 +00:00
fhajny
1a1d3769e5 Import libbson as devel/libbson.
libbson is a library providing useful routines related to building,
parsing, and iterating BSON documents. It is a useful base for those
wanting to write high-performance C extensions to higher level
languages such as python, ruby, or perl.
2014-05-07 15:43:59 +00:00
fhajny
a9587e5a2d Updated security/cyrus-sasl to 2.1.26nb4 2014-05-07 15:41:20 +00:00
fhajny
090a640fd3 Fix the pkg-config file provided (exec_prefix was undefined).
Bump PKGREVISION.
2014-05-07 15:41:08 +00:00
fhajny
71041e53ae Updated net/rabbitmq to 3.3.1 2014-05-07 11:30:37 +00:00
fhajny
b5a38320d0 Update rabbitmq to 3.3.1
Changes in 3.3.1
- Bug and security fixes

See full release notes:

http://www.rabbitmq.com/release-notes/README-3.3.1.txt

Changes in 3.3.0
- Performance improvements
- Monitoring information to identify performance bottlenecks
- Dynamically manageable shovels
- Automatic reconnection of Java-based clients
- Bug fixes and minor new features

See full release notes:

http://www.rabbitmq.com/release-notes/README-3.3.0.txt
2014-05-07 11:30:27 +00:00
jperkin
d42bf76fa5 Needs libiconv. 2014-05-07 10:34:30 +00:00
fhajny
9de91a2338 Updated devel/php-memcached to 2.2.0 2014-05-07 07:47:34 +00:00
fhajny
a055d4f684 Update php-memcached to 2.2.0.
Changes in 2.2.0:
- Added the OPT_SERVER_TIMEOUT_LIMIT behaviour

Changes in 2.2.0RC1
- Fixes incorrect size when compressing serialized objects
- Fixes endianess of compressed values

Changes in 2.2.0b1
- Reinstate support for libmemcached 0.x series
- Added SASL support to session handler
- Added Memcached::flushBuffers as per GH #78
- Fixes GH #54: Fixed UDP server adding with newer libmemcached
- Fixed PHP bug #65334: (Segfault if uncompress value failed)
- Fixes GH #14: get with cas token fails to fetch all results
- Fixes GH #68: memcached 2.1.0 requires libmemcached 1.0.10
- Fixes GH #69: compiling on CentOS 6.4 with libmemcached 1.0.17
- Merged PR #91: More granular session locking support
- Added session handler settings:
* memcached.sess_number_of_replicas
* memcached.sess_randomize_replica_read
* memcached.sess_remove_failed
* memcached.sess_connect_timeout
- Added support for memcached protocol handlers
- Added Memcached::setBucket for virtual bucket support
- Added support for msgpack serialization
- Memcached::setSaslAuthData returns correct status on success
- Added support for user-defined flags in set and get operations
2014-05-07 07:47:17 +00:00
fhajny
7cf5b56500 Updated databases/redis to 2.8.9 2014-05-07 07:40:52 +00:00
fhajny
ecaad1a4cc Update redis to 2.8.9.
--[ Redis 2.8.9 ] Release date: 22 Apr 2014

# UPGRADE URGENCY: LOW, only new features introduced, no bugs fixed.

* [NEW] The HyperLogLog data structure. You can read more about it
        in this blog post. http://antirez.com/news/75
* [NEW] The Sorted Set data type has now support for lexicographic range
        queries, check the new commands ZRANGEBYLEX, ZLEXCOUNT and
        ZREMRANGEBYLEX, which are documented at http://redis.io.

--[ Redis 2.8.8 ] Release date: 25 Mar 2014

# UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. There is a potentially
                   critical bug fix causing data loss in Redis but it requires
                   a combination of disk full and the use of the
                   SHUTDOWN command.

* [FIX] Fixed data loss when SHUTDOWN was used with a disk full condition.
* [FIX] Fixed a memory leak in the SORT syntax error processing.
* [FIX] When Sentinel down-after-milliseconds parameter is modified at runtime
        now it gets propagated to all the slaves and sentinel instances
        of the master.
* [FIX] `install_server.sh` script finally fixed.
* [FIX] Different fixes to maxclients handling.

* [NEW] Sentinels are now able to send update messages in a peer-to-peer
        fashion even if no Redis instances are available. Now the Sentinel
        liveness property that the most updated configuration in a given
        partition is propagated to all the Sentinels is extended to partitions
        without reachable instances.
* [NEW] Sentinel safety properties are now ensured in a crash-recovery system
        model since some state is persisted on disk before replying to other
        nodes, and reloaded at startup.
* [NEW] Sentinel now uses CLIENT SETNAME so that it is easy to identify
        Sentinels using CLIENT LIST among other clients.
* [NEW] Sentinel failure detection and reconnection code improved.
* [NEW] Use all 24 bits (instead of 22) for the Redis objects LRU field.
        Note that the new LRU algorithm using eviction pools was not backported
        from unstable for safery / code maturity concerns.
* [NEW] Majory speedup for the INFO command (it is now 6 times faster).
* [NEW] More Sentinel unit tests.
* [NEW] New command DEBUG ERROR returns the specified error. Example:
        DEBUG ERROR "LOADING database". This is handy to write Redis client
        libraries unit tests.
* [NEW] redis-cli now supports multi-line editing via updated linenoise lib.
2014-05-07 07:40:40 +00:00
fhajny
ddbb1f4257 Updated textproc/sphinxsearch to 2.1.8 2014-05-07 06:55:29 +00:00
fhajny
7f3bc8d4fd Update sphinxsearch to 2.1.8
Changes in 2.1.8
- Added JSON attribute support, built-in HA tools, better realtime indexes,
  fulltext search and ranking optimizations, more SphinxQL commands, and
  wordbreaker.
- fixed #1937, crash at SENTENCE operator
- fixed #1933, quorum operator works incorrectly if it uses a number that is
  also an exception
- fixed #1932, daemon index recovery after failed rotation
- fixed #1923, crash at indexer with dict=keywords and xml source
- fixed #1918, crash while hitless words are used within fulltext operators
  which require hits
- fixed #1878, daemon doesn't reset regexp_filter after rotation with
  seamless_rotate=0
- fixed #1769, crash after unsuccessful INSERT with RT index
- fixed #1682, field-end modifier doesn't work with words containing
  blended chars

Changes in 2.1.7
- fixed #1917, field limit propagation outside of group
- fixed #1915, exact form passes to index skipping stopwords filter
- fixed #1905, multiple lemmas at the end of a field
- fixed #1903, indextool check mode for hitless indexes and indexes with
  large amount of documents
- fixed #1902, crash on JSON field in the IN() function
- fixed #1884, crash at SNIPPET() with local indexes at distributed index
- fixed #1802, loading large keywords dictionary
- fixed #1786, indextool fails to handle indexes with AOT morphology
- fixed crash of daemon on logging very large messages
- fixed expression engine: division by zero, log and sqrt() functions
2014-05-07 06:55:17 +00:00
dsainty
3aca3ffa8a Reinstate UnlimitedJCEPolicyJDK7.zip distinfo 2014-05-07 03:48:16 +00:00
wiz
111ee41c4e + clamav-0.98.2, gdb-7.7.1, pulseaudio-5.0 [wip], silc-1.1.10,
veusz-1.21.
2014-05-06 21:57:05 +00:00
tron
b9db02e236 Re-add checksum for "enigmail-1.6.tar.gz". Problem found by wizd(8). 2014-05-06 19:26:57 +00:00
tron
f961e1e7a8 Note update of the "thunderbird" package to version 24.5.0. 2014-05-06 16:03:53 +00:00
tron
cceee9e33e Update "thunderbird" package to version 24.5.0.
The following security problems were fixed in this release:
- MFSA 2014-46 Use-after-free in nsHostResolve
- MFSA 2014-44 Use-after-free in imgLoader while resizing images
- MFSA 2014-43 Cross-site scripting (XSS) using history navigations
- MFSA 2014-42 Privilege escalation through Web Notification API
- MFSA 2014-38 Buffer overflow when using non-XBL object as XBL
- MFSA 2014-37 Out of bounds read while decoding JPG images
- MFSA 2014-35 Privilege escalation through Mozilla Maintenance Service
               Installer
- MFSA 2014-34 Miscellaneous memory safety hazards
2014-05-06 16:03:37 +00:00
richard
e1f92cc066 homogenise fgrep to be grep -F 2014-05-06 15:42:46 +00:00
richard
76d22b20ba Backpatch tweaks to support pkgsrc gtexinfo v5 2014-05-06 15:28:16 +00:00
jperkin
cc9493b4ab Fix rc.d handling. 2014-05-06 15:07:40 +00:00
jperkin
a113e3fe9a client-hook isn't an rc.d script, and the binary doesn't look for it in
that location anyway.  Add it to CONF_FILES instead.  Fixes builds with
INIT_SYSTEM=rc.d.

Bump PKGREVISION.
2014-05-06 14:59:18 +00:00
jperkin
9c983a5dbd Fix INIT_SYSTEM handling. 2014-05-06 14:54:51 +00:00
jperkin
5329420146 Move INIT_SYSTEM to bsd.prefs.mk, allowing it to be tested in
package Makefiles when packages perform custom rc.d handling.
2014-05-06 14:48:06 +00:00
ryoon
6a0658ca3c Updated devel/nspr to 4.10.5 2014-05-06 14:00:18 +00:00
ryoon
3133528496 Update to 4.10.5
Changelog:
An important internal change in NSPR 4.10.5 is that the configure script
was generated using Autoconf 2.69 instead of Autoconf 2.13. If your
build system uses Autoconf and your configure script invokes NSPR's
configure script as a sub-configure, some adjustments may be necessary.

NSPR 4.10.5 has the following bug fixes:
- Bug 50549: Link to ws2_32.lib instead of wsock32.lib under Windows.
- Bug 695993: Update NSPR's config.guess and config.sub, get rid of our
  non-upstreamed hacks. Contributed by Ulrich Weigand.
- Bug 849085: autoconf: Port NSPR's build/autoconf/acwinpaths.m4 to
  autoconf 2.56+.
- Bug 849093: autoconf: Do not call AC_PROG_CC inside a conditional
  block.
- Bug 977685: Support powerpc64le-linux platform in NSPR. Contributed by
  Ulrich Weigand.
- Bug 978636: Detect MSYS2 on configure. Contributed by Makoto Kato.
- Bug 981558: Do library timestamping with one-second resolution.
- Bug 986745: Add atomic primitives for Linux ppc64. Contributed by
  Ulrich Weigand.
- Bug 989497: nspr/configure.in should also call AC_PROG_CPP when
  cross-compiling.
- Bug 992471: nspr/configure.in should not check for CROSS_COMPILE in
  the environment.
2014-05-06 13:59:55 +00:00