Commit graph

4739 commits

Author SHA1 Message Date
Ruslan Makhmatkhanov
c122d9b3d1 2011-12-12 Has expired: Port is outdated. Author discourages
system-wide installation. Download it manually.

Approved by:   novel (mentor)
Feature safe:  yes
2011-12-12 12:10:01 +00:00
Sunpoet Po-Chuan Hsieh
64be3c121f - Add p5-MooseX-Types-DateTime 0.06
MooseX::Types::DateTime packages several Moose::Util::TypeConstraints with
coercions, designed to work with the DateTime suite of objects.

WWW: http://search.cpan.org/dist/MooseX-Types-DateTime/

Feature safe:	yes
2011-12-12 11:29:13 +00:00
Sunpoet Po-Chuan Hsieh
a4400aa8e3 - Add p5-MouseX-App-Cmd 0.08
MouseX::App::Cmd marries App::Cmd with MouseX::Getopt. It is a direct port of
MooseX::App::Cmd to Mouse.

Use it like App::Cmd advises (especially see App::Cmd::Tutorial), swapping
App::Cmd::Command for MouseX::App::Cmd::Command.

Then you can write your Mouse commands as Mouse classes, with MouseX::Getopt
defining the options for you instead of opt_spec returning a
Getopt::Long::Descriptive spec.

WWW: http://search.cpan.org/dist/MouseX-App-Cmd/

Feature safe:	yes
2011-12-12 11:25:50 +00:00
Jun Kuriyama
71c0921034 This module is a simple interface to extensible logging. It is
bundled with a really basic logger, Log::Contextual::SimpleLogger, but
in general you should use a real logger instead of that.  For
something more serious but not overly complicated, try
Log::Dispatchouli (see "SYNOPSIS" for example.)

The reason for this module is to abstract your logging interface so
that logging is as painless as possible, while still allowing you to
switch from one logger to another.

WWW: http://search.cpan.org/dist/Log-Contextual/

Feature safe:	yes
2011-12-10 05:03:25 +00:00
Roman Bogorodskiy
5433b2bdc2 Add devel/py-prettytable -- a simple Python library for easily displaying
tabular data in a visually appealing ASCII table format.

Feature safe:	yes
2011-12-08 18:32:10 +00:00
Pav Lucistnik
7f30bbf933 - Remove py-include_server entry, such port never existed
Spammed by:	skreuzer in rev. 1.4721
Reported by:	pointyhat
Feature safe:	yes
2011-12-08 14:19:55 +00:00
Wen Heping
222aeb5c3c wsgitools is a set of tools working with WSGI (see PEP 333).
It includes classes for filtering content, middlewares for
caching, logging and tracebacks as well as two backends for
SCGI. Goals in writing it were portability and simplicity.

WWW: http://subdivi.de/~helmut/wsgitools/

PR:		163100
Submitted by:	Klaus Aehlig <aehlig@linta.de>
Feature safe:	yes
2011-12-07 07:03:16 +00:00
Ruslan Makhmatkhanov
f88cdd5a7f - Remove expired port: Duplicates PBI functionality, and 0install feeds
are available as ports

Approved by:   novel (mentor)
Feature safe:  yes
2011-12-06 20:25:25 +00:00
Anton Berezin
fca5e7b501 Add devel/p5-Set-CrossProduct 1.95, a Perl module to work with the cross
product of two or more sets.

Feature safe:	yes
2011-12-06 11:40:17 +00:00
Steve Wills
f2df7d5adf Remove these ports as they are no longer included in the upstream
ruby-gnome.

devel/ruby-gconf2
devel/ruby-gnomevfs
devel/ruby-libglade2
graphics/ruby-gnomecanvas2
graphics/ruby-libart2
print/ruby-gnomeprint
www/ruby-gtkhtml2
www/ruby-gtkmozembed
x11-toolkits/ruby-gnomeprintui
x11-toolkits/ruby-gtkglext
x11-toolkits/ruby-panelapplet
x11/ruby-gnome2-all

