pkgsrc/textproc
obache 6a42aa9d98 Update py-lxml to 2.3.2.
2.3.2 (2011-11-11)
==================

Features added
--------------

* ``lxml.objectify.deannotate()`` has a new boolean option
  ``cleanup_namespaces`` to remove the objectify namespace
  declarations (and generally clean up the namespace declarations)
  after removing the type annotations.

* ``lxml.objectify`` gained its own ``SubElement()`` function as a
  copy of ``etree.SubElement`` to avoid an otherwise redundant import
  of ``lxml.etree`` on the user side.

Bugs fixed
----------

* Fixed the "descendant" bug in cssselect a second time (after a first
  fix in lxml 2.3.1).  The previous change resulted in a serious
  performance regression for the XPath based evaluation of the
  translated expression.  Note that this breaks the usage of some of
  the generated XPath expressions as XSLT location paths that
  previously worked in 2.3.1.

* Fixed parsing of some selectors in cssselect. Whitespace after combinators
  ">", "+" and "~" is now correctly ignored. Previously is was parsed as
  a descendant combinator. For example, "div> .foo" was parsed the same as
  "div>* .foo" instead of "div>.foo".

Other changes
--------------


2.3.1 (2011-09-25)
==================

Features added
--------------

* New option ``kill_tags`` in ``lxml.html.clean`` to remove specific
  tags and their content (i.e. their whole subtree).

* ``pi.get()`` and ``pi.attrib`` on processing instructions to parse
  pseudo-attributes from the text content of processing instructions.

* ``lxml.get_include()`` returns a list of include paths that can be
  used to compile external C code against lxml.etree.  This is
  specifically required for statically linked lxml builds when code
  needs to compile against the exact same header file versions as lxml
  itself.

* ``Resolver.resolve_file()`` takes an additional option
  ``close_file`` that configures if the file(-like) object will be
  closed after reading or not.  By default, the file will be closed,
  as the user is not expected to keep a reference to it.

Bugs fixed
----------

* HTML cleaning didn't remove 'data:' links.

* The html5lib parser integration now uses the 'official'
  implementation in html5lib itself, which makes it work with newer
  releases of the library.

* In ``lxml.sax``, ``endElementNS()`` could incorrectly reject a plain
  tag name when the corresponding start event inferred the same plain
  tag name to be in the default namespace.

* When an open file-like object is passed into ``parse()`` or
  ``iterparse()``, the parser will no longer close it after use.  This
  reverts a change in lxml 2.3 where all files would be closed.  It is
  the users responsibility to properly close the file(-like) object,
  also in error cases.

* Assertion error in lxml.html.cleaner when discarding top-level elements.

* In lxml.cssselect, use the xpath 'A//B' (short for
  'A/descendant-or-self::node()/B') instead of 'A/descendant::B' for
  the css descendant selector ('A B').  This makes a few edge cases
  like ``"div *:last-child"`` consistent with the selector behavior in
  WebKit and Firefox, and makes more css expressions valid location
  paths (for use in xsl:template match).

* In lxml.html, non-selected ``<option>`` tags no longer show up in the
  collected form values.

* Adding/removing ``<option>`` values to/from a multiple select form
  field properly selects them and unselects them.

Other changes
--------------

* Static builds can specify the download directory with the
  ``--download-dir`` option.


2.3 (2011-02-06)
================

Features added
--------------

* When looking for children, ``lxml.objectify`` takes '{}tag' as
  meaning an empty namespace, as opposed to the parent namespace.

Bugs fixed
----------

* When finished reading from a file-like object, the parser
  immediately calls its ``.close()`` method.

* When finished parsing, ``iterparse()`` immediately closes the input
  file.

* Work-around for libxml2 bug that can leave the HTML parser in a
  non-functional state after parsing a severly broken document (fixed
  in libxml2 2.7.8).

* ``marque`` tag in HTML cleanup code is correctly named ``marquee``.

Other changes
--------------

* Some public functions in the Cython-level C-API have more explicit
  return types.


2.3beta1 (2010-09-06)
=====================

Features added
--------------

Bugs fixed
----------

* Crash in newer libxml2 versions when moving elements between
  documents that had attributes on replaced XInclude nodes.

* ``XMLID()`` function was missing the optional ``parser`` and
  ``base_url`` parameters.

* Searching for wildcard tags in ``iterparse()`` was broken in Py3.

* ``lxml.html.open_in_browser()`` didn't work in Python 3 due to the
  use of os.tempnam.  It now takes an optional 'encoding' parameter.

Other changes
--------------


2.3alpha2 (2010-07-24)
======================

Features added
--------------

Bugs fixed
----------

* Crash in XSLT when generating text-only result documents with a
  stylesheet created in a different thread.

Other changes
--------------

* ``repr()`` of Element objects shows the hex ID with leading 0x
  (following ElementTree 1.3).


2.3alpha1 (2010-06-19)
======================

Features added
--------------

* Keyword argument ``namespaces`` in ``lxml.cssselect.CSSSelector()``
  to pass a prefix-to-namespace mapping for the selector.

* New function ``lxml.etree.register_namespace(prefix, uri)`` that
  globally registers a namespace prefix for a namespace that newly
  created Elements in that namespace will use automatically.  Follows
  ElementTree 1.3.

* Support 'unicode' string name as encoding parameter in
  ``tostring()``, following ElementTree 1.3.

* Support 'c14n' serialisation method in ``ElementTree.write()`` and
  ``tostring()``, following ElementTree 1.3.

* The ElementPath expression syntax (``el.find*()``) was extended to
  match the upcoming ElementTree 1.3 that will ship in the standard
  library of Python 3.2/2.7.  This includes extended support for
  predicates as well as namespace prefixes (as known from XPath).

* During regular XPath evaluation, various ESXLT functions are
  available within their namespace when using libxslt 1.1.26 or later.

* Support passing a readily configured logger instance into
  ``PyErrorLog``, instead of a logger name.

* On serialisation, the new ``doctype`` parameter can be used to
  override the DOCTYPE (internal subset) of the document.

* New parameter ``output_parent`` to ``XSLTExtension.apply_templates()``
  to append the resulting content directly to an output element.

* ``XSLTExtension.process_children()`` to process the content of the
  XSLT extension element itself.

* ISO-Schematron support based on the de-facto Schematron reference
  'skeleton implementation'.

* XSLT objects now take XPath object as ``__call__`` stylesheet
  parameters.

* Enable path caching in ElementPath (``el.find*()``) to avoid parsing
  overhead.

* Setting the value of a namespaced attribute always uses a prefixed
  namespace instead of the default namespace even if both declare the
  same namespace URI.  This avoids serialisation problems when an
  attribute from a default namespace is set on an element from a
  different namespace.

