Commit Graph

73886 Commits

Author SHA1 Message Date
sthen
9f363bc3be Update www/p5-Catalyst-Log-Log4perl to version 1.05.
Catalyst::Log::Log4perl is deprecated.  Use Log::Log4perl::Catalyst
instead.

from Andreas Voegele
2012-04-08 21:58:16 +00:00
sthen
b4a7ac22c5 Update www/p5-Catalyst-Engine-Apache to version 1.16.
from Andreas Voegele
2012-04-08 21:58:14 +00:00
sthen
b14231c277 Update www/p5-Catalyst-Devel to version 1.36.
from Andreas Voegele
2012-04-08 21:58:12 +00:00
sthen
b82bac941c Update www/p5-Catalyst-Controller-HTML-FormFu to version 0.06001. More
recent versions remove deprecated methods.

from Andreas Voegele
2012-04-08 21:58:09 +00:00
sthen
19f1bdcc96 Update www/p5-Catalyst-Controller-FormBuilder to version 0.06.
from Andreas Voegele
2012-04-08 21:58:07 +00:00
sthen
6d515b0e2a Update www/p5-Catalyst-Component-ACCEPT_CONTEXT to version 0.07.
from Andreas Voegele
2012-04-08 21:58:04 +00:00
sthen
eae2c85ea7 Update www/p5-Catalyst-Action-RenderView to version 0.16.
from Andreas Voegele
2012-04-08 21:57:39 +00:00
sthen
6b7ee9d4b0 Update www/p5-Catalyst-Runtime to version 5.90006.
Fixes Catalyst with Moose 1.24+, this has been broken in the tree for a
while.

This and the many related updates to follow are all from Andreas Voegele's
repo at https://github.com/voegelas/openbsd-mystuff, thanks Andreas, this must
have been a huge bunch of work. I have forked this at github/sthen/p5-ports-wip
and am removing things from there once committed, there are various additional
new perl ports there and it would be nice if people could help work through
what's left.
2012-04-08 21:49:58 +00:00
sthen
1b8ab3a893 sync new p5-* 2012-04-08 21:09:49 +00:00
sthen
d1cf9027a9 import www/p5-Plack-Test-ExternalServer, ok landry, from Andreas Voegele's repo
Plack::Test::ExternalServer allows your to run your Plack::Test tests
against an external server instead of just against a local application
through either mocked HTTP or a locally spawned server.
2012-04-08 21:07:11 +00:00
sthen
37bd1ddf00 import www/p5-Plack-Middleware-ReverseProxy, ok landry, from Andreas Voegele's repo
Plack::Middleware::ReverseProxy resets some HTTP headers, which were
changed by reverse-proxy.  You can specify the reverse proxy address and
stop fake requests using the 'enable_if' directive in your app.psgi.
2012-04-08 21:06:47 +00:00
sthen
82b92aa53b import www/p5-CatalystX-Component-Traits, ok landry, from Andreas Voegele's repo
Adds a "COMPONENT" method to your Catalyst component base class that
reads the optional traits parameter from app and component config and
instantiates the component subclass with those traits using
"new_with_traits" in MooseX::Traits from MooseX::Traits::Pluggable.
2012-04-08 21:06:25 +00:00
sthen
f6d3e134b2 import devel/p5-Params-Classify, ok landry, from Andreas Voegele's repo
Params::Classify provides various type-testing functions.  These are
intended for functions that, unlike most Perl code, care what type of
data they are operating on.  For example, some functions wish to behave
differently depending on the type of their arguments (like overloaded
functions in C++).
2012-04-08 21:05:51 +00:00
sthen
4cf6c846e4 import devel/p5-MooseX-Types-LoadableClass, ok landry, from Andreas Voegele's repo
Moose ClassName type constraint with coercion to load the class.
2012-04-08 21:05:28 +00:00
sthen
5cb9e25ca7 import devel/p5-MooseX-Traits-Pluggable, ok landry, from Andreas Voegele's repo
MooseX::Traits::Pluggable loads and applies roles at object creation
time.
2012-04-08 21:05:04 +00:00
sthen
6aff27894f imports devel/p5-MooseX-NonMoose, ok landry, from Andreas Voegele's repo
MooseX::NonMoose allows for easily subclassing non-Moose classes with
Moose, taking care of the annoying details connected with doing this,
such as setting up proper inheritance from Moose::Object and installing
(and inlining, at make_immutable time) a constructor that makes sure
things like BUILD methods are called.
2012-04-08 21:04:36 +00:00
sthen
524f404e2f import devel/p5-MooseX-MarkAsMethods, ok landry, from Andreas Voegele's repo
MooseX::MarkAsMethods allows one to easily mark certain functions as
Moose methods.  This will allow other packages such as
namespace::autoclean to operate without blowing away your overloads.
After using MooseX::MarkAsMethods your overloads will be recognized by
Class::MOP as being methods, and class extension as well as composition
from roles with overloads will "just work".
2012-04-08 21:04:13 +00:00
sthen
05f9d8e63c import ports/devel/p5-MooseX-Daemonize, ok landry, from Andreas Voegele's repo
Often you want to write a persistant daemon that has a pid file, and
responds appropriately to Signals.  MooseX::Daemonize provides a set of
basic roles as an infrastructure to do that.
2012-04-08 21:03:35 +00:00
sthen
747aa1fff9 import ports/devel/p5-Module-Runtime, ok landry, from Andreas Voegele's repo
The functions exported by Module::Runtime deal with runtime handling of
Perl modules, which are normally handled at compile time.
2012-04-08 21:02:51 +00:00
sthen
281848cde0 import ports/devel/p5-Class-Load, ok landry@
"require EXPR" only accepts "Class/Name.pm" style module names, not
"Class::Name".  How frustrating!  For that, we provide "load_class
'Class::Name'".