PR:		ports/162139
Submitted by:	TAKATSU Tomonari <tota@freebsd.org> (based on)
Feature safe:	yes
2011-12-05 22:53:04 +00:00
Steve Wills
78b74ff9ea Ruby/GIO2 is a Ruby binding of gio-2.0.x.
WWW:	http://ruby-gnome2.sourceforge.jp/

Feature safe:	yes
2011-12-05 22:48:34 +00:00
Akinori MUSHA
e06433501a Add mingw32-openssl, the OpenSSL library cross-compiled for MinGW32.
Feature safe:	yes
2011-12-05 05:14:26 +00:00
Akinori MUSHA
2c4047483c Add mingw32-libffi, the libffi library cross-compiled for MinGW32.
Feature safe:	yes
2011-12-04 18:30:18 +00:00
Akinori MUSHA
8cb6a609ad Add mingw32-libyaml, the libyaml library cross-compiled for MinGW32.
Feature safe:	yes
2011-12-04 18:03:56 +00:00
Akinori MUSHA
c67b568066 Add mingw32-zlib, the zlib library cross-compiled for MinGW32.
Feature safe:	yes
2011-12-04 13:57:27 +00:00
Ashish SHUKLA
799aaf8033 Sepia is a set of features to make Emacs a better tool for Perl
development. This package contains the Perl side of the
implementation, including all user-serviceable parts (for the
cross-referencing facility see Sepia::Xref).

WWW:	http://search.cpan.org/dist/Sepia/

Feature safe:	yes
2011-12-02 14:53:56 +00:00
Sunpoet Po-Chuan Hsieh
fa8642ee90 - Add p5-DateTime-Astro 0.99999_03
DateTime::Astro implements functions used in astronomical calendars:
- Solar Longitude
- Solar Terms
- Lunar Longitude
- New Moons
... etc

This module is best used in environments where a C compiler and the MPFR
arbitrary precision math library is installed. It can fallback to using
Math::BigInt, but that would pretty much render it useless because of its speed
and loss of accuracy that may creep up while doing Perl to C struct conversions.

WWW: http://search.cpan.org/dist/DateTime-Astro/

Feature safe:	yes
2011-11-30 17:24:33 +00:00
Sunpoet Po-Chuan Hsieh
31d03d8d7d - Add p5-Test-Refcount 0.07
The Perl garbage collector uses simple reference counting during the normal
execution of a program. This means that cycles or unweakened references in other
parts of code can keep an object around for longer than intended. To help avoid
this problem, the reference count of a new object from its class constructor
ought to be 1. This way, the caller can know the object will be properly
DESTROYed when it drops all of its references to it.

Test::Refcount provides two test functions to help ensure this property holds
for an object class, so as to be polite to its callers.

If the assertion fails; that is, if the actual reference count is different to
what was expected, a trace of references to the object can be printed, if Marc
Lehmann's Devel::FindRef module is installed. This may assist the developer in
finding where the references are.

WWW: http://search.cpan.org/dist/Test-Refcount/

Feature safe:	yes
2011-11-28 09:18:26 +00:00
Sunpoet Po-Chuan Hsieh
a8d190bb13 - Add p5-Test-Identity 0.01
Test::Identity provides a single testing function, identical. It asserts that a
given reference is as expected; that is, it either refers to the same object or
is undef. It is similar to Test::More::is except that it uses refaddr, ensuring
that it behaves correctly even if the references under test are objects that
overload stringification or numification.

It also provides better diagnostics if the test fails.

WWW: http://search.cpan.org/dist/Test-Identity/

Feature safe:	yes
2011-11-28 09:17:35 +00:00
Sunpoet Po-Chuan Hsieh
e4aaf689f6 - Add p5-Sys-Virt 0.9.7
The Sys::Virt module provides a Perl XS binding to the libvirt virtual machine
management APIs. This allows machines running within arbitrary virtualization
containers to be managed with a consistent API.

WWW: http://search.cpan.org/dist/Sys-Virt/

PR:		ports/162722
Submitted by:	Frank Wall <fw@moov.de>
Feature safe:	yes
2011-11-28 07:12:06 +00:00
Martin Wilke
2f61b42187 The PHP WebDAV extension
WWW: http://php-webdav.pureftpd.org/project/php-webdav

