Remove Author from pkg-descr and white space fixes

This commit is contained in:
bapt
2015-03-02 23:51:49 +00:00
parent e5be63293c
commit 0f2e3f5525
54 changed files with 42 additions and 109 deletions
-1
View File
@@ -2,5 +2,4 @@ wmCube is a dockapp that displays a realtime rotating 3d-object
and the current cpu-load. The cpu-load also makes the object spin
faster/slower. You can zoom in and out by clicking on the dockapp.
Author: Robert Kling <robkli-8@student.luth.se>
WWW: http://dockapps.windowmaker.org/file.php/id/162
+2 -3
View File
@@ -1,5 +1,4 @@
wtail does the equivalent of tail -f on several files at once. The screen
wtail does the equivalent of tail -f on several files at once. The screen
is split into as many parts as there are files to watch.
Author: Andre Majorel <amajorel@teaser.fr>
WWW: http://www.teaser.fr/~amajorel/wtail/
WWW: http://www.teaser.fr/~amajorel/wtail/
@@ -1,4 +1,3 @@
System Load plugin for XFce4.
Author: Riccardo Persichetti <riccardo.persichetti@tin.it>
WWW: http://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-plugin
+1 -2
View File
@@ -12,5 +12,4 @@ Typical usage is as follows:
Run `zfs-snapshot-clean -h' for details.
Author: Akinori MUSHA <knu@iDaemons.org>
WWW: http://github.com/knu/zfs-snapshot-clean
WWW: http://github.com/knu/zfs-snapshot-clean
-1
View File
@@ -10,5 +10,4 @@ check if a variable is present in the file at all. It has a "shell-quoting"
output mode that quotes the variable values in a way suitable for passing
them directly to a Bourne-style shell.
Author: Peter Pentchev <roam@ringlet.net>
WWW: http://devel.ringlet.net/textproc/confget/
-1
View File
@@ -7,5 +7,4 @@ from a French text. It fully supports international character sets,
and uses sophisticated statistical models based on the
Maximum Entropy Principle.
Author: Laird A. Breyer <laird@lbreyer.com>
WWW: http://dbacl.sourceforge.net/
-1
View File
@@ -14,5 +14,4 @@ HTML Forms, MathML and SVG modules.
An unexpanded edition of version 2.0.17 is also available. In this version,
content models are shown with parameter entities rather than fully expanded.
Author: <nwalsh@nwalsh.com>
WWW: http://www.docbook.org/tdg/
-4
View File
@@ -1,6 +1,2 @@
EasyDiff is a GNUstep application that lets you easily see the
differences between two text files.
LICENSE: GPL2 or later
Author: Pierre-Yves Rivaille
-1
View File
@@ -2,5 +2,4 @@ ffe is a program for extracting fields from flat file records and displaying
them in different formats. ffe relies on the configuration file to control
input file structure and the output format.
Author: Timo Savinen <tjsa@iki.fi>
WWW: http://ff-extractor.sourceforge.net
+1 -2
View File
@@ -2,5 +2,4 @@ A replacement for (or supplement to) the grep family, glark offers: Perl/Ruby
regular expressions, highlighting of matches, context around matches, complex
expressions (``and'' and ``or''), and automatic exclusion of non-text files.
Author: Jeff Pace <jpace@incava.org>
WWW: http://www.incava.org/projects/glark/
WWW: http://www.incava.org/projects/glark/
+1 -2
View File
@@ -2,5 +2,4 @@ nXML is a C library for parsing, writing and creating XML 1.0 and 1.1 files
or streams. It supports utf-8, utf-16be and utf-16le, ucs-4 (1234, 4321,
2143, 2312).
Author: Andrea Marchesini
WWW: http://www2.autistici.org/bakunin/libnxml/doc/
WWW: http://www2.autistici.org/bakunin/libnxml/doc/
-1
View File
@@ -17,5 +17,4 @@ use the interfaces of the individual classes in the framework.
A simple sample script that reads a training corpus, trains a categorizer,
and tests the categorizer on a test corpus, is distributed as eg/demo.pl .
Author: Ken Williams <ken@mathforum.org>
WWW: http://search.cpan.org/dist/AI-Categorizer/
@@ -3,5 +3,4 @@ but prints all the links in the HTML as footnotes. By default, it
attempts to mimic the format of the lynx text based web browser's
--dump option.
Author: Struan Donald. <struan@cpan.org>
WWW: http://search.cpan.org/dist/HTML-FormatText-WithLinks/
+1 -2
View File
@@ -12,5 +12,4 @@ You can implement the same kind of feature outside Hatena using this module.
It queries Hatena Keyword Link API internally for retrieving terms
Author: Naoya Ito <naoya@bloghackers.net>
WWW: http://search.cpan.org/dist/Hatena-Keyword/
WWW: http://search.cpan.org/dist/Hatena-Keyword/
-1
View File
@@ -1,5 +1,4 @@
Parse phone numbers. Phone number have a defined syntax (to a point), so
they can be parsed (to a point).
Author: Casey West <casey@geeknest.com>
WWW: http://search.cpan.org/dist/Parse-PhoneNumber/
-1
View File
@@ -10,5 +10,4 @@ provided include:
* lists of any pattern
* IPv4 addresses
Author: Damian Conway <damian@cs.monash.edu.au>
WWW: http://search.cpan.org/dist/Regexp-Common/
+6 -7
View File
@@ -5,24 +5,23 @@ lexically.
This is the way I define natural sorting:
* Non-numeric word-character substrings are sorted lexically,
* Non-numeric word-character substrings are sorted lexically,
case-insensitively: "Foo" comes between "fish" and "fowl".
* Numeric substrings are sorted numerically: "100" comes after "20",
* Numeric substrings are sorted numerically: "100" comes after "20",
not before.
* \W substrings (neither words-characters nor digits) are ignored. Our use
* of \w, \d, \D, and \W is locale-sensitive: Sort::Naturally
* of \w, \d, \D, and \W is locale-sensitive: Sort::Naturally
uses a use locale statement.
* When comparing two strings, where a numeric substring in one place
* When comparing two strings, where a numeric substring in one place
is not up against a numeric substring in another, the non-numeric always comes
first. This is fudged by reading pretending that the lack of a number substring
has the value -1, like so:
* The start of a string is exceptional: leading non-\W (non-word,
* The start of a string is exceptional: leading non-\W (non-word,
non-digit) components are ignored, and numbers come before letters.
* I define "numeric substring" just as sequences matching m/\d+/ --
* I define "numeric substring" just as sequences matching m/\d+/ --
scientific notation, commas, decimals, etc., are not seen. If your data has
thousands separators in numbers ("20,000 Leagues Under The Sea" or "20.000
lieues sous les mers"), consider stripping them before feeding them to nsort or
ncmp.
Author: Sean M. Burke <sburke@cpan.org>
WWW: http://search.cpan.org/dist/Sort-Naturally/
+2 -3
View File
@@ -1,6 +1,5 @@
This module functions identically to its superclass HTML::Fraction, but
rather than converting fractions into HTML entities they are replaced by
This module functions identically to its superclass HTML::Fraction, but
rather than converting fractions into HTML entities they are replaced by
the unicode characters for those fractions.
Author: Mark Fowler <mark@twoshortplanks.com>
WWW: http://search.cpan.org/dist/String-Fraction/
+2 -3
View File
@@ -4,10 +4,9 @@ Internet quoting conventions, a wide range of bulleting and number
schemes, centred text, and block quotations, and reformats each
appropriately. Other options allow the user to adjust inter-word and
inter-paragraph spacing, justify text, and impose various capitalization
schemes.
schemes.
The module also supplies a re-entrant, highly configurable replacement
for the built-in Perl format() mechanism.
for the built-in Perl format() mechanism.
Author: Damian Conway <damian@conway.org>
WWW: http://search.cpan.org/dist/Text-Autoformat/
@@ -10,5 +10,4 @@ The "language_guess()" function takes a document as a parameter and
returns the abbreviation of the language that it is most likely written
in.
Author: Mike Schilli <cpan@perlmeister.com>
WWW: http://search.cpan.org/dist/Text-Language-Guess/

Some files were not shown because too many files have changed in this diff Show More