Commit graph

3774 commits

Author SHA1 Message Date
he
6ac4c44287 Add p5-String-Random. 2008-04-07 13:08:15 +00:00
he
5c48eb95bd Import p5-String-Random, which generates random strings. 2008-04-07 13:07:22 +00:00
taca
e34defafdc Remove MASTER_SITES since now it use RubyGems' MASTER_SITES. 2008-04-06 07:49:55 +00:00
obache
15ad125e2a Update dictem to 0.82, per maintainer update request in PR 38339.
Notes:
  - FIX for emacs-22 (insert-string is replaced with insert)
  - Minor fixes in README
2008-04-05 04:45:22 +00:00
jlam
6973294f00 Add and enable new ruby-* packages. 2008-04-04 15:33:05 +00:00
jlam
7e66bec622 RUBY_REPLACE_DIRS is relative to ${WRKSRC} so no need to give the absolute
path to these directories.
2008-04-04 15:31:39 +00:00
jlam
49044b1ec2 Install as a gem using the pkgsrc rubygem.mk framework instead of
directly into site_ruby.
2008-04-04 15:30:00 +00:00
joerg
1ed9bf8645 DESTDIR support. Fix permissions. 2008-04-04 15:27:25 +00:00
joerg
5cb1efea4e DESTDIR supported. 2008-04-04 15:27:03 +00:00
jlam
954295667f Initial import of ruby18-xslt-0.9.5 as textproc/ruby-xslt.
Ruby/XSLT is a simple XSLT class based on libxml <http://xmlsoft.org/>
and libxslt <http://xmlsoft.org/XSLT/>.
2008-04-04 15:22:29 +00:00
jlam
32bfbec855 Update ruby-xmlparser to version 0.6.81. Changes from version 0.6.8.1
include:

+ Install as a Ruby gem.

* Fix bug in openInputStream().
2008-04-04 15:22:24 +00:00
jlam
5830bb13eb Update ruby-rttool to version 1.0.2.0. Changes from version 1.0.2
are only that this now installs as a gem, but the gem has a slightly
different version number.
2008-04-04 15:22:20 +00:00
jlam
0d8ca0aea6 Initial import of ruby18-rison-1.2.1 as textproc/ruby-rison.
Ruby-rison is a pure Ruby parser for Rison, a data serialization format
optimized for compactness in URIs.  Rison is a slight variation of JSON
that looks vastly superior after URI encoding.  Rison still expresses
exactly the same set of data structures as JSON, so data can be translated
back and forth without loss or guesswork.
2008-04-04 15:22:14 +00:00
jlam
812895e9d3 Update ruby-maruku to version 0.5.8. Chanages from version 0.5.6 include:
+ Install as a Ruby gem.

* Fixed bugs:
  * Fix bug in which links `<http://..>` at beginning of lines could
    sometimes be mistaken for HTML.
  * Empty cells in table are now allowed.
  * Now this is accepted (Maruku did not like the "." inside the link)
	[a. b] is a link.

	[a. b]: http://site.com/
* Fix bug about double-encoding of ampersands in code blocks.
* Fixed compatibility bug with Ruby 1.8.6 patchlevel 110.
2008-04-04 15:22:09 +00:00
jlam
2ce460b2c9 Initial import of ruby18-markaby-0.5 as textproc/ruby-markaby.
Markaby is a templating language for Ruby, with a plugin for Rails,
which allows you to write HTML templates in pure-Ruby (a la Builder.)
2008-04-04 15:22:02 +00:00
jlam
6bd9c9b39a Update ruby-libxml to version 0.5.4. Changes from version 0.3.8.4 include:
+ Install as a Ruby gem.

* Added XML::Reader, a set of bindings to the xmlTextReader API.
* Other changes were made, but they were done on a branch with no
  changelog available.
2008-04-04 15:21:57 +00:00
jlam
8b90e79791 Initial import of ruby18-json-pure-1.1.2 as textproc/ruby-json-pure.
This is a implementation of the JSON specification according to RFC
4627.  You can think of it as a low fat alternative to XML, if you
want to store data to disk or transmit it over a network rather than
use a verbose markup language.

The JSON generator escapes all non-ASCII an control characters with
\uXXXX escape sequences and supports UTF-16 surrogate pairs in order
to be able to generate the whole range of Unicode code points.  This
means that generated JSON text is encoded as UTF-8 (because ASCII is
a subset of UTF-8) and at the same time avoids decoding problems for
receiving endpoints that don't expect UTF-8 encoded texts.

This package is a pure Ruby variant that relies on the iconv and the
stringscan extensions, which are both part of the Ruby standard library.
2008-04-04 15:21:50 +00:00
jlam
8fff57d2a3 Initial import of ruby18-json-1.1.2 as textproc/ruby-json.
This is a implementation of the JSON specification according to RFC
4627.  You can think of it as a low fat alternative to XML, if you
want to store data to disk or transmit it over a network rather than
use a verbose markup language.

