1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00
Commit Graph

3272 Commits

Author SHA1 Message Date
Lars Thegler
05a0455270 Add p5-Test-WWW-Mechanize-CGI 0.1, test CGI applications with
Test::WWW::Mechanize.
2008-11-25 15:34:53 +00:00
Dirk Meyer
5c4987ca2d CoreObject is a framework for describing and organizing model objects, with
automatic persistence and versioning by recording messages sent to objects. It
offers a flexible versioning scheme where both individual objects and their
entire object graph can be versioned separately. The built-in object model is a
generalization of the property model used by the AddressBook framework. Foreign
model objects can be also integrated by wrapping them with a special proxy.
CoreObject uses the EtoileSerialize framework which, in many cases, allows
objects and messages to be automatically serialized with no extra code being
written.

WWW: http://www.etoile-project.org/
2008-11-24 18:13:00 +00:00
Dirk Meyer
7a5868e5cb This collection of classes is used by CoreObject to perform serialization
and deserialization of arbitrary objects.

So far, serialization and deserialization work for all simple types, object,
selectors and classes. Arrays and structures are believed to work, however
arrays containing structures and vice versa have not been tested.

WWW: http://www.etoile-project.org/
2008-11-24 18:09:46 +00:00
Martin Wilke
d01cd12662 libFIRM provides a graph-based intermediate representation (IR), which operates
exclusively in SSA-form, starting at IR construction until assembler code
emission.  It offers many analyses and optimizations, provides extensive debug
support and includes a backend framework.

* analyses: dominance, loop tree, execution frequency, control dependencies,
  call graph, rapid type, def-use, alias analysis, class hierarchy analysis
* optimizations: dead code elimination (happens implicitly), constant folding,
  local common subexpression elimination, arithmetic identities (happens on the
  fly), unreachable code elimination, global common subexpression elimination,
  code placement, strength reduction, scalar replacement, if-conversion,
  load/store optimization, control flow optimizations, reassociation, partial
  condition evaluation, tail recursion elimination, inlining, procedure cloning
* enhanced debugging support: extensive checkers, breakpoints on node creation,
  entity creation, graph dumping
* lowering of intrinsics, double word arithmetics, bitfields
* generic backend features:
  * novel SSA based register allocator
  * several SSA copy coalescing and spilling algorithms
  * algorithms for instruction and basic block scheduling
* working ia32 backend, unfinished backends for MIPS, ARM, PPC32
* handwritten recursive descent C89/C99 frontend available (lang/cparser)

WWW: http://libfirm.org/

PR:		ports/129070
Submitted by:	Christoph Mallon <christoph.mallon at gmx.de>
2008-11-23 22:56:50 +00:00
Martin Wilke
50d56fa80c IO::TieCombine - produce tied (and other) separate but combined variables.
WWW: http://search.cpan.org/dist/IO-TieCombine
2008-11-23 16:35:41 +00:00
Martin Wilke
6bb3f7b978 This is a Renderer driver for Structures_DataGrid using PEAR::Console_Table.
WWW: http://pear.php.net/package/Structures_DataGrid_Renderer_Console/

Submitted by:	Nick Hilliard <nick at foobar.org>
2008-11-23 16:19:56 +00:00
Martin Wilke
76dc8c82d3 This driver renders an HTML form to let the user easily sort the datagrid,
using multiple fields and directions. It uses the HTML_Quickform package.

WWW: http://pear.php.net/package/Structures_DataGrid_Renderer_HTMLSortForm/

Submitted by:	Nick Hilliard <nick at foobar.org>
2008-11-23 16:17:21 +00:00
Martin Wilke
916ab98a63 This is a Renderer driver for Structures_DataGrid using PEAR::HTML_Table.
WWW: http://pear.php.net/package/Structures_DataGrid_Renderer_HTMLTable/

Submitted by:	Nick Hilliard <nick at foobar.org>
2008-11-23 16:14:41 +00:00
Martin Wilke
c51367b134 Renderer driver for pear-Structures_DataGrid that generates the XML string
for a XUL listbox.

WWW: http://pear.php.net/package/Structures_DataGrid_Renderer_XUL/

