Age | Commit message (Collapse) | Author | Files | Lines |
|
2005-10-15 Matthew Astley <mca1001@users.sourceforge.net>
* doc/release-checklist, doc/TODO, ChangeLog: updates for release
* lib/Test/Unit.pm: version 0.25
* MANIFEST: add licence and class-diagram files, remove old exmample;
keep in "make manifest" generated order
* t/tlib/AssertTest.pm (test_fail_assert_not_null): extra check, for
SF bug #610499
* lib/Test/Unit/Assert.pm (assert_deep_equals): fix comparisons of cyclic
structures (thanks flacoste, SF patch #678422), comparisons of undefs
(thanks flacoste, Debian BTS #249678), comparison of SCALAR refs
* t/tlib/AssertTest.pm (test_assert_deep_equals): add modified test from
SF bug #1012115; modified test from flacoste's SF patch #678422; more
tests on SCALAR refs, and improve the regexp
2005-08-19 Matthew Astley <mca1001@users.sourceforge.net>
* doc/TODO: notes on HarnessUnit, UnitHarness; more on stuff I'd like
to do later
* examples/README: minor update
2005-08-03 Matthew Astley <mca1001@users.sourceforge.net>
* doc/class-diagram.{dia,txt,png}: first stab at a UML class diagram,
see how it goes
2005-08-01 Matthew Astley <mca1001@users.sourceforge.net>
* lib/Test/Unit.pm, lib/Test/Unit/TkTestRunner.pm,
lib/Test/Unit/TestRunner.pm: put links to COPYING.* in Test::Unit;
move copyright notices from testrunner modules to Test::Unit
* lib/Test/Unit/<many>, t/tlib/AllTests.pm: set AUTHOR POD sections to
the same boilerplate, in files that don't appear to be single-author
-- as described in the top level AUTHORS file
* AUTHORS: update authors list with SF ids and what I found while
boilerplating the PODs; add explicit copy of the Perl licence, taken
from Debian perl-base package v5.8.4-2
* COPYING.Artistic, COPYING.GPL-2: licences copied from Debian
base-files package v3.0.12
2005-07-31 Matthew Astley <mca1001@users.sourceforge.net>
* lib/Test/Unit/Assert.pm (is_numeric): change the test to match only
lone numbers. fix SF bug#1014540
*** NB. this causes assert_equals to switch from assert_num_equals
to assert_str_equals in some cases
* t/tlib/AssertTest.pm (test_numericness, test_assert_equals):
tests for new is_numeric
* lib/Test/Unit/TkTestRunner.pm: make "Show..." dialog text expand
with window and include annotations. fixes SF bug#1018619
* t/try_examples.t: clear out useless 'use lib's; remove dup $^O
check; fix RT bug#3963 (thanks ILYAM); improve skipping of
untested items
* examples/tester.png: update screenshot of Tk test runner; mark
as binary
* examples/tester.pl: remove old Tk code - Test::SuiteWrapper went
away 2000-02-21
2005-07-30 Matthew Astley <mca1001@users.sourceforge.net>
* t/try_examples.t: Fix SF bug#908422 (track changing testing output
format); Thanks: dholland, eksiegerman [aka. SF bug#1245490, RT bug#2244]
* .cvsignore: ignore build stuff
-- other changes Adam made since REL_0_24, but aren't mentioned
already. I list them partly so I know where my towel is:
* AUTHORS: Adam became maintainer
* doc/TODO: updated
* lib/Test/Unit/Decorator.pm: some minor change I've not investigated
* lib/Test/Unit/Procedural.pm:
fix bug spotted by Matthias Ferber (and Ken) in run() (which is
usually overridden) [SF bug#760491, RT bug#3058]
* lib/Test/Unit/Runner.pm: improve filtering, POD
* lib/Test/Unit/TestCase.pm: POD for filtering
* t/tlib/RunnerTest.pm: new test for T:U:TestRunner, just tests
filtering; uses the new t/tlib/FilteredSuite.pm
2002-06-20 Adam Spiers <perlunit@adamspiers.org>
* lib/Test/Unit/TestCase.pm: document new filtering via coderefs
* MANIFEST, lib/Test/Unit/Test.pm, lib/Test/Unit/TestSuite.pm,
t/tlib/AllTests.pm, t/tlib/FilteredSuite.pm:
o remove ALL filtering hack, and instead allow filtering via coderefs:
sub filter {{
foo_tests => sub {
my $method = shift;
return $method =~ /foo/;
},
everything => sub { 1 },
# method lists still work
another_token => [ qw/test_method1 test_method2/ ],
}}
- add tests for filtering mechanism
|
|
|
|
0.11 Jun 09 2008
- better Makefile.PL
- mention Test::Trap
- uplevel 2 changed to uplevel 1 to work with Sub::Uplevel 0.19_02
- small fixes
|
|
directory. PKGREVISION++.
If you installed this since the previous update, you may want to check
for and delete /lavaps.schemas.
|
|
2008-06-28 0.52 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Using undef for hash keys is a bad plan
* Fix, tests, and documentation for column_names ()
2008-06-17 0.51 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Allow UTF8 even without binary => 1
* Fixed a few pod typo's
* Lifted the max of 255 for bind_columns
2008-06-04 0.50 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Skip a few tests in automated testing, as they confuse
reports. This is important for the automated sites that
mark modules as fail if it is not an obvious full PASS
* 0.46 caused the last still open RT bug to be closed!
* Tested on 5.11.0, 5.10.0, 5.8.8, 5.6.2, and 5.005_04,
Strawberry and Cygwin
2008-06-04 0.46 - H.Merijn Brand <h.m.brand@xs4all.nl>
* In examples add die on failed close calls
* Use Test::MinimumVersion (not distributed)
* Added option -F to examples/csv2xls
* More source code cleanup
* Nailed the UTF8 issues for parsing
* Nailed the UTF8 issues for combining
2008-04-23 0.45 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Forgot to pack examples/parser-xs.pl
2008-04-23 0.44 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Fixed the error position returned as third arg in error_diag ()
* Made examples/csv-check use this even more vebose
* Removed double-double quote from TODO
* Added examples/parse-xs.pl (attempt to fix bad CSV)
2008-04-21 0.43 - H.Merijn Brand <h.m.brand@xs4all.nl>
* parse errors try to remember failing position
* used valgrind to test for leaks (devel-only)
* used Test::Valgrind as alternative leak check (devel-only)
* improve documentation for error 2023
* nailed the loose quotes in quoted fields
2008-04-16 0.42 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Generate META.yml myself. I won't use Build.PL
* Array-refs now accept scalars with magic:
$csv->print (*STDOUT, $sth->{NAME_lc});
* More/better examples
* Added t/76_magic.t
2008-04-11 0.41 - H.Merijn Brand <h.m.brand@xs4all.nl>
* error_diag () subclassable
* typo in bind_columns () docs
* examples/csv2xls now uses getline ()
* better test for getline in t/75_hashref.t (makamata)
* document return value of getline () with bind_columns ()
* add perl version prereq to META.yml
2008-04-07 0.40 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Implemented getline_hr () and column_names () RT 34474
(suggestions accepted from Mark Stosberg)
* Corrected misspelled variable names in XS
* Functions are now =head2 type doc entries (Mark Stosberg)
* Make SetDiag() available to the perl level, so errors can
be centralized and consistent
* Integrate the non-XS errors into XS
* Add t/75_hashref.t
* Testcase for error 2023 (Michael P Randall)
* Completely refactored the XS part of parse/getline, which
is now up to 6% faster. YMMV
* Completed bind_columns. On straight fetches now up to three
times as fast as normal fetches (both using getline ())
2008-03-11 0.37 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Copied GIT repo to public mirror
* Fix leak / make meta info available to getline () + tests
2008-03-06 0.36 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Updated ppport.h
* auto-load IO::Handle when needed
* Tested with all available perl builds, including a fresh
threaded 5.11 (blead)
2008-03-01 0.35 (Valloire) - H.Merijn Brand <h.m.brand@xs4all.nl>
* use warnings/$^W = 1
* Tested on 5.10.0, 5.8.8, 5.6.2, and 5.005_04, Strawberry and Cygwin
* Diagnostics for failed new ()
* New 'blank_is_undef' option
* Updated docs
* Extended the DIAGNOSTICS a bit
* Updated TODO
* Fixed allow_whitespace issue, revealed by blank_is_undef
* Re-enabled some tests
* Fixed parse error that passed for q{1, "bar",2} with escape_char +
* Reversed an erroneous test result in the funny combo section
* Extended diagnostics tests
* Extended XS coverage
* Removed error 2033
2008-01-04 0.34 - H.Merijn Brand <h.m.brand@xs4all.nl>
* No change, but 0.33 was shipped with an old META.yml
2008-01-02 0.33 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Text-CSV_XS now under git
* Upped copyright to 2008
* Added all prereq's to Makefile.PL
* Tested under perl 5.10
2007-10-24 0.32 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Added $csv->error_diag () to SYNOPSIS
* Added need for diag when new () fails to TODO
* Fixed a sneaked-in defined or in examples/csv2xls
* Plugged a 32byte memory leak in the cache code (valgrind++)
* Some perlcritic level1 changes
2007-07-23 0.31 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Removed prototypes in examples/csv2xls
* Improved usage for examples/csv2xls (GetOpt::Long now does --help/-?)
* Extended examples/csv2xls to deal with Unicode (-u)
* Serious bug in Text::CSV_XS::NV () type setting, causing the
resulting field to be truncated to IV
2007-06-21 0.30 - H.Merijn Brand <h.m.brand@xs4all.nl>
* ,\rx, is definitely an error without binary (used to HANG!)
* Fixed bug in attribute caching for undefined eol
* Cleaned up some code after -W*** warnings
* Added verbatim.
* More test to cover the really dark corners and edge cases
* Even more typo fixes in the docs
* Added error_diag ()
* Added t/80_diag.t - Will not be mirrored by Text::CSV_PP
* Added DIAGNOSTICS section to pod - Will grow
* Small pod niot (abeltje)
* Doc fix in TODO (Miller Hall)
2007-06-08 0.29 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Removed an unused 'use Data::Dumper'
* Added $csv->eof () RT 27424
* Two typo's in the doc's (Amsterdam.pm)
* Modified examples/speed.pl to better show the diffs between versions
* Cache attribute settings and regain speed of 0.23! and beyond
Relative overall speeds (YMMV, use examples/speed.pl to check),
the 1.0x versions are from Text::CSV_PP.
0.23 0.25 0.26 0.27 0.28 0.29 1.00 1.02 1.05
==== ==== ==== ==== ==== ==== ==== ==== ====
combine 1 62 61 61 60 58 100 14 14 14
combine 10 41 41 41 42 42 100 6 6 6
combine 100 35 35 36 36 36 100 5 5 5
parse 1 100 92 87 90 81 96 19 19 17
parse 10 95 100 86 97 94 94 15 16 14
parse 100 90 95 84 94 92 100 16 16 14
print io 93 89 91 91 95 100 0 0 6
getline io 90 92 84 87 89 100 0 0 13
---- ---- ---- ---- ---- ---- ---- ---- ----
average 75 75 71 74 73 98 9 9 11
* Removed prototypes
* Added a SPECIFICATION section to the pod
* Safe caching of eol, and a warning in the docs
* Rewrote t/20_file.t do do actual file IO instead of IO_Scalar fake
* Small optimization for parse (juerd)
* Added make target test_speed
* Merged the items from CAVEAT to SPECIFICATION
* Updated the TODO and Release Plan sections
* Speed up internals by using references instead of copies (juerd)
* Reworked error_input, which also had an undetected internal error
* Added IO tests for lexical IO handles and perlio IO to/from scalars
2007-06-03 0.28 - H.Merijn Brand <h.m.brand@xs4all.nl>
* IMPORTANT CHANGE: new () returns undef if it gets unsupported
attributes. Until now, new ({ esc_char => "\\" }) was just
silently ignored. Rejecting it and failing is better than
continuing with false assumptions.
* Added allow_loose_quotes (see doc)
* Added t/65_allow.t
* Added allow_loose_escapes (see doc) RT 15076
* More code cleanup in XS
* Added allow_whitespace (see doc)
2007-05-31 0.27 - H.Merijn Brand <h.m.brand@xs4all.nl>
* checked with perlcritic (still works under 5.00504)
so 3-arg open cannot be used (except in the docs)
* 3-arg open in docs too
* Added a lot to the TODO list
* Some more info on using escape character (jZed)
* Mention Text::CSV_PP in README
* Added t/45_eol.t, eol tests
* Added a section about embedded newlines in the pod
* Allow \r as eol ($/) for parsing
* More docs for eol
* More eol = \r fixes, tfrayner's test case added to t/45_eol.t
2007-05-15 0.26 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Add $csv->allow_undef (1) suggestion in TODO
Still have to find the best spot to document
the difference between empty string and undef
* Spell-checked the pod and fixed some typo's
* Added t/70_rt.t
- Regression for RT 24386: \t doesn't work (WFM)
- Regression and fix for RT 21530: getline () return at eof
This one still passes under perl 5.00504
- Regression for RT 18703: Fails to use quote_char of '~'
* Added t/55_combi.t for most combinations of always_quote,
sep_char, quote_char, and escape_char
* Added docs about sep_char not allowed to be either quote_char
or escape_char
* Both combine () and parse () now return FALSE id sep_char is
equal to either quote_char or escape_char. Done in XS, as it
was a slowdown of 10% when done in perl.
2007-05-07 0.25 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Merijn got the maintainership
- code reformat and code cleanup
- renamed internal (Encode, Decode) to (Combine, Parse) to
prevent misinterpretation with upcoming Unicode changes
and possible name clashes
- added pod check (and fixed pod)
- added pod coverage and small additions to the pod.
More to do in this area
- renamed test to fixate the sequence
- Added t/50_utf8.t
- tests now use Test::More
. Makefile.PL requires Test::More
- checked proclaimed version compatibility
. 5.9.x-64int works @31159
. 5.8.x-64int-dor works @31162
. 5.8.0-dor works
. 5.6.2 works
. 5.005.04 works
. 5.004.05 fails
- 5.005 is now prerequisite
- Added missing info in docs for new ()
- Added meta_info () method and docs
- Added keep_meta_info in new ()
- Added t/15_flags.t
- Added test_cover make target
- Added test for error_input ()
- Added tests for fields () and meta_info () before parse ()
- Added tests for ->types () as method
- Added tests for deleting types (coverage now over 99%)
- Added is_quoted (), is_binary () and tests
- Added COPYRIGHT section to pod
- Added the parse example from the pod to test.pl
- Added accessor methods for internals: quote_char () et all
- Added tests for the new accessor methods
- Added always_quote to the missing places in the doc and in new ()
- Changed the tests to use the accessors instead of the hash keys
except for the ->{types} and ->{_types}
- Moved test.pl to examples/speed.pl
|
|
|
|
Pkgsrc change:
o Add homepage pointing into search.cpan.org.
Upstream changes:
0.05 2008-05-04T02:11:09
- Added the "configure_requires" and "recommends" parameters to
Build.PL.
- Added a link to the Subversion repository.
|
|
|
|
1.0.21 2008-07-24T08:33:00
- Fix hard tabs in Changelog
- Add unit test for core dumps issue from RT#36203
- Fix POD spelling.
- Fix warning from RT#34856.
- Add test for another tab width issue (related to <hr> generation)
from RT#37769. Fix this issue.
- More test additions and more splitting the test suites into MDTest
modules.
1.0.20 2008-07-11T23:30:00
- Update README.txt
- Allow scripts to be used on multiple input files at once (processing
in command line order)
- Update footnote behavior of Text::MutliMarkdown to be consistent
with the latest version of MultiMarkdown
- Added tests for the new footnote functionality.
- Added tests for all the MDTest corner cases brought up on the list.
Noted why / how I differ from original Markdown.
- Moved all the document tests to MDTest format. I have made MDTest
test suites for Text::Markdown and Text::MultiMarkdown, containing
**only** the bug fixes and behavior changes I've made, I've imported
the Markdown test suite from MDTest1.1, and the MultiMarkdown test
suite.
- RT#36537 doc patch to add POD to the scripts from Debian's Gunnar
Wolf.
- Mutilate the list processing somewhat to reduce the compilation
of recursive regexes, and so stop perl (<5.10) crapping itself
on lots of input. This isn't the full fix - really shouldn't be
usng recursive regexes at all. RT#37297
|
|
0.13 2008, Apr 18 (15:50)
- Added support for some spaces between RULES and the rule identifier.
- Support scripts written under MS OSes that still use carriage returns.
0.12 2008, Mar 16 (14:30)
- missing an entry on MANIFEST
0.11 2008, Mar 15 (14:30)
- Added support to the =b=> begin rule;
- added a compiler
|
|
Pkgsrc changes:
o Add HOMEPAGE using search.cpan.org.
o Change module build type to match package upgrade.
Upstream changes:
1.02 May 10, 2008
- no functional changes
- minor clean up to documentation
- use Module::Build::DistVersion for packaging
1.01 March 21, 2007
- converted to Module::Build
- updated my email address
- added example/gettysburg.pl
- added POD tests & fixed POD error
|
|
No other change, so no version bump.
|
|
Pkgsrc change:
o Add commented-out homepage on search.cpan.org.
Upstream changes:
2008-06-02 Torsten Schoenfeld <kaffeetisch@gmx.de>
* Glib.pm
* NEWS
* README: Stable release 1.183.
2008-05-31 Torsten Schoenfeld <kaffeetisch@gmx.de>
Merge from HEAD:
* GSignal.xs: In the xsub for g_signal_add_emission_hook, make
sure that the type class exists before we try to fetch information
about one of its signals.
2008-05-22 Torsten Schoenfeld <kaffeetisch@gmx.de>
* GType.xs
* Glib.pm
* t/c.t: Overload '!=' and 'ne' for flags values for consistency.
2008-05-20 Torsten Schoenfeld <kaffeetisch@gmx.de>
* GClosure.xs (gperl_callback_invoke): Put a mortal copy of the
user data on the stack to avoid prematurely destroying it in
certain cases. Patch by Kevin Ryde.
* t/c.t: Test that empty flags values ([], undef) work.
* GType.xs (gperl_convert_flag_one): Don't call
gperl_type_flags_get_values needlessly.
2008-05-04 Torsten Schoenfeld <kaffeetisch@gmx.de>
* GBoxed.xs
* GType.xs: Use const char* to store the return value of
sv_reftype.
* Subclass.pm: Improve the documentation of GET_PROPERTY and
SET_PROPERTY. (Patch by Kevin Ryde)
2008-04-19 muppet <scott@asofyet.org>
* xs/GType.xs
* t/c.t: Register Glib::Enum and Glib::Flags. Remove special case
logic for these from Glib::Type::register().
|
|
components and it interferes with normal builds.
|
|
into The NetBSD Packages Collection.
The Perl 5 module B::Utils provides functions that make it easier
to manipulate the op tree.
|
|
|
|
Collection.
The Perl 5 module B::Utils provides functions that make it easier
to manipulate the op tree.
|
|
|
|
|
|
|
|
devel/p5-MooseX-Getopt into The NetBSD Packages Collection.
The Perl 5 module MooseX::Getopt is a Moose role which provides an
alternate constructor for creating objects using parameters passed
in from the command line.
|
|
|
|
Packages Collection.
The Perl 5 module MooseX::Getopt is a Moose role which provides an
alternate constructor for creating objects using parameters passed
in from the command line.
|
|
|
|
While here mark this package as not requiring any compiler (empty
USE_LANGUAGES variable).
Changes since last packaged version (2.35):
Changes in version 2.37
-----------------------
* Bugfix: With gnu_compat, --foo= will no longer trigger "Option
requires an argument" but return the empty string.
Changes in version 2.36
-----------------------
**************** WARNING -- EXPERIMENTAL CODE AHEAD ****************
* Parsing options from an arbitrary array
The entry point GetOptionsFromArray (exported on demand) can be used
to parse command line options that are not passed in via @ARGV, but
using an arbitrary array.
use Getopt::Long qw(GetOptionsFromArray);
$ret = GetOptionsFromArray(\@myopts, ...);
* Parsing options from an arbitrary string
The entry point GetOptionsFromString (exported on demand) can be
used to parse command line options that are not passed in via @ARGV,
but using an arbitrary string.
use Getopt::Long qw(GetOptionsFromString);
$ret = GetOptionsFromString($optstring, ...);
Note that upon completion, no arguments may remain in the string.
If arguments may remain, call it in list context:
($ret, $args) = GetOptionsFromString($optstring, ...);
@$args will have the remaining arguments.
**************** END EXPERIMENTAL CODE ****************
* Number values for options may include underscores for readability
(just like Perls numbers).
* Bugfix for Ticket #19432 (found and fixed by khali).
* Bugfix to make it cooperate with the bignum pragma. Thanks to Merijn
and Yves.
* Various small fixes to make the test suite run under 5.004_05.
* More examples (skeletons).
|
|
as devel/p5-MooseX-Object-Pluggable into The NetBSD Packages
Collection.
The Perl 5 module MooseX::Object::Pluggable is meant to be loaded
as a role from Moose-based classes. It will add methods and attributes
to assist you with the loading and handling of plugins and extensions
for plugins.
|
|
|
|
The NetBSD Packages Collection.
The Perl 5 module MooseX::Object::Pluggable is meant to be loaded
as a role from Moose-based classes. It will add methods and attributes
to assist you with the loading and handling of plugins and extensions
for plugins.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
0.11 Mon Jul 3 22:45:58 2006
- Updated to libmusicbrainz 2.1.3
- Updated req for MusicBrainz::Queries to 0.10
- Adjusted for migration from CVS to Subversion
0.10 Fri Nov 11 08:58:46 2005
- Updated to libmusicbrainz 2.1.2
- Updated req for MusicBrainz::Queries to 0.09
|
|
|
|
0.11 Tue Jul 4 19:44:17 2006
- fixed missing files from MANIFEST including Makefile.PL
0.10 [retracted]
- adjusted for migration from CVS to Subversion
- updated to libmusicbrainz 2.1.3 [luks]
- added new queries:
MBE_AlbumGetAlbumArtistName
MBE_AlbumGetAlbumArtistSortName
MBE_AlbumGetCdindexId
MBE_GetRelationshipAttribute
MBS_SelectAlbumArtist
0.09 Fri Nov 11 08:59:07 2005
- updated to libmusicbrainz 2.1.2
- added new relationship queries:
MBS_SelectRelationship
MBE_GetRelationshipType
MBE_GetRelationshipDirection
MBE_GetRelationshipArtistId
MBE_GetRelationshipArtistName
MBE_GetRelationshipAlbumId
MBE_GetRelationshipAlbumName
MBE_GetRelationshipTrackId
MBE_GetRelationshipTrackName
MBE_GetRelationshipURL
MBQ_GetArtistRelationsById
MBQ_GetAlbumRelationsById
MBQ_GetTrackRelationsById
0.08 Mon Apr 25 10:25:34 2005
- removed query no longer available. [Matthias Friedrich]
MBE_AlbumGetAmazonCoverartUR
|
|
|
|
RLIMIT_AS on systems without it. Also fix path to Perl interpreter
in installed scripts, and as a result, bump PKGREVISION.
|
|
so we can fetch the distfiles!
|
|
Updated graphics/glu to 7.0.4.0 [bjs 2008-07-27]
Updated graphics/glut to 7.0.4.0 [bjs 2008-07-27]
Updated graphics/Mesa to 7.0.4.0 [bjs 2008-07-27]
Updated graphics/glx-utils to 7.0.4 [bjs 2008-07-27]
|
|
lots of bug fixes; the intent of my update was mostly to fix
problems with i915 and r300 dri drivers and to provide the best environment
possible for the xorg server update to the 1.4 branch.
Morever, many of our patches from pkgsrc, i.e. those removed in this commit,
are now included upstream.
Additionally, MesaDemos now builds.
NOTES:
- MesaLib now requires xf86driproto 2.0.4, as earlier versions install
dri_interface.h, which is not correct.
- glu now exports its symbols via libtool's -export-symfile.
The symfile is generated pre-build--see glu/Makefile.
- glxinfo/glxgears do not seem to need to be linked to libpthread, and this
seems to cause problems on NetBSD with the new drm code. If I am wrong
about this, please let me know. The only program that seems to need
libpthread is glthreads in MesaDemos.
|
|
|
|
|
|
C++ search library.
|
|
Each database is created and updated separately using either omindex
or scriptindex. You can search these databases (or any other Xapian
database with suitable contents) via a web front-end provided by
omega, a CGI application. A search can also be done over more than
one database at once.
|
|
released under the GPL. It's written in C++, with bindings to allow
use from Perl, Python, PHP, Java, Tcl, C# and Ruby (so far!)
Xapian is a highly adaptable toolkit which allows developers to
easily add advanced indexing and search facilities to their own
applications. It supports the Probabilistic Information Retrieval
model and also supports a rich set of boolean query operators.
If you're after a packaged search engine for your website, you
should take a look at Omega: an application we supply built upon
Xapian. Unlike most other website search solutions, Xapian's
versatility allows you to extend Omega to meet your needs as they
grow.
|
|
Updated devel/p5-ExtUtils-MakeMaker to 6.44
Updated www/p5-Apache-AuthCookie to 3.12
Added devel/p5-CLASS version 1.00
Added math/p5-Math-Random-MT-Perl version 1.05
Updated security/p5-Data-SimplePassword to 0.04
|