The JSON generator escapes all non-ASCII an control characters with
\uXXXX escape sequences and supports UTF-16 surrogate pairs in order
to be able to generate the whole range of Unicode code points.  This
means that generated JSON text is encoded as UTF-8 (because ASCII is
a subset of UTF-8) and at the same time avoids decoding problems for
receiving endpoints that don't expect UTF-8 encoded texts.

This package is fast C extension variant which is in parts implemented
in C and comes with its own Unicode conversion functions and a parser
generated by the Ragel State Machine Compiler.
2008-04-04 15:21:43 +00:00
jlam
83c0d3e9ac Update ruby-hpricot to version 0.6. Changes from version 0.5.140 include:
+ Install as a Ruby gem.

* Hpricot for JRuby

* Inline Markaby for Hpricot documents.

* XML tags and attributes are no longer downcased like HTML is.

* new syntax for grabbing everything between two elements using a
  Range in the s earch method: (doc/("font".."font/br")) or in nodes_at
  like so: (doc/"font").nod es_at("*".."br"). Only works with either
  a pair of siblings or a set of a parent and a sibling.

* Ignore self-closing endings on tags (such as form) which are
  containers. Treat them like open parent tags.

* Escaping of attributes.

* Element#raw_attributes gives unescaped data.  Element#attributes
  gives escaped.

* Added: Elements#attr, Elements#remove_attr, Elements#remove_class.

* Added: Traverse#preceding, Traverse#following, Traverse#previous,
  Traverse#next.
2008-04-04 15:21:39 +00:00
jlam
16d9871964 Initial import of ruby18-haml-1.8.2 as textproc/ruby-haml.
Haml is a markup language that's used to cleanly and simply describe
the XHTML of any web document without the use of inline code, using
indentation rather than closing tags and allowing Ruby to be embedded
with ease.  Haml functions as a replacement for inline page templating
systems such as PHP, ASP, and ERB, the templating language used in
most Ruby on Rails applications.  However, Haml avoids the need for
explicitly coding XHTML into the template, because it itself is a
description of the XHTML, with some code to generate dynamic content.
2008-04-04 15:21:33 +00:00
jlam
b93dfe6ced Update ruby-ferret to version 0.11.6. Changes from version 0.11.4
include:

+ Install as a Ruby gem.

* Fixed major bug in term vectors which was in turn affecting
  highlighting
* Fixed memory leak in PerFieldAnalyzer
* Fixed range query highlighter
* Fixed memory alignment issues on Solaris
* Added :use_keywords option to query parser so you can now turn
  of keywords so a search for OR will work
* multiple other bug fixes
2008-04-04 15:21:28 +00:00
jlam
de3b7dc3ca Update ruby-feed-normalizer to version 1.5.1. Changes from version 1.3.0
include:

+ Install as a Ruby gem.

* Add support for new fields:
  * Atom 0.3: issued is now available through entry.date_published.
  * RSS: feed.skip_hours, feed.skip_days, feed.ttl
  * All: entry.last_updated, this is an alias to entry.date_published for RSS.