* XSLT extension elements: support for XSLT context nodes other than
  elements: document root, comments, processing instructions.

* Support for strings (in addition to Elements) in node-sets returned
  by extension functions.

* Forms that lack an ``action`` attribute default to the base URL of
  the document on submit.

* XPath attribute result strings have an ``attrname`` property.

* Namespace URIs get validated against RFC 3986 at the API level
  (required by the XML namespace specification).

* Target parsers show their target object in the ``.target`` property
  (compatible with ElementTree).

Bugs fixed
----------

* API is hardened against invalid proxy instances to prevent crashes
  due to incorrectly instantiated Element instances.

* Prevent crash when instantiating ``CommentBase`` and friends.

* Export ElementTree compatible XML parser class as
  ``XMLTreeBuilder``, as it is called in ET 1.2.

* ObjectifiedDataElements in lxml.objectify were not hashable.  They
  now use the hash value of the underlying Python value (string,
  number, etc.) to which they compare equal.

* Parsing broken fragments in lxml.html could fail if the fragment
  contained an orphaned closing '</div>' tag.

* Using XSLT extension elements around the root of the output document
  crashed.

* ``lxml.cssselect`` did not distinguish between ``x[attr="val"]`` and
  ``x [attr="val"]`` (with a space).  The latter now matches the
  attribute independent of the element.

* Rewriting multiple links inside of HTML text content could end up
  replacing unrelated content as replacements could impact the
  reported position of subsequent matches.  Modifications are now
  simplified by letting the ``iterlinks()`` generator in ``lxml.html``
  return links in reversed order if they appear inside the same text
  node.  Thus, replacements and link-internal modifications no longer
  change the position of links reported afterwards.

* The ``.value`` attribute of ``textarea`` elements in lxml.html did
  not represent the complete raw value (including child tags etc.). It
  now serialises the complete content on read and replaces the
  complete content by a string on write.

* Target parser didn't call ``.close()`` on the target object if
  parsing failed.  Now it is guaranteed that ``.close()`` will be
  called after parsing, regardless of the outcome.

Other changes
-------------

* Official support for Python 3.1.2 and later.

* Static MS Windows builds can now download their dependencies
  themselves.

* ``Element.attrib`` no longer uses a cyclic reference back to its
  Element object.  It therefore no longer requires the garbage
  collector to clean up.

* Static builds include libiconv, in addition to libxml2 and libxslt.


2.2.8 (2010-09-02)
==================

Bugs fixed
----------

* Crash in newer libxml2 versions when moving elements between
  documents that had attributes on replaced XInclude nodes.

* Import fix for urljoin in Python 3.1+.


2.2.7 (2010-07-24)
==================

Bugs fixed
----------

* Crash in XSLT when generating text-only result documents with a
  stylesheet created in a different thread.
