Remove Author from pkg-descr and white space fixes

This commit is contained in:
Baptiste Daroussin 2015-03-02 23:51:49 +00:00
parent e5add27dcd
commit 5d6c298e2e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=380311
54 changed files with 42 additions and 109 deletions

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

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/

View File

@ -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

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

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/

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/

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/

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

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

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/

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/

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/

View File

@ -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/

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/

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/

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/

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/

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/

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/

View File

@ -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/

View File

@ -1,4 +1,3 @@
Text::ParagraphDiff - Visual Difference for paragraphed text
Author: Joseph F. Ryan <ryan.311@osu.edu>
WWW: http://search.cpan.org/dist/Text-ParagraphDiff/

View File

@ -1,5 +1,4 @@
Text::Report - Perl extension for generating mixed columnar formatted reports
and report templates
Author: David Huggins <davidius@cpan.org>
WWW: http://search.cpan.org/dist/Text-Report/
WWW: http://search.cpan.org/dist/Text-Report/

View File

@ -12,5 +12,4 @@ Paraphrasing the README:
callback function. The corresponding string found in an XML file will be
automatically appended to your variable.
Author: Chang Liu <liu@ics.uci.edu>
WWW: http://search.cpan.org/dist/XML-Node/

View File

@ -5,5 +5,4 @@ who are used to the HTML::TreeBuilder / HTML::Element interface to
document trees, and who don't want to learn some other document
interface like XML::Twig or XML::DOM.
Author: Sean M. Burke
WWW: http://search.cpan.org/dist/XML-TreeBuilder/

View File

@ -1,9 +1,6 @@
This is a port of pdftohtml, which converts pdf-files into nicely
formatted html, combined with png images.
The HTML generated uses frames to emulate the content listing from
The HTML generated uses frames to emulate the content listing from
the pdf.
Author: Gueorgui Ovtcharov
Rainer Dorsch <pdftohtml-general@lists.sourceforge.net>
WWW: http://sourceforge.net/projects/pdftohtml/

View File

@ -1,5 +1,4 @@
Peco is a simplistic interactive filtering tool based on Percol
implemented in Go.
Author: lestrrat
WWW: https://github.com/peco/peco

View File

@ -9,5 +9,4 @@ command-line script ("asv").
This release of ASV requires Python 2.0 or later, and is still to be regarded
as a beta version.
Author: Laurence Tratt <laurie@tratt.net>
WWW: http://tratt.net/laurie/python/asv/

View File

@ -5,5 +5,4 @@ of Enchant with the flexibility of Python and a nice 'Pythonic'
object-oriented interface. It also aims to provide some higher-level
functionality than is available in the C API.
Author: Ryan Kelly
WWW: http://pyenchant.sourceforge.net/
WWW: http://pyenchant.sourceforge.net/

View File

@ -2,5 +2,4 @@ html2text is a Python script that convers a page of HTML into clean,
easy-to-read plain ASCII text. Better yet, that ASCII also happens to
be valid Markdown (a text-to-HTML format).
Author: Aaron Swartz <me@aaronsw.com>
WWW: http://www.aaronsw.com/2002/html2text/

View File

@ -10,5 +10,4 @@ Stuff you can do with the Reverend:
* detect the language of a document
* is your code more like Guido's or Peter's
Author: Amir Bakhtiar
WWW: http://www.divmod.org/trac/wiki/DivmodReverend

View File

@ -13,5 +13,4 @@ startup, so it persists across sessions. So long as the underlying program
supports Unicode, redet allows UTF-8 Unicode in both test data and regular
expressions
Author: Bill Poser <billposer@alum.mit.edu>
WWW: http://www.billposer.org/Software/redet.html

View File

@ -3,5 +3,4 @@ the combination of sed/awk/grep/head/tail and other such shell
utilities, as well as being quicker in startup (at least) than an
equivilant Perl solution.
Author: Paul L Daniels <pldaniels@pldaniels.com>
WWW: http://pldaniels.com/replaceit/

View File