PR:		ports/160207
Submitted by:	Valery Komarov <komarov@valerka.net>
Feature safe: 	yes
2011-11-25 19:06:23 +00:00
Martin Wilke
6ad1b3600e Port for libk8055 to provide support for the Velleman K8055 USB
Experiment Board. Package also include k8055 command line tool.

WWW: http://www.horizon9.org/~geroy/

PR:		ports/161440
Submitted by:	Jake Smith <jake@xz.cx>
Feature safe:	yes
2011-11-25 18:36:29 +00:00
Steven Kreuzer
f4c4296ab6 A non-blocking Graphite client
WWW: http://search.cpan.org/dist/AnyEvent-Graphite/

Feature safe:	YES
2011-11-25 16:43:07 +00:00
TAKATSU Tomonari
03a8b45cb1 - Add a new port: devel/py-ordereddict
Drop-in substitute for Py2.7's new collections.OrderedDict. The
  recipe has big-oh performance that matches regular dictionaries
  (amortized O(1) insertion/deletion/lookup and O(n)
  iteration/repr/copy/equality_testing).

  WWW:	http://pypi.python.org/pypi/ordereddict

Feature safe:	yes
2011-11-23 04:32:53 +00:00
Rene Ladan
b6cf5e3f62 Remove expired port:
2011-11-22 devel/tortoisehg1: does not work with current devel/mercurial, use tortoisehg2

Feature safe:	yes
2011-11-22 18:05:30 +00:00
Steve Wills
519231fa02 Additional utils for Perl symbols manipulation
WWW:	http://search.cpan.org/dist/Symbol-Util/

Feature safe:	yes
2011-11-17 17:07:49 +00:00
Steve Wills
6e893a9ffd kgio provides non-blocking I/O methods for Ruby without raising exceptions on
EAGAIN and EINPROGRESS. It is intended for use with the Unicorn and Rainbows!
Rack servers, but may be used by other applications (that run on Unix-like
platforms).

WWW:	http://bogomips.org/kgio/

Feature safe:	yes
2011-11-16 16:29:48 +00:00
Wen Heping
dfda5c0cc8 This package provides two cache managers for Zope 2. A RAMCacheManager
and an Accelerated HTTP cache manager, which adds HTTP cache headers
to responses.

WWW: http://pypi.python.org/pypi/Products.StandardCacheManagers

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 06:44:36 +00:00
Wen Heping
1024bd328e The Python Scripts product provides support for restricted execution
of Python scripts, exposing them as callable objects within the Zope
environment.

WWW: http://pypi.python.org/pypi/Products.PythonScripts

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 06:39:13 +00:00
Wen Heping
8c9c05d1a3 zope.testbrowser provides an easy-to-use programmable web browser
with special focus on testing. It is used in Zope, but it's not
Zope specific at all. For instance, it can be used to test or
otherwise interact with any web site.

WWW: http://pypi.python.org/pypi/zope.testbrowser

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 06:34:29 +00:00
Wen Heping
6862b65185 Viewlets provide a generic framework for building pluggable
user interfaces.

WWW: http://pypi.python.org/pypi/zope.viewlet

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 06:29:00 +00:00
Wen Heping
c7113b8d8d This package provides a local and persistent site manager implementation,
so that one can register local utilities and adapters. It uses local
adapter registries for its adapter and utility registry. The module also
provides some facilities to organize the local software and ensures the
correct behavior inside the ZODB.

WWW: http://pypi.python.org/pypi/zope.site

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 06:21:46 +00:00
Sunpoet Po-Chuan Hsieh
115f7e3c13 - Add p5-Class-Load-XS 0.02
Class::Load::XS provides an XS implementation for portions of Class::Load. See
Class::Load for API details.

WWW: http://search.cpan.org/dist/Class-Load-XS/

Feature safe:	yes
2011-11-16 05:26:57 +00:00
Wen Heping
fa9af1e7da This package provides a "page template" resource class, a resource
which content is processed with Zope Page Templates engine before
returning to client.