* Rewrite relative links in content
* Handle CDATA sections consistently across all formats.
* Prevent SimpleRSS from doing its own escaping.
* Reparse Time classes
* Support content:encoded. Accessible via Entry#content.
* Support categories. Accessible via Entry#categories.
* Introduces a new parsing feature 'loose parsing'.
* Add support for applicable dublin core elements. (dc:date and dc:creator)
* Feeds can now be dumped to YAML.
* Reduced the greediness of a regexp that was removing html comments.
2008-04-04 15:21:25 +00:00
jlam
8e2ff57f2c Initial import of ruby18-diff-lcs-1.1.2 as textproc/ruby-diff-lcs.
Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt
longest common subsequence (LCS) algorithm to compute intelligent
differences between two sequenced enumerable containers.
2008-04-04 15:21:20 +00:00
jlam
84565414ac Initial import of ruby18-coderay-0.7.4.215 as textproc/ruby-coderay.
CodeRay is fast syntax highlighter for Ruby and other languages.  It
produces colorful, valid XHTML.  CodeRay's design goal: simple,
beautiful code highlighting for your board/wiki/blog/doc/website.
2008-04-04 15:21:13 +00:00
jlam
ed7a02c94e Initial import of ruby18-builder-2.1.2 as textproc/ruby-builder.
Builder provide a simple way programmatically create XML markup and
data structures within Ruby.
2008-04-04 15:21:06 +00:00
jlam
fedfaf2d0d Initial import of ruby18-bluecloth-1.0.0 as textproc/ruby-bluecloth.
BlueCloth is a Ruby implementation of Markdown, a text-to-HTML conversion
tool for web writers.  Markdown allows you to write using an easy-to-read,
easy-to-write plain text format, then convert it to structurally valid
XHTML (or HTML).
2008-04-04 15:21:00 +00:00
kleink
5474bb1f47 Add dependencies which I managed to miss earlier. Bump PKGREVISION. 2008-03-28 20:37:55 +00:00
drochner
1b8676fc73 fix RE vulnerabilities (CVE-2007-(4770|4771)), patch from redhat
via Gentoo bug #208001,
bump PKGREVISION
2008-03-20 17:07:54 +00:00
joerg
f633e95062 Add DESTDIR support, fixing normal installation as well. 2008-03-15 20:29:35 +00:00
joerg
2d8ec82d77 Python itself is supposed to be DESTDIR safe. 2008-03-15 18:11:38 +00:00
wiz
50f1d30f6d Update to 2.0:
iso-codes 2.0
-------------
Tobias Toedter <t.toedter@gmx.net>
Sat, 8 March 2008

  [ General ]
  * Recommend the Translation Project in README for adding or updating
    translations.

  [ ISO-639 ]
  * Update to 2008-04-05
    (Alsatian, alsacien, suisse alémanique added as alternative names)

  [ ISO-639 translations ]
  * Thai by Theppitak Karoonboonyanan.
  * French by C. Perrier (consistent capitalization)
  * Vietnamese by Clytie Siddall (TP)

  [ ISO-3166 translations ]
  * Traditional Chinese by Tetralet. Closes: #464858
  * Korean by Changwoo Ryu (TP)
  * Thai by Theppitak Karoonboonyanan. Closes: #465560
  * Galician by Jacobo Tarrío. Closes: #469091
  * Hebrew by Lior Kaplan
  * Indonesian by Arief S Fitrianto. Closes: #469947

  [ ISO-3166-2 ]
  * Fixed country codes for Belarus, Jersey and Serbia,
    thanks to Kamal Mostafa.
  * Removed geographical_region elements from Cuba, United Kingdom
    and USA.

  [ ISO-15924 translations ]
  * Thai by Theppitak Karoonboonyanan. Closes: #465242

  [ ISO-4217 translations ]
  * Estonian by Ain Vagula (TP)
2008-03-14 20:01:14 +00:00
jlam
bd694a5794 Support user-destdir installation. 2008-03-13 19:40:51 +00:00
taca
51817b00f0 Update namazu package to 2.0.18.
Overview of Changes in Namazu 2.0.18 - May 12, 2008

* Add 'Charset' directive.
* "charset" was added to "ContentType" of the example in
  conf/namazurc-sample.
* "charset" was added to the response header in Error messages for
  namazu.cgi.
* Add HTML, BODY tags in Error messages for namazu.cgi.
* '\'', '(', ')' is converted into "&#39;", "&#40;", "&#41;"
  respectively.