@ -12,5 +12,4 @@ Features:
* recursive template expansion
* converter to REXML document
Author: Tanaka Akira <akr@m17n.org>
WWW: http://www.a-k-r.org/htree/
WWW: http://www.a-k-r.org/htree/

View File

@ -1,5 +1,4 @@
Ruby/xmlconfigfile is a Ruby module for easy handling of XML
configuration files.
Author: Maik Schmidt and Curtis Schofield <curtis.schofield@gmail.com>
WWW: http://www.cs.ualberta.ca/~schofiel/xml-configfile/xml-configfile.html
WWW: http://www.cs.ualberta.ca/~schofiel/xml-configfile/xml-configfile.html

View File

@ -1,4 +1,2 @@
Ruby/xmlscan is a high-performance non-validating XML parser written
in 100% pure Ruby.
Author: Ueno Katsuhiro <katsu@blue.sky.or.jp>

View File

@ -3,5 +3,4 @@ search facilities for text files on the order of 10 to 100 MB using a
data structure called a suffix array. It can also search specific
fields in a text file by assigning index points to those fields.
Author: Satoru Takabayashi <satoru@namazu.org>
WWW: http://sary.sourceforge.net/index.html.en

View File

@ -1,18 +1,17 @@
SRILM is a toolkit for building and applying statistical language models (LMs),
primarily for use in speech recognition, statistical tagging and segmentation.
It has been under development in the SRI Speech Technology and
Research Laboratory since 1995. The toolkit has also greatly benefitted from
its use and enhancements during the Johns Hopkins University/CLSP summer
It has been under development in the SRI Speech Technology and
Research Laboratory since 1995. The toolkit has also greatly benefitted from
its use and enhancements during the Johns Hopkins University/CLSP summer
workshops in 1995, 1996, and 1997
SRILM consists of the following components:
* A set of C++ class libraries implementing language models,
* A set of C++ class libraries implementing language models,
supporting data stuctures and miscellaneous utility functions.
* A set of executable programs built on top of these libraries to
perform standard tasks such as training LMs and testing them on
* A set of executable programs built on top of these libraries to
perform standard tasks such as training LMs and testing them on
data, tagging or segmenting text, etc.
* A collection of miscellaneous scripts facilitating minor related tasks.
Author: stolcke@speech.sri.com
WWW: http://www.speech.sri.com/projects/srilm/
WWW: http://www.speech.sri.com/projects/srilm/

View File

@ -4,5 +4,4 @@ as well as standard ASCII text. Unlike some text-colorizing programs
that exist, Supercat does not require you to have to be a programmer to
make colorization rules.
Author: Thomas G. Anderson <bug-spc@nosredna.net>
WWW: http://supercat.nosredna.net/

View File

@ -1,5 +1,4 @@
SXML is a skimpy XML parsing and grafting C library that you can use
to read and write XML-like configuration file for your application.
Author: Kouichi ABE (WALL) <kouichi@MysticWALL.COM>
WWW: http://www.MysticWALL.COM/software/sxml/index.html

View File

@ -4,5 +4,4 @@ equation is created at high resolution and then resampled to the
target resolution to antialias what would otherwise be jagged
edges.
Author: John Walker
WWW: http://www.fourmilab.ch/webtools/textogif/
WWW: http://www.fourmilab.ch/webtools/textogif/

View File

@ -4,5 +4,4 @@ and vice-versa.
The WBXML format is a binary representation of XML, defined by the Wap Forum,
and used to reduce bandwidth in mobile communications.
Author: Aymerick Jehanne <aymerick@jehanne.org>
WWW: http://libwbxml.opensync.org/

View File

@ -3,5 +3,4 @@ structures, and allow those same Lisp structures to be written out as
XML. It should facilitate the manipulation and use of XML by Elisp
programs.
Author: John Wiegley
WWW: http://www.emacswiki.org/cgi-bin/wiki?XmlParser

View File

