pkgsrc/textproc
wiz f2a76e89a6 Update to 1.2.12:
Xapian-core 1.2.12 (2012-06-27):

build system:

* 1.2.11 had its library version information incorrectly set.  This resulted in
  the shared library having an incorrect SONAME - e.g. on Linux,
  libxapian.so.21 instead of libxapian.so.22.  This release has been made to
  fix this problem.

documentation:

* AUTHORS: Add the GSoC students.

Xapian-core 1.2.11 (2012-06-26):

API:

* Add new QueryParser::STEM_ALL_Z stemming strategy, which stems all terms and
  adds a Z prefix.  (Patch from Sehaj Singh Kalra, fixes ticket#562)

* Add TermGenerator::set_stemming_strategy() method, with strategies which
  correspond to those of QueryParser.  Based on patch from Sehaj Singh Kalra,
  with some tweaks for adding term positions in more cases.  (Fixes ticket#563)

* Correct "BM25Weight" to "TradWeight" in exception message from TradWeight.

* We were failing to call init() for user-defined Weight objects providing the
  term-independent weight.  These now get called with init(0.0).

* Xapian::Auto::open_stub() now throws a Xapian::DatabaseOpeningError exception
  if the stub file can't be opened.  Previously we failed to check for this
  condition, which resulted in us treating the file as empty.

testsuite:

* When the testsuite is using valgrind, we used to run remote servers under
  valgrind too (but with --tool=none) to get consistent behaviour as valgrind's
  emulation of x87 excess precision isn't exact.  Now we only do this if x87 FP
  instructions are actually in use (which means x86 architecture and configure
  run with --disable-sse).

* Make sure XAPIAN_MAX_CHANGESETS gets unset after replication testcases which
  set it, so further testcases don't waste time generating changesets.

* Improved test coverage (including more tests for closed databases -
  ticket#337).

brass backend:

* After closing the database, methods which try to use the termlist would throw
  FeatureUnavailableError with message "Database has no termlist", assuming
  that the termlist table not being open meant it wasn't present.  Fix to check
  if the postlist_table is open to determine which case we're in.

chert backend:

* After closing the database, methods which try to use the termlist would throw
  FeatureUnavailableError with message "Database has no termlist", assuming
  that the termlist table not being open meant it wasn't present.  Fix to check
  if the postlist_table is open to determine which case we're in.

inmemory backend:

* Check if the database is closed in metadata_keys_begin() for InMemory
  Databases.

build system:

* xapian-config: Don't interpret a missing .la file as meaning that we only
  have static libraries.

documentation:

* Fix API documentation for Query constructors - both XOR and ELITE_SET can
  take any number of subqueries, not only exactly two.

* Backport missing API documentation comments for operator++ and operator*
  methods or PositionIterator, PostingIterator and TermGenerator.

* docs/replication.rst: Update documentation - since 1.2.5, the value of
  XAPIAN_MAX_CHANGESETS determines how many changesets we keep.

* docs/admin_notes.rst: Correction - we don't "create a lock file", we "lock a
  file".

* Fix API documentation for TradWeight constructor - "k1" should be "k".

portability:

* configure: Overhaul handling of compilers which pretend to be GCC.  Clang
  is now detected, and we only pass it warning flags it actually understands.
  And we now check for symbol visibility support with Intel's compiler.

* configure: Solaris automatically pulls in library dependencies, so set
  link_all_deplibs_CXX=no there.

* configure: We now check -Bsymbolic-functions for all compilers.

* configure: Enable -Wdouble-promotion for GCC >= 4.6.

* Pass -ldl last when compiling zlib-vg.so, as that seems to be needed on
  Ubuntu 12.04.

* Fix incorrect use of "delete" which should be "delete []".  This is
  undefined behaviour in C++, though the type is POD, so in practice this
  probably worked OK on many platforms.

* In BM25Weight when k1 or b is zero (not the default), we used to multiply
  an uninitialised double by zero, which is undefined behaviour, but in
  practice will often give zero, leading to the desired results.

* xapian.h: Add check for Qt headers being included before us and defining
  'slots' as a macro - if they are, give a clear error advising how to work
  around this (previously compilation would fail with a confusing error).

Xapian-core 1.2.10 (2012-05-09):

API:

testsuite:

* apitest: Extend tradweight1 to test that TradWeight(0) means that wdf and
  document length don't affect the weight of a term.

* termgentest: Check that TermGenerator discards words > 64 bytes.

matcher:

* Don't count unweighted subqueries of MultiAndPostList in percentage
  calculations, as OP_FILTER maps to MultiAndPostList now.  (ticket#590)

brass backend:

* When compacting, if the output database is empty, don't write out a metainfo
  tag.  Take care not to divide by zero when computing the percentage size
  change for a table.

chert backend:

* When compacting, if the output database is empty, don't write out a metainfo
  tag.  Take care not to divide by zero when computing the percentage size
  change for a table.

documentation:

* API documentation:

 + Note version when Database::close() was added.

 + Fix switched lower and upper in API documentation for Weight methods
   get_doclength_lower_bound() and get_doclength_upper_bound().  Correct
   maximum to minimum in get_doclength_lower_bound() comment and note that this
   excludes zero length documents.  Fix "An lower" to "A lower".

* docs/admin_notes.html: Mention that postlist and termlist tables also hold
  value info for chert.  Mention that xapian-chert-update was removed in 1.3.0.
  Mention that you need to use copydatabase from 1.2.x to convert flint to
  chert.

* HACKING: Update section on patches to mention git (git diff and git
  format-patch), and using "-r" with normal diff, and also that ptardiff offers
  a nice way to diff against an unpacked tarball.

debug code:

* Fix use of AssertEq() on NULL, which doesn't compile, at least with recent
  GCC.

Xapian-core 1.2.9 (2012-03-08):

API:

* QueryParser: Fix FLAG_AUTO_SYNONYMS not to enable auto multi-word synonyms
  too (but in a different way to trunk so as to not break the ABI).

matcher:

* Fix issue with running AND, OR and XOR queries against a database with no
  documents in it - this was leading to a divide by zero, which led to
  MSet::get_matches_estimated() reporting 2147483648 on i386.

build system:

* Remove configure's --with-stlport and --with-stlport-compiler options, as
  they don't allow you to actually specify what you need to (at least to use
  the Debian STLport package), and instead document what to pass to configure
  to enable building with STLport (though it seems to no longer be actively
  maintained, and the debug mode (which is probably the most interesting
  feature now) doesn't seem to work on Debian stable).

documentation:

* Document that OP_ELITE_SET with non-term subqueries might pick subqueries
  which don't match anything.  Closes ticket#49.

* Document that you can define a static operator delete method in your subclass
  if deallocation needs to be handled specially.  (Closes ticket#554)

* Assorted minor documentation improvements.

portability:

* Address new warnings from GCC 4.6.

* Fix argument order when linking xapian-check to fix mingw build.
  (ticket#567)

* Add some missing explicit header includes to fix build with STLport.
2012-10-10 16:10:31 +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.8 2012-08-06 20:05:27 +00:00
aspell Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Mark packages as BROKEN if using "pkg" package format on Linux. 2012-04-05 02:58:24 +00:00
aspell-polish recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
aspell-portuguese textproc/aspell-portuguese: Update to version 20070510.0 2012-05-21 10:09:11 +00:00
aspell-romanian textproc/aspell-romanian: Update to version 3.3.2 2012-05-21 09:52:55 +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 textproc/aspell-spanish: Update to version 1.11.2 2012-05-21 09:52:11 +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
biblook
bibparse
bsdgrep-devel Uses cdefs and fts. 2012-03-02 16:23:01 +00:00
btparse Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
c2html Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
cabocha Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
catdoc Convert packages with add --libdir=* to CONFIGURE_ARGS to use 2012-01-17 21:43:18 +00:00
catdoc-tk
cawf
cdif Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
chasen
chasen-base Add security patch for CVE-2011-4000 from official site. 2011-12-11 14:26:27 +00:00
cmigemo Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
coccigrep Update to 1.11 2012-10-01 13:12:21 +00:00
colorit fix PLIST issue caused by CVS directory 2012-05-12 17:20:47 +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 All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
dbtoepub Add missing INSTALLATION_DIRS. 2012-06-24 07:36:17 +00:00
detex user-destdir support 2009-07-07 22:17:24 +00:00
dict-client Update dict-server and dict-client to 1.12.1 2012-07-22 15:32:50 +00:00
dict-dictionaries user-destdir support 2009-07-07 22:17:24 +00:00
dict-mueller7 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
dict-server Update dict-server and dict-client to 1.12.1 2012-07-22 15:32:50 +00:00
dictem Update to 1.0.4 2012-08-25 20:52:24 +00:00
diction More pcre PKGREVISION bumps. 2012-03-03 12:54:15 +00:00
diffsplit Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
diffstat Update diffstat to 1.51. Minor bugfixes. 2009-11-17 03:17:01 +00:00
dikt Revbump after updating graphics/pango 2012-10-08 23:00:34 +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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
doclifter Bump PKGREVISION for man pages fix. 2012-03-22 21:43:54 +00:00
dsssl-docbook-modular Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
dtdparse Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
eb Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
eblook recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ebook-tools Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
ebview Revbump after updating graphics/pango 2012-10-08 23:00:34 +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
enchant recursive bump from libffi shlib major bump 2012-09-15 10:03: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 Update expat to 2.1.0, contains security fixes. 2012-04-01 08:52:43 +00:00
expatobjc
ezxml
FlightCrew Revbump after updating graphics/pango 2012-10-08 23:00:34 +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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
gdome2 recursive bump from libffi shlib major bump 2012-09-15 10:03: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 make sure the "gnome-doc-tool" bash script picks up GNU getopt, 2012-08-29 19:11:12 +00:00
gnome-spell Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
gnome-subtitles Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
grep Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
groff Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
groonga Remove support of ruby19 (Ruby 1.9.2). 2012-09-16 15:30:44 +00:00
gsed Add symlink gnu/man/man1/sed 2012-06-01 19:29:38 +00:00
gtk-doc Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
gtkspell Revbump after updating graphics/pango 2012-10-08 23:00:34 +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
halibut Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
harmony Revision bump associated with the update of lang/ocaml to version 4. 2012-10-08 15:18:20 +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 Fix build on SunOS. 2012-03-02 12:11:01 +00:00
hevea Add destdir support 2010-03-15 21:00:56 +00:00
highlight
hre
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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
hugs-HaXml DESTDIR support 2010-01-29 18:52:35 +00:00
hunspell Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Add MirBSD support and unbreak build on MirOS. No-op on other platforms 2012-07-10 19:14:47 +00:00
iksemel missing parts of recursive revbump for gnutls update. 2012-09-23 10:47:45 +00:00
intltool Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
ipadic
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
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 Use BSD_INSTALL_DATA to fix installation (on SunOS for instance). 2012-03-09 15:18:00 +00:00
ispell-german Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
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
itstool bump PKGREVISION from python default change to 2.7. 2012-03-10 10:56:12 +00:00
ja-grep recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ja-groff Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
ja-sed
jade Fix trivial build error with clang to make room for the more interesting 2012-04-22 20:32:18 +00:00
java-mecab Update mecab to 0.994. 2012-06-10 11:54:44 +00:00
java-native-hyperestraier
java-pure-hyperestraier
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 recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
kakasi Don't install cat pages. Bump revision. 2012-03-06 23:27:15 +00:00
kbanner
kdoc Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
latex2html Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
libclucene Reset maintainer, developer resigned. 2012-04-15 22:07:37 +00:00
libcroco update to 0.6.6 2012-10-10 14:45:34 +00:00
libexttextcat Update to 3.3.1: fixes a broken pkgconfig file. 2012-06-03 20:05:58 +00:00
liblinebreak Update to 2.1: 2011-05-14 07:47:14 +00:00
liblrdf Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
libnxml Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
libplist Replace undefined behavior in patch with defined behavior. PKGREVISION -> 2 2012-09-29 08:39:22 +00:00
libunicode
libunistring Fix HOMEPAGE, COMMENT. 2012-02-14 23:11:47 +00:00
libxml fix comments. 2011-09-01 14:42:09 +00:00
libxml++ Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
libxml++1 Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
libxml2 Changes 2.9.0: 2012-09-15 10:23:38 +00:00
libxslt Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
libyaml Bump PKGREVISION from libyaml-0.1.4 ABI change (shlib major bump). 2012-09-22 11:43:27 +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 Reset maintainer, developer has left the building 2012-04-15 22:00:58 +00:00
lq-sp
lua-expat Update textproc/lua-expat to 1.2.0. 2011-06-04 23:13:40 +00:00
makeindexk Sync makeindexk with TeX Live 2011. 2012-03-04 17:50:16 +00:00
makeztxt Honor LDFLAGS from pkgsrc. 2011-11-29 06:21:02 +00:00
Markdown Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
markdown-mode Update markdown-mode to 1.8.1. 2011-10-03 16:59:39 +00:00
mdoclint Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
mdocml Add CONFLICTS with new man-pages package. For details, see 2012-05-12 07:37:50 +00:00
mecab Update mecab to 0.994. 2012-06-10 11:54:44 +00:00
mecab-base Update mecab to 0.994. 2012-06-10 11:54:44 +00:00
mecab-ipadic No need to buildlink with mecab-base, just BUILD_DEPENDS is sufficient. 2012-02-29 09:10:06 +00:00
mecab-jumandic No need to buildlink with mecab-base, just BUILD_DEPENDS is sufficient. 2012-02-29 09:10:06 +00:00
mecab-naistdic No need to buildlink with mecab-base, just BUILD_DEPENDS is sufficient. 2012-02-29 09:10:06 +00:00
mendexk Sync mendexk with TeX Live 2011. 2012-03-03 22:13:39 +00:00
metauml Let textproc/metauml use kpathsea/texmf.mk instead of teTeX/module.mk; 2009-08-16 21:50:38 +00:00
migemo Remove support of ruby19 (Ruby 1.9.2). 2012-09-16 15:30:44 +00:00
migemo-elisp Bump PKGREVISION from supported ruby version of migemo change. 2012-08-12 11:53:51 +00:00
mxml Call libtool always with --mode. Honour the strip settings of pkgsrc. 2009-11-25 23:31:58 +00:00
mythes Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
namazu Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
nbsed Don't install cat page. Bump version. 2012-03-08 01:12:07 +00:00
ndtpd Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
nxml-mode PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
o3read
ocaml-expat Initial commit of ocaml-expat package, version 0.9.1. 2012-10-10 11:25:57 +00:00
ocaml-text Revision bump associated with the update of lang/ocaml to version 4. 2012-10-08 15:18:20 +00:00
ocaml-tyxml Revision bump associated with the update of lang/ocaml to version 4. 2012-10-08 15:18:20 +00:00
OdfConverter Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
oniguruma Update oniguruma to 5.9.2. 2010-09-10 08:26:38 +00:00
openjade Add patch from Gentoo Linux to fix build with Perl 5.16. 2012-10-04 20:59:24 +00:00
opensp Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-ack Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Biblio-EndnoteStyle Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-cabocha Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-CAM-PDF Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Convert-ASCII-Armour Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Convert-ASN1 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Convert-BER Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Convert-PEM Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Convert-Translit Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Cz-Cstools Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Data-FormValidator Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Data-HexDump Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Dist-Zilla-Plugin-PodWeaver Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Encode Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Encode-Detect Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Encode-Locale Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Feed-Find Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-File-ReadBackwards Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Filter Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-FormValidator-Simple Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-iCal-Parser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Kwalify Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-libxml Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-EN-Inflect Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-EN-Inflect-Number Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-EN-Inflect-Phrase Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-EN-Numbers-Ordinate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-EN-Sentence Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-EN-Tagger Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Identify Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Preferred Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-PT-Stemmer Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Stem Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Stem-Fr Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Stem-It Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Stem-Ru Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Stem-Snowball Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Lingua-Stem-Snowball-Da Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-List-Compare Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-mecab Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-mobiperl Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-native-hyperestraier Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Net-Dict Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Number-Format Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Number-Spell Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF-API2 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF-API2-Simple Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF-Create Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF-Reuse Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF-Reuse-Barcode Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PDF-Table Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Abstract Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Coverage Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Elemental Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Elemental-PerlMunger Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Escapes Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Eventual Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Parser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-POM Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Readme Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Simple Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Spell Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Spell-CommonMistakes Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Strip Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Tests Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Tree Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Pod-Weaver Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-POD2-Base Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-podlators Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-PPI-HTML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Regexp-Common Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Regexp-Copy Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Search-Indexer Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Search-Xapian Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-SGMLS Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Snowball-Norwegian Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Snowball-Swedish Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-Approx Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-BufferStack Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-CamelCase Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-CRC32 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-Errf Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-Flogger Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-Formatter Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-Koremutake Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-RewritePrefix Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-ShellQuote Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-ToIdentifier-EN Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-String-Truncate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Syntax-Highlight-Engine-Kate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Declare Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Plugin-Autoformat Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Plugin-CSV Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Plugin-Latex Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Plugin-Number-Format Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Plugin-YAML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Template-Tiny Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Affixes Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Aspell Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Autoformat Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Balanced Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-BibTeX Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Brew Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-CharWidth Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-ChaSen Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Context-EitherSide Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-CSV Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-CSV-Encoded Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-CSV-Hash Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-CSV_XS Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-DelimMatch Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-DHCPLeases Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Diff Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Diff-HTML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Diff-Parser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-DoubleMetaphone Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Emoticon Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Emoticon-MSN Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-FindIndent Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Format Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-German Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Glob Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Kakasi Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-LevenshteinXS Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Markdown Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Markdown-Discount Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Microformat Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-MicroTemplate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Ngram Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Patch Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-PDF Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Quoted Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-RecordParser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Reflow Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Reform Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-RewriteRules Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Sass Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Shellwords Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-SimpleTable Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-SpellChecker Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Substitute Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Tabs+Wrap Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-TabularDisplay Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Template Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Textile Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Trac Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Typography Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Unaccent Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Unidecode Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-vCard Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-vFile-asData Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-WagnerFischer Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-WikiCreole Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-WikiFormat Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-WrapI18N Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Wrapper Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Text-Xslate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Unicode-LineBreak Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Atom Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Atom-SimpleFeed Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Atom-Stream Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-AutoWriter Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Bare Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Checker Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Clean Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-DOM Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Dumper Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Elemental Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Encoding Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Entities Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Feed Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-FeedPP Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Filter-BufferText Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Filter-DetectWS Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Filter-DOMFilter-LibXML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Filter-Reindent Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Filter-SAXT Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Generator Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Grove Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Handler-Trees Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Handler-YAWriter Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-LibXML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-LibXML-Iterator Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-LibXML-Simple Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-LibXSLT Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-NamespaceSupport Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Node Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-NodeFilter Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Parser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Parser-Lite-Tree Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Rabbit Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-RAI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-RegExp Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-RSS Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-RSS-Parser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Sablotron Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-SAX Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-SAX-Base Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-SAX-Expat Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-SAX-ExpatXS Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-SAX-Writer Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-SemanticDiff Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Simple Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Stream Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Tidy Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Tiny Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-TreeBuilder Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-TreePP Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Twig Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-UM Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Writer Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-Writer-String Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-XPath Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-XPathEngine Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-XQL Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-XSLT Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-XML-XUpdate-LibXML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-yamcha Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-YAML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-YAML-LibYAML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-YAML-Syck Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-YAML-Tiny Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
par
pdfgrep Update to 1.3.0 2012-07-21 14:32:54 +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 - Reset PKG_REVISION by both php53 and php54 are updated. 2012-07-20 12:30:36 +00:00
php-enchant recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
php-intl - Reset PKG_REVISION by both php53 and php54 are updated. 2012-07-20 12:30:36 +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 MASTER_SITES to http one. 2012-03-11 11:50:21 +00:00
php-pspell - Reset PKG_REVISION by both php53 and php54 are updated. 2012-07-20 12:30:36 +00:00
php-wddx - Reset PKG_REVISION by both php53 and php54 are updated. 2012-07-20 12:30:36 +00:00
php-xsl Reset PKGREVISION. 2012-08-17 15:35:24 +00:00
po-mode Update po-mode to 2.2. 2010-09-16 14:46:04 +00:00
po4a Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
postgresql-autodoc Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
psgml-mode Fix build with emacs24. Patches from FreeBSD ports. 2012-08-16 11:54:56 +00:00
pxp Revision bump associated with the update of lang/ocaml to version 4. 2012-10-08 15:18:20 +00:00
py-4Suite CONFLICTS between python modules 2012-10-03 23:40:35 +00:00
py-cabocha All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-cElementTree Remove python24 and all traces of it from pkgsrc. 2012-04-08 19:08:44 +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 Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-cssutils Update for python25 removal. 2012-10-03 22:14:00 +00:00
py-docutils apply missing the first hunk of the patch for PLIST in PR 46573. 2012-09-21 12:45:01 +00:00
py-elementtree All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-empy Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-enchant Remove python24 and all traces of it from pkgsrc. 2012-04-08 19:08:44 +00:00
py-Excelerator Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-expat Fix build of py26-expat against expat-2.0. Bump revision. 2012-05-05 22:16:14 +00:00
py-feedparser Update to 5.1.2. From the changelog: 2012-05-26 16:51:59 +00:00
py-gnosis-utils All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-HappyDoc All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-html2text Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +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 Remove python24 and all traces of it from pkgsrc. 2012-04-08 19:08:44 +00:00
py-libxml2 Update to 2.9.0: same changes as for libxml2 itself. 2012-10-10 16:07:19 +00:00
py-libxslt Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
py-lxml Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
py-markdown Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-markdown2 Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-mecab Update mecab to 0.994. 2012-06-10 11:54:44 +00:00
py-pdf-parser Update to 3.9, which doesn't limit itself to python-2.6. 2012-10-04 20:16:31 +00:00
py-pygments Remove redundant and unnecessary item from description. (Okayed by 2012-07-30 12:43:20 +00:00
py-sphinx give hints for selftest 2012-04-23 16:53: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-Unidecode Initial import of py-Unidecode-0.04.9: 2012-05-30 11:03:50 +00:00
py-vobject Self-conflict; ++pkgrevision 2012-10-03 23:55:20 +00:00
py-Whoosh Remove python24 and all traces of it from pkgsrc. 2012-04-08 19:08:44 +00:00
py-X Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-xlrd Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
py-xml Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
py-yamcha All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-yaml Bump PKGREVISION from libyaml-0.1.4 ABI change (shlib major bump). 2012-09-22 11:43:28 +00:00
qprint
qsubst
queequeg Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
raptor recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
raptor2 recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
rarian Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
rasqal Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
redland Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
regexx Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
regxml Add regxml, from Nhat Minh Le's 2009 Google Summer of Code project. 2012-02-28 17:17:57 +00:00
rfcutil Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
rman Support staged installation. 2009-12-12 18:00:19 +00:00
robodoc
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 Bump PKGREVISION from default python change to 2.7. 2012-03-16 04:31:14 +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 to 1.0.7. 2012-09-16 09:26:10 +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 Update ruby-fast-stemmer to 1.0.1. 2012-04-29 14:32:22 +00:00
ruby-fastercsv Update ruby-fastercsv to 1.5.5. 2012-06-02 01:10: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 Remove unused patches. I forgot to remove them with previous commit. 2012-03-20 01:57:56 +00:00
ruby-haml Update ruby-haml to 3.1.7. 2012-09-16 09:27:05 +00:00
ruby-hikidoc Avoid use of "#! /usr/bin/env ...". 2011-05-10 11:20:46 +00:00
ruby-hpricot Update ruby-hpricot to 0.8.6. 2012-03-18 02:44:58 +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 to 1.7.5. 2012-09-16 14:25:48 +00:00
ruby-json-pure Update ruby-json and ruby-json-pure to 1.7.5. 2012-09-16 14:25:48 +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 ruby-kramdown to 0.14.0. 2012-09-16 11:28:15 +00:00
ruby-libxml Fix build problem with libxml2 2.9.0. 2012-09-27 13:09:11 +00:00
ruby-mab Add ruby-mab package version 0.0.2. 2012-09-16 14:46:27 +00:00
ruby-markaby Update ruby-markaby to 0.7.2. 2011-08-25 15:42:05 +00:00
ruby-maruku Update ruby-maruku to 0.6.1. 2012-09-16 14:24:12 +00:00
ruby-mecab Update mecab to 0.994. 2012-06-10 11:54:44 +00:00
ruby-multi_json Update ruby-multi_json to 1.3.6. 2012-06-02 01:12:29 +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 to 1.5.5. 2012-09-16 11:30:22 +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-pure-hyperestraier * Add a patch to support both ruby18 and ruby19. 2010-09-10 08:25:16 +00:00
ruby-rdtool Update ruby-rdtool to 0.6.37. 2012-06-13 14:43:24 +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 recursive bump from libffi shlib major bump 2012-09-15 10:03: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 ruby-stringex to 1.4.0. 2012-06-02 01:14:14 +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 Update ruby-textpow to 1.3.0. 2012-09-16 11:35:39 +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 Update ruby-ultraviolet to 1.0.0. 2012-09-16 11:32:01 +00:00
ruby-will-paginate Update ruby-will-paginate to 3.0.3. 2012-03-18 02:47:25 +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 PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
ruby-yajl Fix PKGNAME. 2012-05-14 12:15:14 +00:00
ruby-yamcha Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
sablotron Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
sary recursive bump from libffi shlib major bump 2012-09-15 10:03: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
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 to version 0.7.0 2012-03-19 08:53:30 +00:00
soprano Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
source-highlight Recursive bump from boost-libs update. 2012-08-29 11:22:09 +00:00
stardic PKGREV bump for libXp-less openmotif 2011-12-09 14:36:32 +00:00
sub2srt Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
sublib Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +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
suikyo-docs
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 textproc/tcl-expat: Fix non-priviledged build 2012-08-23 17:03:53 +00:00
tcl-tDOM textproc/tcl-tDOM: Fix build on DragonFly 2012-08-28 22:58:09 +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
tei-p5-schema
tei-xsl
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 Reduce tex2page's dependencies on TeX. 2012-03-07 00:33:55 +00:00
texi2html Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
texi2roff
the_silver_searcher Initial import of the_silver_searcher-0.5. 2012-04-13 11:32:58 +00:00
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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Update uni2ascii to 4.18. 2012-02-14 12:04:22 +00:00
unroff
untex
uriparser update to 0.7.7 2012-08-23 15:09:18 +00:00
urlview
vis Uses cdefs. 2012-03-02 16:47:10 +00:00
wbxml2 Fix build on SunOS. 2012-02-16 19:54:38 +00:00
wdiff * Version 1.1.2 - May 2012, by Martin von Gagern 2012-06-01 12:29:46 +00:00
WordNet Recursive PKGREVISION bump for tcl and tk upgrade to 8.5.12 2012-08-21 23:49:18 +00:00
writer2latex
xalan-j DESTDIR support 2010-02-12 20:46:14 +00:00
xapian Update to 1.2.12: 2012-10-10 16:10:31 +00:00
xapian-omega Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 after updating graphics/pango 2012-10-08 23:00:34 +00:00
xhtml
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 Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
xmlada textproc/xmlada: Build with USE_LANGUAGES+= ada 2012-07-08 20:03:08 +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.42: 2012-07-25 20:08:16 +00:00
xmlstarlet Document licence (MIT). 2012-06-27 14:15:31 +00:00
xmlto Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
xmltoman Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +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 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
yelp-xsl update to 3.4.2 2012-07-04 19:56:38 +00:00
yodl Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
zoem Update my email 2011-10-09 10:02:44 +00:00
Makefile Added new ocaml-expat package to Makefile. 2012-10-10 11:26:43 +00:00