* Add po/{de, pl}.po files. (But, it doesn't translate.)
* Change charset from SJIS to Shift_JIS in po/ja_SJIS.po.
* Change soname (LTVERSION 8:0:1)
* pltests/env.pl: The checked environment variable and version of
  the checked Perl module is added.
* pltests/mknmz-8.pl.in: The confirmation whether the index
  has been updated is added.
* pltests/namazu-cgi-12.pl.in: Add new test.
* tests/mknmz-9: Expand test file.
* filter/hnf.pl: Correspondence GRP and bug fix.
* conf/*.win32: Add new files.
2008-03-13 16:50:40 +00:00
wiz
d0f7cc146b Update to 2.9:
Version 2.9

   * language definition for C (not C++) files
   * language definition for properties files
   * language definition for KDE desktop and ini files
   * language definition for lsm files (Linux Software Map)
   * language definition for rpm spec files
   * language definition for Haxe files (thanks to Jos Hirth)
   * style.defaults for associating a style for an element (whose style is
     not specified) to the style of another element
   * highlight some KDE programming files (e.g., .rc, .kcfg, etc.)
   * correctly highlight for less when filenames contain paths
   * fixed a bug in file inclusion of langdef files
   * fixed compilation problems for fileutil.cc (thanks to Adrian Reber)
   * xml elements are correctly recognized when containing .
     (thanks to Toby White)
   * references for xhtml output files

Version 2.8

   * lang definition for slang (by John E. Davis)
   * correctly handle words in ' and ` regular expression strings
   * the right delimiter of a delim element can refer to marked subexpressions
     in the left delimiter
   * fixed the definition of C-style comments which are not nested
   * improved perl syntax highlighting
   * javascript regular expression highlighting
   * padding character for line numbers can be specified (thanks to
     Roger Nilsson)
   * removed non standard % make rules

Version 2.7

   * fixed language association for log files.
   * use standard sed arguments
   * check that the ctags program supports the options used by source-highlight
     and disable ctags tests if it does not
   * removed some memory leaks from scanners and parsers
   * fixed regular expression highlighting strings in perl
     (thanks to Elias Pipping)
   * regexp language element
   * infer script languages also checking for the env specification
   * improved error reporting for lang definition files
   * ` ` syntax for regular expressions that permits backreferences
     and conditionals
   * explicit naming for subexpressions syntax
   * added a program, check-regexp, for checking regular expressions
     on the command line
   * fix html tag definitions
   * fix ruby regexp definition
   * --doc option and references for docbook output
   * xhtml output with non fixed font

Version 2.6

   * language definition for makefiles
   * language definition for css files
   * language definition for m4 files
   * fixed some problems in xml.lang
   * fixed some problems in sh.lang
   * the ctags found during configure is correctly used in makefiles
   * --quiet option showing no progress information
     (thanks to C. Michael Pilato)
   * handle direct color specifications in double quotes in style files
   * in style files can specify formatting options for more than one
     element on the same line
   * accept css specifications as style specifications (limited support)
   * handle background color for some output formats (e.g., xhtml)
   * in style files the background color (for the entire output)
     can be specified
   * fixed a problem in configure script on some BSD systems
     (thanks to Thomas Klausner)
2008-03-13 16:45:33 +00:00
drochner
e1c93284fb update to 0.12.2
changes:
-Added DOCTYPE declarations to HTML and XHTML pages
-Added EXSLT set to the excluded prefixes
-translation updates
2008-03-12 21:19:59 +00:00
wiz
fce0786778 + WordNet. 2008-03-12 09:22:43 +00:00
wiz
c2fbe63012 Initial import of WordNet-3.0:
WordNet is a large lexical database of English, developed under
the direction of George A. Miller. Nouns, verbs, adjectives and
adverbs are grouped into sets of cognitive synonyms (synsets), each
expressing a distinct concept. Synsets are interlinked by means of
conceptual-semantic and lexical relations. The resulting network
of meaningfully related words and concepts can be navigated with
the browser. WordNet is also freely and publicly available for
download. WordNet's structure makes it a useful tool for computational
linguistics and natural language processing.
2008-03-12 09:22:07 +00:00
tnn
882d3eb4fe Put back a couple of IRIX conditionals the way they used to behave,
e.g. match IRIX 5.x but not 6.x. Some of these may indeed apply to 6.x
too, but let's be conservative. PR pkg/38224.
2008-03-11 18:47:40 +00:00
kleink
0b292150ff Update p5-XML-Atom-Stream to 0.11; changes since 0.10 include:
0.11  Wed Jan  9 11:01:56 PST 2008
        - Fixed a bug where xml:lang is transformed into unknown:lang.
          (Thanks to David Recordon)
2008-03-11 18:40:04 +00:00
tnn
5d38e8a96a PR pkg/38224: Another case of me doing a bad LOWER_OPSYS to
MACHINE_PLATFORM conversion.
Will revist all of these to make sure they were correct.
2008-03-11 17:56:16 +00:00
taca
39ef3df6a1 Remove textproc/ruby18-libxml. It is now in textproc/ruby-libxml. 2008-03-11 16:43:12 +00:00
taca
e4bd0eb742 Rename ruby18-libxml to ruby-libxml. 2008-03-11 16:42:08 +00:00
taca
6377ba6cac Reimport ruby-libxml package as correct path. 2008-03-11 16:41:23 +00:00
kleink
91bae6da75 Update p5-Text-vCard to 2.01; changes since 2.00 include:
2.01 Sun Sep 2 2007
	- Stop empty TYPE= being set on export when not needed
	thanks to Vadim for the suggestion
2008-03-11 16:19:06 +00:00
tnn
b2a41f8ca2 MIPSPro doesn't like code such as:
void foo(void) {}
void bar(void) { return foo(); }

Stripping away the return makes it happy. PR pkg/38210.
2008-03-11 02:18:22 +00:00
wiz
a8686fc0e5 Add CONFLICTS line for previous PKGNAME versions.
Suggested by Alan Barrett.
2008-03-10 10:33:38 +00:00
obache
e9ae3ec6e7 Need pkg-config to build. 2008-03-10 03:00:18 +00:00
tnn
9edc6b3ed2 Update to grep-2.5.3.
Main changes are move to GPLv3 and several updated translations.
Also some bugfixes (at least the ones we had patched in pkgsrc).
Sorry, not more specific because NEWS isn't properly maintained.
2008-03-08 12:16:43 +00:00
mjl
8966cc0036 Correct doc and example path. 2008-03-08 00:32:21 +00:00
mjl
07726244bf Enable py-Excelerator 2008-03-08 00:19:36 +00:00