It's often useful to test whether a module can be loaded, instead of
throwing an error when it's not available.  For that, we provide
"try_load_class 'Class::Name'".

Finally, sometimes we need to know whether a particular class has been
loaded.  Asking %INC is an option, but that will miss inner packages and
any class for which the filename does not correspond to the package
name.  For that, we provide "is_class_loaded 'Class::Name'".
2012-04-08 21:02:10 +00:00
sthen
5496547d1a import databases/p5-DBIx-Class-Cursor-Cached, ok landry@
DBIx::Class::Cursor::Cached provides a query cursor on a
DBIx::Class::ResultSet with built-in caching support.
2012-04-08 21:01:07 +00:00
landry
7d56859f27 Minor tweak: use perl magic with ucfirst to capitalize first letter in
Desktop file name/comment.
2012-04-08 20:54:34 +00:00
ajacoutot
54fe4581b7 Meh, forgot to cvs add. 2012-04-08 19:33:31 +00:00
ajacoutot
c0ea47142d Correct the default device used for OpenBSD with the Blu-ray and VCD input
plugins.

from Brad (maintainer)
2012-04-08 19:19:04 +00:00
jasper
a2e0769b37 - explicitly specify autoconf version for autoreconf.
spotted by naddy@
2012-04-08 17:40:41 +00:00
ajacoutot
6ce2569122 Bump after spidermonkey ports change. 2012-04-08 17:21:49 +00:00
ajacoutot
06fdf8fa76 Use PKGSPEC to make sure the 2 spidermonkey ports are differentiated
when checking for dependencies.
2012-04-08 17:21:35 +00:00
ajacoutot
05d1982b38 Use PKGSPEC to make sure the 2 spidermonkey ports are differentiated
when checking for dependencies.

ok landry@
2012-04-08 17:21:26 +00:00
naddy
269d47161b update to 4.10; suggested by Amit Kulkarni 2012-04-08 17:04:20 +00:00
ajacoutot
3a019565f6 Enable support for the libxvid encoder.
from Brad (maintainer)
2012-04-08 16:56:51 +00:00
naddy
5b8d075767 Use OpenSSL instead of the included AES code to speed up extraction
of encrypted archives.
2012-04-08 16:36:12 +00:00
ajacoutot
f74f7f564c Remove commented line; no change. 2012-04-08 16:36:09 +00:00
ajacoutot
e044573fe6 Update to gnuchess-6.0.1 2012-04-08 16:32:29 +00:00
ajacoutot
fe640fa9c8 Update to gcompris-12.01. 2012-04-08 15:54:25 +00:00
jasper
4ea2f77f4f - add pkgpaths
spotted by aja@
2012-04-08 15:39:51 +00:00
ajacoutot
da2151a769 This port is a curse... looks like we'll never get dependencies right...
spotted by naddy@
2012-04-08 14:52:27 +00:00
mpi
e9e9d45d57 Update to pep8 1.0.1 2012-04-08 14:20:47 +00:00
mpi
7790e61292 Correctly catch attempts to do isochronous OUT transfers and fix a warning
from upstream.
2012-04-08 13:14:54 +00:00
pascal
589e02ed65 Fix previous to work when building java, but not go. Noticed and patch by
Andre Zepezauer on ports@ (thanks).

ok sthen@
2012-04-08 12:40:51 +00:00
naddy
ade68cd88e don't echo the password on sparc/sparc64; ok sthen@ 2012-04-08 11:30:25 +00:00
ajacoutot
2b97537301 +latexila 2012-04-08 11:28:33 +00:00
ajacoutot
8c309d2e3c Import latexila-2.4.0.
LaTeXila is an Integrated LaTeX Environment for the GNOME desktop.

ok jasper@
2012-04-08 11:28:03 +00:00
ajacoutot
2ca8c7025c +latexmk 2012-04-08 11:27:14 +00:00
ajacoutot
460e040196 Import latexmk-431.
Latexmk is a perl script for running LaTeX the correct number of times
to resolve cross references, etc; it also runs auxiliary programs
(bibtex, makeindex if necessary, and dvips and/or a previewer as
requested).
<...>

ok jasper@
2012-04-08 11:26:30 +00:00
espie
55635c592a synch documentation 2012-04-08 10:20:42 +00:00
robert
74eded4fb8 libgnome-keyring is both a run and a build dependency 2012-04-08 07:56:21 +00:00
robert
729f3be346 gcc 4.6 does not have __sync_add_and_fetch if it optimizes for i386,
which is the case on OpenBSD, so use the original locking code instead
this fixes the i386 build
2012-04-08 07:52:01 +00:00
ajacoutot
54ff746128 Set ke_debug_enabled to FALSE by default. 2012-04-08 07:45:30 +00:00
ajacoutot
a3f8cb2fd6 Back port the Blu-ray input plugin.
from Brad
2012-04-08 07:37:25 +00:00
ajacoutot
6b1ed72399 Update to automake-1.11.4.
from Brad
2012-04-08 07:12:56 +00:00