pkgsrc/devel
wiz bc57368e4c Update to 0.9
bzr 0.9.0  2006-08-11

  SURPRISES:

   * The hard-coded built-in ignore rules have been removed. There are
     now two rulesets which are enforced. A user global one in
     ~/.bazaar/ignore which will apply to every tree, and the tree
     specific one '.bzrignore'.
     ~/.bazaar/ignore will be created if it does not exist, but with
     a more conservative list than the old default.
     This fixes bugs with default rules being enforced no matter what.
     The old list of ignore rules from bzr is available by
     running 'bzr ignore --old-default-rules'.
     (Robert Collins, Martin Pool, John Arbash Meinel)

   * 'branches.conf' has been changed to 'locations.conf', since it can apply
     to more locations than just branch locations.
     (Aaron Bentley)

  IMPROVEMENTS:

   * The revision specifier "revno:" is extended to accept the syntax
     revno:N:branch. For example,
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
     bzr.dev.  (Matthieu Moy)

   * Tests updates to ensure proper URL handling, UNICODE support, and
     proper printing when the user's terminal encoding cannot display
     the path of a file that has been versioned.
     ``bzr branch`` can take a target URL rather than only a local directory.
     Branch.get_parent()/set_parent() now save a relative path if possible,
     and normalize the parent based on root, allowing access across
     different transports. (John Arbash Meinel, Wouter van Heyst, Martin Pool)
     (Malone #48906, #42699, #40675, #5281, #3980, #36363, #43689,
      #42517, #42514)

   * On Unix, detect terminal width using an ioctl not just $COLUMNS.
     Use terminal width for single-line logs from ``bzr log --line`` and
     pending-merge display.  (Robert Widhopf-Fenk, Gustavo Niemeyer)
     (Malone #3507)

   * On Windows, detect terminal width using GetConsoleScreenBufferInfo.
     (Alexander Belchenko)

   * Speedup improvement for 'date:'-revision search. (Guillaume Pinot).

   * Show the correct number of revisions pushed when pushing a new branch.
     (Robert Collins).

   * 'bzr selftest' now shows a progress bar with the number of tests, and
     progress made. 'make check' shows tests in -v mode, to be more useful
     for the PQM status window. (Robert Collins).
     When using a progress bar, failed tests are printed out, rather than
     being overwritten by the progress bar until the suite finishes.
     (John Arbash Meinel)

   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
     profile data for the individual profiled calls, allowing for fine
     grained analysis of performance.
     (Robert Collins, Martin Pool).

   * 'bzr commit' shows a progress bar. This is useful for commits over sftp
     where commit can take an appreciable time. (Robert Collins)

   * 'bzr add' is now less verbose in telling you what ignore globs were
     matched by files being ignored. Instead it just tells you how many
     were ignored (because you might reasonably be expecting none to be
     ignored). 'bzr add -v' is unchanged and will report every ignored
     file. (Robert Collins).

   * ftp now has a test server if medusa is installed. As part of testing,
     ftp support has been improved, including support for supplying a
     non-standard port. (John Arbash Meinel).

   * 'bzr log --line' shows the revision number, and uses only the
     first line of the log message (#5162, Alexander Belchenko;
     Matthieu Moy)

   * 'bzr status' has had the --all option removed. The 'bzr ls' command
     should be used to retrieve all versioned files. (Robert Collins)

   * 'bzr bundle OTHER/BRANCH' will create a bundle which can be sent
     over email, and applied on the other end, while maintaining ancestry.
     This bundle can be applied with either 'bzr merge' or 'bzr pull',
     the same way you would apply another branch.
     (John Arbash Meinel, Aaron Bentley)

   * 'bzr whoami' can now be used to set your identity from the command line,
     for a branch or globally.  (Robey Pointer)

   * 'bzr checkout' now aliased to 'bzr co', and 'bzr annotate' to 'bzr ann'.
     (Michael Ellerman)

   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
     (Aaron Bentley)

   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
     Also updates things like 'http+pycurl://' if pycurl is not present.
     (John Arbash Meinel) (Malone #47821, #52204)

   * New env variable BZR_PROGRESS_BAR, sets the default progress bar type.
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)

   * Improve the help text for 'bzr diff' to explain what various options do.
     (John Arbash Meinel, #6391)

   * 'bzr uncommit -r 10' now uncommits revisions 11.. rather than uncommitting
     revision 10. This makes -r10 more in line with what other commands do.
     'bzr uncommit' also now saves the pending merges of the revisions that
     were removed. So it is safe to uncommit after a merge, fix something,
     and commit again. (John Arbash Meinel, #32526, #31426)

   * 'bzr init' now also works on remote locations.
     (Wouter van Heyst, #48904)

   * HTTP support has been updated. When using pycurl we now support
     connection keep-alive, which reduces dns requests and round trips.
     And for both urllib and pycurl we support multi-range requests,
     which decreases the number of round-trips. Performance results for
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
     http branching is now 2-3x faster, and ``bzr pull`` in an existing
     branch is as much as 4x faster.
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)

   * Performance improvements for sftp. Branching and pulling are now up to
     2x faster. Utilize paramiko.readv() support for async requests if it
     is available (paramiko > 1.6) (John Arbash Meinel)

  BUG FIXES:

    * Fix shadowed definition of TestLocationConfig that caused some
      tests not to run.  (#32587, Erik Bågfors, Michael Ellerman,
      Martin Pool)

    * Fix unnecessary requirement of sign-my-commits that it be run from
      a working directory.  (Martin Pool, Robert Collins)

    * 'bzr push location' will only remember the push location if it succeeds
      in connecting to the remote location. (#49742, John Arbash Meinel)

    * 'bzr revert' no longer toggles the executable bit on win32
      (#45010, John Arbash Meinel)

    * Handle broken pipe under win32 correctly. (John Arbash Meinel)

    * sftp tests now work correctly on win32 if you have a newer paramiko
      (John Arbash Meinel)

    * Cleanup win32 test suite, and general cleanup of places where
      file handles were being held open. (John Arbash Meinel)

    * When specifying filenames for 'diff -r x..y', the name of the file in the
      working directory can be used, even if its name is different in both x
      and y.

    * File-ids containing single- or double-quotes are handled correctly by
      push.  (#52227, Aaron Bentley)

    * Normalize unicode filenames to ensure cross-platform consistency.
      (John Arbash Meinel, #43689)

    * The argument parser can now handle '-' as an argument. Currently
      no code interprets it specially (it is mostly handled as a file named
      '-'). But plugins, and future operations can use it.
      (John Arbash meinel, #50984)

    * Bundles can properly read binary files with a plain '\r' in them.
      (John Arbash Meinel, #51927)

    * Tuning iter_entries() to be more efficient (John Arbash Meinel, #5444)

    * Lots of win32 fixes (the test suite passes again).
      (John Arbash Meinel, #50155)

    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183)

    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)

    * Removals are only committed if they match the filespec (or if there is
      no filespec).  (#46635, Aaron Bentley)

    * smart-add recurses through all supplied directories
      (John Arbash Meinel, #52578)

    * Make the bundle reader extra lines before and after the bundle text.
      This allows you to parse an email with the bundle inline.
      (John Arbash Meinel, #49182)

    * Change the file id generator to squash a little bit more. Helps when
      working with long filenames on windows. (Also helps for unicode filenames
      not generating hidden files). (John Arbash Meinel, #43801)

    * Restore terminal mode on C-c while reading sftp password.  (#48923,
      Nicholas Allen, Martin Pool)

    * Timestamps are rounded to 1ms, and revision entries can be recreated
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)

    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
      use local paths, since it is user visible (John Arbash Meinel, #53653)

    * ``bzr status foo`` when foo was unversioned used to cause a full delta
      to be generated (John Arbash Meinel, #53638)

    * When reading revision properties, an empty value should be considered
      the empty string, not None (John Arbash Meinel, #47782)

    * ``bzr diff --diff-options`` can now handle binary files being changed.
      Also, the output is consistent when --diff-options is not supplied.
      (John Arbash Meinel, #54651, #52930)

    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)

    * Fix Branch.get_parent() to handle the case when the parent is not
      accessible (John Arbash Meinel, #52976)

XXX: 5 self tests fail, see
https://launchpad.net/products/bzr/+bug/56290
2006-08-13 23:47:38 +00:00
..
aap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
acme Use USE_TOOLS=unzip. 2006-06-30 07:11:00 +00:00
acr
acunia-jam USE_TOOLS+=yacc 2006-07-29 05:23:35 +00:00
adocman Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
aegis USE_TOOLS+=yacc 2006-06-20 22:07:38 +00:00
ald Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
allegro Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
anjuta No O_SYNC on DragonFly and FreeBSD. 2006-05-28 13:17:45 +00:00
apache-ant Ant hasn't depended on crimson in a very long time -- it has a built-in 2006-04-26 15:02:19 +00:00
apache-ant15 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apel Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apr Update "apr" package to version 0.9.12.2.0.59 and "apache2" package 2006-07-28 10:38:36 +00:00
argtable Use C++ and INSTALLATION_DIRS. 2006-06-02 15:34:12 +00:00
ArX Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
ArX2 Fixed pkglint warnings. 2006-07-17 15:17:26 +00:00
as31 USE_TOOLS+=yacc 2006-06-20 22:07:38 +00:00
asm2html
astyle Uses C++. 2006-06-06 21:38:34 +00:00
at-spi Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
atk There was a second release of the tarball for 1.12.1 after we 2006-08-04 18:17:47 +00:00
autoconf Update to 2.60: 2006-07-03 21:23:29 +00:00
autoconf213 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
autogen * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
automake * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
automake14 * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
avl * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
avltree Sorted PLISTs. 2005-10-23 16:03:10 +00:00
bcc Rename exp2, GCC 3.4 considers it to be a builtin. 2006-01-08 19:50:30 +00:00
bglibs Bump default dependency so dependent packages get shared bglibs. 2006-08-02 02:30:28 +00:00
binutils Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
bison Update to 2.3: 2006-06-11 13:59:56 +00:00
blib install gtk-doc generated API documentation at the default location, 2006-08-10 17:44:11 +00:00
bmake Mark these packages as NO_MTREE as they are bootstrap packages and don't 2006-07-14 16:24:28 +00:00
boaconstructor Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
boehm-gc Update to 6.8. 2006-07-17 17:08:16 +00:00
bonobo Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
boost-build Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
boost-docs Update boost* to 1.33.1: 2006-01-20 20:40:18 +00:00
boost-headers Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
boost-libs boost-libs uses libbz2.so and libz.so (see lib/libboost_iostreams-mt.so), 2006-07-13 17:59:37 +00:00
boost-python Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
buddy Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
bugzilla Add an explicit run-time dependency on perl because these packages 2006-07-07 22:10:06 +00:00
buildtool Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
buildtool-doc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
byacc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bzr Update to 0.9 2006-08-13 23:47:38 +00:00
c-cpp-reference Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
c4
cbrowser Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ccache
cdecl USE_TOOLS+=lex yacc 2006-06-09 15:50:03 +00:00
cdk Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
cfitsio Uses Fortran. 2006-06-04 10:41:56 +00:00
cflow * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
cflow-mode GNU cflow analyzes a collection of C source files and prints a graph, 2006-02-25 21:43:26 +00:00
cgdb Make this build with gcc4. 2006-06-27 15:25:59 +00:00
check Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
chmlib Does not need gmake (any longer?). Noted by OBATA Akio. 2006-07-20 19:57:06 +00:00
cmake Spell OPSYS as NetBSD as it is supposed to be. 2006-05-21 13:53:05 +00:00
coconut Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
codeville Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cook update cook from 2.22 to 2.26. besides fixing GCC4 builds, many of the 2006-08-09 23:29:15 +00:00
cppunit Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
cpuflags Corrected quoting of author's email address. 2006-07-28 23:22:37 +00:00
cqual Fixed an internal cqual error. Improved the gcqual program. Added a 2006-07-17 22:16:55 +00:00
cscope Add missing RCS Ids. 2006-05-29 13:51:20 +00:00
cssc * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
cvs PERL, not perl_path, is the correct variable name to pass the perl 2006-06-24 06:12:43 +00:00
cvs2cl
cvs2html
cvs2p4 Use SUBST framework. 2006-01-06 18:56:08 +00:00
cvs2svn Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cvsd Update to 1.0.12: 2006-06-11 14:37:25 +00:00
cvsgraph USE_TOOLS+=bison 2006-07-10 00:34:59 +00:00
cvslock Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cvsps Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvsup Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvsup-bin Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cvsup-gui Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cvsup-gui-bin
cvsync Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cxref Don't re-generate the HTML documentation unnecessarily. Patch provided 2006-07-10 11:59:09 +00:00
darcs We include gmp/buildlink3.mk outside of the BUILDLINK_DEPTH guards so 2006-03-22 15:12:07 +00:00
darts Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ddd * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
dejagnu Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
devhelp update to 0.12 2006-08-10 14:07:55 +00:00
device-driver-doc-de Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
devIL Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
diffutils When forcing the gettext detection to be successfull, also include 2006-07-23 12:47:21 +00:00
distcc Modify packages that set PKG_USERS and PKG_GROUPS to follow the new 2006-04-23 00:12:35 +00:00
distccmon-gnome Needs pkg-config. 2006-06-21 23:29:58 +00:00
distccmon-gtk Needs pkg-config. 2006-06-11 13:07:09 +00:00
dlcompat Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
dmake Do not declare (conflicting) sys_errlist on Linux; it is already in 2006-06-27 15:36:04 +00:00
dmalloc Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
doc++ USE_TOOLS+=flex 2006-06-09 15:58:39 +00:00
doxygen Remove teTeX2 from TEX_ACCEPTED, because the teTeX2 packages will be removed 2006-08-10 03:21:39 +00:00
eclipse Move the check-shlibs target from bsd.pkg.mk to bsd.pkg.check.mk where 2006-05-22 22:22:02 +00:00
edcommon Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
eel Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
eel2 update to 2.14.3 2006-08-03 17:37:48 +00:00
eet Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
electricfence DragonFly uses SIGBUS for access violations. Fix the vprint 2006-01-08 20:25:34 +00:00
elf
elfsh Fixed pkglint warnings regarding the SUBST block. 2006-06-18 00:56:11 +00:00
elib "BUILD_ENV" was misnamed. It's actually the environment that is passed 2006-07-21 14:27:56 +00:00
emacs-ilisp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
emacs20-elib Actually create two packages from devel/elib and devel/emacs20-elib. 2006-05-26 19:33:36 +00:00
epydoc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
equeue Initial import of equeue-2.1.3: 2006-08-11 15:42:30 +00:00
eric3 Force compilation of sitecustomize.py 2006-06-21 17:16:34 +00:00
error Don't pass -Werror to the compiler. Fixes the bulk build for NetBSD 2005-12-19 01:47:27 +00:00
exctags Fixed pkglint warnings. 2006-04-13 23:31:19 +00:00
ExmanIDE Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
fastdep Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
ffcall Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
fhist USE_TOOLS+=yacc 2006-06-20 22:07:38 +00:00
flex Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
flim Info files for elisp packages should install into ${EMACS_INFOPREFIX}. 2006-03-30 23:55:38 +00:00
florist Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
fortran-utils Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ftnchek Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
g-wrap Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
g-wrap1 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gail Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gal Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
GConf this builds fine w/o gtk-doc 2006-07-26 12:50:26 +00:00
GConf2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
GConf2-ui Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gconfmm Changes 2.14.2: 2006-07-29 14:09:12 +00:00
gcvs Fix build with gcc4. Patch from Kenneth Freidank in PR 34132. 2006-08-03 18:35:43 +00:00
gdb Mark as BROKEN_IN pkgsrc-2006Q1 according to 2006-05-18 20:29:58 +00:00
gdb6 LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
gdbada Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
generate Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gentle Fixed a pkglint warning. 2005-10-23 14:03:39 +00:00
gettext Changes 0.14.6: 2006-07-26 06:53:02 +00:00
gettext-asprintf Changes 0.14.6: 2006-07-26 06:53:02 +00:00
gettext-lib Changes 0.14.6: 2006-07-26 06:53:02 +00:00
gettext-m4 Changes 0.14.6: 2006-07-26 06:53:02 +00:00
gettext-tools Changes 0.14.6: 2006-07-26 06:53:02 +00:00
giblib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gindent Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
glade Sweep pkgsrc and convert packages that included intltool/buildlink3.mk 2006-07-05 05:37:39 +00:00
glade-gnome Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
glib Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
glib2 Update to 2.12.1: 2006-07-23 14:15:02 +00:00
glibmm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
global * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
gmake Require msgfmt, when NLS is desired. 2006-07-06 12:45:50 +00:00
gmp Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gnome-common Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gnome2-libole2 BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace with 2006-04-13 18:23:29 +00:00
gnustep-base Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
gnustep-examples Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
gnustep-make Fix a check-interpreter error. Bump PKGREVISION. 2006-08-13 10:12:27 +00:00
gnustep-objc Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
gnustep-objc-lf2 Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
gob2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gobo-eiffel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Gorm Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
gperf Changes 3.0.2: 2006-07-09 20:33:45 +00:00
gputils Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gsoap Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
gst-plugins0.10-pango use the DESCR template used by the other gstreamer plugins 2006-07-03 10:57:38 +00:00
gtexinfo Added missing closing brace. Bumped PKGREVISION. 2006-05-23 11:09:04 +00:00
gtl Convert _FETCH_MESSAGE to plain old FETCH_MESSAGE. Remove _FETCH_MESSAGE 2006-07-18 23:27:14 +00:00
gtoolkit-examples Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
guile-fcgi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
guile-gtk Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
guile-lib * Honor PKGINFODIR. 2006-03-30 03:44:41 +00:00
guile-oops * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
guile-slib Simplify PLIST. Bump PKGREVISION. 2006-02-17 17:55:15 +00:00
guile-www * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
guile14-gtk Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
haskell-mode Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
hdf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
hdf5 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
hptools Make this build with gcc4. 2006-06-27 16:10:05 +00:00
ht Needs C++. 2006-05-31 13:02:31 +00:00
hugs-HUnit Initial addition of hugs-HUnit, version 1.1.20060515: 2006-08-03 18:53:21 +00:00
hugs-unix Initial addition of hugs-unix, version 1.0.20060515: 2006-08-03 18:52:02 +00:00
idiff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
idutils Update to 4.2: 2006-08-06 23:10:30 +00:00
intel2gas Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
isect * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
its4 Uses C++. 2006-06-02 14:14:31 +00:00
jam USE_TOOLS+=yacc 2006-07-18 19:05:07 +00:00
javacc Import javacc. 2006-05-11 03:50:02 +00:00
javadeps Reset maintainer, host says: 2006-03-16 22:46:30 +00:00
jgrasp Set USE_JAVA=run because this package needs JRE only. 2006-07-07 03:34:01 +00:00
kdbg Update to 2.0.4 2006-06-13 12:11:44 +00:00
kdesdk3 Update to KDE 3.5.4 2006-08-02 14:15:10 +00:00
kdevelop Update to kdevelop 3.3.4 (part of KDE 3.5.4) 2006-08-02 14:16:45 +00:00
kdevelop-base Update to kdevelop 3.3.4 (part of KDE 3.5.4) 2006-08-02 14:16:45 +00:00
ko-po-check Update ko-po-check to 0.7. 2006-07-27 18:22:55 +00:00
kscope Needs pkg-config. 2006-06-21 13:21:25 +00:00
lcc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ldapsdk Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libargparse Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libast Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libaura Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libbegemot Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libbonobo Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libbonoboui Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libcfg+ Fixed a new pkglint warning. All definitions of BUILDLINK.* variables 2006-07-26 06:09:23 +00:00
libctl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libdfui Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libdnsres Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libdockapp Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
libebml Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libelf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libetm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libevent Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libextractor Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
libffi Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libFoundation Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
libgail-gnome Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgetopt Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libglade Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libglade2 install gtk-doc documentation in the gtk-doc standard path so that it 2006-08-10 14:11:04 +00:00
libglademm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgnome Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgnomemm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgnomeui Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgnomeuimm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgphoto2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libgsf remove --with-html-dir so that the gtk-doc files are found by devhelp, 2006-08-11 09:38:46 +00:00
libhfs Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libiberty Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libidn Update to 0.6.5: 2006-07-10 17:39:45 +00:00
libinstaller Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libjit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libltdl Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libmatchbox Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libmemcache Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libmemmgr Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libmimedir Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libmm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libnet Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libnet11 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libntlm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
liboil The better way to fix the Solaris problem of <stdint.h> is to replace 2006-07-13 18:23:14 +00:00
libole2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
liboop Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libosip Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libportlib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libproplist Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
librfuncs Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
librsync Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libscsi Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsexy Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsigc++ Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsigc++2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsigsegv - USE_LIBTOOL=yes 2006-07-24 13:39:26 +00:00
libslang Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libsmi Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
libstash Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
libstatgrab Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libstree Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
libstroke Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
libtar Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libtecla Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libtool Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
libtool-base use /bin/sh on Solaris, as libtool can cause ksh to dump core under 2006-04-01 11:21:42 +00:00
libtool-info * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
libts Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libusb Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libwhisker2 Add an explicit run-time dependency on perl because these packages 2006-07-07 22:10:06 +00:00
libwnck update to 2.14.3 2006-08-03 17:39:29 +00:00
lincvs USE_LANGUAGES=c c++ 2006-05-22 16:51:42 +00:00
ltsa Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
lwp Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
m4 Update to 1.4.5: 2006-07-18 06:34:41 +00:00
makedepf90 Import makedepf90 from pkgsrc-wip. Packaged by Emil Skoeldberg. 2006-04-13 16:40:59 +00:00
maketool Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
mantis Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
meld needs msgfmt 2006-07-18 08:15:46 +00:00
memcached Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mercurial Update mercurial to 0.9.1. 2006-07-25 22:12:38 +00:00
mk-files Note that this conflicts with the (forthcoming) bootstrap-mk-files package. 2006-07-14 23:06:27 +00:00
mkcmd Fix errno in library files. Never generate extern errno directly. 2006-01-25 15:19:16 +00:00
monotone Update to 0.28: 2006-07-22 19:02:36 +00:00
monotone-server Update to 0.28: depend on monotone-0.28. 2006-07-22 19:02:49 +00:00
monotone-viz "BUILD_ENV" was misnamed. It's actually the environment that is passed 2006-07-21 14:27:56 +00:00
mph Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mrproject Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
nana * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
nasm * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
nbitools * Modify comments in installed config files to match what's happening. 2006-07-05 04:59:47 +00:00
ncurses Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
netbeans-ide Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netbsd-iscsi Fixed pkglint warnings. 2006-06-17 16:52:27 +00:00
netcdf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
newfile Bump PKGREVISION of these packages which affected (fixed) by 2006-02-03 04:43:47 +00:00
newmkdep Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
newt Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
noweb Fixed a pkglint warning. 2006-05-28 17:35:49 +00:00
nqc Uses C++. 2006-06-02 13:48:11 +00:00
nsis Fixed a pkglint warning. 2006-06-17 16:53:30 +00:00
nspr Support 64bit builds on Solaris. 2006-08-05 02:08:32 +00:00
nspr-reference Moved HTML documentation into share/doc/nspr/html. Bumped PKGREVISION. 2006-06-17 20:41:17 +00:00
nss Removed patch-am, which had been added accidentally. The problem that it 2006-07-12 16:32:00 +00:00
oaf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ObjectiveLib Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
ocaml-findlib Added a utility to register and unregister package paths. 2006-05-20 13:47:43 +00:00
ode Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
ogre Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
opencm opencm needs krb5. Allow proper detection based on KRB5BASE instead of 2006-04-19 20:50:46 +00:00
p4 Fixed some pkglint warnings. 2006-06-17 20:44:03 +00:00
p4-docs Fixed pkglint warnings. 2006-03-12 14:31:23 +00:00
p4d Modify packages that set PKG_USERS and PKG_GROUPS to follow the new 2006-04-23 00:12:35 +00:00
p4pr
p4web Add RMD160 checksums. 2005-10-20 21:31:47 +00:00
p5-Algorithm-Annotate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Algorithm-Dependency Update to 1.102: 2006-07-19 22:34:28 +00:00
p5-Algorithm-Diff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Algorithm-Merge Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-AppConfig Fix HOMEPAGE to point to more relevant location. 2006-05-02 03:35:35 +00:00
p5-Array-Compare Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-AtExit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Attribute-Handlers Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Bit-Vector Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-BSD-Resource Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Cache-Cache Update to 1.05: 2006-07-19 22:34:56 +00:00
p5-Cache-Memcached Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Cache-Simple-TimedExpiry Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-capitalization Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Carp-Assert
p5-Carp-Assert-More Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Carp-Clan Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Accessor Updated to 0.25. 2006-04-20 08:07:01 +00:00
p5-Class-Autouse Update to 1.26: 2006-07-19 22:35:28 +00:00
p5-Class-Container Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Data-Inheritable Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-ErrorHandler Initial version of Class-ErrorHandler. 2006-02-15 00:30:01 +00:00
p5-Class-Factory
p5-Class-Factory-Util
p5-Class-Fields
p5-Class-Gomor-Hash
p5-Class-Inner Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Inspector Update to 1.16: 2006-07-19 22:36:01 +00:00
p5-Class-Loader
p5-Class-MakeMethods Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
p5-Class-MethodMaker Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-ObjectTemplate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-ReturnValue Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-Singleton
p5-Class-Trigger Update to 0.10: 2005-11-24 19:00:25 +00:00
p5-Class-WhiteHole Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-XPath
p5-Clone Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Compress-Zlib Update to 1.42: 2006-07-19 22:36:26 +00:00
p5-Config-General update homepage 2005-10-10 10:48:49 +00:00
p5-Config-IniFiles Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Config-Tiny Update to 2.07: 2006-07-19 22:36:53 +00:00
p5-Curses Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Curses-UI Object-Oriented UI framework based on the curses library. 2005-11-07 11:27:31 +00:00
p5-Curses-UI-POE s/wip/devel/ 2005-11-07 11:44:17 +00:00
p5-Data-Buffer
p5-Data-Dump Import devel/Data-Dump-1.06 2006-08-10 14:15:29 +00:00
p5-Data-Hierarchy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Data-ShowTable Fixed the path to the Perl interpreter. Bumped PKGREVISION. 2006-07-12 11:36:12 +00:00
p5-Data-TemporaryBag Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Data-UUID Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Date-Business
p5-Date-Calc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Date-Manip Updated to version 5.44. 2006-07-12 16:46:44 +00:00
p5-Date-Simple Fixed definition of PERL5_PACKLIST. 2005-11-19 13:36:09 +00:00
p5-Devel-Cycle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Devel-Profile Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Devel-SmallProf Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-Devel-StackTrace Update to 1.13: 2006-07-19 22:37:21 +00:00
p5-Devel-Symdump Updated to 2.06. 2006-03-10 10:14:51 +00:00
p5-Error
p5-Event Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Exception-Class Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Expect Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-AutoInstall Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-CBuilder Initial addition of p5-ExtUtils-CBuilder version 0.18 into the NetBSD packages 2006-05-15 14:56:51 +00:00
p5-ExtUtils-Depends Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-F77 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-MakeMaker Honor INSTALLSITESCRIPT and INSTALLVENDORSCRIPT for site- and 2006-04-10 18:24:34 +00:00
p5-ExtUtils-ParseXS Initial addition of p5-ExtUtils-ParseXS version 2.15 into the NetBSD packages 2006-05-15 14:58:32 +00:00
p5-ExtUtils-PkgConfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-ExtUtils-XSBuilder Update to 0.27: 2006-07-19 22:37:49 +00:00
p5-File-BaseDir Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-chdir Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-File-DirSync Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Find-Rule Update to 0.30: 2006-07-19 22:38:13 +00:00
p5-File-Flat Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-FlockDir Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-MimeInfo Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Modified Import p5-File-Modified from pkgsrc-wip, packaged by kuli0020. 2006-02-21 10:33:45 +00:00
p5-File-PathConvert Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Slurp Updated devel/p5-File-Slurp to 9999.12 2006-05-05 17:50:49 +00:00
p5-File-Spec Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Temp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-File-Type Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-FileHandle-Unget Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-FileKGlob Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-FreezeThaw Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Getopt-Long Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Getopt-Simple
p5-gettext Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-glib2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
p5-Graph Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Hash-Case Initial import of p5-Hash-Case-1.003. 2005-11-14 01:29:50 +00:00
p5-Heap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Hook-LexWrap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Inline Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-All Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-IO-Capture Import IO::Capture-0.05 as devel/p5-IO-Capture. 2006-05-02 04:01:09 +00:00
p5-IO-Digest Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-LockedFile
p5-IO-Multiplex Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Null Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Pager Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-IO-Prompt Added devel/p5-IO-Prompt-0.99.4 2006-06-07 12:00:59 +00:00
p5-IO-String Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-stringy Updated to version 2.110. 2006-07-12 16:39:47 +00:00
p5-IO-Stty Fix a check-interpreter error. Bump PKGREVISION. 2006-06-08 15:35:43 +00:00
p5-IO-Tee
p5-IO-Tty Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IO-Util
p5-IO-Zlib Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-Run Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-Shareable Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-SharedCache Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-IPC-ShareLite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-LDAP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-List-MoreUtils Added devel/p5-List-MoreUtils-0.19 2006-06-07 11:58:58 +00:00
p5-Log-Agent Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch-Config Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch-DBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-Dispatch-FileRotate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Log-LogLite
p5-Make Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Memoize Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Memoize-ExpireLRU Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Build Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-CoreList Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Dependency Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Install Initial addition of p5-Module-Install version 0.62 into the NetBSD packages 2006-05-15 14:59:52 +00:00
p5-Module-Install-RTx Initial addition of p5-Module-Install-RTx version 0.11 into the NetBSD packages 2006-05-15 15:01:19 +00:00
p5-Module-Install-Substitute Initial import of p5-Module-Install-Substitute version 0.02 into the NetBSD 2006-06-06 10:22:43 +00:00
p5-Module-Pluggable Update p5-Module-Pluggable from 2.8 to 3.01 2006-08-10 12:53:32 +00:00
p5-Module-Refresh Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-ScanDeps Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Module-Versions-Report Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-CIDR Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Net-Netmask
p5-NEXT Import p5-NEXT from pkgsrc-wip, packaged by kuli0020. 2006-02-21 10:35:26 +00:00
p5-Object-Realize-Later
p5-OLE-Storage_Lite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-OOTools Update OOTools to version 2.21. This closes PR 31678 from Zafer Aydogan. 2005-10-18 08:33:24 +00:00
p5-PAR Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-PAR-Dist Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Params-Util Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Params-Validate Update to 0.84: 2006-07-19 22:39:19 +00:00
p5-Parse-RecDescent Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Parse-Yapp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PatchReader
p5-PathTools This module is designed to support operations commonly performed on 2006-02-25 00:23:56 +00:00
p5-perl-headers Fixed some pkglint warnings. 2006-06-17 20:44:03 +00:00
p5-Perl-Tidy
p5-Perl6-Export Added devel/p5-Perl6-Export-0.07 2006-06-07 11:56:15 +00:00
p5-Perl6-Slurp Added devel/p5-Perl6-Slurp-0.03 2006-06-07 11:57:54 +00:00
p5-PerlIO-eol Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PerlIO-via-dynamic Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-PerlIO-via-symlink Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-POE Updated p5-POE to 0.3202 2005-11-07 13:51:34 +00:00
p5-prefork Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Proc-Daemon
p5-Proc-PID-File Initial import of p5-Proc-PID-File 1.24. 2006-04-20 11:38:13 +00:00
p5-Proc-Simple Import p5-Proc-Simple from pkgsrc-wip. Packaged by David Howland. 2006-07-29 00:38:19 +00:00
p5-PV Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Regexp-Shellish Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Safe-Hole
p5-Scalar-List-Utils Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Schedule-RateLimiter Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SDL Also use the NetBSD Makefile for DragonFly. 2006-06-21 21:53:30 +00:00
p5-Set-IntSpan
p5-Set-Scalar Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Sort-Versions Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Spiffy Update devel/p5-Spiffy to 0.30. Changes from version 0.24 include: 2006-05-02 03:30:21 +00:00
p5-Spoon Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Storable Update to 2.15: 2005-10-25 13:37:45 +00:00
p5-String-Format
p5-Sub-Uplevel Update to 0.12: 2006-07-19 22:39:39 +00:00
p5-subversion LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
p5-SVN-Mirror Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SVN-Notify Initial addition of p5-SVN-Notify version 2.57 as devel/p5-SVN-Notify in the 2006-04-20 10:18:24 +00:00
p5-SVN-Simple Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-ProgressBar
p5-Term-Prompt Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-ReadKey Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-ReadLine Updated to version 1.16. 2006-07-12 17:22:38 +00:00
p5-Term-Screen Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Term-Size Set correct HOMEPAGE. 2006-02-18 08:23:33 +00:00
p5-Test-ClassAPI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Cmd Updated p5-Test-Cmd to 1.05: 2006-01-23 12:03:20 +00:00
p5-Test-Deep Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Exception Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-File-Contents Initial import of p5-Test-File-Contents version 0.03 into the NetBSD Packages 2006-06-06 09:52:25 +00:00
p5-Test-Harness Add back p5-Test-Harness 2006-08-06 15:00:07 +00:00
p5-Test-Inline Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-LongString Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Manifest Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Memory-Cycle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-NoWarnings Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Pod Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Pod-Coverage Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Simple Add CONFLICTS with p5-Test-Builder-Tester, which is now included. 2005-11-22 23:07:18 +00:00
p5-Test-Taint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Tester Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-Unit Fixed paths to the Perl interpreter. Bumped PKGREVISION. 2006-06-18 12:15:48 +00:00
p5-Test-Warn Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Tie-IxHash Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Tree-DAG_Node
p5-Tree-Simple Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-UNIVERSAL-moniker Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-UNIVERSAL-require Fixed pkglint warnings. 2006-07-06 17:22:45 +00:00
p5-VCP Initial import of the VCP-autrijus-snapshot-0.9-20050110 as devel/p5-VCP. 2006-05-02 01:53:35 +00:00
p5-VCP-Dest-svk Import VCP::Dest::svk-0.28 as devel/p5-VCP-Dest-svk. 2006-05-02 02:59:03 +00:00
p5-version USE_LANGUAGES= c 2006-07-22 19:03:47 +00:00
p5-Want Update to 0.10: 2006-07-19 22:39:59 +00:00
p5-WeakRef Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
palmpower Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pango Update to 1.14.0: 2006-08-10 16:12:59 +00:00
papaya Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
pardiff Add DragonFly support. 2006-01-09 17:57:15 +00:00
patch Fixed pkglint warnings. 2006-06-17 20:53:09 +00:00
patchutils Updated patchutils to 0.2.31. 2006-06-17 20:57:55 +00:00
pccts Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
pcl-cvs Mark as BROKEN_IN pkgsrc-2006Q1 according to 2006-05-18 20:29:58 +00:00
pcre Before including sys/resource.h on DragonFly, sys/time.h is needed. 2006-07-10 22:14:18 +00:00
pcre++ Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
pcre-ocaml Add buildlink3.mk file. 2006-08-11 15:47:30 +00:00
pedisassem Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
php-gettext Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-gmp Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-memcache Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-pcntl Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-posix Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-shmop Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-sysvsem Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-sysvshm Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
physfs Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
picp Uses C++. 2006-06-01 22:22:23 +00:00
picprg Use PKGNAME_NOREV. 2006-02-11 14:19:49 +00:00
pilrc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pkg-config Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ply No need to mark 1.5 as incompatible, it isn't active by default anyway. 2006-06-03 00:13:07 +00:00
pmccabe Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
popt Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
prcs Fix build with gcc-4.1.2. Patch provided by Ryo HAYASAKA in PR 33914. 2006-07-17 17:55:43 +00:00
ProjectCenter Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
pth Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
pthread-sem Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
pthread-stublib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
pvs Remove teTeX2 from TEX_ACCEPTED, because the teTeX2 packages will be removed 2006-08-10 03:21:39 +00:00
pwlib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-checker Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-cheetah Rename to match directory name and Python version convension. 2006-06-11 23:43:34 +00:00
py-curses Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-cursespanel Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-distutils Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
py-expect Add pthread dependencies for DragonFly, otherwise the Python linkage 2006-02-08 19:47:08 +00:00
py-game Fix BUILDLINK_ABI_DEPENDS to use PYPKGPREFIX. 2006-07-26 17:56:25 +00:00
py-generate Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-gobject Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-gobject-shared Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-idle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-InlineEgg Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-kjbuckets Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-kqueue Does built before Python 2.2. 2006-06-02 17:29:30 +00:00
py-logging Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-Optik Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-pexpect Fix typo in version name. 2006-06-04 20:06:37 +00:00
py-pqueue Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-Pyro Fixed pkglint warnings. 2006-06-17 21:01:29 +00:00
py-readline Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-subversion LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
py-TPG Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-unit Consistently use NetBSD.org address for shell, shellhung.org does not exist. 2006-03-16 22:48:42 +00:00
py-unitgui Consistently use NetBSD.org address for shell, shellhung.org does not exist. 2006-03-16 22:48:42 +00:00
py-urwid Use PYTHON_VERSIONS_ACCEPTED instead of _INCOMPATIBLE. 2006-06-03 00:13:54 +00:00
py-zconfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-ZopeInterface Actually, Python 2.1 doesn't work either, so depend on 2.2+ 2006-06-04 20:48:39 +00:00
py24-setuptools Update to 0.6c1. Add missing files to PLIST. 2006-07-24 22:51:32 +00:00
python-mode Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
qconf Imported qconf. 2006-05-15 11:19:24 +00:00
rake Update rake to 0.7.1, pkgsrc changes: 2006-08-07 16:11:32 +00:00
rapidsvn Update to 0.9.3: 2006-08-08 12:28:47 +00:00
ratfor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rcs Made configure use diff (and diff3) from diffutils instead of the 2006-07-01 22:03:12 +00:00
rdp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
re2c Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
readline Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
refinecvs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Renaissance Reverted the recent change that has set USE_LANGUAGES="c objc", where only 2006-07-22 05:10:54 +00:00
roundup update to roundup 1.1.2 2006-07-15 11:39:17 +00:00
rox-lib Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
rpc2 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
rsltc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rt-mysql Depend on p5-libapreq2 (instead of p5-libapreq), since other dependencies 2006-07-20 19:05:24 +00:00
rt-pgsql Depend on p5-libapreq2 (instead of p5-libapreq), since other dependencies 2006-07-20 19:05:24 +00:00
rt3 Add USE_TOOLS+=perl:run, which is kind of required from now on for packages 2006-07-07 21:32:35 +00:00
RTFM Adapt to new version of RT, using its dirs.mk, and fix a PLIST bug (a test 2006-05-01 09:39:48 +00:00
RTx-RightsMatrix Initial import of RTx::RightsMatrix (as RTx-RightsMatrix), version 0.03.00, 2006-05-01 09:43:11 +00:00
RTx-Shredder Initial import of RTx::Shredder (as RTx-Shredder), version 0.03, into the 2006-05-01 09:42:13 +00:00
ruby-activesupport Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-amstd Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-bsearch Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-byaccr Honor BIN{OWN,GRP,MODE}. 2006-06-06 00:15:28 +00:00
ruby-cmd Revive ruby-cmd package. 2006-01-03 14:57:52 +00:00
ruby-curses Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-gnome2-atk Update ruby-gnome2 to 0.15. Patch provided by Dieter Roelants in PR 34064. 2006-07-25 16:49:05 +00:00
ruby-gnome2-glib Update ruby-gnome2 to 0.15. Patch provided by Dieter Roelants in PR 34064. 2006-07-25 16:49:05 +00:00
ruby-gnome2-pango Update ruby-gnome2 to 0.15. Patch provided by Dieter Roelants in PR 34064. 2006-07-25 16:49:05 +00:00
ruby-mode Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-ncurses Fix two C glitches when ncurses is compiled with trace support. 2006-02-08 15:50:19 +00:00
ruby-priority-queue Update HOMEPAGE since previous URL can't be acceessed by permission. 2006-07-09 15:25:18 +00:00
ruby-racc Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-rd-mode Update to devel/ruby-rd-modeto 0.6.18. 2006-02-13 15:16:34 +00:00
ruby-readline Update ruby-readline pacakge to 1.8.4. 2006-01-03 14:46:59 +00:00
ruby-rgl Add a dependency on ruby-stream, which is required by rgl/traversal. 2006-05-04 01:38:02 +00:00
ruby-stream Import ruby-stream. 2006-05-04 01:29:57 +00:00
ruby-subversion LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just 2006-07-07 15:49:30 +00:00
rudiments Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
rvm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
rx Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
sablecc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
scons Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
scons-devel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sdcc Remove extra qualification to fix build with gcc-4.1. 2006-07-05 20:29:29 +00:00
SDL Don't try and do assembler on Solaris, it doesn't get it right. 2006-08-04 22:12:28 +00:00
SDL-intro-en Change the directory name so that it does not conflict with SDL 2006-07-21 19:47:32 +00:00
SDL-intro-ko Import SDL-intro-ko from pkgsrc-wip. Packaged by Ian Zagorskih. 2006-07-21 19:52:59 +00:00
SDL_gfx Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
SDL_ttf Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
SDLmm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
semantic "BUILD_ENV" was misnamed. It's actually the environment that is passed 2006-07-21 14:27:56 +00:00
semi Fix conditional for semi-bbdb option. 2006-07-24 17:17:18 +00:00
sfio Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sgb Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
sgi-stl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sgi-stl-docs Moved the HTML documentation into share/doc/sgi-stl/html. Bumped 2006-06-17 21:03:34 +00:00
silc-toolkit Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
slib * Nuke all references to and definitions of INFO_DIR in package Makefiles 2006-03-20 18:15:37 +00:00
sml-mode * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
sparsehash Update to 0.4, provided by Aleksey Cheusov in PR 34063: 2006-08-03 19:46:42 +00:00
spiff Make this package build with gcc-4. 2006-06-08 16:12:48 +00:00
splint USE_TOOLS+=lex 2006-06-08 15:56:43 +00:00
st Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
stlport Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
stooop Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
subversion Version 1.3.2 2006-06-01 00:39:51 +00:00
subversion-base Added more documentation, since the installed INSTALL file refers to the 2006-07-12 08:41:00 +00:00
svk Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
swig Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
syncdir Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
sysexits Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
tailor Update to 0.9.23: 2006-05-30 21:16:56 +00:00
tavrasm USE_TOOLS+=lex 2006-06-20 22:10:45 +00:00
tcl-tclcl Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
tcllib Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
teem Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
tet3 Updated tet3 to 3.7. 2006-06-08 16:57:59 +00:00
tkcvs Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tkdiff Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
tla Update to 1.3.5: 2006-07-23 20:41:24 +00:00
tmake Updated tmake to 1.13. 2006-06-17 17:45:41 +00:00
tpasm Uses C++. 2006-06-06 14:56:20 +00:00
tre Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
treecc Fixed pkglint warning. 2006-06-17 17:37:21 +00:00
trio Libtoolify trio. Bump revision. 2006-03-15 16:44:50 +00:00
tvision Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
ucl Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
unidiff Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
uno Fixed pkglint warnings. 2006-06-17 21:42:31 +00:00
valgrind Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
vanessa_adt Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
vanessa_logger Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
vanessa_socket Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
vtcl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
wide Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xdelta * Move info file entries into the PLIST. 2006-03-31 05:37:08 +00:00
xmake
xxgdb Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
yasm Update to 0.5.0, provided by the new maintainer, Shaun Amott, in PR 34190. 2006-08-12 21:05:06 +00:00
z80-asm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zlib Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
Makefile + equeue 2006-08-11 15:45:49 +00:00