pkgsrc/devel
wiz 2b62c4a92a Update to 2.4:
Changes in version 2.4 (2008-11-02):

* %language is an experimental feature.

  We first introduced this feature in test release 2.3b as a cleaner
  alternative to %skeleton.  Since then, we have discussed the possibility of
  modifying its effect on Bison's output file names.  Thus, in this release,
  we consider %language to be an experimental feature that will likely evolve
  in future releases.

* Forward compatibility with GNU M4 has been improved.

* Several bugs in the C++ skeleton and the experimental Java skeleton have been
  fixed.

Changes in version 2.3b (2008-05-27):

* The quotes around NAME that used to be required in the following directive
  are now deprecated:

    %define NAME "VALUE"

* The directive `%pure-parser' is now deprecated in favor of:

    %define api.pure

  which has the same effect except that Bison is more careful to warn about
  unreasonable usage in the latter case.

* Push Parsing

  Bison can now generate an LALR(1) parser in C with a push interface.  That
  is, instead of invoking `yyparse', which pulls tokens from `yylex', you can
  push one token at a time to the parser using `yypush_parse', which will
  return to the caller after processing each token.  By default, the push
  interface is disabled.  Either of the following directives will enable it:

    %define api.push_pull "push" // Just push; does not require yylex.
    %define api.push_pull "both" // Push and pull; requires yylex.

  See the new section `A Push Parser' in the Bison manual for details.

  The current push parsing interface is experimental and may evolve.  More user
  feedback will help to stabilize it.

* The -g and --graph options now output graphs in Graphviz DOT format,
  not VCG format.  Like --graph, -g now also takes an optional FILE argument
  and thus cannot be bundled with other short options.

* Java

  Bison can now generate an LALR(1) parser in Java.  The skeleton is
  `data/lalr1.java'.  Consider using the new %language directive instead of
  %skeleton to select it.

  See the new section `Java Parsers' in the Bison manual for details.

  The current Java interface is experimental and may evolve.  More user
  feedback will help to stabilize it.

* %language

  This new directive specifies the programming language of the generated
  parser, which can be C (the default), C++, or Java.  Besides the skeleton
  that Bison uses, the directive affects the names of the generated files if
  the grammar file's name ends in ".y".

* XML Automaton Report

  Bison can now generate an XML report of the LALR(1) automaton using the new
  `--xml' option.  The current XML schema is experimental and may evolve.  More
  user feedback will help to stabilize it.

* The grammar file may now specify the name of the parser header file using
  %defines.  For example:

    %defines "parser.h"

* When reporting useless rules, useless nonterminals, and unused terminals,
  Bison now employs the terms "useless in grammar" instead of "useless",
  "useless in parser" instead of "never reduced", and "unused in grammar"
  instead of "unused".

* Unreachable State Removal

  Previously, Bison sometimes generated parser tables containing unreachable
  states.  A state can become unreachable during conflict resolution if Bison
  disables a shift action leading to it from a predecessor state.  Bison now:

    1. Removes unreachable states.

    2. Does not report any conflicts that appeared in unreachable states.
       WARNING: As a result, you may need to update %expect and %expect-rr
       directives in existing grammar files.

    3. For any rule used only in such states, Bison now reports the rule as
       "useless in parser due to conflicts".

  This feature can be disabled with the following directive:

    %define lr.keep_unreachable_states

  See the %define entry in the `Bison Declaration Summary' in the Bison manual
  for further discussion.

* Lookahead Set Correction in the `.output' Report

  When instructed to generate a `.output' file including lookahead sets
  (using `--report=lookahead', for example), Bison now prints each reduction's
  lookahead set only next to the associated state's one item that (1) is
  associated with the same rule as the reduction and (2) has its dot at the end
  of its RHS.  Previously, Bison also erroneously printed the lookahead set
  next to all of the state's other items associated with the same rule.  This
  bug affected only the `.output' file and not the generated parser source
  code.

* --report-file=FILE is a new option to override the default `.output' file
  name.

* The `=' that used to be required in the following directives is now
  deprecated:

    %file-prefix "parser"
    %name-prefix "c_"
    %output "parser.c"

* An Alternative to `%{...%}' -- `%code QUALIFIER {CODE}'

  Bison 2.3a provided a new set of directives as a more flexible alternative to
  the traditional Yacc prologue blocks.  Those have now been consolidated into
  a single %code directive with an optional qualifier field, which identifies
  the purpose of the code and thus the location(s) where Bison should generate
  it:

    1. `%code          {CODE}' replaces `%after-header  {CODE}'
    2. `%code requires {CODE}' replaces `%start-header  {CODE}'
    3. `%code provides {CODE}' replaces `%end-header    {CODE}'
    4. `%code top      {CODE}' replaces `%before-header {CODE}'

  See the %code entries in section `Bison Declaration Summary' in the Bison
  manual for a summary of the new functionality.  See the new section `Prologue
  Alternatives' for a detailed discussion including the advantages of %code
  over the traditional Yacc prologues.

  The prologue alternatives are experimental.  More user feedback will help to
  determine whether they should become permanent features.

* Revised warning: unset or unused mid-rule values

  Since Bison 2.2, Bison has warned about mid-rule values that are set but not
  used within any of the actions of the parent rule.  For example, Bison warns
  about unused $2 in:

    exp: '1' { $$ = 1; } '+' exp { $$ = $1 + $4; };

  Now, Bison also warns about mid-rule values that are used but not set.  For
  example, Bison warns about unset $$ in the mid-rule action in:

    exp: '1' { $1 = 1; } '+' exp { $$ = $2 + $4; };

  However, Bison now disables both of these warnings by default since they
  sometimes prove to be false alarms in existing grammars employing the Yacc
  constructs $0 or $-N (where N is some positive integer).

  To enable these warnings, specify the option `--warnings=midrule-values' or
  `-W', which is a synonym for `--warnings=all'.

* Default %destructor or %printer with `<*>' or `<>'

  Bison now recognizes two separate kinds of default %destructor's and
  %printer's:

    1. Place `<*>' in a %destructor/%printer symbol list to define a default
       %destructor/%printer for all grammar symbols for which you have formally
       declared semantic type tags.

    2. Place `<>' in a %destructor/%printer symbol list to define a default
       %destructor/%printer for all grammar symbols without declared semantic
       type tags.

  Bison no longer supports the `%symbol-default' notation from Bison 2.3a.
  `<*>' and `<>' combined achieve the same effect with one exception: Bison no
  longer applies any %destructor to a mid-rule value if that mid-rule value is
  not actually ever referenced using either $$ or $n in a semantic action.

  The default %destructor's and %printer's are experimental.  More user
  feedback will help to determine whether they should become permanent
  features.

  See the section `Freeing Discarded Symbols' in the Bison manual for further
  details.

* %left, %right, and %nonassoc can now declare token numbers.  This is required
  by POSIX.  However, see the end of section `Operator Precedence' in the Bison
  manual for a caveat concerning the treatment of literal strings.

* The nonfunctional --no-parser, -n, and %no-parser options have been
  completely removed from Bison.

Changes in version 2.3a, 2006-09-13:

* Instead of %union, you can define and use your own union type
  YYSTYPE if your grammar contains at least one <type> tag.
  Your YYSTYPE need not be a macro; it can be a typedef.
  This change is for compatibility with other Yacc implementations,
  and is required by POSIX.

* Locations columns and lines start at 1.
  In accordance with the GNU Coding Standards and Emacs.

* You may now declare per-type and default %destructor's and %printer's:

  For example:

    %union { char *string; }
    %token <string> STRING1
    %token <string> STRING2
    %type  <string> string1
    %type  <string> string2
    %union { char character; }
    %token <character> CHR
    %type  <character> chr
    %destructor { free ($$); } %symbol-default
    %destructor { free ($$); printf ("%d", @$.first_line); } STRING1 string1
    %destructor { } <character>

  guarantees that, when the parser discards any user-defined symbol that has a
  semantic type tag other than `<character>', it passes its semantic value to
  `free'.  However, when the parser discards a `STRING1' or a `string1', it
  also prints its line number to `stdout'.  It performs only the second
  `%destructor' in this case, so it invokes `free' only once.

  [Although we failed to mention this here in the 2.3a release, the default
  %destructor's and %printer's were experimental, and they were rewritten in
  future versions.]

* Except for LALR(1) parsers in C with POSIX Yacc emulation enabled (with `-y',
  `--yacc', or `%yacc'), Bison no longer generates #define statements for
  associating token numbers with token names.  Removing the #define statements
  helps to sanitize the global namespace during preprocessing, but POSIX Yacc
  requires them.  Bison still generates an enum for token names in all cases.

* Handling of traditional Yacc prologue blocks is now more consistent but
  potentially incompatible with previous releases of Bison.

  As before, you declare prologue blocks in your grammar file with the
  `%{ ... %}' syntax.  To generate the pre-prologue, Bison concatenates all
  prologue blocks that you've declared before the first %union.  To generate
  the post-prologue, Bison concatenates all prologue blocks that you've
  declared after the first %union.

  Previous releases of Bison inserted the pre-prologue into both the header
  file and the code file in all cases except for LALR(1) parsers in C.  In the
  latter case, Bison inserted it only into the code file.  For parsers in C++,
  the point of insertion was before any token definitions (which associate
  token numbers with names).  For parsers in C, the point of insertion was
  after the token definitions.

  Now, Bison never inserts the pre-prologue into the header file.  In the code
  file, it always inserts it before the token definitions.

* Bison now provides a more flexible alternative to the traditional Yacc
  prologue blocks: %before-header, %start-header, %end-header, and
  %after-header.

  For example, the following declaration order in the grammar file reflects the
  order in which Bison will output these code blocks.  However, you are free to
  declare these code blocks in your grammar file in whatever order is most
  convenient for you:

    %before-header {
      /* Bison treats this block like a pre-prologue block: it inserts it into
       * the code file before the contents of the header file.  It does *not*
       * insert it into the header file.  This is a good place to put
       * #include's that you want at the top of your code file.  A common
       * example is `#include "system.h"'.  */
    }
    %start-header {
      /* Bison inserts this block into both the header file and the code file.
       * In both files, the point of insertion is before any Bison-generated
       * token, semantic type, location type, and class definitions.  This is a
       * good place to define %union dependencies, for example.  */
    }
    %union {
      /* Unlike the traditional Yacc prologue blocks, the output order for the
       * new %*-header blocks is not affected by their declaration position
       * relative to any %union in the grammar file.  */
    }
    %end-header {
      /* Bison inserts this block into both the header file and the code file.
       * In both files, the point of insertion is after the Bison-generated
       * definitions.  This is a good place to declare or define public
       * functions or data structures that depend on the Bison-generated
       * definitions.  */
    }
    %after-header {
      /* Bison treats this block like a post-prologue block: it inserts it into
       * the code file after the contents of the header file.  It does *not*
       * insert it into the header file.  This is a good place to declare or
       * define internal functions or data structures that depend on the
       * Bison-generated definitions.  */
    }

  If you have multiple occurrences of any one of the above declarations, Bison
  will concatenate the contents in declaration order.

  [Although we failed to mention this here in the 2.3a release, the prologue
  alternatives were experimental, and they were rewritten in future versions.]