Submitted by:	Nick Hilliard <nick at foobar.org>
2008-11-23 16:14:11 +00:00
Martin Wilke
bee59b90be A UTF8 layer for IO and Strings. The utf8-string package
provides operations for encoding UTF8 strings to Word8 lists
and back, and for reading and writing UTF8 without truncation.

WWW:	http://code.haskell.org/utf8-string/

PR:		ports/129049
Submitted by:	Ashish Shukla <wahjava at gmail.com>
2008-11-23 08:23:25 +00:00
Martin Wilke
38198c7fd2 Shibboleth 2.x relies on OpenSAML 2, which in turn requires this
lower-level library that provides a higher level interface to XML
processing, particularly in light of signing and encryption.

WWW: https://spaces.internet2.edu/display/OpenSAML/XMLTooling-C

PR:		ports/127326
Submitted by:	Janos Mohacsi
2008-11-22 15:15:27 +00:00
Martin Wilke
89102a6fba Test::WWW::Mechanize is a subclass of WWW::Mechanize that incorporates
features for web application testing. The Test::WWW::Mechanize::Catalyst
module meshes the two to allow easy testing of Catalyst applications
without starting up a web server.

Testing web applications has always been a bit tricky, normally starting
a web server for your application and making real HTTP requests to it.
This module allows you to test Catalyst web applications but does not
start a server or issue HTTP requests. Instead, it passes the HTTP
request object directly to Catalyst. Thus you do not need to use a real
hostname: "http://localhost/" will do.

WWW: http://search.cpan.org/dist/Test-WWW-Mechanize-Catalyst/

PR:		ports/129004
Submitted by:	George Hartzell <hartzell at alerce.com>
2008-11-21 20:48:41 +00:00
Martin Wilke
a4bb32a2aa This module creates compile-time constants in the manner of
constant.pm, but makes them local to the enclosing scope.

WWW:	http://search.cpan.org/dist/constant-lexical/

PR:		ports/128900
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2008-11-21 20:45:41 +00:00
Martin Wilke
4f9a4470e1 This module provides one function, delete_sub, that deletes the
subroutine whose name is passed to it. (To load the module without
importing the function, write use Sub::Delete();.)

This does more than simply undefine the subroutine in the manner of
undef &foo, which leaves a stub that can trigger AUTOLOAD (and,
consequently, won't work for deleting methods). The subroutine is
completely obliterated from the symbol table (though there may be
references to it elsewhere, including in compiled code).

WWW:	http://search.cpan.org/dist/Sub-Delete/

PR:		ports/128899
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2008-11-21 20:44:48 +00:00
Martin Wilke
d360c82ddc Module::Starter::Plugin::SimpleStore
This is a set of simple plugins for Module::Starter to provide methods of
retrieving templates.

WWW: http://search.cpan.org/dist/Module-Starter-Plugin-SimpleStore

PR:		ports/129007
Submitted by:	George Hartzell <hartzell at alerce.com>
2008-11-21 20:29:21 +00:00
Dmitry Marakasov
eb3394b69e A faster implementation of hgk using pygtk/pyqt4. Its primary purpose
was to be able to browse the linux kernel mercurial repository.

WWW: http://www.logilab.org/project/name/hgview/
2008-11-21 13:46:17 +00:00
Cheng-Lung Sung
d0325d592b - A Pure Perl interface to Git repositories 2008-11-21 03:04:34 +00:00
Li-Wen Hsu
1ac6f0e9c4 Add p5-IO-BufferedSelect 1.0, line-buffered select interface.
PR:		ports/128970
Submitted by:	Yi-Jheng Lin <yzlin at cs.nctu.edu.tw>
2008-11-19 20:30:33 +00:00
Dmitry Marakasov
89de9a2fb4 "SilentBob" is a tool to help a programmer/team manager to digest
and comprehend either a simple program or a big source code tree
based on the source code by presenting the code in a searcheable
and tagged way.

It helps to speed up the learning curve and to make it more convenient
to get hands on a code from somebody, or also is convenient to
browse your own projects.

It includes functionality from such tools as: ctags, cscope and
ctree, but it is faster than any of them, and is offering the
features in one package.

In some way it can be viewed as a superset of ctags, cscope and
ctree.

WWW:	http://silentbob.sourceforge.net/

PR:		128969
Submitted by:	TAKATSU Tomonari <tota at rtfm dot jp>
2008-11-19 14:01:19 +00:00
Anton Berezin
e547d8a9ef Add devel/p5-File-Dir-Dumper, a Perl module to dump directory
structures' meta-data.

PR:		128955
Submitted by:	Anatoliy Dmytriyev <tolid@tolid.eu.org>
2008-11-18 10:39:53 +00:00
Cheng-Lung Sung
bb0c044ece - A XS based replacement for Class::Accessor::Fast. 2008-11-18 02:31:33 +00:00
Martin Wilke
b200f950c3 libburnia is a project for reading, mastering and writing optical
discs. Currently it is comprised of libraries named libisofs,
libburn, libisoburn, a cdrecord emulator named cdrskin, and an
integrated multi-session tool named xorriso.

WWW: http://libburnia-project.org/

PR:		ports/128795
Submitted by:	J.R. Oldroyd <fbsd at opal.com>
2008-11-15 22:05:39 +00:00
Martin Wilke
9e004140e9 libburnia is a project for reading, mastering and writing optical
discs. Currently it is comprised of libraries named libisofs,
libburn, libisoburn, a cdrecord emulator named cdrskin, and an
integrated multi-session tool named xorriso.

WWW: http://libburnia-project.org/

PR:		ports/128794
Submitted by:	J.R. Oldroyd <fbsd at opal.com>
2008-11-15 22:05:07 +00:00
Martin Wilke
a48708961e This is a short script you can run from within an existing git
repository to create a remote repo on Github using a previously
created account. This does not create Github accounts (and that
violates the terms of service).

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

PR:		ports/128876
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2008-11-15 21:41:00 +00:00
Martin Wilke
971587b290 I wrote this module as an example of both using closures and using
File::Find. Students are always asking me what closures are good for,
and here's some examples. The functions mostly stand alone (i.e. they
don't need the rest of the module), so rather than creating a
dependency in your code, just lift the parts you want).

