pkgsrc/devel
he 2e3058ee35 Update from version 20070508nb1 to 20071205.
Fixes PR#39557.

Pkgsrc changes:
 o Add a commented-out HOMEPAGE using search.cpan.org

Upstream changes:

  2007 12 05
     -Improved support for perl 5.10: New quote modifier 'p', new
     block type UNITCHECK, new keyword break, improved formatting
     kof given/when.

     -Corrected tokenization bug of something like $var{-q}.

     -Numerous minor formatting improvements.

     -Corrected list of operators controlled by -baao -bbao to include
       . : ? && || and or err xor

     -Corrected very minor error in log file involving incorrect comment
     regarding need for upper case of labels.

     -Fixed problem where perltidy could run for a very long time
     when given certain non-perl text files.

     -Line breaks in un-parenthesized lists now try to follow
     line breaks in the input file rather than trying to fill
     lines.  This usually works better, but if this causes
     trouble you can use -iob to ignore any old line breaks.
     Example for the following input snippet:

        print
        "conformability (Not the same dimension)\n",
        "\t", $have, " is ", text_unit($hu), "\n",
        "\t", $want, " is ", text_unit($wu), "\n",
        ;

      OLD:
        print "conformability (Not the same dimension)\n", "\t", $have, " is ",
          text_unit($hu), "\n", "\t", $want, " is ", text_unit($wu), "\n",;

      NEW:
        print "conformability (Not the same dimension)\n",
          "\t", $have, " is ", text_unit($hu), "\n",
          "\t", $want, " is ", text_unit($wu), "\n",
          ;

  2007 08 01
     -Added -fpsc option (--fixed-position-side-comment). Thanks
     to Ueli Hugenschmidt.  For example -fpsc=40 tells perltidy to
     put side comments in column 40 if possible.

     -Added -bbao and -baao options (--break-before-all-operators
     and --break-after-all-operators) to simplify command lines
     and configuration files.  These define an initial preference
     for breaking at operators which can be modified with -wba and
     -wbb flags.  For example to break before all operators except
     an = one could use --bbao -wba='=' rather than listing every
     single perl operator (except =) on a -wbb flag.

     -Added -kis option (--keep-interior-semicolons).  Use the B<-kis> flag
     to prevent breaking at a semicolon if there was no break there in the
     input file.  To illustrate, consider the following input lines:

        dbmclose(%verb_delim); undef %verb_delim;
        dbmclose(%expanded); undef %expanded;
        dbmclose(%global); undef %global;

     Normally these would be broken into six lines, but
     perltidy -kis gives:

        dbmclose(%verb_delim); undef %verb_delim;
        dbmclose(%expanded);   undef %expanded;
        dbmclose(%global);     undef %global;

     -Improved formatting of complex ternary statements, with indentation
     of nested statements.
      OLD:
        return defined( $cw->{Selected} )
          ? (wantarray)
          ? @{ $cw->{Selected} }
          : $cw->{Selected}[0]
          : undef;

      NEW:
        return defined( $cw->{Selected} )
          ? (wantarray)
              ? @{ $cw->{Selected} }
              : $cw->{Selected}[0]
          : undef;

     -Text following un-parenthesized if/unless/while/until statements get a
     full level of indentation.  Suggested by Jeff Armstorng and others.
     OLD:
        return $ship->chargeWeapons("phaser-canon")
          if $encounter->description eq 'klingon'
          and $ship->firepower >= $encounter->firepower
          and $location->status ne 'neutral';
     NEW:
        return $ship->chargeWeapons("phaser-canon")
          if $encounter->description eq 'klingon'
              and $ship->firepower >= $encounter->firepower
              and $location->status ne 'neutral';
