| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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/
|
|
|
|
|
|
|
|
|
|
| |
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/
|
|
|
|
|
|
| |
- Turn off PERFTOOLS by default
- Pet portlint
- Bump PORTREVISION for dependency change
|
|
|
|
|
| |
PR: 162090
Approved by: Simon Olofsson <simon@olofsson.de> (maintainer)
|
|
|
|
| |
Approved by: ashish@ (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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/
|
|
|
|
| |
Approved by: miwi (implicit)
|
| |
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
- Pass maintainership to gecko
|
|
|
|
| |
- Pass maintainership to gecko
|
|
|
|
| |
WWW: http://pypi.python.org/pypi/roman/
|
|
|
|
| |
- pass maintainership to gecko
|
|
|
|
| |
- Pass maintainership
|
| |
|
|
|
|
|
|
|
| |
dbm interface, along with a shelve class that wraps the dict and
provides serialization for it.
WWW: http://github.com/Yelp/sqlite3dbm/
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Security: CVE-2011-2768
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
attack.
WWW: http://rkh.github.com/rack-protection/
|
|
|
|
| |
Feature safe: yes
|
| |
|
|
|
|
|
|
|
|
|
|
| |
caching mechanisms and rendering backends.
WWW: http://tilecache.org/
PR: ports/161773
Submitted by: Joris Dedieu <joris.dedieu@gmail.com>
Approved by: bapt (mentor)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
| |
|
|
|
|
|
|
| |
attack.
WWW: http://rkh.github.com/rack-protection/
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
WWW: http://rubygems.org/gems/turn
|
| |
|
|
|
|
| |
Changes: http://savannah.gnu.org/forum/forum.php?forum_id=6998
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBIx-Custom/Changes
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
PR: ports/160547
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 7 weeks)
|
|
|
|
|
|
| |
- Cleanup Makefile
Changes: http://nant.sourceforge.net/release/0.91/releasenotes.html
|
|
|
|
|
| |
PR: ports/162063
Submitted by: olgeni
|
|
|
|
| |
Changes: http://search.cpan.org/dist/HTTP-Tiny/Changes
|
|
|
|
|
|
| |
Changes: http://sourceforge.net/projects/phpldapadmin/files/phpldapadmin-php5/1.2.2/
PR: ports/162065
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
|
| |
|
|
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Mojolicious/Changes
PR: ports/162062
Submitted by: Murilo Opsfelder <mopsfelder@gmail.com> (maintainer)
|
| |
|
|
|
|
|
|
| |
ANSI code based colorization and stylization of output.
WWW: http://rubyworks.github.com/ansi/
|
| |
|
|
|
|
| |
Approved by: miwi
|
| |
|
|
|
|
|
|
| |
bsd.port.mk now.
Approved by: miwi
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
interface graphs for a device on the same screen. This helps with spotting
trends, or tracing where traffic is flowing through a switch or router. The
only way to natively achieve this with Zenoss is to create a graph or
multi-graph report for every network device manually, which can be a chore
if you have more than a few network devices.
This ZenPack provides a new link on the left side of a device detail view
called "Interface Graphs" - this view shows the graphs for all of the network
interfaces on the device in one place, allowing for fast spotting of issues
or traffic flows. Both the interface name and the description (if any) are
used to title the graphs to aid with identification.
Note that with stacked switches, you can end up with a very large number of
graphs on the page, so tuning this slightly via the configuration properties
below could be a good idea in these situations.
WWW: http://community.zenoss.org/docs/DOC-10226
PR: ports/157503
Submitted by: Zenoss <zenoss@experts-exchange.com>
|
| |
|
|
|
|
|
|
| |
PR: ports/161192
Submitted by: Oliver Heesakkers <dev2@heesakkers.info>
Approved by: gahr (maintainer)
|
| |
|
|
|
|
| |
was updated.
|
| |
|
| |
|
| |
|
|
|
|
| |
See http://www.fox-toolkit.org/news.html for release notes.
|
| |
|
|
|
|
|
|
|
|
|
| |
2011-11-04 astro/weatherget: Broken b/c of weather.com new licensing rules not agreed by author
2011-11-04 devel/py-reverse: Now part of pylint
2011-11-04 devel/py-vmaps: Author recommends using math/py-numpy instead
PR: ports/161063 ports/161067 ports/161074
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
|
| |
|
|
|
|
| |
Submitted by: Mikhail T.
|
|
|
|
| |
Reported by: PH (via pav)
|
| |
|
|
|
|
| |
Submitted by: glebius (maintainer)
|
|
|
|
| |
- Remove contiguous blank line
|
|
|
|
|
| |
Submitted by: linimon
Tested on: pointyhat
|
|
|
|
|
|
|
| |
unbreak a lot of dependent ports.
Submitted by: beat
Tested on: pointyhat i386-9-exp and i386-10
|
|
|
|
|
| |
Submitted by: beat
Tested on: pointyhat i386-9-exp and i386-10
|
|
|
|
|
|
| |
PR: 161431
Submitted by: jilles
Test on: pointyhat i386-9-exp and i386-10
|
|
|
|
|
|
|
|
|
|
| |
Ports that need this can set WITH_FBSD10_FIX to apply the hack, but
only on FreeBSD 10. This is only a temporary workaround as the real fix
lies upstream by fixing the included scripts, but this will take a
long time.
Submitted by: ed, jilles, stas, beat (and more)
Tested on: pointyhat i386-9-exp and i386-10
|
|
|
|
|
|
|
|
|
| |
pycodec-zope/Makefile:DEPRECATED= Handled in Python-2.4 and later
pycodec/Makefile:DEPRECATED= Handled in Python-2.4 upwards
zope-ejsplitter/Makefile:DEPRECATED= Plone4 has newer and better splitter mechanism than ejSplitter
zope-jamailhost/Makefile:DEPRECATED= Zope has changed MailHost specification and it is not sure jaMailHost works well
PR: ports/162055
|
|
|
|
|
|
|
|
| |
2011-10-27 devel/py-myghtyutils: Merged into Beaker; use www/py-beaker instead
2011-10-27 www/myghty: Upstream suggests textproc/py-mako instead
PR: ports/161077 ports/161078
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
|
|
|
|
| |
Release notes: http://netbeans.org/community/releases/71/relnotes.html
|
|
|
|
| |
Release notes: http://netbeans.org/community/releases/70/relnotes.html
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/SULLR/IO-Socket-SSL-1.48/Changes
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for dependency change
PR: ports/161319
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 3 weeks)
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for dependency change
PR: ports/161259
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 3 weeks)
|
|
|
|
|
|
|
|
| |
supported Perl releases
PR: ports/160951
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 1 month)
|
| |
|
|
|
|
|
|
| |
PR: ports/161730
Submitted by: swills (me)
With Hat: ruby@
|
|
|
|
|
|
| |
PR: ports/161730
Submitted by: swills (me)
Approved by: gogolok+freebsd@gmail.com (maintainer)
|
|
|
|
|
|
| |
PR: ports/161732
Submitted by: swills (me)
Approved by: freebsdports@chillibear.com (maintainer)
|
|
|
|
|
|
| |
PR: ports/161731
Submitted by: swills (me)
Approved by: freebsdports@chillibear.com (maintainer)
|
|
|
|
|
|
|
|
| |
- Change maintainer to ruby@ to ease future updates
PR: ports/161729
Submitted by: swills (me)
Approved by: jhelfman@experts-exchange.com (maintainer)
|
|
|
|
|
|
| |
PR: ports/161727
Submitted by: swills (me)
Approved by: m.tsatsenko@gmail.com (maintainer)
|
|
|
|
| |
WWW: http://rubygems.org/gems/sass-rails
|
|
|
|
| |
WWW: http://rubygems.org/gems/coffee-rails
|
|
|
|
| |
With hat: ruby@
|
|
|
|
|
|
|
|
|
| |
- Change maintainer to ruby@ to match other rubygem-dm ports to ease
future updates
PR: ports/161728
Submitted by: swills (me)
Approved by: jyyou@cs.nctu.edu.tw (maintainer)
|
|
|
|
|
|
|
|
|
| |
- Change maintainer to ruby@ to match other rubygem-dm ports to ease
future updates
PR: ports/162034
Submitted by: swills (me)
Approved by: jyyou@cs.nctu.edu.tw (maintainer)
|
| |
|
|
|
|
|
|
|
| |
PR: ports/160664
Submitted by: "4720@hushmail.com" <4720@hushmail.com>
Approved by: maintainer timeout (6 weeks)
Approved by: bapt,sahil (mentors, implicit)
|
|
|
|
|
| |
PR: ports/160996
Submitted by: swills (me)
|
|
|
|
|
|
|
|
| |
- hand maintainership to x11@
Reviewed by: kwm
Approved by: ashish (maintainer)
Approved by: bapt,sahil (mentors, implicit)
|
|
|
|
|
| |
PR: ports/160195
Submitted by: Jason Helfman <jhelfman@experts-exchange.com> (maintainer)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
PR: ports/162019
Submitted by: maintainer
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
param/pyparam_util.c: In function 'lp_from_py_object':
param/pyparam_util.c:50: error: expected expression before 'struct'
Reported by: pointyhat
|
|
|
|
|
|
|
|
| |
Updating /usr/local/share/doc/postfix/scache.8.html...
Updating /usr/local/share/doc/postfix/tlsmgr.8.html...
*** Error code 1
Reported by: pointyhat
|
|
|
|
|
|
| |
pkg_add: package 'subversion-1.6.17_4' conflicts with subversion-1.7.1
Reported by: pointyhat
|
|
|
|
|
|
|
|
| |
Note that this was the intended fix in PORTREVISION 3, the previous
commit, and was the change intended by ports/161999.
PR: ports/161999
Submitted by: Eugene Paskevich <eugene@raptor.kiev.ua>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fast. Blitz is written in C and built as PHP-extension which makes it one of
the fastest template engines (you may see the benchmarks section below)
Clear. Blitz has quite simple and clear syntax and makes developer to build
compact and easy-to-read-and-support code even for applications with very
complex presentation logic
WWW: http://alexeyrybak.com/blitz/blitz_en.html
PR: ports/159908
Submitted by: Valery Komarov <komarov@valerka.net>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
portdepends, plus some routine bug fixing.
- Accessor methods for array valued items now mostly return
arrays rather than array references. This makes quite a
lot of code a lot clearer.
- Add GraphViz output mode to portdepends(1). Pretty
pictures of port dependency trees.
- Remove TODO file as (a) most of the items were done and (b)
most recent changes weren't listed in there.
- Minor docco tweak to portindex reflecting currently
supported FreeBSD major versions.
- Bump VERSION to 2.6 and CACHE_VERSION to 2.5
PR: ports/161396
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
|
|
|
|
| |
Submitted by: Nali Toja <nalitoja AT gmail.com>
|
|
|
|
|
|
| |
PR: ports/162018
Submitted by: John Watson [wizputer gmail]
Obtained from: Chromium Chruetertee rev. 252
|
|
|
|
|
|
|
| |
Also remove a commented out BROKEN line for x11/xfce4-clipman-plugin
PR: ports/160730
Submitted by: ryusuke
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Removed BROKEN line
- Removed CONFLICTS - binaries were renamed in this release, so no problem
- Set new SWIPLDIR variable to use in pkg-plist and Makefile, that
contains the new directory name that swi-pl now using.
- Undefined HAVE_EXECINFO too in src/config.h to let it build successfuly
- Adjusted local patches to new version (not tested on "alpha" for sure :))
- Removed files/patch-configure to make --without-jpl in CONFIGURE_ARGS
actually work
PR: ports/161414
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved by: g.gonter@ieee.org (maintainer; timeout - 2+ weeks)
|
|
|
|
|
|
|
| |
- remove BROKEN/EXPIRY_DATE
PR: ports/160272
Submitted by: Eugene Grosbein <ports@grosbein.net> (maintainer)
|
|
|
|
|
|
|
|
| |
- Add gio support
PR: ports/159218
Submitted by: Scott Larson <stl@wiredrive.com>
Approved by: maintainer timeout (3 months)
|
|
|
|
|
|
| |
PR: ports/161970
Submitted by: Nali Toja <nalitoja@gmail.com>
Approved by: maintainer
|
|
|
|
|
|
|
|
|
|
|
|
| |
UDP transport, also supports TLS (RadSec), as well as RADIUS over TCP and
DTLS. The aim is for the proxy to have sufficient features to be flexible,
while at the same time to be small, efficient and easy to configure.
WWW: http://software.uninett.no/radsecproxy/
PR: ports/147943
Submitted by: Honza Betik <honza@betik.cz>
Approved by: bapt (mentor)
|
|
|
|
|
|
|
|
| |
Changes:
- Apply http://svnweb.freebsd.org/base?view=revision&revision=226403
PR: ports/162005
Submitted by: Kuan-Chung Chiu <buganini@gmail.com> (maintainer)
|
|
|
|
|
|
| |
Changes: https://github.com/buganini/bsdconv/blob/master/Changelog
PR: ports/162007
Submitted by: Kuan-Chung Chiu <buganini@gmail.com> (maintainer)
|
|
|
|
|
|
|
|
|
| |
- Mark WITHOUT_MAILNEWS as BROKEN
PR: ports/160444
Submitted by: J. Altman <freebsd-announce AT chthonic.com> and many others
Patch by: Nali Toja <nalitoja AT gmail.com>
Tested by: Alexey Shuvaev <shuvaev AT physik.uni-wuerzburg.de>
|
|
|
|
|
|
| |
- Add BUILD_DEPENDS
Changes: http://search.cpan.org/dist/Log-Any-App/Changes
|
|
|
|
|
|
|
|
| |
devel/libunicode
- Bump PORTREVISION for PLIST change
Notified by: kevlo
|
|
|
|
|
|
|
|
|
| |
avoid unnecessary su(1) initiated by rc.subr
- Pet portlint
- Bump PORTREVISION for package change
Reported by: ed (in the followup of ports/151314)
Approved by: Olivier Cochard-Labbe <olivier@cochard.me> (maintainer)
|
|
|
|
|
|
|
| |
Remove direct dependancy on p5-DBD-mysql which causes problems when
using WITH_MYSQL_VER=52
Submitted by: Valentin Zahariev <curly@e-card.bg>
|
| |
|
|
|
|
|
|
|
|
| |
postgresql-plpython built with python 3+
PR: ports/161822
Submitted by: sunpoet
Approved by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> (maintainer), girgen (maintainer implicit)
|
| |
|
|
|
|
|
| |
saved
- update my mail address
|
|
|
|
|
|
| |
- un-broken
- saved from expiration
- take the maintainership. Thanks the previous maintainers!
|
|
|
|
|
|
|
|
|
| |
- Removed unnecessary PORTREVISION=0
- Updated MASTER_SITES to use shorthand definition
PR: ports/161907
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved by: qingfeng@douban.com (maintainer)
|
|
|
|
|
|
| |
PR: ports/161930
Submitted by: David Wolfskill <david@catwhisker.org> (maintainer)
Approved by: glarkin@ (mentor)
|
|
|
|
|
|
| |
PR: ports/161980
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved by: glarkin@ (mentor)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fixed GPG dependency
- Added dependency on devel/xdg-utils
- Added dependency on unlzma (not lzma - it's not used) conditionally
- Removed unused PYTHON_VER from PLIST_SUB
- Removed bogus WITHOUT_NLS
- Requires python >= 2.6, so bumped USE_PYTHON
- Added pygobject dependency
- Added new manpage
- Removed some bogus entries from plist
- Marked DEPRECATED with expiration on 2011-12-01 (duplication of PBI
functionality and the limited number of 0install packages are available
in the ports tree)
PR: ports/161096
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Approved by: Dylan Cochran <a134qaed@gmail.com> (maintainer; timeout - 2 months)
|
| |
|
|
|
|
| |
Changes: http://search.cpan.org/dist/AnyEvent-CouchDB/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Catalyst-Model-DBIC-Schema/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBIx-Custom/Changes
|
| |
|
|
|
|
| |
- Set EXPIRATION_DATE to 2011-11-26 (1 month later)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a simple but fast pure Perl module for determining whether a given IP
address is in a given set of IP subnets. It's iterative, and it doesn't use any
fancy tries, but because it uses simple bitwise operations on strings it's still
very fast.
All documented functions are exported by default.
Subnets have to be given in "address/mask" or "address/length" (CIDR) format.
The Socket and Socket6 modules are used to normalise addresses, which means that
any of the address formats supported by inet_aton and inet_pton can be used with
Net::Subnet.
WWW: http://search.cpan.org/dist/Net-Subnet/
PR: ports/161335
Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
|
|
|
|
|
|
|
|
| |
- Fix build when using clang
PR: ports/161865
Submitted by: Takefu <takefu@airport.fm> [1]
Approved by: Linh Pham <question+fbsdports@closedsrc.org> (maintainer)
|
|
|
|
|
|
| |
- Sort PLIST_FILES
Changes: http://sourceforge.net/projects/dict/files/libmaa/libmaa-1.3.1/README/view
|
|
|
|
| |
Enable JIT support by default (can be turned off in OPTIONS)
|
|
|
|
|
|
| |
* Change default systray icon size to 16.
* Update internal area hint when changing area.
* Italian translation update (Massimo Maiurana).
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Catalyst-Devel/Changes
|
| |
|
|
|
|
| |
location of his distfiles w/o notice.
|
|
|
|
| |
- Update WWW
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/DROLSKY/DateTime-TimeZone-1.41/Changes
|
| |
|
|
|
|
| |
Security: http://www.vuxml.org/freebsd/395e0faa-ffa7-11e0-8ac4-6c626dd55a41.html
|
| |
|
| |
|
|
|
|
| |
Notified by: pointyhat (via pav)
|
|
|
|
|
| |
PR: ports/162021
Submitted by: Bo-Yi Wu <appleboy.tw@gmail.com> (maintainer)
|
| |
|
|
|
|
| |
Approved by: stas
|
| |
|
|
|
|
| |
because it is no longer supported by fvwm.org.
|
| |
|
|
|
|
|
| |
PR: ports/161991
Submitted by: sunpoet
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
as well as related standards such as Filter Encoding (FE).
WWW: http://www.tinyows.org/
PR: ports/161770
Submitted by: Joris Dedieu <joris.dedieu@gmail.com>
|
| |
|
|
|
|
|
|
|
| |
- Upstream switched from ant to maven
PR: ports/161696
Submitted by: Rob Farmer <rfarmer@predatorlabs.net> (maintainer)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
PR: ports/162004
Submitted by: maintainer (Helmut Schneider)
|
|
|
|
|
| |
PR: ports/162003
Submitted by: maintainer
|
|
|
|
| |
both of which now use the new fltk 1.3
|
|
|
|
|
| |
PR: ports/161906
Submitted by: Mykola Dzham <i@levsha.me> (maintainer)
|
|
|
|
|
| |
PR: ports/161823
Submitted by: Roberto Nunnari <robi@nunnisoft.ch> (maintainer)
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
INDEX.
PR: ports/161999
Submitted by: Eugene Paskevich <eugene@raptor.kiev.ua>
|
|
|
|
| |
pure C, and have very good performance compared to cjson and simplejson.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Europe:
- Pridnestrovian Moldavian Republic (PMR, also known as
"Pridnestrovie") has abolished seasonal clock change (no transition
to the Winter Time).
- The recent change to the Ukranian time zone (Europe/Kiev) to
introduce permanent daylight saving time (similar to Russia) was
reverted.
South America:
- Bahia: The President signed a decree that includes Bahia in summer
time.
zone.tab:
- Add Europe/Tiraspol Pridnestrovie
|
|
|
|
| |
Approved by: miwi
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
and dynamically conform to the C99 standard. Thus, it is useful for
stress-testing compilers, static analyzers, and other tools that
process C code. Csmith has found bugs in every tool that it has
tested, and over the last several years we have used it to find
and report more than 350 previously-unknown compiler bugs.
WWW: http://embed.cs.utah.edu/csmith/
Approved by: bapt (mentor)
|
|
|
|
|
| |
PR: ports/161964
Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> (maintainer)
|
|
|
|
|
| |
PR: ports/161988
Submitted by: Kenneth Lind <exil@sasurai.se>
|
|
|
|
|
|
|
|
| |
- Update mail/dovecot2-pigeonhole to 0.2.4
PR: ports/160820
Submitted by: Attila Nagy <bra@fsn.hu> (maintainer) -> update
Jase Thew <freebsd@beardz.net> -> updated patch-doc_Makefile_in
|
|
|
|
|
|
| |
of the box.
Requested by: Dean Freeman <wfreeman@sourcefire.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog:
* Correct a mismerge of schema
* Correct some typos
* Properly add the checksum Hooks to the upgrade code
* Fix some variable initialization issues in the webui
* Allow Jails and Builds to be removed when BuildPortsQueue entries exist
Approved by: maintainer implicit
|
|
|
|
|
|
|
| |
- BUGFIX: Add support for speed limits scheduling (Web UI)
- BUGFIX: Fix ratio calculation for purely seeded torrents
- I18N: Update Russian translation
- COSMETIC: Torrent addition dialog layout fixes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Net-SIP/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBIx-Custom/Changes
|
|
|
|
|
| |
Obtained from: Chromium/Chruetertee development repository
Security: http://www.vuxml.org/freebsd/6887828f-0229-11e0-b84d-00262d5ed8ee.html
|
|
|
|
|
| |
PR: ports/162011
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
|
| |
|
|
|
|
|
| |
Obtained from: http://googlechromereleases.blogspot.com/
Security: CVE-2011-[2845, 3875-3891]
|
|
|
|
| |
Approved by: maintainer implicit
|
|
|
|
| |
- Pass maintainership to gecko
|
|
|
|
|
|
|
| |
- Add desktop entries for client programs [2]
PR: ports/161910
Submitted by: green dog <fiziologus@gmail.com> [1], myself [2]
|
| |
|
|
|
|
|
| |
PR: ports/161983
Submitted by: Martin Pala <martinp@tildeslash.com> (maintainer)
|
| |
|
|
|
|
|
| |
- Add a new option -r (recursive); contributed by Hiroshi Fujishima.
- Fix a bug where it stops at a legacy mountpoint.
|
|
|
|
|
| |
PR: ports/161916
Submitted by: David Naylor <naylor.b.david AT gmail.com> (maintainer)
|
| |
|
| |
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/RKITOVER/Net-SSH2-0.40/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/File-Map/Changes
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBIx-Custom/Changes
|
| |
|
| |
|
|
|
|
| |
Changes: http://www.parrot.org/news/2011/3.9.0
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
in a couple places that are affected by graphics/ocaml-lablgl and/or
x11-toolkits/ocaml-lablgtk2.
No PORTREVISION bump since THREADS is on by default.
Approved by: maintainer (implicit)
|
| |
|
| |
|
| |
|
| |
|