WWW:	http://search.cpan.org/dist/File-Find-Closures/

PR:		ports/128875
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
2008-11-15 21:39:12 +00:00
Martin Wilke
a2d02bde18 Differences lists are a list-like type supporting O(1) append. This is
particularly useful for efficient logging and pretty printing, (e.g.
with the Writer monad), where list append quickly becomes too expensive.

WWW: http://code.haskell.org/~dons/code/dlist/

PR:		ports/128770
Submitted by:	Samy Al Bahra <sbahra at kerneled.org>
2008-11-15 19:51:57 +00:00
Cheng-Lung Sung
1c5f26b39b - Generate fast XS accessors without runtime compilation 2008-11-12 05:47:42 +00:00
Cheng-Lung Sung
f5f0f299db AutoXS::Header - Container for the AutoXS header files 2008-11-12 03:28:50 +00:00
Wesley Shields
d08c0e27f7 This module is another attempt to fight the horrors of
non-blocking I/O programming. It tries to bring back the
simplicity of the declarative programming style, that is
only otherwise available when one employs threads,
coroutines, or co-processes.

PR:		ports/128652
Submitted by:	Vany Serezhkin <ivan@serezhkin.com>
2008-11-11 15:51:54 +00:00
Sergey Skvortsov
e97f5f9b1f Add p5-B-Hooks-OP-Check 0.14, wrap OP check callbacks. 2008-11-11 10:33:29 +00:00
Martin Wilke
08387dee7e fattr.rb is a "fatter attr" for ruby.
fattr.rb supercedes attributes.rb as that library,
even though it added only one method to the global
namespace, collided too frequently with user code
in particular rails' code.

WWW:	http://codeforpeople.com/lib/ruby/fattr/

PR:		ports/128662
Submitted by:	Wen Heping <wenheping at gmail.com>
2008-11-09 23:06:42 +00:00
Martin Wilke
294776a3e7 Rubygem-uuid is a UUID generator for Ruby.
WWW:	http://rubyforge.org/projects/reliable-msg/

