Commit graph

266431 commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
9e1979e853 - Add py-leveldb 0.1.20111024
py-leveldb is a thread-safe Python bindings for LevelDB. It has all features
from the LevelDB API, except for:
- Arbitrary key comparison
- Snapshots
- All iteration except for single-step forward

WWW: http://code.google.com/p/py-leveldb/
2011-10-28 14:22:03 +00:00
Sunpoet Po-Chuan Hsieh
4ad3ec06fb - Add p5-Tie-LevelDB 0.06
Tie::LevelDB is the Perl Interface for Google NoSQL database called LevelDB. See
http://code.google.com/p/leveldb/ for more details.

Interface is implemented both as a reflection of an original LevelDB C++ API and
a Perl-ish TIEHASH mechanism.

WWW: http://search.cpan.org/dist/Tie-LevelDB/
2011-10-28 14:19:42 +00:00
Sunpoet Po-Chuan Hsieh
c2cfef1d88 - Fix snappy detection
- Turn off PERFTOOLS by default
- Pet portlint
- Bump PORTREVISION for dependency change
2011-10-28 14:18:06 +00:00
Emanuel Haupt
b879d2aeac Update MASTER_SITES, WWW
PR:		162090
Approved by:	Simon Olofsson <simon@olofsson.de> (maintainer)
2011-10-28 13:56:37 +00:00
Beat Gaetzi
58585a0631 - Fix build on FreeBSD 10
Approved by:	ashish@ (maintainer)
2011-10-28 13:02:33 +00:00
Sunpoet Po-Chuan Hsieh
65aafbcdb6 - Add leveldb 1.2.20111024
LevelDB is a fast key-value storage library written at Google that provides an
ordered mapping from string keys to string values.

Features:
- Keys and values are arbitrary byte arrays.
- Data is stored sorted by key.
- Callers can provide a custom comparison function to override the sort order.
- The basic operations are Put(key,value), Get(key), Delete(key).
- Multiple changes can be made in one atomic batch.
- Users can create a transient snapshot to get a consistent view of data.
- Forward and backward iteration is supported over the data.
- Data is automatically compressed using the Snappy compression library.
- External activity (file system operations etc.) is relayed through a virtual
  interface so users can customize the operating system interactions.
- Detailed documentation about how to use the library is included with the
  source code.

Limitations:
- This is not a SQL database. It does not have a relational data model, it does
  not support SQL queries, and it has no support for indexes.
- Only a single process (possibly multi-threaded) can access a particular
  database at a time.
- There is no client-server support builtin to the library. An application that
  needs such support will have to wrap their own server around the library.