WWW: http://pypi.python.org/pypi/zope.ptresource

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 03:26:39 +00:00
Wen Heping
7e84097427 This package provides interfaces/implementations for events relative
to the lifetime of a server process (startup, database opening, etc.)

WWW: http://pypi.python.org/pypi/zope.processlifetime

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 03:20:12 +00:00
Wen Heping
ea3cd3f1c2 This package provides a framework to develop componentized Web
GUI applications. Instead of describing the content of a page
using a single template or static system of templates and METAL
macros, content provider objects are dynamically looked up based
on the setup/configuration of the application.

WWW: http://pypi.python.org/pypi/zope.contentprovider

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-16 03:14:47 +00:00
Wen Heping
0c7bf4c2ad MIMETools provides the <!--#mime--> tag for DocumentTemplate.
WWW: http://pypi.python.org/pypi/Products.MIMETools

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:47:28 +00:00
Wen Heping
9bc697dcc8 This package provides support for external Python methods
within a Zope 2 environment.

WWW: http://pypi.python.org/pypi/Products.ExternalMethod

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:40:26 +00:00
Wen Heping
d228558a55 BTreeFolder2 is a Zope product that acts like a Zope2 OFS folder
but can store many more items.

WWW: http://pypi.python.org/pypi/Products.BTreeFolder2

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:33:27 +00:00
Wen Heping
218cf05af0 This package provides an implementation of browser resources.
It also provides directives for defining those resources using
ZCML.

WWW: http://pypi.python.org/pypi/zope.browserresource

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:28:16 +00:00
Wen Heping
e170141288 This package provides ZCML directives for configuring browser views.
WWW: http://pypi.python.org/pypi/zope.browserpage

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:15:40 +00:00
Wen Heping
11afb36ff0 This package define interfaces of container components, and provides
container implementations such as a BTreeContainer and OrderedContainer,
as well as the base class used by zope.site.folder for the Folder
implementation.

WWW: http://pypi.python.org/pypi/zope.container

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:07:53 +00:00
Wen Heping
7312f2ed0f Zope Template Application Language Expression Syntax (TALES).
WWW: http://pypi.python.org/pypi/zope.tales

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 07:01:34 +00:00
Wen Heping
bf2663a640 Page Templates provide an elegant templating mechanism that achieves
a clean separation of presentation and application logic while
allowing for designers to work with templates in their visual editing
tools (FrontPage, Dreamweaver, GoLive, etc.).

WWW: http://pypi.python.org/pypi/zope.pagetemplate

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 06:55:45 +00:00
Wen Heping
8f3c19d051 This package provides an implementation of browser menus and
ZCML directives for configuring them.

WWW: http://pypi.python.org/pypi/zope.browsermenu

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 06:48:35 +00:00
Cheng-Lung Sung
6a10277646 Six is a Python 2 and 3 compatibility library. It provides utility
functions for smoothing over the differences between the Python versions
with the goal of writing Python code that is compatible on both Python
versions. See the documentation for more information on what is provided.

WWW:	http://pypi.python.org/pypi/six

Noted by:	rm
Feature safe:	yes
2011-11-15 06:33:15 +00:00
Wen Heping
46333cf9e3 The zope.traversing package provides adapteres for resolving object
paths by traversing an object hierarchy.

WWW: http://pypi.python.org/pypi/zope.traversing

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 01:25:04 +00:00
Wen Heping
d314258cf1 The ZCatalog is Zope2's built in search engine. It allows you to
categorize and search all kinds of Zope objects.It comes with a
variety of indexes for different types of data.

WWW: http://pypi.python.org/pypi/Products.ZCatalog

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 01:13:23 +00:00
Wen Heping
5ac5575d62 This package contains a full text indexing facility for Zope2 and
more specifically for Products.ZCatalog.

WWW: http://pypi.python.org/pypi/Products.ZCTextIndex

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-15 01:05:40 +00:00
Wen Heping
26ab2c7845 OFSP provides the general Zope 2 help.
WWW: http://pypi.python.org/pypi/Products.OFSP

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via github)
Feature safe:	yes
2011-11-14 06:55:34 +00:00