* The option `--report=look-ahead' has been changed to `--report=lookahead'.
  The old spelling still works, but is not documented and may be removed
  in a future release.
2008-11-07 12:32:32 +00:00
..
aap
acme Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
acr Add DESTDIR support. 2008-06-12 02:14:13 +00:00
acunia-jam Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
adocman Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
aegis Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ald
allegro Add DESTDIR support. 2008-06-12 02:14:13 +00:00
anjuta Update to 2.24.1: 2008-10-29 13:30:06 +00:00
apache-ant It's not much use specifying a path to a java wrapper that may not exist. 2008-10-25 17:43:33 +00:00
apache-ant15 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
apel Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
apr Update to 1.3.3: 2008-09-06 16:39:25 +00:00
apr-util Don't let the build's LDFLAGS be polluted by what provides apr, because apr 2008-11-02 15:05:11 +00:00
apr0 Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
arena Update arena to 0.9.13. 2008-07-18 13:56:42 +00:00
argp libtoolize and add builtin.mk. Bump revision. 2007-12-22 01:40:20 +00:00
argtable
ArX Add DESTDIR support. 2008-06-12 02:14:13 +00:00
as31 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
asm2html Add DESTDIR support. 2008-06-20 01:09:05 +00:00
astyle Don't rename makefile to Makefile, use it directly. Add DESTDIR support. 2007-11-28 19:06:00 +00:00
at-spi Add BUILDLINK_API_DEPENDS.gtk2+=gtk2+>=2.14.0 so this gets a gtk2 with gail. 2008-10-24 19:30:32 +00:00
atf Add DESTDIR support. 2008-06-12 02:14:13 +00:00
atk update to atk-1.24.0. 2008-10-06 16:54:10 +00:00
autoconf Update to 2.63: 2008-10-09 18:21:39 +00:00
autoconf213 Drop maintainership. 2007-09-20 22:12:08 +00:00
autogen Add DESTDIR support. 2008-06-20 01:09:05 +00:00
automake Update to 1.10.1: 2008-03-02 11:33:06 +00:00
automake14 Drop maintainership. 2007-09-20 22:12:08 +00:00
automoc4 Import of automoc4 0.9.84 2008-11-03 10:50:37 +00:00
avl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
avltree Add DESTDIR support. 2008-06-12 02:14:13 +00:00
bcc bcc, bin86 and dev86 conflict with each other. 2008-03-08 00:13:42 +00:00
bglibs Bump default BUILDLINK_API_DEPENDS to 1.104 (the latest). 2008-04-12 20:56:25 +00:00
bin86 Make this build on amd64. Probably doesn't have that good odds of working, 2008-08-02 21:46:33 +00:00
binutils Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bison Update to 2.4: 2008-11-07 12:32:32 +00:00
blame Import blame-1.3.1 as devel/blame. 2008-04-28 20:27:35 +00:00
blib Add DESTDIR support. 2008-06-12 02:14:13 +00:00
bmake Disable bmake regression tests also on AIX. PR 39064. 2008-07-03 11:28:52 +00:00
boaconstructor Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
boehm-gc Remove patch-ad, which breaks self tests on NetBSD-4.99.63/amd64. 2008-05-22 11:45:25 +00:00
boost-build Update boost to 1.36.0. Way too many changes since 1.34 to be listed 2008-09-13 16:14:13 +00:00
boost-docs Update boost to 1.36.0. Way too many changes since 1.34 to be listed 2008-09-13 16:14:13 +00:00
boost-headers Update boost to 1.36.0. Way too many changes since 1.34 to be listed 2008-09-13 16:14:13 +00:00
boost-jam Update boost to 1.36.0. Way too many changes since 1.34 to be listed 2008-09-13 16:14:13 +00:00
boost-libs Update boost to 1.36.0. Way too many changes since 1.34 to be listed 2008-09-13 16:14:13 +00:00
boost-python Update boost to 1.36.0. Way too many changes since 1.34 to be listed 2008-09-13 16:14:13 +00:00
bouml Update bouml from ancient version 2.27 to current version 4.5. The list of 2008-09-01 12:24:54 +00:00
buddy Add DESTDIR support. 2008-06-12 02:14:13 +00:00
bugzilla Update to 2.22.5 2008-08-17 09:21:47 +00:00
bugzilla3 Update to 3.0.5 2008-08-17 09:24:38 +00:00
buildtool Add DESTDIR support. 2008-06-20 01:09:05 +00:00
buildtool-doc
byacc Fix denial of sevice vulnerability in Berkeley yacc (CVE-2008-3196). 2008-07-24 17:13:00 +00:00
bzr Update to 1.6.1. 2008-09-06 05:32:08 +00:00
bzr-gtk Needs msgfmt. From PR 39577. 2008-09-18 08:46:21 +00:00
bzr-svn Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
bzrtools Import bzrtools-1.6.0. 2008-08-26 01:17:51 +00:00
c-cpp-reference Add DESTDIR support. 2008-06-20 01:09:05 +00:00
c4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cbrowser Fix path to wish. Add DESTDIR support. Bump revision. 2007-08-30 16:45:39 +00:00
ccache Allow overriding the default cache size cap at compile time. 2008-05-22 14:20:08 +00:00
cdecl Add DESTDIR support. 2008-06-20 01:09:05 +00:00
cdk Add DESTDIR support. 2008-06-20 01:09:05 +00:00
cfitsio Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cflow Add i18n support (PR 37581) and mark as DESTDIR safe. 2007-12-21 20:25:29 +00:00
cflow-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
cgdb Another typo fixed that prevented installation 2008-04-23 14:18:03 +00:00
check Marked as DESTDIR ready. 2008-04-16 13:03:43 +00:00
chmlib Add DESTDIR support. 2008-06-12 02:14:13 +00:00
chrpath Import chrpath-0.13 as devel/chrpath. 2008-02-28 23:38:10 +00:00
cmake Substitute /usr/local with ${LOCALBASE} (not ${X11BASE}) 2008-09-13 10:53:51 +00:00
cmake-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
coconut Add DESTDIR support. 2008-06-12 02:14:13 +00:00
codeville Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
cogito Add DESTDIR support. 2008-06-12 02:14:13 +00:00
compiz-bcop Add DESTDIR support. 2008-06-12 02:14:13 +00:00
compizconfig-backend-gconf Add DESTDIR support. 2008-06-12 02:14:13 +00:00
confuse Change my email address. 2008-08-13 13:20:14 +00:00
cook Needs -lintl on Solaris. 2007-11-07 08:37:51 +00:00
cppunit Yet another doxygen catchup. Bump revision. 2008-06-20 11:48:03 +00:00
cproto Add cproto-4.7f. TODO: integrate into pkgsrc compiler infrastructure? 2008-10-25 06:15:38 +00:00
cpuflags add a (c) to this 2008-07-21 10:46:16 +00:00
cqual Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
cscope Supports DESTDIR. 2008-06-07 00:36:57 +00:00
cssc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cut initial import for cut (C Unit Tester) 2008-01-21 11:08:33 +00:00
cvs2cl Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvs2html Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvs2p4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvs2svn Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
cvsclone Initial import of cvsclone: 2008-03-12 10:16:05 +00:00
cvsd
cvsdiff2patch Add devel/cvsdiff2patch, a simple utility which, in the words of the 2007-11-29 10:11:13 +00:00
cvsgraph Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvslock Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cvsps Add user-destdir support, from Aleksey Cheusov in PR 38522. 2008-10-26 23:52:11 +00:00
cvsup Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
cvsup-bin Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvsup-gui Modular Xorg support. 2007-10-13 21:20:54 +00:00
cvsup-gui-bin Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
cvsutils Remove unused doc installation target. 2008-09-17 00:14:23 +00:00
cvsync PR pkg/38615: Hasso Tepper: Fix build on DragonFlyBSD > 1.11. 2008-05-09 10:06:10 +00:00
cxref Update to 1.6b. Minor bugfix release, see bundled ChangeLog for details. 2008-11-06 17:45:46 +00:00
darcs Update darcs to 2.0.2. 2008-07-20 00:38:44 +00:00
darts Update devel/darts to 0.32 which is needed by newer chasen. 2008-08-03 15:21:56 +00:00
ddd
dejagnu Fix DESTDIR. 2008-06-16 13:45:55 +00:00
dev86 DESTDIR support. 2008-08-07 14:05:56 +00:00
devhelp Update to 0.21: 2008-10-24 16:56:55 +00:00
device-driver-doc-de Fix DESTDIR. 2008-04-07 16:53:38 +00:00
devIL Add DESTDIR support. 2008-06-12 02:14:13 +00:00
dia2code Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
diffutils Add DESTDIR support. 2008-06-12 02:14:13 +00:00
distcc Fix DESTDIR. 2008-04-07 16:53:38 +00:00
distccmon-gnome Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
distccmon-gtk Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
dlcompat
dmake Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
dmalloc Add DESTDIR support. 2008-05-23 17:33:37 +00:00
doc++ Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead. 2007-10-16 23:48:58 +00:00
doxygen Revert "doxygen" package to its broken state as requested by 2008-08-19 16:35:25 +00:00
doxymacs Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
eclipse Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
edcommon Use GNUSTEP_INSTALLATION_DOMAIN instead of GNUSTEP_INSTALLATION_DIR. 2008-09-08 06:21:31 +00:00
eel Update to 2.24.1: 2008-10-24 22:04:17 +00:00
eet Update eet to 1.1.0. 2008-10-26 04:48:22 +00:00
electricfence Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
elf
elfsh Update MASTER_SITES/HOMEPAGE, from Zafer Aydogan. 2007-11-18 10:39:56 +00:00
elib Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
emacs-ilisp Make ilisp work with newer clisp (devel/clisp). 2008-10-11 19:25:53 +00:00
emacs20-elib
epydoc Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
equeue Set MAKE_JOBS_SAFE=no 2008-08-23 02:09:28 +00:00
eric3 Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
error
etrace Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
exctags ctags-5.7 (04 Sep 2007) 2007-11-19 06:42:21 +00:00
exempi Downgrade to 2.0.0, 2.0.2 is broken on NetBSD. 2008-09-22 15:04:42 +00:00
ExmanIDE Add DESTDIR support. 2008-06-12 02:14:13 +00:00
fann
fann-devel
fastdep Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ffcall Mark it as not safe for parallel builds. 2008-09-22 00:08:55 +00:00
fhist
flex Also add malloc.c as required by configure. 2008-05-21 12:54:32 +00:00
flim Introduce EMACS_BUILDLINK to decide if Emacs lisp file wrappers are really 2008-10-13 08:07:02 +00:00
florist Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
fortran-utils Needs GNU nroff to format catpages with -mandoc. 2008-02-07 13:24:36 +00:00
fromcvs Fix wrapper scripts togit and tohg to make it work, specifying load 2008-09-15 02:45:21 +00:00
ftnchek
g-wrap Add DESTDIR support. 2008-06-20 01:09:05 +00:00
GConf Update to 2.24.0: 2008-10-09 20:53:48 +00:00
GConf-ui Update to 2.24.0: 2008-10-09 20:53:48 +00:00
gconfmm update to 2.22.0 2008-06-23 16:45:52 +00:00
gcvs Fix broken 64-bit build. 2008-08-17 04:01:37 +00:00
gdb Some changes take a long time. This package had been broken since two 2008-01-06 19:25:09 +00:00
gdb6 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gdbada Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
gdl Update to 2.24.0: 2008-10-27 02:17:12 +00:00
geany Add DESTDIR support. 2008-06-20 01:09:05 +00:00
generate patch-aa checksum was removed from distinfo during 2.4->2.5 update, 2008-06-06 08:28:09 +00:00
gentle Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gettext-asprintf Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gettext-lib Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gettext-m4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext-tools Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gflib Fix DESTDIR. 2008-04-07 17:14:20 +00:00
giblib
gindent Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glade Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glade3 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
glib Remove me as maintainer of some package, clame ownership of a few packages. 2008-05-25 14:45:16 +00:00
glib2 Update to 2.18.2: 2008-10-24 15:59:52 +00:00
glibmm Update to 2.18.1: 2008-10-28 19:05:04 +00:00
global Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gmake Convert to use PLIST_VARS instead of manually passing "@comment " 2008-04-12 22:42:57 +00:00
gmp Update to 4.2.4: 2008-10-09 10:56:16 +00:00
gnome-build Fix path to p5-gettext. 2008-10-29 11:36:54 +00:00
gnome-common Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gnustep-base Changes 1.14.2: 2008-05-25 08:29:21 +00:00
gnustep-examples Catch up with changes in gnustep-base. Bump revision. 2008-06-21 22:43:21 +00:00
gnustep-make Changes 2.0.5: 2008-05-25 08:16:06 +00:00
gnustep-objc
gnustep-objc-lf2 Catch up with gnustep-base changes. Bump revision. 2008-06-21 22:46:36 +00:00
gob2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gobo-eiffel Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
Gorm Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
gperf Supports DESTDIR. 2008-04-04 15:29:51 +00:00
gputils Update to 0.13.5, OK'd by dogcow@. Changes since 0.13.4: 2008-05-02 16:03:00 +00:00
gsoap
gst-plugins0.10-pango Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gtexinfo Install pdftexi2dvi and texi2pdf again. Bump PKGREVISION. 2008-09-06 13:13:30 +00:00
gtl Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
guile-fcgi Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile-gnome Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
guile-gtk Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile-lib Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile-slib Update to 3.2.1 to match slib. 2008-03-04 09:43:45 +00:00
guile-www Mark as destdir ready. 2008-07-14 12:55:56 +00:00
guile16-gtk Mark as destdir ready. 2008-07-14 12:55:56 +00:00
haskell-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
hdf Mark as destdir ready. 2008-07-14 12:55:56 +00:00
hdf5 distinfo is now correct 2008-09-17 05:01:15 +00:00
hoe Update hoe package to 1.7.0. 2008-09-15 09:00:19 +00:00
hptools Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
ht Update package and add lzo dependency. 2008-08-26 23:00:01 +00:00
hugs-HUnit
hugs-unix
idiff Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
idutils
imake Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
intel2gas
isect Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
its4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
jam Update to jam-2.5.2. 2008-03-10 00:09:23 +00:00
java-subversion Version 1.5.3 2008-10-14 06:23:43 +00:00
javacc Fix DESTDIR. 2008-04-07 17:25:56 +00:00
javadeps Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
jflex Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
jgrasp Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
js2-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
kdbg Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
kdesdk3 Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
kdevelop Update to kdevelop 3.5.3 (KDE 3.5.10) 2008-08-27 12:29:04 +00:00
kdevelop-base Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
kdiff3 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ko-po-check Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kscope Really wants flex. 2008-06-04 09:30:07 +00:00
lcc Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ldapsdk Mark some packages as NOT_FOR_BULK_PLATFORM= Linux-*-* 2008-05-26 22:25:25 +00:00
lemon Import cleaned up lemon-1.0 from pkgsrc-wip: 2008-06-23 14:51:15 +00:00
libarena Update to 20080221 snapshot, primarily because I forgot to put 2008-02-22 08:12:58 +00:00
libargparse Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libast Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libatomic_ops Fix distinfo. 2008-10-25 05:46:01 +00:00
libaura
libbegemot Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libbinio Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libbonobo update to 2.24.0 2008-10-16 12:32:29 +00:00
libbonoboui update to 2.24.0 2008-10-16 13:25:02 +00:00
libcfg+ Configure always ignores the value specified with "--prefix" and tries to 2008-01-06 01:07:04 +00:00
libcompizconfig needs intltool 2008-06-01 15:32:31 +00:00
libconfig Change my email address. 2008-08-13 13:20:14 +00:00
libctl
libdatrie ftp://linux.thai.net seems not working well, remove. 2008-03-17 12:52:00 +00:00
libdfui
libdnsres PKGREVISION bump for libevent shlib name change. 2008-10-16 21:52:16 +00:00
libdockapp
libebml Update to 0.7.8: 2008-04-28 09:48:13 +00:00
libelf Use the English version of the homepage rather than the German one. 2008-05-21 21:51:02 +00:00
libetm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libevent Update to 1.4.8: 2008-10-16 21:51:47 +00:00
libextractor Update to version 0.5.20c (needed for gnunet). 2008-08-03 05:07:00 +00:00
libffi Update to libffi-3.0.6. From Aleksej Saushev, who's taking maintainership, 2008-10-11 22:33:56 +00:00
libFoundation Remove unresolvable hosts from MASTER_SITES. 2008-08-23 07:46:59 +00:00
libgail-gnome Update to 1.20.1: 2008-10-25 02:15:50 +00:00
libgcroots Import libgcroots version 0.2.1. 2008-02-29 13:06:36 +00:00
libgetopt Drop clauses 3 and 4 from TNF licenses 2008-04-29 05:46:08 +00:00
libglade update to 2.6.3 2008-10-16 13:28:07 +00:00
libglademm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgnome update to 2.24.1 2008-10-16 13:24:07 +00:00
libgnomemm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgnomeui Bump gtk2 depends -- this needs gail. 2008-10-17 10:41:53 +00:00
libgnomeuimm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libgphoto2 Update to 2.4.2: 2008-08-14 20:30:24 +00:00
libgsf Update to 1.4.10: 2008-10-24 16:46:39 +00:00
libgweather Update to 2.24.1: 2008-10-24 22:27:10 +00:00
libhfs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libiberty Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libidn Update to 1.11: 2008-11-05 16:15:46 +00:00
libinstaller
libixp Import libixp-0.4 from www.suckless.org. 2008-01-06 21:47:09 +00:00
libjit Add missing files missed in the update. 2008-02-18 16:45:21 +00:00
libjudy DESTDIR support and PLIST refresh, per request by maintainer in PR 38343. 2008-04-05 04:26:31 +00:00
libltdl
libmatchbox Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libmcs Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libmemcache Unbreak patch by removing superfluous ". 2008-07-27 13:39:24 +00:00
libmemmgr It is user-destdir, not user-destir. 2008-03-11 18:40:18 +00:00
libmimedir
libmm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libmtp Initial import of libmtp-0.3.1, based on pkgsrc-wip package originally 2008-09-06 23:24:08 +00:00
libnet10
libnet11
libntlm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
liboil Update to 0.3.15, changes undocumented. 2008-07-30 09:53:36 +00:00
liboop Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libosip updated libosip2 to 3.1.0 2008-10-11 21:59:15 +00:00
libowfat Honour PKGMANDIR. 2008-02-03 15:54:27 +00:00
libportlib It is user-destdir, not user-destir. 2008-03-11 18:40:18 +00:00
libproplist
librfuncs The package supports installation to DESTDIR. 2008-04-06 13:24:00 +00:00
librlog Mark as destdir ready. 2008-07-14 12:55:56 +00:00
librsync Mark as destdir ready. 2008-07-14 12:55:56 +00:00
librxspencer Update librxspencer to 3.8.4. 2008-07-21 02:56:55 +00:00
libscsi Drop -Werror, it doesn't appear to be warns safe: 2008-05-20 20:42:04 +00:00
libsexy Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libsexymm Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libsigc++ Update to 2.2.3: 2008-10-16 21:49:12 +00:00
libsigc++1 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libsigsegv Add conflict with libsigsegv25. 2008-09-12 22:14:11 +00:00
libsigsegv25 Fix PKGNAME 2008-09-13 09:10:06 +00:00
libslang Needs serialised build. 2008-06-23 16:15:07 +00:00
libslang2 Try to fix uncompleted PLIST handling. 2008-08-28 07:39:49 +00:00
libsmi add missing manpages and empty directories 2008-07-15 10:18:30 +00:00
libstash
libstatgrab Fix configure botch on NetBSD. 2008-09-16 22:25:50 +00:00
libstree Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libstroke Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libtai #include <unistd.h> in leapsecs_read.c so we can read leapsecs.dat. 2008-07-30 10:36:27 +00:00
libtar wip/vlc-devel wants to create a dlopen()-able module linked against 2008-08-23 08:37:33 +00:00
libtecla Patch out bogus rpaths that point to the build directory. 2008-08-17 05:10:59 +00:00
libthai ftp://linux.thai.net seems not working well, remove. 2008-03-17 12:52:00 +00:00
libtool Added commented-out LICENSE=something. 2007-11-11 11:35:48 +00:00
libtool-base Don't force /bin/sh on Solaris, we want the bootstrap shell. 2008-07-11 11:27:24 +00:00
libtool-info
libts Fix spelling of PKG_DESTDIR_SUPPORT. 2008-07-05 12:02:54 +00:00
libusb The package supports installation to DESTDIR. 2008-06-14 20:00:15 +00:00
libwhisker2 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
libwnck Update to 2.24.1: 2008-10-24 16:50:44 +00:00
lincvs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ltsa Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
lwp Mark as destdir ready. 2008-07-14 12:55:56 +00:00
m4 Add build fix for Interix-3.5, from Bruno Haible. 2008-10-24 12:37:37 +00:00
m17n-lib Update m17n-lib to 1.5.2. 2008-10-09 12:41:17 +00:00
makedepend Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
makedepf90
maketool Reset maintainer on his request. 2007-12-12 20:42:28 +00:00
mantis Update to 1.1.4 2008-11-02 17:25:18 +00:00
meld update meld to 1.2nb1: 2008-07-21 07:53:13 +00:00
mell Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
memcached PKGREVISION bump for libevent shlib name change. 2008-10-16 21:52:16 +00:00
menhir Import menhir-20080912. This is the parser used by the upcoming 2008-10-13 22:45:03 +00:00
mercurial cosmetics: remove unneeded patch (no change to installed pkg) 2008-08-31 13:12:23 +00:00
mico Initial import of mico version 2.3.12. 2008-09-02 07:18:26 +00:00
mk-files Wrote ${.ALLSRC} instead of $> to make the file more readable for those 2008-01-05 21:48:53 +00:00
mkcmd Support user-destdir. 2008-08-19 23:41:05 +00:00
mono-addins Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mono-tools Update to mono-tools 2.0, part of mono 2.0 2008-10-07 13:26:57 +00:00
monodevelop Bump PKGREVISION for previous 2008-10-30 14:38:12 +00:00
monotone Add a test target. 2008-09-13 16:19:15 +00:00
monotone-server Bump version to 0.41 to reflect devel/monotone update. 2008-09-05 20:50:04 +00:00
monotone-viz Checksums for patch-a{a,b} were removed from distinfo during update 2008-06-06 08:29:29 +00:00
mowgli Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mph Fix installation. 2008-04-07 17:43:14 +00:00
nana
nasm Update to 2.05.01: 2008-11-05 12:48:35 +00:00
nbitools
nbpatch Define SIZE_MAX if it is missing. Fixes build on Interix. 2008-10-08 21:35:56 +00:00
ncc Fix segfaults on some sources using nested structs, unions and 2008-11-05 12:29:04 +00:00
ncurses Update to 5.7: 2008-11-05 16:12:38 +00:00
ncursesw Update to 5.7: 2008-11-05 16:12:38 +00:00
netbeans-ide Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
netbsd-iscsi-initiator Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
netbsd-iscsi-target Replaced the deprecated INSTALLATION_DIRS_FROM_PLIST with AUTO_MKDIRS, 2008-02-28 11:58:47 +00:00
netcdf MAKE_JOBS_SAFE=no. From ASau on #pkgsrc. 2007-12-10 10:07:55 +00:00
newfile
newt python support was added, remove from TODO. 2008-04-13 09:59:32 +00:00
noweb Fix patch-ac: Linux mktemp(1) fails to be compatible with the original BSD 2008-03-08 16:28:23 +00:00
nqc
nsis Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
nspr Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
nspr-reference Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
nss Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
ObjectiveLib Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ocaml-findlib Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
ocaml-lwt Import ocaml-lwt-1.1.0 as devel/ocaml-lwt. 2008-09-02 11:19:35 +00:00
ode Disable pentium specific instructions, one reason being that it breaks 2008-10-02 17:53:36 +00:00
ogre Added fixes for g++4. 2007-12-13 10:41:06 +00:00
opal Fix PLIST, bump PKGREVISION. 2008-10-29 21:02:02 +00:00
opencm Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
opengrok Whitespace nits 2008-11-06 23:18:34 +00:00
ossp-uuid Update to version 1.6.1. The relevant ChangeLog entries follow: 2008-07-14 00:02:38 +00:00
p4 Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4-docs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4d Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4pr Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p4web Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
p5-Algorithm-Annotate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Algorithm-C3 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Algorithm-Dependency Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Algorithm-Diff Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Algorithm-Merge Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-aliased Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-AnyEvent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-App-CLI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-App-Cmd Update from version 0.013nb1 to 0.202. 2008-11-02 14:55:16 +00:00
p5-AppConfig Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-AppConfig-Std Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Array-Compare Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Array-Diff Import p5-Array-Diff version 0.05. 2008-10-31 00:21:48 +00:00
p5-Array-RefElem Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-AtExit Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Attribute-Handlers Upgrade from version 0.78nb3 to 0.80. 2008-10-30 20:59:22 +00:00
p5-AutoLoader Update from version 5.66nb1 to 5.67. 2008-10-30 21:24:25 +00:00
p5-B-Hooks-EndOfScope Import p5-B-Hooks-EndOfScope version 0.04. 2008-11-02 22:14:58 +00:00
p5-B-Hooks-OP-Check Fix install with USE_DESTDIR - bump pkgrevision 2008-11-03 13:49:02 +00:00
p5-B-Keywords Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-B-Utils Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Bit-Vector Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-BSD-Resource Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Cache Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Cache-Cache Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Cache-FastMmap Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Cache-Memcached Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Cache-Simple-TimedExpiry Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-capitalization Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Carp-Assert Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Carp-Assert-More Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Carp-Clan Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CLASS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Accessor Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Accessor-Chained Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Accessor-Grouped Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Accessor-Named Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Adapter Updated from version 1.04nb1 to 1.05. 2008-10-30 21:35:34 +00:00
p5-Class-Autouse Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Base Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-C3 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-C3-Componentised Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-C3-XS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Container Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Data-Accessor Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Data-Inheritable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-ErrorHandler Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Factory Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Factory-Util Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Fields Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Gomor Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Inner Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-InsideOut Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Inspector Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-ISA Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Loader Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-MakeMethods Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Method-Modifiers Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-MethodMaker Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-MOP Update from version 0.67 to version 0.68. 2008-10-27 00:03:14 +00:00
p5-Class-ObjectTemplate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-ReturnValue Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Singleton Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Std Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-Trigger Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-WhiteHole Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-XML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Class-XPath Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Clone Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Clone-PP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Compress-PPMd Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Compress-Raw-Bzip2 Import p5-Compress-Raw-Bzip2-2.015 as devel/p5-Compress-Raw-Bzip2. 2008-11-05 15:36:33 +00:00
p5-Compress-Raw-Zlib Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Compress-Zlib Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Config-Any Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Config-Find Import p5-Config-Find-0.23 as devel/p5-Config-Find. 2008-10-31 11:51:49 +00:00
p5-Config-General Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Config-IniFiles Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Config-Std Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Config-Tiny Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Contextual-Return Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CPAN-DistnameInfo Import p5-CPAN-DistnameInfo version 0.06. 2008-10-30 22:46:49 +00:00
p5-Curses Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Curses-UI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Curses-UI-POE Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Alias Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Buffer Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Compare Update from version 1.19nb1 to 1.21. 2008-10-30 21:41:47 +00:00
p5-Data-Denter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Dump Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Dump-Streamer Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Hierarchy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-OptList Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Page Update from versoin 2.00nb1 to 2.01. 2008-10-30 21:58:24 +00:00
p5-Data-Pageset Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Section Import p5-Data-Section version 0.005. 2008-10-30 23:36:03 +00:00
p5-Data-Serializer Update from version 0.47nb1 to 0.48. 2008-11-02 14:29:29 +00:00
p5-Data-ShowTable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-Taxi Really update to 0.95 (DISTNAME). 2008-11-03 06:42:45 +00:00
p5-Data-TemporaryBag Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-UUID Update from version 1.14.8nb1 to 1.14.9 (upstream 1.149). 2008-11-02 16:20:20 +00:00
p5-Data-Visitor Update from version 0.18nb1 to 0.21. 2008-11-02 19:19:36 +00:00
p5-Date-Business Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Date-Calc Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Date-Manip Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Date-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Declare-Constraints-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Caller Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Cover Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Cycle Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Declare Update from version 0.001011nb1 to 0.003003. 2008-11-02 23:34:14 +00:00
p5-Devel-EvalContext Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Events Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Events-Objects Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Gladiator Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-GlobalDestruction Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-LexAlias Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-PPPort Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Profile Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-REPL Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-Size Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-SmallProf Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Devel-StackTrace Update from version 1.1902nb1 to 1.2000 (upstream 1.20). 2008-11-05 23:18:48 +00:00
p5-Devel-Symdump Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-enum Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Error Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Event Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Event-ExecFlow Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Event-RPC Update from version 1.00nb1 to 1.01. 2008-11-05 22:42:24 +00:00
p5-Exception-Class Update from version 1.24nb1 to 1.26. 2008-11-05 23:22:26 +00:00
p5-Expect Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Exporter-Lite Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-AutoInstall Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-CBuilder Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-Command Updated from version 1.14nb1 to 1.15. 2008-11-05 23:35:49 +00:00
p5-ExtUtils-Depends Update from version 0.300nb1 to 0.301. 2008-11-05 23:45:09 +00:00
p5-ExtUtils-F77 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-Install Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-MakeMaker Update from version 6.44nb1 to 6.48. 2008-11-05 23:54:48 +00:00
p5-ExtUtils-ParseXS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-PkgConfig Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ExtUtils-XSBuilder Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-BaseDir Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-chdir Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-DesktopEntry Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-DirSync Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Find-Rule Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Flat Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-FlockDir Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-HomeDir Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-MimeInfo Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Modified Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-NFSLock Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Path-Expand Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-PathConvert Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Policy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-ShareDir Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Slurp Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Temp Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Tempdir Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Type Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-Which Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FileHandle-Fmode Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FileHandle-Unget Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FileKGlob Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FreezeThaw Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Getopt-ArgvFile Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Getopt-Euclid Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Getopt-Long Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Getopt-Long-Descriptive Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Getopt-Mixed Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Getopt-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-gettext Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-glib2 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Graph Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Gtk2-GladeXML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Hash-Case Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Hash-Merge Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Heap Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Hook-LexWrap Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Inline Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Internals Add devel/p5-Internals version 1.1. This is needed by 2008-10-19 09:46:45 +00:00
p5-IO Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-All Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Capture Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Compress-Base Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Compress-Bzip2 Import p5-IO-Compress-Bzip2-2.015 as devel/p5-IO-Compress-Bzip2. 2008-11-05 15:41:14 +00:00
p5-IO-Compress-Zlib Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Digest Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-InSitu Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Interactive Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-LockedFile Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Multiplex Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Null Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Pager Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Prompt Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-String Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-stringy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Stty Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Tee Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-TieCombine Import devel/p5-IO-TieCombine version 1.000. 2008-11-02 14:48:01 +00:00
p5-IO-Tty Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Util Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IO-Zlib Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IPC-PubSub Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IPC-Run Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IPC-Run3 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IPC-Shareable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IPC-SharedCache Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IPC-ShareLite Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-LDAP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lexical-Persistence Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-List-MoreUtils Re-enable building the XS version. I can't remember why I disabled that 2008-11-03 22:07:11 +00:00
p5-Log-Agent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-Dispatch Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-Dispatch-Config Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-Dispatch-DBI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-Dispatch-FileRotate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-Log4perl Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-LogLite Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Log-Trace Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mac-Carbon Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Make Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Memoize Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Memoize-ExpireLRU Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Build Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-CoreList Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-CPANTS-Analyse Import p5-Module-CPANTS-Analyse version 0.82. 2008-10-31 00:30:00 +00:00
p5-Module-Dependency Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-ExtractUse Import p5-Module-ExtractUse version 0.23. 2008-10-30 23:16:20 +00:00
p5-Module-Find Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Install Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Install-RTx Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Install-Substitute Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Load Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Pluggable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Refresh Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-ScanDeps Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Starter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Starter-PBP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Module-Versions-Report Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Moose Update from version 0.59 to version 0.60. 2008-10-27 00:03:21 +00:00
p5-MooseX-AttributeHelpers Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MooseX-ClassAttribute Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MooseX-Getopt Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MooseX-Object-Pluggable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MooseX-Param Import p5-MooseX-Param version 0.02. 2008-10-27 00:00:20 +00:00
p5-MooseX-Types Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mouse Update from version 0.10 to version 0.11. 2008-11-04 05:46:23 +00:00
p5-MRO-Compat Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-namespace-clean Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Net-CIDR Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Net-Netmask Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-NEXT Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Object-Declare Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Object-InsideOut Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Object-Realize-Later Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Object-Signature Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-OLE-Storage_Lite Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-OOTools Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Package-Generator Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PadWalker Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PAR Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PAR-Dist Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Params-Coerce Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Params-Util Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Params-Validate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-parent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Parse-RecDescent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Parse-Yapp Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PatchReader Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Path-Class Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PathTools Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Perl-Critic Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-perl-headers Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Perl-Tidy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Perl6-Export Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Perl6-Export-Attrs Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Perl6-Junction Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Perl6-Slurp Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PerlIO-eol Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PerlIO-via-dynamic Depend on p5-Internals. This is actually needed only for perl-5.10 2008-10-19 09:49:26 +00:00
p5-PerlIO-via-symlink Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PHP-Serialization Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-POE Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-POE-Component-Pluggable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-POE-Test-Loops Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PPI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PPI-XS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-prefork Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Proc-Daemon Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Proc-PID-File Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Proc-Pidfile Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Proc-ProcessTable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Proc-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PV Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Readonly Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Readonly-XS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Regexp-Assemble Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Regexp-MatchContext Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Regexp-Parser Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Regexp-Shellish Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Return-Value Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-Object Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Safe-Hole Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Scalar-Defer Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Scalar-List-Utils Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Schedule-RateLimiter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Scope-Guard Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-SDL Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Set-IntSpan Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Set-Object Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Set-Scalar Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ShipIt Initial import of p5-ShipIt version 0.52 in the NetBSD Packages 2008-10-22 18:40:54 +00:00
p5-Smart-Comments Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Software-License Import p5-Software-License version 0.008. 2008-10-30 23:46:32 +00:00
p5-Sort-Maker Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sort-Versions Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Spiffy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Spoon Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Storable Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-String-Format Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Exporter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Identify Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Install Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Installer Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Name Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Override Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sub-Uplevel Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-subversion Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-SUPER Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-SVN-Mirror Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-SVN-Notify Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-SVN-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Task-Weaken Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-Cap Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-ProgressBar Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-Prompt Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-ReadKey Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-ReadLine Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-ReadPassword Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-Screen Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Term-ShellUI Import p5-Term-ShellUI-0.86 as devel/p5-Term-ShellUI. 2008-10-31 11:43:02 +00:00
p5-Term-Size Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Assertions Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Base Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Class Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-ClassAPI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Cmd Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Deep Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Differences Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Distribution Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Exception Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-File-Contents Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Fixture-DBIC-Schema Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Harness Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Inline Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Kwalitee Import p5-Test-Kwalitee version 1.01. 2008-10-31 00:36:19 +00:00
p5-Test-Log4perl Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-LongString Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Manifest Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Memory-Cycle Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Mock-LWP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-MockModule Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-MockObject Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-NoWarnings Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Object Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Output Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Perl-Critic Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Pod Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Pod-Coverage Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-POE-Server-TCP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Script Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Simple Update to 0.84: 2008-11-05 15:10:35 +00:00
p5-Test-SubCalls Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Taint Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Tester Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Unit Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-use-ok Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-Warn Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-WWW-Selenium Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Test-YAML-Meta Import p5-Test-YAML-Meta version 0.11. 2008-10-31 00:10:53 +00:00
p5-Test-YAML-Valid Import p5-Test-YAML-Valid version 0.03. 2008-10-31 00:06:14 +00:00
p5-Tie-Array-Sorted Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tie-File Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tie-IxHash Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tie-RefHash Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tie-RefHash-Weak Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tie-ToObject Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tree-DAG_Node Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tree-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Tree-Simple-VisitorFactory Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-UNIVERSAL-can Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-UNIVERSAL-isa Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-UNIVERSAL-moniker Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-UNIVERSAL-require Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Variable-Magic Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-VCP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-VCP-Dest-svk Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-version Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Want Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-WeakRef Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
palmpower Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pango Update to 1.22.2: 2008-10-30 08:23:29 +00:00
pangomm pangomm (used to be part of gtkmm) is the official C++ interface for the 2008-10-16 18:01:30 +00:00
papaya Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pardiff Add DESTDIR support. 2008-06-12 02:14:13 +00:00
patch Clarify that devel/patch is the GPL-patch from the FSF. 2008-09-10 10:13:50 +00:00
patchutils Add DESTDIR support. 2008-04-21 08:10:22 +00:00
pccts Added support for installation to DESTDIR. 2008-01-03 23:15:47 +00:00
pcl-cvs Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
pcre Update to 7.8: 2008-09-06 14:25:28 +00:00
pcre++ Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pcre-ocaml Update devel/pcre-ocaml to 5.15.0. 2008-08-31 13:20:34 +00:00
pdcurses If FOO is empty, then ${FOO:S/^/-l/} has a value of "-l". This is not 2008-02-27 21:32:45 +00:00
pedisassem
php-gettext Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-gmp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-memcache Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
php-pcntl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-posix Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-shmop Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-sysvsem Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-sysvshm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
physfs Add DESTDIR support. 2008-06-12 02:14:13 +00:00
picp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
picprg Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
pilrc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pkg-config The va_copy configure checks for the included glib1. 2008-04-16 22:50:43 +00:00
ply Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pmccabe Add HOMEPAGE. 2008-10-18 11:00:09 +00:00
popt Update to popt-1.14: 2008-04-13 23:17:52 +00:00
prcs Bump version or revision of all packages that have a runtime dependency 2007-11-08 19:39:42 +00:00
ProjectCenter Downgrade to normal destdir for now, needs fix up for install commands. 2008-10-01 22:03:02 +00:00
psvn Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
pth Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pthread-sem Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pthread-stublib Fix installation and add DESTDIR support. 2008-01-12 12:35:39 +00:00
ptlib Update to 3.4.2: 2008-10-25 18:12:34 +00:00
pvs Revert previous; pvs includes mk/tex.buildlink3.mk which is not related to 2008-10-13 08:33:13 +00:00
pwlib Fix build failure on -current caused by openssl API change. 2008-08-17 21:46:06 +00:00
py-at-spi Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-babel Update Babel to 0.9.4. 2008-10-23 06:10:30 +00:00
py-checker Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-cheetah Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-compizconfig Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-ctypes Use external libffi to make it usable on amd64. Fix part of a regression 2008-09-17 16:20:21 +00:00
py-curses Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-cursespanel Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-distutils
py-expect Adapted MASTER_SITES to changed project directory at sourceforge. 2007-12-11 22:41:54 +00:00
py-fann Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-game Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-generate Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-gobject Make ${PYPKGPREFIX}-gobject-${PKGVERSION} depend on 2008-10-22 19:55:23 +00:00
py-gobject-shared sync w/ base pkg 2008-10-16 13:52:29 +00:00
py-idle Remove removed Python versions. 2008-04-25 18:28:33 +00:00
py-InlineEgg Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-kjbuckets Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-kqueue Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-logging Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-newt Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-Optik Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-pexpect Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-pqueue
py-Pyro Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-readline Require newer Python base version that has configure output with 2008-07-14 14:43:45 +00:00
py-setuptools Update to py-setuptools-0.6c8: 2008-08-21 16:26:35 +00:00
py-subversion Version 1.5.3 2008-10-14 06:23:43 +00:00
py-TPG Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-unit Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-unitgui Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-urwid Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-zconfig Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-ZopeInterface Add DESTDIR support. 2008-06-12 02:14:13 +00:00
python-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
qconf fix distinfo botch (remove nonexistent patch-aa) 2008-08-23 00:41:55 +00:00
qof Import qof-0.7.5 as devel/qof. 2008-10-28 23:36:39 +00:00
quilt Add --without-rpmbuild to CONFIGURE_ARGS. Otherwise, the configure 2008-02-08 19:29:25 +00:00
ragel Update ragel to 6.3. Patches provided by Matthias-Christian Ott. 2008-10-14 08:35:18 +00:00
rake Update rake to 0.8.3. 2008-10-30 02:44:22 +00:00
rapidsvn Switch to x11/wxGTK26{,-contrib}. 2008-09-22 20:21:03 +00:00
ratfor Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
rcs MAKE_JOBS_SAFE= no 2008-02-15 15:48:46 +00:00
rdp Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
re2c Updated to version 0.12.3. 2007-08-24 14:56:13 +00:00
readline Update from version 5.2nb1 to 5.2nb2. 2008-08-13 11:11:38 +00:00
refinecvs Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
Renaissance Downgrade to destdir for now until GNUstep ownership logic is fixed. 2008-07-10 13:27:02 +00:00
roundup Upgrade roundup to version 1.4.6 in order to fix long-standing security 2008-09-28 02:47:46 +00:00
rox-lib Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
rpc2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rscode Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
rsltc Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
rt-mysql Fixed many pkglint warnings in order to make the build possible for 2007-09-11 22:21:12 +00:00
rt-pgsql
rt3 Add some missing dependency entries and update some outdated versions. 2008-08-24 14:05:16 +00:00
RTFM Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
RTx-RightsMatrix Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
RTx-Shredder Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
rubigen Update rubigen pacakge to 1.3.2. 2008-09-15 09:01:41 +00:00
ruby-abstract Add RubyForge's project page as HOMEPAGE. 2008-08-15 16:03:51 +00:00
ruby-activesupport Update ruby-activesupport to 2.1.1. 2008-09-15 05:31:53 +00:00
ruby-amstd Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:42:24 +00:00
ruby-assistance Add RubyForge's project page as HOMEPAGE. 2008-08-15 16:03:51 +00:00
ruby-bsearch Fix destdir installation problem, noted by private mail from joerg@. 2008-06-21 10:12:59 +00:00
ruby-byaccr Use INSTALLATION_DIRS. 2008-03-23 11:08:52 +00:00
ruby-cmd Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-curses Update ruby-curses package to 1.8.7.72. 2008-08-11 06:59:40 +00:00
ruby-debug Update ruby-debug package to 0.10.2. 2008-09-15 09:02:55 +00:00
ruby-debug-base Update ruby-debug-base package to 0.10.2. 2008-09-15 09:03:58 +00:00
ruby-debug-ide Update ruby-debug-ide package to 0.3.0. 2008-09-15 09:05:24 +00:00
ruby-dhaka Initial import of ruby18-dhaka-2.2.1 as devel/ruby-dhaka. 2008-04-04 15:16:48 +00:00
ruby-eet Import ruby-eet. 2008-10-26 06:12:29 +00:00
ruby-eventmachine Restrict cast with patch-aa to NetBSD only. It should fix PR pkg/39586. 2008-09-23 08:06:04 +00:00
ruby-flexmock Update ruby-flexmock package to 0.8.3. 2008-09-15 08:55:18 +00:00
ruby-gettext Update ruby-gettext package to 1.93.0. 2008-09-15 18:09:29 +00:00
ruby-gnome2-atk Update ruby-gnome2 to 0.18.0. 2008-10-22 10:42:02 +00:00
ruby-gnome2-bonobo Update ruby-gnome2 to 0.18.1. 2008-10-28 13:43:57 +00:00
ruby-gnome2-bonoboui Update ruby-gnome2 to 0.18.1. 2008-10-28 13:43:57 +00:00
ruby-gnome2-gconf Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-gnome2-glib Update ruby-gnome2 to 0.18.0. 2008-10-22 10:42:02 +00:00
ruby-gnome2-libglade Update ruby-gnome2 to 0.18.1. 2008-10-28 13:43:57 +00:00
ruby-gnome2-pango Update ruby-gnome2 to 0.17.0 release. 2008-09-17 00:21:48 +00:00
ruby-heckle Fix build with newer versions of Hoe by providing a default value for 2008-04-21 15:53:55 +00:00
ruby-highline Initial import of ruby18-highline-1.4.0 as devel/ruby-highline. 2008-04-04 15:17:21 +00:00
ruby-inline Update ruby-inline pacakge to 3.7.0. 2008-06-22 16:01:43 +00:00
ruby-linecache Update ruby-linecache package to 0.4.3. 2008-06-22 16:04:34 +00:00
ruby-log4r Initial import of ruby18-log4r-1.0.5 as devel/ruby-log4r. 2008-04-04 15:17:37 +00:00
ruby-logging Initial import of ruby18-logging-0.7.1 as devel/ruby-logging. 2008-04-04 15:17:43 +00:00
ruby-memcache Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:42:24 +00:00
ruby-metaid Initial import of ruby18-metaid-1.0 as devel/ruby-metaid. 2008-04-04 15:17:50 +00:00
ruby-mkrf Initial import of ruby18-mkrf-0.2.3 as devel/ruby-mkrf. 2008-04-04 15:17:58 +00:00
ruby-mocha Update ruby-mocha package to 0.9.1. 2008-09-15 08:49:50 +00:00
ruby-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
ruby-ncurses Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-needle Initial import of ruby18-needle-1.3.0 as devel/ruby-needle. 2008-04-04 15:18:06 +00:00
ruby-parsetree Update ruby-parsetree package to 2.2.0. 2008-06-22 16:05:18 +00:00
ruby-priority-queue Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-racc Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ruby-rbtree Replace HOMEPAGE to RubyForge's project page since previous page was gone. 2008-08-15 16:06:21 +00:00
ruby-rcov Initial import of ruby18-rcov-0.8.1.2.0 as devel/ruby-rcov. 2008-04-04 15:18:21 +00:00
ruby-rcsparse Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:42:24 +00:00
ruby-rd-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
ruby-readline Update distinfo for Ruby 1.8.7 patchlevel 22 with sharing distinfo file 2008-06-20 15:41:55 +00:00
ruby-rgl Update ruby-rgl to version 0.3.1. Changes from version 0.2.3 include: 2008-04-04 15:18:28 +00:00
ruby-rspec Update ruby-rspec package to 1.1.4. 2008-06-22 16:05:53 +00:00
ruby-SDL Update devel/ruby-SDL to 2.0.1. Changes from version 1.3.1 include: 2008-04-23 17:03:49 +00:00
ruby-stream Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-subversion Version 1.5.3 2008-10-14 06:23:43 +00:00
ruby-test-spec Update ruby-test-spec package to 0.9. 2008-09-15 08:47:52 +00:00
ruby-validatable Initial import of ruby18-validatable-1.6.7 as devel/ruby-validatable. 2008-04-04 15:18:49 +00:00
ruby2ruby Update ruby-ruby2ruby package 1.1.9. 2008-06-22 16:07:09 +00:00
rubyforge Update rubyforge package to 1.0.0. 2008-06-22 16:07:40 +00:00
rudiments Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rvm Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rx DESTDIR support. 2008-04-04 15:24:56 +00:00
sablecc Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
scmcvs Add DESTDIR support. 2008-06-12 02:14:13 +00:00
scmgit Update to scmgit-1.6.0.2. In pkgsrc, in Makefile.common .include, 2008-09-17 01:18:42 +00:00
scmgit-base Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
scmgit-docs Update to scmgit-1.6.0.2. In pkgsrc, in Makefile.common .include, 2008-09-17 01:18:42 +00:00
scons
scons-devel Add scons-time to PLIST as outlined in PR pkg/39549. 2008-09-15 08:02:37 +00:00
sdcc Update devel/sdcc to 2.8.0. 2008-10-17 07:20:22 +00:00
SDL Apply patch to first unlock the CD before trying to eject it. Since SDL 2008-10-13 17:15:44 +00:00
SDL-intro-en Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
SDL-intro-ko Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
SDL_gfx Added support for installation to DESTDIR. 2008-01-03 23:22:22 +00:00
SDL_Pango Initial buildlink3 fragment. 2008-01-28 20:15:57 +00:00
SDL_ttf
SDLmm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
semantic Introduce EMACS_BUILDLINK to decide if Emacs lisp file wrappers are really 2008-10-13 08:07:02 +00:00
semi Introduce EMACS_BUILDLINK to decide if Emacs lisp file wrappers are really 2008-10-13 08:07:02 +00:00
sfio Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
sgb
sgi-stl Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
sgi-stl-docs Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
silc-toolkit
slib Update to 3b1 (3.2.1): 2008-03-04 09:41:51 +00:00
sml-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
sparse
sparsehash Add DESTDIR support. 2008-06-20 01:09:05 +00:00
spiff Fix a segfault on NetBSD/amd64 (at least): 2008-07-09 05:02:06 +00:00
splint
st Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
stgit Update to version 0.14.3. 2008-07-25 04:00:59 +00:00
stlport Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
stooop Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
subversion Version 1.5.4 2008-10-29 00:20:23 +00:00
subversion-base Version 1.5.3 2008-10-14 06:23:43 +00:00
sunifdef Import sunifdef-3.1.3. 2008-05-22 03:10:01 +00:00
svk Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
swig Set MAINTAINER to pkgsrc-users@. 2008-08-18 00:55:48 +00:00
syncdir Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
sysexits Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tailor Fix the package to work with python 2.4 2008-09-14 10:20:38 +00:00
tavrasm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tcl-tclcl
tcllib Add DESTDIR support. 2008-06-20 01:09:05 +00:00
teem Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tet3 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tig Update to tig-0.10.1. I cannot find a changelog. If you're interested, 2008-04-06 05:13:45 +00:00
tkcvs
tkdiff Adjust the package, this is version 4.1.4 not 4.1.3. 2008-05-24 14:06:07 +00:00
tla Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
tmake Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tpasm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
tre Removed options.mk, since it is not included anymore. 2008-01-05 21:53:37 +00:00
treecc Add missing library to PLIST. 2008-03-19 11:56:46 +00:00
trio Add DESTDIR support. 2008-06-20 01:09:05 +00:00
tvision Fixed build with sunpro. 2008-01-24 19:27:10 +00:00
ucl
ucpp Fix DESTDIR. 2008-04-07 18:17:34 +00:00
unidiff Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
uno Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
valgrind Requires USE_TOOLS+=perl 2008-09-13 19:07:31 +00:00
vanessa_adt Add DESTDIR support. 2008-06-20 01:09:05 +00:00
vanessa_logger Add DESTDIR support. 2008-06-20 01:09:05 +00:00
vanessa_socket Add DESTDIR support. 2008-06-20 01:09:05 +00:00
vtcl Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
wide Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
xdelta Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xdelta3 Fix DESTDIR. 2008-04-07 18:26:21 +00:00
xfce4-dev-tools Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xmake
xorg-util-macros Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
xxgdb Remove myself as the maintainer for these packages. I haven't used 2008-04-14 23:31:29 +00:00
yasm Update to 0.7.2: 2008-10-24 16:03:17 +00:00
z80-asm Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
ZenTest Update ZenTest package to 3.10.0. 2008-06-22 15:54:37 +00:00
zlib Re-arrange lines to make this more likely to pass pkglint. 2007-08-22 18:36:09 +00:00
Makefile + p5-IO-Compress-Bzip2. 2008-11-05 15:41:50 +00:00