@ -8,7 +8,4 @@ htmlhelp, javahelp, man, pdf, ps, txt, xhtml, xhtml-nochunks.
Currently the only XSL-T processor supported is xsltproc (textproc/libxslt).
For DVI, PDF and PostScript output, PassiveTeX (print/passivetex) is required.
Author: Tim Waugh <tim@cyberelk.net>
Ondrej Vasik <ovasik@redhat.com>
WWW: http://fedorahosted.org/xmlto/

View File

@ -3,5 +3,4 @@ Markov chains with two letter transitions. This distribution includes
trained engines for several languages: English, Dutch, Finnish, Italian,
French and German.
Author: Yannick Gingras <ygingras@ygingras.net>
WWW: http://ygingras.net/yould

View File

@ -1,5 +1,4 @@
A command-line (console) application to summarize information from Apache
logs, including hit counts, requests, referrers, and user activity.
Author: Jeff Pace <jpace@incava.org>
WWW: http://www.incava.org/projects/apercu/

View File

@ -1,5 +1,4 @@
CTemplate is a simple but powerful, extremely fast HTML template system for
C language. It provides separation between code and presentation.
Author: Alex Pesternikov
WWW: http://ctemplate.sourceforge.net/

View File

@ -3,5 +3,4 @@ generated by Microsoft applications.
This program is in the public domain.
Author: John Walker
WWW: http://www.fourmilab.ch/

View File

@ -5,5 +5,4 @@ certain fields be filled in. All configuration is done with simple
templates, all of the templates for a given form being within the same
file.
Author: Andru Luvisi <luvisi@villainy.com>
WWW: http://www.villainy.com/developers.html
WWW: http://www.villainy.com/developers.html

View File

@ -1,16 +1,15 @@
Grr is a RSS Reader application
Features
Parsing RSS Feeds
Fetching feeds from the web
Showing headlines
Showing the article's descriptions
Categories for feeds
Articles can be rated
Simple HTML rendering on GNUstep
Serializing obtained feed-information to hard-disk
Managing (Adding, removing) feeds
Features
Parsing RSS Feeds
Fetching feeds from the web
Showing headlines
Showing the article's descriptions
Categories for feeds
Articles can be rated
Simple HTML rendering on GNUstep
Serializing obtained feed-information to hard-disk
Managing (Adding, removing) feeds
Parsing ATOM feeds.
Author: Guenther Noack
WWW: http://gap.nongnu.org/grr/index.html

View File

@ -19,5 +19,4 @@ follows:
user in control, allowing him to choose the most desired library
characteristic.
Author: Ivan Ristic <ivanr@webkreator.com>
WWW: https://github.com/ironbee/libhtp

View File

@ -11,5 +11,4 @@ Light Squid - light squid report parser and visualizer
graphics report
multilanguage interface
Author: Sergey Erokhin <lightsquid@gmail.com>
WWW: http://lightsquid.sourceforge.net/

View File

@ -21,10 +21,4 @@ Note by maintainer:
attach to a DAV server. See the use of the NormalizeUsername
directive.
Author: Taisuke Yamada <tai@iij.ad.jp>
Kunio Miyamoto <wakatono@todo.gr.jp>
Akira YOSHIYAMA <yosshy@debian.or.jp>
Kazuhiko Iwama <iwama@ymc.ne.jp>
IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
WWW: http://webdav.todo.gr.jp/

View File

@ -2,5 +2,4 @@ This module sets httpd process titles to reflect the request currently
processed, so they will be visible in top(1) or ps(1). Useful for
debugging purposes.
Author: Stanislav Sedov <stas@FreeBSD.org>
WWW: https://github.com/stass/mod_proctitle
WWW: https://github.com/stass/mod_proctitle

View File

@ -5,7 +5,6 @@ MySAR consists of two parts:
* Command line utilities which import a squid log file in a
MySQL database and maintain the databas.
* A web interface for accessing the reports.
* A web interface for accessing the reports.
Author: Giannis Stoilis <giannis@stoilis.gr>
WWW: http://giannis.stoilis.gr/software/mysar/index.php?id=16