PR:		ports/128626
Submitted by:	Wen Heping<wenheping at gmail.com>
2008-11-09 23:06:06 +00:00
Martin Wilke
2dfb96a62b arrayfields allow keyword access to array instances.
arrayfields works by adding only a few methods to arrays,
namely #fields= and fields, but the #fields= method is
hooked to extend an array on a per object basis.In
otherwords __only__ those arrays whose fields are set
will have auto-magical keyword access bestowed on
them - all other arrays remain unaffected.arrays with
keyword access require much less memory when compared
to hashes/objects and yet still provide fast lookup and
preserve data order.

WWW:	http://codeforpeople.com/lib/ruby/arrayfields/

PR:		ports/128663
Submitted by:	Wen Heping <wenheping at gmail.com>
2008-11-09 23:05:41 +00:00
Martin Wilke
a23357c7a7 main.rb features the following:
- unification of option, argument, keyword, and environment
      parameter parsing
    - auto generation of usage and help messages
    - support for mode/sub-commands
    - io redirection support
    - logging hooks using ruby's built-in logging mechanism
    - intelligent error handling and exit codes
    - use as dsl or library for building Main objects
    - parsing user defined ARGV and ENV
    - zero requirements for understanding the obtuse apis of any
      command line option parsers
    - leather pants

  In short main.rb aims to drastically lower the barrier to writing
  uniform command line applications.

WWW:	http://codeforpeople.com/lib/ruby/main/

PR:		ports/128664
Submitted by:	Wen Heping <wenheping at gmail.com>
2008-11-09 23:05:04 +00:00
Martin Wilke
035e3310b1 Grit is a Ruby library for extracting information from a git repository in
an object oriented manner.  Grit gives you object model access to your git
repository.  Once you have created a repository object, you can traverse it
to find parent commit(s), trees, blobs, etc.

WWW: http://grit.rubyforge.org/

PR:		ports/128592
Submitted by:	Daniel Roethlisberger <daniel at roe.ch>
2008-11-09 23:01:24 +00:00
Martin Wilke
8db974b910 Grit is a Ruby library for extracting information from a git repository in
an object oriented manner.  Grit gives you object model access to your git
repository.  Once you have created a repository object, you can traverse it
to find parent commit(s), trees, blobs, etc.

This is the GitHub version of the grit gem called mojombo-grit.

WWW: http://grit.rubyforge.org/

PR:		ports/128736
Submitted by:	Daniel Roethlisberger <daniel at roe.ch>
2008-11-09 22:43:57 +00:00
Martin Wilke
021918618c Ruby/Git is a Ruby library that can be used to create, read and
manipulate Git repositories.  Currently it is a wrapper around
the git binary, but there are plans to switch to C bindings at
some point in the future.

WWW: http://jointheconversation.org/rubygit/

PR:		ports/128734
Submitted by:	Daniel Roethlisberger <daniel at roe.ch>
2008-11-09 22:43:16 +00:00
Martin Wilke
61a41d684d The ruby-ole library provides a variety of functions primarily for
working with OLE2 structured storage files, such as those produced by
Microsoft Office - eg *.doc, *.msg etc.

WWW: http://rubyforge.org/projects/ruby-ole

PR:		ports/128471
Submitted by:	Alexander Logvinov <ports at logvinov.com>
2008-11-01 22:16:32 +00:00
Gabor Kovesdan
69d5c43463 OpenCVS is a FREE implementation of the Concurrent Versions System, the most
popular open source revision control software. It can be used as both client
and server for repositories and provides granular access control over data
stored in the repository. It aims to be as compatible as possible with other
CVS implementations, except when particular features reduce the overall
security of the system.

WWW: http://www.opencvs.org/

This port was requested by rdivacky@, who created the dist patches for
OpenCVS.
2008-11-01 18:43:36 +00:00
Dmitry Marakasov
04091b806d Doxygen Filter is an input filter for Doxygen enabling support for Perl code
documentation. Doxygen is quite a powerful code documentation system that
already has built-in support for multiple programming languages.

WWW: http://www.bigsister.ch/doxygenfilter/doxygenfilter.html

PR:		128432
Submitted by:	Sergei Golyashov <svvord at spline-studio dot ru>
2008-10-29 14:43:08 +00:00
Dmitry Marakasov
e384ec9fcd This is a multi-CPU macro assembler for many major 8-bit and 16-bit CPUs
which can assemble code for multiple CPUs in the same source file.