2012-02-07 11:54:41 +00:00
..
aiksaurus Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
antiword honor PKGMANDIR, PR 42290. 2009-11-12 05:03:47 +00:00
asciidoc Update textproc/asciidoc to 8.6.6. 2011-10-08 21:13:47 +00:00
aspell Update to 0.60.6.1: 2011-07-12 14:06:02 +00:00
aspell-breton recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-catalan recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-czech recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-danish recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-dutch recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-english recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-esperanto recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-faroese recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-francais recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-gaeilge recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-german recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-greek recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-italian recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-norwegian recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-polish recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-portuguese recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-romanian recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-russian recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-slovak recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-spanish recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-svenska recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-ukrainian recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-welsh recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
awf Support PKGMANDIR 2009-10-29 22:00:58 +00:00
bibclean Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
biblook
bibparse Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
bsdgrep-devel Remove -Werror so this builds on -current. 2011-09-29 20:46:59 +00:00
btparse
c2html Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
cabocha fixes build with gcc-4.4. 2011-04-14 11:40:39 +00:00
catdoc Convert packages with add --libdir=* to CONFIGURE_ARGS to use 2012-01-17 21:43:18 +00:00
catdoc-tk
cawf Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
cdif Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
chasen
chasen-base Add security patch for CVE-2011-4000 from official site. 2011-12-11 14:26:27 +00:00
cmigemo Import cmigemo-1.3e.20110227 as textproc/cmigemo. 2012-01-21 13:38:41 +00:00
coccigrep setting of PYDISTUTILSPKG=yes is not required here for egg pkg. 2012-02-04 12:55:45 +00:00
convertlit Replace highly fought over patch with sed statement. 2009-10-06 21:37:10 +00:00
crimson Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
dadadodo Initial import of dadadodo-1.04: 2010-04-30 10:04:56 +00:00
db2latex Use ifpdf.sty instead of defining one. 2009-07-28 16:27:11 +00:00
dblatex distutils pkg, register egg-info. 2012-02-06 12:39:48 +00:00
dbtoepub Bump PKGREVISION from RUBY_VERSION_DEFAULT changes. 2011-09-16 02:26:44 +00:00
detex user-destdir support 2009-07-07 22:17:24 +00:00
dict-client Closes PR pkg/44850, oked by wiz@ and reed@ 2011-05-07 10:06:02 +00:00
dict-dictionaries user-destdir support 2009-07-07 22:17:24 +00:00
dict-mueller7 gsed related clean up. 2012-01-14 07:44:33 +00:00
dict-server Update my email 2011-10-09 10:02:44 +00:00
dictem Update my email 2011-10-09 10:02:44 +00:00
diction Fix mistake in patch that linked diction to create style! 2011-08-05 15:40:47 +00:00
diffsplit user-destdir support 2009-07-07 22:12:02 +00:00
diffstat Update diffstat to 1.51. Minor bugfixes. 2009-11-17 03:17:01 +00:00
dikt Revbump for 2012-02-06 12:41:29 +00:00
docbook Changes 4.5: 2011-04-14 10:33:41 +00:00
docbook-simple Fix registration of the DTD in the catalog by not prefixing the destdir. 2009-10-31 23:41:56 +00:00
docbook-website Reset maintainer, developer lost his commit bit. 2010-03-21 16:29:38 +00:00
docbook-xml Add a buildlink3.mk 2011-09-27 10:43:32 +00:00
docbook-xsl Add a buildlink3.mk. 2011-09-27 10:44:17 +00:00
doclifter Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
dsssl-docbook-modular Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 21:28:46 +00:00
dtdparse Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
eb recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
eblook recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ebook-tools Recursive bump for libzip-0.10. 2011-03-18 13:49:38 +00:00
ebview Revbump for 2012-02-06 12:41:29 +00:00
emacs-dict-client PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
emacs-muse Add user-destdir installation support. 2011-03-18 10:55:20 +00:00
enca Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
enchant Revbump for 2012-02-06 12:41:29 +00:00
epubcheck Update to 1.2, changes not found. 2011-04-05 12:51:18 +00:00
epubpreflight Initial import of epubpreflight-0.1.0: 2009-11-07 09:04:19 +00:00
expat Support buitin expat for Haiku. 2010-07-04 16:34:46 +00:00
expatobjc Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
ezxml Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
FlightCrew Revbump for 2012-02-06 12:41:29 +00:00
flyspell PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
fop Try merging fop-1.0. 2011-01-16 09:58:37 +00:00
freepwing Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
gdome2 Revbump for 2012-02-06 12:41:29 +00:00
glimpse Mark devel/tre and textproc/glimpse as conflicting since both install 2009-09-07 11:18:49 +00:00
gnome-doc-utils update to 0.20.6 2011-07-08 17:31:34 +00:00
gnome-spell Revbump for 2012-02-06 12:41:29 +00:00
gnome-subtitles Revbump for 2012-02-06 12:41:29 +00:00
grep recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
groff Adjust pdfroff security patch to not use '-p' option to mktemp which is 2011-07-27 16:33:25 +00:00
groonga Revbump for 2012-02-06 12:41:29 +00:00
gsed Make sure that the gsed package always has a 'gsed' executable. 2011-12-29 22:30:47 +00:00
gtk-doc The latest gtk-doc does not create .devhelp files any more - bump buildlink3 required version to ensure PLISTs match 2011-11-10 09:42:48 +00:00
gtkspell Revbump for 2012-02-06 12:41:29 +00:00
gutcheck It seems that something wrong with distinfo, DIST_SUBR directory name. 2010-05-20 00:45:43 +00:00
GutenMark Honor LDFLAGS from pkgsrc. 2011-11-29 06:21:02 +00:00
GutenMark-words Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
halibut Drop maintainership on these packages, I am no longer interested. 2010-05-07 08:34:22 +00:00
harmony Recursive bump for lang/ocaml buildlink addition. 2011-12-06 00:19:21 +00:00
heirloom-bdiff DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-bfs DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-col DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-comm DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-cut DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-diff3 DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-ed DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-fmt DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-fold DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-grep Add missed tools to heirloom-awk and heirloom-grep, tested on Linux 2011-05-28 11:42:05 +00:00
heirloom-head DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-join DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-line DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-nl DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-paste DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-pg DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-pr DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-sdiff DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-sed DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-tail DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-tr DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-ul DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-uniq DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-wc DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
helpdeco user-destdir support 2009-07-07 22:08:13 +00:00
hevea Add destdir support 2010-03-15 21:00:56 +00:00
highlight Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
hre Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
html user-destdir support 2009-07-07 22:02:39 +00:00
html2text Pass LDFLAGS for configure and build 2011-01-31 10:36:21 +00:00
html2wml user-destdir support 2009-07-07 21:58:38 +00:00
hugs-HaXml DESTDIR support 2010-01-29 18:52:35 +00:00
hunspell recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
hunspell-af_ZA
hunspell-ar Import hunspell-ar-20080110 as textproc/hunspell-ar. 2009-10-12 20:52:40 +00:00
hunspell-bg_BG
hunspell-ca_ES This doesn't come with a readme file. 2009-10-29 22:57:32 +00:00
hunspell-cs_CZ
hunspell-cy_GB Import hunspell-cy_GB-20040425 as textproc/hunspell-cy_GB. 2009-10-27 20:02:29 +00:00
hunspell-da_DK
hunspell-de Update to 20110609, changes not documented. 2011-07-12 13:35:22 +00:00
hunspell-el_GR Import hunspell-el_GR-20041220 as textproc/hunspell-el_GR. 2009-10-27 20:03:32 +00:00
hunspell-en_CA Import hunspell-en_CA-20020315 as textproc/hunspell-en_CA. 2009-10-27 20:04:36 +00:00
hunspell-en_GB Get rid of now unnecessary EXTRACT_OPTS_ZIP. 2009-08-25 11:57:44 +00:00
hunspell-en_NZ Import hunspell-en_NZ-20020518 as textproc/hunspell-en_NZ. 2009-10-27 20:05:57 +00:00
hunspell-en_US Get rid of now unnecessary EXTRACT_OPTS_ZIP. 2009-08-25 11:57:44 +00:00
hunspell-en_ZA Import hunspell-en_ZA-20060120 as textproc/hunspell-en_ZA. 2009-10-27 20:07:11 +00:00
hunspell-es_ES
hunspell-es_MX
hunspell-fo_FO
hunspell-fr_FR Get rid of now unnecessary EXTRACT_OPTS_ZIP. 2009-08-25 11:57:44 +00:00
hunspell-fy_NL Import hunspell-fy_NL-0.12 as textproc/hunspell-fy_NL. 2009-10-27 20:10:12 +00:00
hunspell-ga_IE Import hunspell-ga_IE-20071029 as textproc/hunspell-ga_IE. 2009-10-12 21:33:10 +00:00
hunspell-he_IL Import hunspell-he_IL-20050112 as textproc/hunspell-he_IL. 2009-10-12 21:36:21 +00:00
hunspell-hr_HR Import hunspell-hr_HR-20060607 as textproc/hunspell-hr_HR. 2009-10-12 21:43:20 +00:00
hunspell-hu_HU update to 1.6.1 2011-02-22 11:46:54 +00:00
hunspell-id_ID
hunspell-it_IT Import hunspell-it_IT-2.4 as textproc/hunspell-it_IT. 2009-10-12 21:49:37 +00:00
hunspell-lt_LT Import hunspell-lt_LT-20031231 as textproc/hunspell-lt_LT. 2009-10-12 21:53:03 +00:00
hunspell-lv_LV Import hunspell-lv_LV-0.8b1 as textproc/hunspell-lv_LV. 2009-10-27 20:14:12 +00:00
hunspell-mg_MG Import hunspell-mg_MG-20050108 as textproc/hunspell-mg_MG. 2009-10-12 21:57:53 +00:00
hunspell-ms_MY Import hunspell-ms_MY-20050117 as textproc/hunspell-ms_MY. 2009-10-12 22:00:53 +00:00
hunspell-nl_NL Import hunspell-nl_NL-20070607 as textproc/hunspell-nl_NL. 2009-10-12 22:03:03 +00:00
hunspell-ny_MW Import hunspell-ny_MW-20050108 as textproc/hunspell-ny_MW. 2009-10-12 22:05:20 +00:00
hunspell-pl_PL Import hunspell-pl_PL-20061202 as textproc/hunspell-pl_PL. 2009-10-27 20:13:08 +00:00
hunspell-ru_RU Include from textproc, not wip. 2009-10-12 21:35:05 +00:00
hunspell-sk_SK Import hunspell-sk_SK-20090330 as textproc/hunspell-sk_SK. 2009-10-12 21:14:51 +00:00
hunspell-sv_SE Get rid of now unnecessary EXTRACT_OPTS_ZIP. 2009-08-25 11:57:44 +00:00
hyperestraier * Add a patch to support both ruby18 and ruby19. 2010-09-10 08:25:16 +00:00
icu Fix pkg-config files to include library paths. 2012-02-01 23:53:32 +00:00
iksemel This is an XML parser library mainly designed for Jabber applications. 2011-10-12 03:15:20 +00:00
intltool Update intltool to 0.41.1, for GNOME 2.30 release. 2011-08-21 11:23:14 +00:00
ipadic Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
isearch service suspended. prevent timeout. fetch from backup. 2011-03-18 20:54:44 +00:00
iso-codes DEPENDS should be right after MAINTAINER block, reorder. 2010-01-27 08:46:23 +00:00
iso8879 Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
iso12083 user-destdir support 2009-07-07 21:48:22 +00:00
ispell-base Use LIBES to pass LDFLAGS to the build process. 2011-12-26 01:50:24 +00:00
ispell-british
ispell-catalan
ispell-emacs PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
ispell-francais user-destdir support 2009-07-07 21:48:22 +00:00
ispell-gaeilge user-destdir support 2009-07-07 21:48:22 +00:00
ispell-german
ispell-polski
ispell-romanian Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
ispell-russian user-destdir support 2009-07-07 21:48:22 +00:00
ispell-russian-io user-destdir support 2009-07-07 21:48:22 +00:00
ispell-slovak user-destdir support 2009-07-07 21:48:22 +00:00
ispell-spanish
ispell-svenska user-destdir support 2009-07-07 21:48:22 +00:00
itex2MML user-destdir support 2009-07-07 21:43:58 +00:00
ja-grep recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ja-groff user-destdir support 2009-07-07 17:38:09 +00:00
ja-sed user-destdir support 2009-07-07 21:38:04 +00:00
jade recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
java-mecab ${PREFIX}/lib is pre-required for installation. 2009-12-28 01:01:19 +00:00
java-native-hyperestraier Import java-native-hyperestraier-1.0.0.1.4.13 as textproc/java-native-hyperestraier. 2009-05-25 09:43:00 +00:00
java-pure-hyperestraier Import java-pure-hyperestraier-1.0.0.1.4.13 as textproc/java-pure-hyperestraier. 2009-05-25 09:43:52 +00:00
jdom Convert to USE_TOOLS=zip. 2012-01-14 02:09:35 +00:00
jing Update to jing-20090818, 6 years of development. 2009-10-31 02:21:07 +00:00
json-glib Revbump for 2012-02-06 12:41:29 +00:00
kakasi user-destdir support 2009-07-07 21:33:07 +00:00
kbanner user-destdir support 2009-07-07 21:33:07 +00:00
kdoc Add pod2man to USE_TOOLS. 2011-11-29 18:32:41 +00:00
latex2html Avoid dependency on teTeX. 2011-10-19 19:28:49 +00:00
libclucene Update to 0.9.21b 2009-07-23 08:59:54 +00:00
libcroco Revbump for 2012-02-06 12:41:29 +00:00
liblinebreak Update to 2.1: 2011-05-14 07:47:14 +00:00
liblrdf recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libnxml recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libplist Revbump for 2012-02-06 12:41:29 +00:00
libunicode
libxml fix comments. 2011-09-01 14:42:09 +00:00
libxml++ Revbump for 2012-02-06 12:41:29 +00:00
libxml++1 textproc/libxml++1: Fix gentoo ltmain sanity check bug 2011-12-10 01:09:20 +00:00
libxml2 Don't use non-ASCII character literals. 2012-01-23 08:10:56 +00:00
libxslt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libyaml Drop maintainership on these packages, I am no longer interested. 2010-05-07 08:34:22 +00:00
link-grammar Add missing lines. Fix 'make package'. 2011-10-08 07:29:46 +00:00
lit2epub Convert to USE_TOOLS=zip. 2012-01-14 02:09:35 +00:00
lout Avoid double DESTDIR prefix 2011-12-12 19:08:34 +00:00
lq-sp user-destdir support 2009-07-07 21:08:34 +00:00
lua-expat Update textproc/lua-expat to 1.2.0. 2011-06-04 23:13:40 +00:00
makeindexk Make makeindexk build with kpathsea-6.0.0. 2010-09-13 04:47:12 +00:00
makeztxt Honor LDFLAGS from pkgsrc. 2011-11-29 06:21:02 +00:00
Markdown
markdown-mode Update markdown-mode to 1.8.1. 2011-10-03 16:59:39 +00:00
mdoclint Allow 2012 in man page dates. 2012-01-02 18:01:00 +00:00
mdocml Revbump after db5 update 2012-01-18 14:47:13 +00:00
mecab Update MeCab to 0.98. 2009-10-14 08:22:35 +00:00
mecab-base Fix build on SunOS with gcc>=4.6 2011-12-16 16:49:26 +00:00
mecab-ipadic Note commented out LICENSE. 2010-05-16 01:11:46 +00:00
mecab-jumandic LICENSE=modified-bsd 2010-05-16 00:25:26 +00:00
mecab-naistdic Importing mecab-naistdic version 0.6.3-20100801. 2011-03-23 15:12:30 +00:00
mendexk Import mendexk-2.6f as textproc/mendexk. 2010-11-06 03:41:46 +00:00
metauml Let textproc/metauml use kpathsea/texmf.mk instead of teTeX/module.mk; 2009-08-16 21:50:38 +00:00
migemo Transitive closure for RUBY_VERSION_SUPPORTED=18. 2011-09-21 21:40:20 +00:00
migemo-elisp Bump PKGREVISION from RUBY_VERSION_DEFAULT changes. 2011-09-16 02:26:44 +00:00
mxml Call libtool always with --mode. Honour the strip settings of pkgsrc. 2009-11-25 23:31:58 +00:00
namazu Bump verion PR#45170 2011-07-24 14:31:34 +00:00
nbsed
ndtpd Use @RCD_SCRIPTS_SHELL@ 2011-04-24 13:47:45 +00:00
nxml-mode PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
o3read user-destdir support 2009-07-07 20:58:04 +00:00
OdfConverter Revbump for 2012-02-06 12:41:29 +00:00
oniguruma Update oniguruma to 5.9.2. 2010-09-10 08:26:38 +00:00
openjade Exactly pass OpenSP header and library locations to configure. 2011-06-10 12:05:48 +00:00
opensp recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
p5-ack Update to 1.96. From the changelog: 2011-10-09 12:52:23 +00:00
p5-Biblio-EndnoteStyle Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-cabocha Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-CAM-PDF Add csh scripts to REPLACE_CSH and add USE_TOOLS+=csh:run 2012-02-07 06:36:35 +00:00
p5-Convert-ASCII-Armour Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Convert-ASN1 Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Convert-BER Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Convert-PEM Update p5-Convert-PEM to 0.08. 2011-11-11 22:49:47 +00:00
p5-Convert-Translit Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Cz-Cstools Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Data-FormValidator Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Data-HexDump Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Encode Updated p5-Encode to 2.44. 2011-11-11 07:47:01 +00:00
p5-Encode-Detect Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Encode-Locale Revision bump after updating perl to 5.14.1. 2011-08-12 09:07:06 +00:00
p5-Feed-Find Update p5-Feed-Find to 0.07. 2011-10-17 14:52:20 +00:00
p5-File-ReadBackwards Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Filter Update p5-Filter to 1.39. 2011-11-11 04:33:32 +00:00
p5-FormValidator-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-iCal-Parser Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Kwalify Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-libxml Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-EN-Inflect Restore PKGNAME (hi wiz!) 2011-08-18 12:57:44 +00:00
p5-Lingua-EN-Inflect-Number Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-EN-Inflect-Phrase Update p5-Lingua-EN-Inflect-Phrase to 0.10. 2011-11-13 13:07:16 +00:00
p5-Lingua-EN-Numbers-Ordinate Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-EN-Sentence Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-EN-Tagger Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Preferred Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-PT-Stemmer Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Stem Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Stem-Fr Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Stem-It Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Stem-Ru Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Stem-Snowball Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Lingua-Stem-Snowball-Da Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-List-Compare Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-mecab Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-mobiperl Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-native-hyperestraier Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Net-Dict Update p5-Net-Dict to 2.08. 2011-11-06 02:44:14 +00:00
p5-Number-Format Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Number-Spell Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF-API2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF-API2-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF-Create Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF-Reuse Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF-Reuse-Barcode Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-PDF-Table Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Abstract Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Coverage Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Escapes Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Parser Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-POM Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Readme Update p5-Pod-Readme to 0.11. 2011-10-29 17:30:33 +00:00
p5-Pod-Simple Update p5-Pod-Simple to 3.19. 2011-10-28 01:12:49 +00:00
p5-Pod-Spell Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Spell-CommonMistakes Update p5-Pod-Spell-CommonMistakes to 1.000. 2011-10-27 01:15:06 +00:00
p5-Pod-Strip Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Tests Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Pod-Tree Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-POD2-Base Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-podlators Update p5-podlators to 2.4.0. 2012-02-02 04:03:43 +00:00
p5-PPI-HTML Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Regexp-Common Update p5-Regexp-Common to 2011041701. 2011-10-21 04:02:55 +00:00
p5-Regexp-Copy Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Search-Indexer Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Search-Xapian Indent. 2012-01-10 02:41:29 +00:00
p5-SGMLS Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Snowball-Norwegian Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Snowball-Swedish Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-String-Approx Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-String-BufferStack Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-String-CamelCase Import String::CamelCase into textproc/p5-String-CamelCase, 2011-11-13 13:05:06 +00:00
p5-String-CRC32 Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-String-Koremutake Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-String-RewritePrefix Update p5-String-RewritePrefix to 0.006. 2011-10-16 13:56:01 +00:00
p5-String-ShellQuote Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-String-ToIdentifier-EN Import String::ToIdentifier::EN into textproc/p5-String-ToIdentifier-EN, 2011-11-14 08:08:04 +00:00
p5-Syntax-Highlight-Engine-Kate Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Template-Declare Update p5-Template-Declare to 0.45. 2011-10-14 02:13:31 +00:00
p5-Template-Plugin-Autoformat Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Template-Plugin-CSV Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Template-Plugin-Latex Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Template-Plugin-Number-Format Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Template-Plugin-YAML Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Template-Tiny Update p5-Template-Tiny to 1.12. 2011-10-08 03:40:41 +00:00
p5-Text-Aspell Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Autoformat Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Balanced Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-BibTeX Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:40:46 +00:00
p5-Text-Brew Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-CharWidth Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-ChaSen Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Context-EitherSide Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-CSV Update p5-Text-CSV to 1.21. 2011-10-04 14:50:17 +00:00
p5-Text-CSV-Encoded Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-CSV-Hash Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-CSV_XS Updated p5-Text-CSV_XS to 0.85. 2011-10-04 04:45:22 +00:00
p5-Text-DelimMatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-DHCPLeases Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Diff Update p5-Text-Diff to 1.41. 2011-10-18 09:45:05 +00:00
p5-Text-Diff-HTML Update p5-Text-Diff-HTML-Changes to 0.07. 2011-10-17 10:31:20 +00:00
p5-Text-Diff-Parser Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-DoubleMetaphone Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Emoticon Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Emoticon-MSN Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-FindIndent Update p5-Text-FindIndent to 0.10. 2011-10-16 09:18:28 +00:00
p5-Text-Format Reset maintainer, sketch resigned. 2011-11-28 00:06:17 +00:00
p5-Text-German Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Glob Update p5-Text-Glob to 0.09. 2011-10-12 15:49:17 +00:00
p5-Text-Kakasi Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-LevenshteinXS Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Markdown Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Markdown-Discount Not MAKE_JOBS_SAFE. 2012-01-23 20:54:45 +00:00
p5-Text-Microformat Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-MicroTemplate Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-PDF Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Quoted Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-RecordParser Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Reflow Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Reform Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-RewriteRules Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Sass Update p5-Text-Sass to 0.93. 2011-11-17 07:56:35 +00:00
p5-Text-Shellwords Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-SimpleTable Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-SpellChecker Update p5-Text-SpellChecker to 0.11. 2011-10-12 11:14:23 +00:00
p5-Text-Substitute Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Tabs+Wrap Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-TabularDisplay Update p5-Text-TabularDisplay to 1.28. 2011-10-12 06:38:55 +00:00
p5-Text-Template Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Textile Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Trac Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Typography Initial import of p5-Text-Typography, a thin wrapper for John 2012-01-11 04:31:37 +00:00
p5-Text-Unaccent Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-Unidecode Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-vCard Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-vFile-asData Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-WagnerFischer Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-WikiCreole Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-WikiFormat Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-Text-WrapI18N Use ${RM} -f to avoid failure if no files are found to be removed. 2012-02-02 09:38:24 +00:00
p5-Text-Wrapper Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Atom Update p5-XML-Atom to 0.41. 2011-10-06 15:35:10 +00:00
p5-XML-Atom-SimpleFeed Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Atom-Stream Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-AutoWriter Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Checker Add HOMEPAGE and LICENSE. 2011-10-06 12:17:18 +00:00
p5-XML-Clean Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-DOM Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Dumper Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Elemental Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Encoding Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Entities Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Feed Update p5-XML-Feed to 0.44. 2011-10-07 02:08:10 +00:00
p5-XML-FeedPP Update p5-XML-FeedPP to 0.43. 2011-10-07 02:02:39 +00:00
p5-XML-Filter-BufferText Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Filter-DetectWS Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Filter-DOMFilter-LibXML Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Filter-Reindent Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Filter-SAXT Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Generator Update p5-XML-Generator to 1.04. 2011-10-06 12:13:26 +00:00
p5-XML-Grove Add HOMEPAGE and LICENSE. 2011-10-04 15:37:36 +00:00
p5-XML-Handler-Trees Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Handler-YAWriter Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-LibXML Updated to p5-XML-LibXML to 1.88. 2011-10-04 02:51:40 +00:00
p5-XML-LibXML-Iterator Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-LibXML-Simple Update p5-XML-LibXML-Simple to 0.91. 2011-10-07 07:57:26 +00:00
p5-XML-LibXSLT Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-NamespaceSupport Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Node Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-NodeFilter Add HOMEPAGE and LICENSE. 2011-10-04 05:41:22 +00:00
p5-XML-Parser Revision history for Perl extension XML::Parser. 2011-08-21 11:03:07 +00:00
p5-XML-Parser-Lite-Tree Updated to 0.14 2012-01-26 20:49:58 +00:00
p5-XML-Rabbit Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-RAI Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-RegExp Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-RSS Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:40:46 +00:00
p5-XML-RSS-Parser Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Sablotron Fix build with perl 5.14... I think. Someone who actually knows how to 2011-10-15 17:53:51 +00:00
p5-XML-SAX Use ${RM} -f to avoid failure if no files are found to be removed. 2012-02-02 09:38:24 +00:00
p5-XML-SAX-Expat Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-SAX-Writer Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-SemanticDiff Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Simple drop dependency on p5-Test-Simple and p5-Storable, 2011-08-19 01:21:10 +00:00
p5-XML-Stream Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Tidy Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-TreeBuilder Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-TreePP Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Twig Updated to 3.39 2012-01-26 13:05:56 +00:00
p5-XML-UM Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-Writer Updated to 0.615 2012-01-26 13:07:46 +00:00
p5-XML-Writer-String Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-XPath Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-XPathEngine Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-XQL Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-XSLT Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-XML-XUpdate-LibXML Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-yamcha Revision bump after updating perl5 to 5.14.1. 2011-08-14 14:52:49 +00:00
p5-YAML Updating YAML module for Perl programming language in textproc/p5-YAML from 2011-11-16 08:31:38 +00:00
p5-YAML-LibYAML Updating Perl module YAML::LibYAML and YAML::XS in textproc/p5-YAML-LibYAML 2011-11-16 08:38:26 +00:00
p5-YAML-Syck Updating YAML::Syck Perl module in textproc/p5-YAML-Syck from 1.15nb1 to 2011-11-16 08:41:44 +00:00
p5-YAML-Tiny Updating YAML::Tiny module of Perl programming language in 2011-11-16 08:45:47 +00:00
par Removed redundant .gz suffix for man pages. 2009-06-12 19:09:35 +00:00
pdfgrep Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
pear-Console_Table Update pear-Console_Table package to 1.1.4. 2010-12-22 15:47:38 +00:00
pear-File_Find Update pear-File_Find package to 1.3.1. 2010-12-22 15:48:47 +00:00
php-dom recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
php-enchant Revbump for 2012-02-06 12:41:29 +00:00
php-intl Change default PKGNAME scheme for PECL packages. 2011-12-17 13:46:27 +00:00
php-json Switch to use json extension bundlede with php-5.2.13, fixing PR pkg/42869. 2010-02-27 03:52:38 +00:00
php-mecab change HOMEPAGE to point github page (original URL is not available anymore). 2012-01-20 08:41:01 +00:00
php-pspell Replace PHP_VERSION_REQD with PHP_VERSIONS_ACCEPTED. This unbreaks bulk builds (pbulk and distbb) 2011-10-20 09:10:03 +00:00
php-wddx Remove the case of PKG_PHP_VERSION is 4. 2010-03-15 16:48:53 +00:00
php-xsl recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
po-mode Update po-mode to 2.2. 2010-09-16 14:46:04 +00:00
po4a Add patch-ac to import fixes from newer po4a to make newish perl 2011-11-30 10:13:38 +00:00
postgresql-autodoc Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
psgml-mode PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
pxp Recursive bump for lang/ocaml buildlink addition. 2011-12-06 00:19:21 +00:00
py-4Suite Simplify PLIST handling with using python/distutils.mk 2012-02-06 11:47:25 +00:00
py-cabocha distutils pkg, register egg-info. 2012-02-07 11:05:00 +00:00
py-cElementTree Tag the 28 locations that result in a Python 3.1 package as supporting so. 2011-12-03 00:02:14 +00:00
py-cmTemplate Provide PY_COMPILE_ALL and PY_COMPILE_O_ALL to compile all Python 2009-07-08 13:55:58 +00:00
py-creole No compiler is requilred. 2012-02-07 11:25:46 +00:00
py-cssutils No compiler is requilred. 2012-02-06 11:14:13 +00:00
py-docutils No compiler is requilred. 2012-02-04 13:10:16 +00:00
py-elementtree * No need to buildlink with obsolated py-xml, add py-expat to DEPENDS instead. 2012-02-04 12:24:53 +00:00
py-enchant textproc/py-enchant: Fix file permissions error 2011-12-16 17:22:08 +00:00
py-Excelerator Update py-excelerator to 0.6.4.1. 2012-02-04 12:03:32 +00:00
py-expat Tag the 28 locations that result in a Python 3.1 package as supporting so. 2011-12-03 00:02:14 +00:00
py-feedparser No compiler is requilred. 2012-02-04 12:45:36 +00:00
py-FourSuite check-interpreter fix. Thank goodness REPLACE_INTERPRETER supports 2011-07-04 01:13:30 +00:00
py-gdick Revbump for 2012-02-06 12:41:29 +00:00
py-gnosis-utils no compiler is requilred to build. 2012-02-04 05:56:24 +00:00
py-HappyDoc No compiler is required. 2012-02-04 11:48:08 +00:00
py-html2text Tag the 28 locations that result in a Python 3.1 package as supporting so. 2011-12-03 00:02:14 +00:00
py-html5lib Adjust HOMEPAGE 2012-01-21 16:52:44 +00:00
py-jinja LICENSE=modified-bsd 2011-10-16 08:08:44 +00:00
py-jinja2 No compiler is requilred. 2012-02-04 12:35:12 +00:00
py-jsonlib Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-libxml2 distutils pkg, register egg-info. 2012-02-07 11:21:51 +00:00
py-libxslt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-lxml Update py-lxml to 2.3.2. 2012-02-07 11:54:41 +00:00
py-markdown Changes 2.0.3: 2011-04-08 12:37:19 +00:00
py-mecab register egg-info. 2011-10-25 08:37:00 +00:00
py-pdf-parser Initial import of py-pdf-parser-0.3.7: 2012-01-23 23:34:37 +00:00
py-pygments No compiler is requilred. 2012-02-04 12:35:12 +00:00
py-sphinx No compiler is requilred. 2012-02-04 12:35:12 +00:00
py-Tempita Fix typo. 2011-11-13 23:45:06 +00:00
py-textile No compiler is requilred. 2012-02-04 12:35:12 +00:00
py-vobject Set LICENSE and improve COMMENT. 2011-03-01 11:29:05 +00:00
py-Whoosh setting of PYDISTUTILSPKG=yes is not required here for egg pkg. 2012-02-05 13:23:54 +00:00
py-X no compiler is required. 2012-02-06 11:06:42 +00:00
py-xlrd * PYDISTUTILSPKG=yes is not required here for using distutils.mk. 2012-02-04 13:07:50 +00:00
py-xml distutils pkg, so switch to use python/distutils, then register egg-info. 2012-02-04 13:02:41 +00:00
py-yamcha distutils pkg, use python/distutils.mk, then register egg-info. 2012-02-05 13:19:32 +00:00
py-yaml Tag the 28 locations that result in a Python 3.1 package as supporting so. 2011-12-03 00:02:14 +00:00
qprint user-destdir support 2009-07-07 20:52:31 +00:00
qsubst
queequeg Import queequeg-0.91 as textproc/queequeg from wip/queequeg 2011-08-06 22:55:34 +00:00
raptor Revbump for 2012-02-06 12:41:29 +00:00
rarian recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
rasqal Recursive bump for textproc/rasqal buildlink addition. 2011-11-01 06:57:57 +00:00
redland Recursive bump for textproc/rasqal buildlink addition. 2011-11-01 06:57:57 +00:00
regexx Fix build with newer GCC versions 2011-11-24 13:32:56 +00:00
rfcutil Update to rfc-3.2nb7: 2011-11-23 13:30:30 +00:00
rman Support staged installation. 2009-12-12 18:00:19 +00:00
robodoc Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
rtf-tools Collect the pkgsrc patches, plus a lot of other more or less needed 2011-10-06 21:56:15 +00:00
rtfm Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
rubber Enable destdir, and some cleanup 2010-03-12 10:30:04 +00:00
ruby-albino Import ruby19-albino-1.3.3 as textproc/ruby-albino. 2011-08-21 05:01:27 +00:00
ruby-amrita * Add LICENSE. 2010-09-10 08:00:53 +00:00
ruby-bluecloth Update ruby-bluecloth package to 2.2.0. 2011-12-15 15:59:34 +00:00
ruby-builder Fix build problem with ruby18's rdoc. 2011-03-27 13:08:20 +00:00
ruby-cabocha Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-classifier Import ruby19-classifier-1.3.3 as textproc/ruby-classifier. 2011-05-23 18:11:23 +00:00
ruby-coderay Update ruby-coderay package to 1.0.4. 2011-12-15 16:00:42 +00:00
ruby-diff-lcs Update ruby-diff-lcs package to 1.1.3. 2011-09-12 13:38:16 +00:00
ruby-eruby Remove duplicated RUBY_VERSION_SUPPORTED. 2011-12-17 07:22:23 +00:00
ruby-escape Use new stype patch name. 2011-02-25 02:18:50 +00:00
ruby-fast-stemmer Import ruby19-fast-stemmer-1.0.0 as textproc/ruby-fast-stemmer. 2011-05-23 02:56:56 +00:00
ruby-fastercsv Update ruby-fastercsv package to 1.5.4. 2011-06-19 03:37:12 +00:00
ruby-feed-normalizer This pacakge dosen't need to depend on hoe pacakge. 2011-08-12 17:18:16 +00:00
ruby-ferret Fix build problem adding paches from http://cvs.pld-linux.org/. 2011-08-12 17:19:26 +00:00
ruby-haml Update ruby-haml package to 3.1.4. 2011-12-15 16:01:51 +00:00
ruby-hikidoc Avoid use of "#! /usr/bin/env ...". 2011-05-10 11:20:46 +00:00
ruby-hpricot Update ruby-hpricot package to 0.8.5. 2011-12-15 16:02:33 +00:00
ruby-html-parser No MASTER_SITES nor HOMEPAGE aren't available now. 2010-09-10 08:14:36 +00:00
ruby-htree Remove redundant PKGNAME. 2010-09-10 08:14:55 +00:00
ruby-itex2MML Update to ruby-itex2MML to 1.4.5 and should be fix PR pkg/44454. 2011-03-08 15:33:48 +00:00
ruby-json Update ruby-json and ruby-json-pure pacakge to 1.6.3. 2011-12-15 16:11:58 +00:00
ruby-json-pure Update ruby-json and ruby-json-pure pacakge to 1.6.3. 2011-12-15 16:11:58 +00:00
ruby-json-utils Update ruby-json-utils package to 1.6.1. 2011-12-15 16:18:50 +00:00
ruby-kramdown Update textproc/ruby-kramdown to 0.13.4. 2011-12-17 06:25:16 +00:00
ruby-libxml Update ruby-libxml pacakge to 2.2.2. 2011-09-12 13:45:52 +00:00
ruby-markaby Update ruby-markaby to 0.7.2. 2011-08-25 15:42:05 +00:00
ruby-maruku Update textproc/ruby-maruku to 0.6.0. 2010-09-10 08:22:12 +00:00
ruby-mecab Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-multi_json Importing textproc/ruby-multi_json package version 1.0.4. 2011-12-16 12:38:43 +00:00
ruby-native-hyperestraier Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-nokogiri Update ruby-nokogiri package to 1.5.0. (a leaf package) 2011-07-01 15:10:04 +00:00
ruby-nqxml * Add LICENSE. 2010-09-10 08:30:42 +00:00
ruby-oniguruma * Remove .require_paths from PLIST 2011-11-08 15:37:33 +00:00
ruby-plist Update textproc/ruby-plist to 3.1.0. 2010-09-10 08:33:30 +00:00
ruby-psych Change RUBY_VERSION_SUFFIX to RUBY_VERSION_FULL. 2011-11-08 16:33:36 +00:00
ruby-pure-hyperestraier * Add a patch to support both ruby18 and ruby19. 2010-09-10 08:25:16 +00:00
ruby-rdtool Update rub-rdtool package to 0.6.31. 2011-12-13 15:33:46 +00:00
ruby-redcloth Update ruby-redcloth package to 4.2.9. 2011-12-15 16:19:33 +00:00
ruby-rison * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 08:36:45 +00:00
ruby-rttool * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 08:37:41 +00:00
ruby-sary Revbump for 2012-02-06 12:41:29 +00:00
ruby-simple-rss Update textproc/ruby-simple-rss to 1.2.3. 2010-09-10 08:40:15 +00:00
ruby-stringex Update textproc/ruby-stringex package to 1.3.0. 2011-08-12 17:22:41 +00:00
ruby-suikyo * Remove redundant PKGNAME. 2010-09-10 08:40:56 +00:00
ruby-syntax * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 08:41:24 +00:00
ruby-textpow * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 08:41:24 +00:00
ruby-tilt fix regression of executable suffix substitude in PLIST at last update. 2011-09-01 15:01:12 +00:00
ruby-treetop Update textproc/ruby-treetop package to 1.4.10. 2011-08-12 17:23:33 +00:00
ruby-ultraviolet * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 08:41:24 +00:00
ruby-will-paginate Update ruby-will-paginate package to 3.0.2. 2011-12-15 16:20:04 +00:00
ruby-xmlparser Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-xmlscan * Avoid to use "ftools" which has deprecated in ruby19. 2010-09-10 08:49:55 +00:00
ruby-xslt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ruby-yajl Import ruby18-yajl-ruby-1.1.0 as textproc/ruby-yajl. 2012-02-06 14:27:30 +00:00
ruby-yamcha Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
sablotron Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
sary Revbump for 2012-02-06 12:41:29 +00:00
saxon Fix case in filenames with new unzip flags. Sort PLIST. Bump PKGREVISION. 2009-09-29 16:56:43 +00:00
scew Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
scrollkeeper-dtd add scrollkeeper-dtd-1.0, a pkg which installs just a single DTD file 2009-10-27 14:33:14 +00:00
sgrep Initial import of sgrep: 2010-04-14 20:19:28 +00:00
shared-desktop-ontologies Update shared-desktop-ontologies to 0.5 2010-10-25 20:14:49 +00:00
soprano Revbump for 2012-02-06 12:41:29 +00:00
source-highlight gsed related clean up. 2012-01-14 07:44:33 +00:00
stardic PKGREV bump for libXp-less openmotif 2011-12-09 14:36:32 +00:00
sub2srt Update textproc/sub2srt to 0.5.3 2010-06-20 09:39:26 +00:00
sublib recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
subtitleripper Revbump for 2012-02-06 12:41:29 +00:00
suikyo LICENSE=gnu-gpl-v2 2010-05-15 23:57:42 +00:00
suikyo-conv-table Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
suikyo-docs Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
suikyo-elisp PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
swath Import swath-0.4.1 as textproc/swath. 2011-04-06 11:43:39 +00:00
tcl-dom Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tcl-expat Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tcl-xml Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tei Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
tei-p5-schema Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 21:28:46 +00:00
tei-xsl Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
tex-makeindex Update the following TeX Live packages to r21369: tex-bibtex, 2011-03-03 23:13:18 +00:00
tex-makeindex-doc Update the following TeX Live packages to r21369: tex-bibtex, 2011-03-03 23:13:18 +00:00
tex-xmltex xmltex does not use the "tex" command. 2011-03-14 18:53:31 +00:00
tex-xmltex-doc Update tex-xmltex{,-doc} to TeX Live r18835. No functional change. 2011-01-17 22:31:53 +00:00
tex2page Revbump for 2012-02-06 12:41:29 +00:00
texi2html Explicitly disable nls to match PLIST. 2011-01-25 11:29:54 +00:00
texi2roff
tokyodystopia Update tokyodystopia to 0.9.15. 2010-08-06 04:43:23 +00:00
trang Update to 20090818, 6 years of development. 2009-10-31 02:23:31 +00:00
troffcvt Not MAKE_JOBS_SAFE 2010-07-02 20:06:42 +00:00
unac add unac-1.7.0, a C library that removes accents from characters 2009-07-27 13:46:57 +00:00
uni2ascii patch getline to avoid conflict with new standard getline 2011-10-01 12:08:55 +00:00
unroff user-destdir support 2009-07-07 20:25:27 +00:00
untex user-destdir support 2009-07-07 20:25:27 +00:00
uriparser Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
urlview update master sites. remove funet.fi. it does not provide the distfile anymore. 2009-06-05 23:09:53 +00:00
vis Don't include partial RCS ID to confuse the build info generation. 2011-12-26 13:25:45 +00:00
wbxml2 Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
wdiff Update to 1.1.0 2012-02-03 15:04:25 +00:00
WordNet Remove @dirrm entries from PLISTs 2009-06-14 18:17:11 +00:00
writer2latex user-destdir support 2009-07-07 20:25:27 +00:00
xalan-j DESTDIR support 2010-02-12 20:46:14 +00:00
xapian Indent. 2012-01-10 02:41:29 +00:00
xapian-omega Add missing sysutils/file buildlink 2012-01-27 08:08:13 +00:00
xerces-c Fix build on SunOS. 2011-10-12 17:43:14 +00:00
xerces-j Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
xfce4-dict-plugin Revbump for 2012-02-06 12:41:29 +00:00
xhtml user-destdir support 2009-07-07 20:25:27 +00:00
xhtmldiff Remove empty value of LICENSE. 2010-09-23 09:22:13 +00:00
xml-coreutils Initial import of xml-coreutils version 0.8a in the NetBSD Packages 2010-08-29 07:48:28 +00:00
xml2
xml2doc Revbump for 2012-02-06 12:41:29 +00:00
xmlada textproc/xmlada: Remove DESTDIR from library rpaths 2011-12-03 07:30:48 +00:00
xmlcatmgr Added LICENSE. 2010-01-16 23:37:48 +00:00
xmlindent Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
xmlrpc-c Changes 1.16.39: bug fixes 2012-02-06 17:43:18 +00:00
xmlstarlet update to 1.3.1 2012-01-17 14:59:03 +00:00
xmlto update to 0.0.25 2012-01-20 12:36:14 +00:00
xmltoman Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
xmltooling 1.4.2: 2011-07-28 22:24:16 +00:00
xp Remove unnecessary -x flag from unzip that's not supported by 2009-09-29 16:58:49 +00:00
xqilla XQilla is an XQuery and XPath 2 library and command line utility written in C++, 2011-02-23 08:34:14 +00:00
xslide PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
xt Remove manual extract step, infrastructure is smart enough for it nowadays. 2009-10-08 22:41:46 +00:00
yamcha gawk is not required. 2011-11-18 09:01:27 +00:00
yodl recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
zoem Update my email 2011-10-09 10:02:44 +00:00
Makefile + py-pdf-parser. 2012-01-23 23:34:56 +00:00