2008-12-18 23:22:21 +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.2: 2008-12-04 17:32:09 +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
apache-maven Import apache-maven-2.0.9 as devel/apache-maven 2008-12-16 07:39:41 +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.1: 2008-12-12 09:08:05 +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 Update to bmake-20081111 (portability changes). 2008-11-11 20:01:58 +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 Bugzilla 2.22.6 is compatible with Perl 5.10. 2008-11-09 20:09:02 +00:00
bugzilla3 * Before 3.0.6, unexpected fatal WebService errors would result in a faultCode that was a string instead of a number. (Bug 446327) 2008-11-09 20:15:17 +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 bzr 1.10 2008-12-05 2008-12-07 02:32:20 +00:00
bzr-gtk Only allow python25, since py-cairo does not 2008-11-13 11:18:05 +00:00
bzr-svn bzr-svn 0.4.16 2008-12-06 2008-12-07 02:32:48 +00:00
bzrtools November 28 2008 2008-12-07 02:36:29 +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 Support PKGMANDIR 2008-12-08 17:24:19 +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 Update to 2.6.2: 2008-11-08 13:20:17 +00:00
cmake-mode Update to 20080606: 2008-11-10 16:08:04 +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 "devel" to CATEGORIES. 2008-11-21 14:56:24 +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 Updated devel/cpuflags to 1.26 2008-12-18 01:01:33 +00:00
cqual Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
cscope When Vim receives a SIGWINCH when its window is resized, it passes the signal 2008-12-17 17:01:15 +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 Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +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
diffuse Mark as only for python 2.4 and 2.5, and py-gtk2>=2.10. 2008-12-09 14:23:31 +00:00
diffutils Let to exactly point to own diff program. 2008-11-24 08:02:16 +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 Fix case-sensitivity problem on Darwin. 2008-12-06 12:25:19 +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 Remove jpeg dependency, eel doesn't check for it itself. 2008-12-02 14:58:06 +00:00
eet Update eet to 1.1.0. 2008-10-26 04:48:22 +00:00
electricfence Updated ElectricFence to 2.1.13.0.1. 2008-12-02 22:26:45 +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 DESTDIR support. 2008-12-18 15:29:11 +00:00
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 Make this patch NetBSD only unbreaking other platforms. GNU iconv switched 2008-11-19 09:30:26 +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 Update flim to 1.14.9. 2008-11-26 13:17:15 +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 Updated geany to 0.15. 2008-11-24 09:37:15 +00:00
generate Allow package to build under QNX. 2008-12-17 15:44:10 +00:00
gentle Mechanical changes to add DESTDIR support to packages that install 2008-03-03 17:45:33 +00:00
gettext Add --disable-csharp to configure flags, to avoid mono being found. 2008-12-04 13:29:43 +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 add missing NetBSD cvs tag to patch file 2008-11-18 17:59:02 +00:00
glib2 regen patch-aa from patch-ak to silence patch warning about missing hunk 2008-12-08 16:10:19 +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 regen 2008-11-21 13:12:12 +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.16.0: 2008-11-25 12:51:47 +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.6: 2008-11-25 12:51:35 +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
libfirm Update to libfirm-1.15.0: 2008-12-17 16:52:35 +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 libgetopt-1.4.4: 2008-12-10 15:30:29 +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 do pkgrevision bump because the binary package changed. 2008-11-18 20:49:46 +00:00
libgsf Update to 1.4.10: 2008-10-24 16:46:39 +00:00
libgweather Update to 2.24.2: 2008-12-02 17:07:19 +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 http://josefsson.org/libidn/releases/moved-to-gnu.org.txt indicates that 2008-11-13 11:31:11 +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 Update to 0.7.1. Changes undocumented, AFAICT. 2008-11-10 11:39:48 +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
libmowgli Update to 0.7.0. Changes undocumented. 2008-11-10 12:08:17 +00:00
libmtp tell configure to ignore doxygen even if present, to avoid build 2008-11-20 21:49:34 +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 libosip to 3.2.0 2008-11-11 22:02:42 +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 Don't even try to install the .a for the loadable modules. 2008-12-03 11:10:34 +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 update to libtool 1.5.26 using libtool/patches/manual.README procedure: 2008-11-19 01:26:52 +00:00
libtool-base Reset PKGREVISION after update to 1.5.26. 2008-11-19 07:50:55 +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
libvolume_id DESTDIR support. 2008-11-26 07:47:56 +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.2: 2008-12-02 17:19:30 +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 Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +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 Mark as only for python-2.5 (newer would work as well, but...). 2008-12-01 13:53:10 +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 Update to 1.1: 2008-12-02 23:08:26 +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 Update to monodevelop 1.9.1 2008-11-20 18:02:53 +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
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 make MAKE_JOBS_SAFE to NO. 2008-11-10 05:06:45 +00:00
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 Add screen.{mlterm,rxvt} to the list of files that dont get installed on SunOS 2008-11-16 17:03:00 +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 Recursive dependency bump for multimedia/x264-devel. It's tough 2008-12-18 17:28:15 +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 Updated from version 0.80 to 0.81. 2008-11-16 23:11:36 +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 Updated from version 0.12nb3 to 0.15. 2008-11-16 23:18:46 +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.71 to version 0.72. 2008-12-09 22:18:40 +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 Update from version 0.29nb1 to 0.30. 2008-12-18 21:28:03 +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 Update from version 0.23 to 0.24. 2008-11-16 23:27:19 +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 Update from version 0.06 to 0.07. 2008-11-16 23:21:17 +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-NYTProf Initial import of p5-Devel-NYTProf version 2.07 in the NetBSD 2008-11-11 10:55:55 +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 Update from version 0.11nb1 to 0.12. 2008-11-16 23:40:36 +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 Update from version 0.10nb1 to 0.11. 2008-11-16 23:42:34 +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 Update from version 1.183nb1 to 1.200. 2008-11-17 22:44:18 +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 Updated from version 0.20nb1 to 0.21. 2008-11-16 23:53:04 +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 Updated from version v0.0.3nb1 to 0.0.4. 2008-11-17 02:54:02 +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 Update from version 1.09nb1 to 1.10. 2008-11-17 02:58:42 +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 Updated from version 0.97nb1 to 0.98. 2008-11-17 03:04:01 +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 Updated to 2.22 2008-12-10 16:50:21 +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 - updated to 1.19 2008-11-11 08:50:19 +00:00
p5-Log-Log4perl - updated to 1.19 2008-11-11 09:02:00 +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 Update from version 0.2808 to 0.3000 (upstream 0.30). 2008-11-17 03:22:03 +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 Updated from version 0.23nb1 to 0.24. 2008-11-17 03:29:25 +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 Update from version 0.84 to version 0.89. 2008-11-07 20:58:07 +00:00
p5-Module-Starter Updated from version 1.470nb1 to 1.500 (upstream 0.50). 2008-11-17 03:37:44 +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 Update from version 1.05nb1 to 1.06. 2008-11-17 03:41:47 +00:00
p5-Moose Update from version 0.62 to version 0.63. 2008-12-09 22:19:14 +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 Update from version 0.06 to version 0.07. 2008-11-12 22:09:34 +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 Updated from version 0.04nb1 to 0.07. 2008-11-17 04:03:23 +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 Update from version 0.08nb1 to 0.09. 2008-11-17 22:51:21 +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 Update from version 3.45nb1 to 3.52. 2008-11-17 04:08:55 +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 Update from version 0.982nb1 to 0.983. 2008-11-17 04:27:33 +00:00
p5-PAR-Dist Fix a typo I overlooked when applying the patch: 2008-12-18 21:44:57 +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 Update from version 0.33nb1 to 0.35. 2008-11-17 04:37:21 +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 Update from version 1.090nb1 to 1.092. 2008-11-17 04:49:00 +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 Update from version 20070508nb1 to 20071205. 2008-12-18 23:22:21 +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 Update from version 0.27nb1 to 0.29. 2008-11-17 04:33:14 +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 Update from version 0.853nb1 to 0.854. 2008-12-16 21:05:35 +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 Update from version 1.19.2nb18 to 2.1.2. 2008-11-17 19:54:26 +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 Add build fix for cases where assert() is not a no-op. See also CPAN bug 2008-12-09 07:24:14 +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 Updated from version 0.979nb1 to 0.981. 2008-11-17 22:12:04 +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 Update to 0.2002: 2008-11-10 19:43:32 +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 Update from version 0.74nb1 to 0.75. 2008-11-17 22:05:14 +00:00
p5-SVN-Notify - updated to 2.78 2008-11-11 09:06:23 +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-Template-Plugin-Handy Initial import of p5-Template-Plugin-Handy version 0.002 in the 2008-11-30 19:21:32 +00:00
p5-Template-Plugin-VMethods Initial import of p5-Template-Plugin-VMethods version 0.03 in the 2008-11-30 13:27:31 +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 Update Term-ReadPassword to version 0.11 in order to make it actually work 2008-12-01 22:19:42 +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 Updated devel/p5-Term-Size to 0.207 2008-12-03 06:50:12 +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 Updated from version 0.10nb1 to 0.12. 2008-11-17 22:14:19 +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 updated to 0.86 2008-12-10 16:52:59 +00:00
p5-Test-SubCalls Update from version 1.07nb1 to 1.08. 2008-11-17 22:22:07 +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 Depend on p5-YAML-Syck, not p5-YAML. Bump revision. 2008-12-17 15:51:08 +00:00
p5-Tie-Array-AsHash Import p5-Tie-Array-AsHash-0.10 as devel/p5-Tie-Array-AsHash. 2008-11-09 12:50:10 +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 Update from version 0.96nb1 to 0.96nb2. 2008-12-18 00:20:10 +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 Updated from version 0.08nb1 to 0.09. 2008-11-17 22:26:14 +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 Updated from version 0.06nb1 to 1.01. 2008-11-17 22:31:51 +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 Update from version 0.19nb1 to 0.25. 2008-11-17 22:37:49 +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.3: 2008-11-24 13:26:42 +00:00
pangomm Update to 2.14.1: 2008-11-10 19:47:54 +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 Update to patchutils-0.3.0. NEWS: 2008-11-09 05:19:57 +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 Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +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 Update to 1.24.0: 2008-12-11 09:09:18 +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-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 fix unreadable data files, bump PKGREVISION 2008-11-18 12:42:32 +00:00
py-generate Allow package to build under QNX. 2008-12-17 16:08:53 +00:00
py-gobject Do not insist on same PKGREVISION for py-gobject-shared. 2008-11-08 10:14:25 +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
qbzr Import qbzr-0.9.5 2008-12-13 06:31:59 +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 package to 1.3.4. 2008-11-15 08:26:24 +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 Fix path to python interpreter. 2008-11-21 09:47:39 +00:00
scons-devel Fix path to python interpreter. 2008-11-21 09:47:39 +00:00
sdcc Update devel/sdcc to 2.8.0. 2008-10-17 07:20:22 +00:00
SDL Enable pulseaudio driver, bump PKGREVISION. 2008-12-18 16:53:01 +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 Update MASTER_SITES and HOMEPAGE, m17n.org does not have SEMI anymore. 2008-11-26 13:25:07 +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 Update SVK to 2.2.1. 2008-11-17 23:33:37 +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.12.1. 2008-11-08 10:44:12 +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 This project is moved to Google Code. 2008-12-08 11:03:48 +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 Updated to version 1.1.4. 2008-11-08 18:50:56 +00:00
xdelta3 Updated to version 3.0u. 2008-11-08 19:57:48 +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 Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +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
zzuf Import zzuf-0.12. 2008-12-09 06:56:52 +00:00
Makefile Add devel/apache-maven. 2008-12-16 07:42:36 +00:00