Current CPUs supported:

 * RCA 1802
 * MOS Technology 6502, 65C02 and 6502 with undocumented instructions
 * WDC 65816 (lacks some addressing mode support)
 * Motorola 6809
 * Motorola 6800/6801/68HC11 and Hitachi 6303
 * Motorola 6805/68HSC08
 * Motorola 68HC16
 * Motorola 68000/68010
 * Intel 8051
 * Intel 8080, 8085, and 8085 with undocumented instructions
 * Fairchild F8
 * Atari Jaguar "Tom" and "Jerry" coprocessors
 * Zilog Z-80 and Nintendo Gameboy Z-80 variant

WWW: http://xi6.com/projects/asmx/

PR:		128436
Submitted by:	Emmanuel Vadot <elbarto at arcadebsd dot org>
2008-10-28 21:22:30 +00:00
Chin-San Huang
1d8f01a100 Add p5-Getopt-Euclid, Executable Uniform Command-Line Interface Descriptions.
Getopt::Euclid uses your program's own documentation to create a
command-line argument parser. This ensures that your program's documented
interface and its actual interface always agree.

WWW: http://search.cpan.org/dist/Getopt-Euclid/
2008-10-28 14:32:07 +00:00
Lars Balker Rasmussen
8ae7a102bb This module allows you to execute code when perl finished compiling the
surrounding scope.
2008-10-26 11:31:16 +00:00
Greg Larkin
0ec6ec7040 rsvndump is a command line tool that is able to dump a Subversion
repository that resides on a remote server. All data is dumped in
the format that can be read an written by svnadmin dump, so the
data which is produced can easily be imported into a new Subversion
repository.

WWW:	http://saubue.boolsoft.org/projects/rsvndump/
2008-10-24 19:56:03 +00:00
Greg Larkin
cdadd69497 Simply loading the MooseX::StrictConstructor module makes your
constructors "strict". If your constructor is called with an attribute
init argument that your class does not declare, then it calls
"Carp::confess()". This is a great way to catch small typos.

WWW:	http://search.cpan.org/dist/MooseX-StrictConstructor/
2008-10-24 17:01:09 +00:00
Thomas Abthorpe
560c176946 Clewn implements full gdb support in the vim editor: breakpoints,
watch variables, gdb command completion, assembly windows, etc.

Clewn is a program controlling vim through the netBeans socket interface,
it runs concurrently with vim and talks to vim.
Clewn can only be used with gvim, the graphical implementation of vim,
as vim on a terminal does not support netBeans.

WWW: http://clewn.sourceforge.net/index.html

PR:		ports/128289
Submitted by:	Giacomo Mariani <giacomomariani_at_yahoo_dot_it>
2008-10-24 13:40:01 +00:00
Martin Wilke
fdbfd65c93 The Perl 5 module Devel::Events::Objects provides an event generator
and a handler for Devel::Events, that facilitate leak checking.
There are two components of this module: Devel::Events::Generator::Objects,
and Devel::Events::Handler::ObjectTracker. The first one uses some
trickery to generate events for every object creation and destruction
in code loaded after it was loaded. The second one will listen on
these events, and track all currently living objects.

WWW: http://search.cpan.org/dist/Devel-Events-Objects/
2008-10-24 09:34:48 +00:00
Martin Wilke
5b59f7baa6 The Perl 5 module Devel::Events is an event generation, filtering
and analaysis framework for instrumenting and auditing perl code.

WWW: http://search.cpan.org/dist/Devel-Events/
2008-10-24 09:34:23 +00:00
Martin Wilke
be80c67163 The Perl 5 module Test::Fixture::DBIC::Schema is a fixture data loader
for DBIx::Class::Schema.

WWW: http://search.cpan.org/dist/Test-Fixture-DBIC-Schema/
2008-10-24 09:33:18 +00:00
Martin Wilke
212ad5dc54 The Perl 5 module Devel::Gladiator iterate's Perl's internal memory
structures and can be used to enumerate all the currently live SVs.

This can be used to hunt leaks and to profile memory usage.

WWW: http://search.cpan.org/dist/Devel-Gladiator/
2008-10-24 09:32:17 +00:00