WWW: http://code.google.com/p/leveldb/
2011-10-28 10:54:30 +00:00
Beat Gaetzi
5bc148fb49 - Fix build on FreeBSD 10
Approved by:	miwi (implicit)
2011-10-28 10:42:24 +00:00
Cheng-Lung Sung
250c73a74b - Update to 1.4.3 2011-10-28 10:08:42 +00:00
Cheng-Lung Sung
a7b34405b9 You can think of pss as an enhanced grep designed to search
inside source code files. pss is very similar to the Perl ack
tool (see https://bitbucket.org/eliben/pss/wiki/PssAndAck).

WWW:	https://bitbucket.org/eliben/pss
2011-10-28 09:32:15 +00:00
Martin Wilke
823eefe491 - Cleanup & whitespace fixe 2011-10-28 09:28:28 +00:00
Martin Wilke
bbb269a021 - Update to 2.0.7
- Pass maintainership to gecko
2011-10-28 09:19:43 +00:00
Martin Wilke
392e0bb238 - Update to 1.3
- Pass maintainership to gecko
2011-10-28 09:15:01 +00:00
Wen Heping
21a331381c This is a Integer to Roman numerals converter.
WWW: http://pypi.python.org/pypi/roman/
2011-10-28 09:14:20 +00:00
Martin Wilke
b2d07ae343 - Update to 1.4.4.1
- pass maintainership to gecko
2011-10-28 09:13:18 +00:00
Martin Wilke
e3fd89bf1c - Update to 0.9.12
- Pass maintainership
2011-10-28 09:11:35 +00:00
Cheng-Lung Sung
b9a65380d0 - Update to 1.1.21 2011-10-28 09:05:54 +00:00
Wen Heping
39c4e614e3 This module provides a sqlite-backed dictionary conforming to the
dbm interface, along with a shelve class that wraps the dict and
provides serialization for it.

WWW: http://github.com/Yelp/sqlite3dbm/
2011-10-28 08:14:02 +00:00
Martin Matuska
b867ff7154 Update to 1.0.6 2011-10-28 05:48:57 +00:00
Martin Matuska
e9cd23e006 Update to 1.1.6 2011-10-28 05:48:49 +00:00
Martin Matuska
fcebd7c07a Update to 1.0.0 2011-10-28 05:48:41 +00:00
Martin Matuska
319a7da0b8 Update to 2.0.0RC2 2011-10-28 05:48:33 +00:00
Martin Matuska
27bc168061 Update to 2.0.0 2011-10-28 05:48:25 +00:00
Brendan Fabeny
f211ad2bf5 update tor to 0.2.2.34, and tor-devel to 0.2.3.6-alpha
Security:	CVE-2011-2768
2011-10-28 05:21:44 +00:00
Cheng-Lung Sung
2afc66e56b - Update to 0.8.4 2011-10-28 03:29:36 +00:00
Cheng-Lung Sung
8eacd45d53 - Update to 1.4.9 2011-10-28 03:29:11 +00:00
Cheng-Lung Sung
0153b38454 - Update to 1.4.2 2011-10-28 03:28:06 +00:00
Cheng-Lung Sung
90fb832b76 - Update to 1.1.20 2011-10-28 03:27:30 +00:00
Cheng-Lung Sung
6e322aa8fc - Update to 0.5.3 2011-10-28 03:26:55 +00:00
Philip M. Gollucci
a56cb2d7cd lib_mysqludf_preg is a library of mysql UDFs (user-defined-functions) that
provide access to the PCRE (perl compatible-regular-expressions) library
for pattern matching. The PCRE library is a set of functions that
implement regular expression pattern matching using the same syntax and
semantics as Perl 5. This syntax can often handle more complex expressions
and capturing than standard regular expression implementations. For more
information about PCRE, please see: http://www.pcre.org/

lib_mysqludf_preg is a useful performance optimization for those
applications that are already performing these regular expression
matches in a high level language (ie. PHP) on the client side.
It is also helpful when there is a need to capture a parenthesized
subexpression from a regular expression, or simply as a slight
performance boost over the builtin RLIKE/REGEXP functions.

WWW: http://www.mysqludf.org/lib_mysqludf_preg/index.php
2011-10-28 02:09:23 +00:00
Steve Wills
c851baf419 BSD licensed charset/encoding converter library with more function than
libiconv. (Currently, only a few codecs are supported)
This port is a ruby wrapper for bsdconv.

WWW: https://github.com/buganini/ruby-bsdconv

PR:		ports/162022
Submitted by:	buganini@gmail.com
2011-10-28 02:06:08 +00:00
Steve Wills
c9f1e32723 - Correct broken message 2011-10-28 01:43:04 +00:00
Steve Wills
f491cc37b4 Moved rubygem-rack-protection to www category 2011-10-28 01:41:59 +00:00
Steve Wills
ae18720036 - Moving rubygem-rack-protection to www category where it belongs 2011-10-28 01:38:34 +00:00
Steve Wills
5494db420b Collection of Rack middleware to protect you against common, opportunistic attack.
WWW:	http://rkh.github.com/rack-protection/
2011-10-28 01:33:56 +00:00
Cheng-Lung Sung
92067831e8 - Update to 0.47 2011-10-27 23:37:07 +00:00
Eitan Adler
b21965d5e2 TileCache provides a Python-based WMS-C/TMS server, with pluggable
caching mechanisms and rendering backends.

WWW:	http://tilecache.org/

PR:		ports/161773
Submitted by:	Joris Dedieu <joris.dedieu@gmail.com>
Approved by:	bapt (mentor)
2011-10-27 22:57:30 +00:00
Steve Wills
ee6cac6403 - Typo'd the category for rubygem-rack-protection 2011-10-27 22:54:32 +00:00
Philip M. Gollucci
cd6430827a If your Catalyst project logs many messages, logging via standard error to
Apache's error log is not very clean: The log messages are mixed with
other web applications' noise; and especially if you use mod_fastcgi,
every line will be prepended with a long prefix.

An alternative is logging to a file. But then you have to make sure that
multiple processes won't corrupt the log file. The module Log::Handler
by Jonny Schulz does exactly this, because it supports message-wise flocking.

This module is a wrapper for said Log::Handler.
2011-10-27 22:32:47 +00:00
Adam Weinberger
9e57be564d MultiMarkdown, or MMD, is a tool to help turn minimally marked-up plain
text into well formatted documents, including HTML, PDF (by way of
LaTeX), OPML, or OpenDocument (specifically, Flat OpenDocument or
'.fodt', which can in turn be converted into RTF, Microsoft Word, or
virtually any other word-processing format).

MMD is a superset of the Markdown syntax, originally created by John
Gruber. It adds multiple syntax features (tables, footnotes, and
citations, to name a few), in addition to the various output formats
listed above (Markdown only creates HTML). Additionally, it builds in
'smart' typography for various languages (proper left- and right-sided
quotes, for example).

MultiMarkdown was originally a fork of the Markdown Perl code, but as of
version 3.0 has been rewritten as a fork of peg-markdown by John
MacFarlane, written in C. It can be compiled for any major operating
system, and as a native binary runs much faster than the Perl version it
replaces.

NOTE: To use the mmd2pdf script, you must install print/latexmk.

WWW: http://www.fletcherpenney.net/multimarkdown/
2011-10-27 22:18:55 +00:00
Sergey A. Osokin
3d0b0e5dc2 Update from 2.2.14 to 2.2.15.
Note.  The 2.2.15 release is the latest release from
legacy 2.2 branch.  Next commit is up to latest bugfix
release from 2.4 branch.

<ChangeLog>

* [BUGFIX] FLUSHALL was not replicated nor written into the
           Append Only File.
* [BUGFIX] FLUSHALL now only performs a sync SAVE if there
           is at least one save point configured.

</ChangeLog>
2011-10-27 20:16:42 +00:00
Steve Wills
f5efe1ee98 - Update to 1.3.1 2011-10-27 20:03:26 +00:00
Steve Wills
9ba3508b26 Collection of Rack middleware to protect you against common, opportunistic attack.
WWW:	http://rkh.github.com/rack-protection/
2011-10-27 19:50:54 +00:00
Stephen Montgomery-Smith
bb8b4ab941 - Update to 1.1.0. 2011-10-27 19:47:34 +00:00
Steve Wills
4509394449 - Update to 2.2.1 2011-10-27 19:39:32 +00:00
Steve Wills
c1aa5f0d80 - Update to 1.0.6 2011-10-27 18:53:12 +00:00
Steve Wills
b375396f9e - Update to 1.5.2 2011-10-27 18:48:19 +00:00
Steve Wills
acdcd1b0a8 - Update to 2.7.0 2011-10-27 18:44:14 +00:00
Steve Wills
a34d807f16 - Update to 1.6.5 2011-10-27 18:41:43 +00:00
Steve Wills
65389e9b21 Test::Unit Reporter (New) -- new output format for Test::Unit
WWW:	http://rubygems.org/gems/turn
2011-10-27 18:30:43 +00:00
Steve Wills
596b83d240 - Update to 1.4.1 2011-10-27 18:29:45 +00:00