pkgsrc/devel
epg e8ee503222 bzr 1.11 "Eyes up!" 2009-01-19
------------------------------

This first monthly release of Bazaar for 2009 improves Bazaar's operation
in Windows, Mac OS X, and other situations where file names are matched
without regard to capitalization: Bazaar tries to match the case of an
existing file.  This release of Bazaar also improves the efficiency of
Tortoise Windows Shell integration and lets it work on 64-bit platforms.

The UI through which Bazaar supports historic formats has been improved,
so 'bzr help formats' now gives a simpler and shorter list, with clear
advice.

This release also fixes a number of bugs, particularly a glitch that can
occur when there are concurrent writes to a pack repository.

  BUG FIXES:

    * Fix failing test when CompiledChunksToLines is not available.
      (Vincent Ladeuil)

    * Stacked branches don't repeatedly open their transport connection.
      (John Arbash Meinel)



bzr 1.11rc1 "Eyes up!" 2009-01-09
---------------------------------

  CHANGES:

    * Formats using Knit-based repository formats are now explicitly
      marked as deprecated. (Ian Clatworthy)

  NEW FEATURES:

    * Add support for `bzr tags -r 1..2`, that is we now support showing
      tags applicable for a specified revision range. (Marius Kruger)

    * ``authentication.conf`` now accepts pluggable read-only credential
      stores. Such a plugin (``netrc_credential_store``) is now included,
      handles the ``$HOME/.netrc`` file and can server as an example to
      implement other plugins.
      (Vincent Ladeuil)

    * ``shelve --list`` can now be used to list shelved changes.
      (Aaron Bentley)

  IMPROVEMENTS:

    * Add trailing slash to directories in all output of ``bzr ls``, except
      ``bzr ls --null``. (Gordon P. Hemsley, #306424)

    * ``bzr revision-info`` now supports a -d option to specify an
      alternative branch. (Michael Hudson)

    * Add connection to a C++ implementation of the Windows Shell Extension
      which is able to fully replace the current Python implemented one.
      Advantages include 64bit support and reduction in overhead for
      processes which drag in shell extensions.
      (Mark Hammond)

    * Support the Claws mail client directly, rather than via
      xdg-email. This prevents the display of an unnecessary modal
      dialog in Claws, informing the user that a file has been
      attached to the message, and works around bug #291847 in
      xdg-utils which corrupts the destination address.

    * When working on a case-insensitive case-preserving file-system, as
      commonly found with Windows, bzr will often ignore the case of the
      arguments specified by the user in preference to the case of an existing
      item on the file-system or in the inventory to help prevent
      counter-intuitive behaviour on Windows. (Mark Hammond)

  BUG FIXES:

    * Allow BzrDir implementation to implement backing up of
      control directory. (#139691)

    * ``bzr push`` creating a new stacked branch will now only open a
      single connection to the target machine. (John Arbash Meinel)

    * Don't call iteritems on transport_list_registry, because it may
      change during iteration.  (Martin Pool, #277048)

    * Don't make a broken branch when pushing an unstackable-format branch
      that's in a stackable shared repository to a location with default
      stack-on location.  (Andrew Bennetts, #291046)

    * Don't require embedding user in HTTP(S) URLs do use authentication.conf.
      (Ben Jansen, Vincent Ladeuil, #300347)

    * Fix a problem with CIFS client/server lag on windows colliding with
      an invariant-per-process algorithm for generating AtomicFile names
      (Adrian Wilkins, #304023)

    * Fix bogus setUp signature in UnavailableFTPServer.
      (Gary van der Merwe, #313498)

    * Fix compilation error in ``_dirstate_helpers_c`` on SunOS/Solaris.
      (Jari Aalto)

    * Fix SystemError in ``_patiencediff_c`` module by calling
      PyErr_NoMemory() before returning NULL in PatienceSequenceMatcher_new.
      (Andrew Bennetts, #303206)

    * Give proper error message for diff with non-existent dotted revno.
      (Marius Kruger, #301969)

    * Handle EACCES (permission denied) errors when launching a message
      editor, and emit warnings when a configured editor cannot be
      started. (Andrew Bennetts)

    * ``$HOME/.netrc`` file is now recognized as a read-only credential store
      if configured in ``authentication.conf`` with 'password_encoding=netrc'
      in the appropriate sections.
      (Vincent Ladeuil, #103029)

    * Opening a stacked branch now properly shares the connection, rather
      than opening a new connection for the stacked-on branch.
      (John Arbash meinel)

    * Preserve transport decorators while following redirections.
      (Vincent Ladeuil, #245964, #270863)

    * Provides a finer and more robust filter for accepted redirections.
      (Vincent Ladeuil, #303959, #265070)

    * ``shelve`` paths are now interpreted relative to the current working
      tree.  (Aaron Bentley)

    * ``Transport.readv()`` defaults to not reading more than 100MB in a
      single array. Further ``RemoteTransport.readv`` sets this to 5MB to
      work better with how it splits its requests.
      (John Arbash Meinel, #303538)

    * Pack repositories are now able to reload the pack listing and retry
      the current operation if another action causes the data to be
      repacked.  (John Arbash Meinel, #153786)

    * ``pull -v`` now respects the log_format configuration variable.
      (Aaron Bentley)

    * ``push -v`` now works on non-initial pushes.  (Aaron Bentley)

    * Use the short status format when the short format is used for log.
      (Vincent Ladeuil, #87179)

    * Allow files to be renamed or moved via remove + add-by-id. (Charles
      Duffy, #314251)

  DOCUMENTATION:

    * Improved the formats help topic to explain why multiple formats
      exist and to provide guidelines in selecting one. Introduced
      two new supporting help topics: current-formats and other-formats.
      (Ian Clatworthy)

  API CHANGES:

    * ``LRUCache(after_cleanup_size)`` was renamed to
      ``after_cleanup_count`` and the old name deprecated. The new name is
      used for clarity, and to avoid confusion with
      ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)

    * New ``ForeignRepository`` base class, to help with foreign branch
      support (e.g. svn).  (Jelmer Vernooij)

    * ``node_distances`` and ``select_farthest`` can no longer be imported
      from ``bzrlib.graph``.  They can still be imported from
      ``bzrlib.deprecated_graph``, which has been the preferred way to
      import them since before 1.0.  (Andrew Bennetts)

    * The logic in commit now delegates inventory basis calculations to
      the ``CommitBuilder`` object; this requires that the commit builder
      in use has been updated to support the new ``recording_deletes`` and
      ``record_delete`` methods. (Robert Collins)

  TESTING:

    * An HTTPS server is now available (it requires python-2.6). Future bzr
      versions will allow the use of the python-2.6 ssl module that can be
      installed for 2.5 and 2.4.

    * ``bzr selftest`` now fails if new trailing white space is added to
      the bazaar sources. It only checks changes not committed yet. This
      means that PQM will now reject changes that introduce new trailing
      whitespace. (Marius Kruger)

    * Introduced new experimental formats called ``1.12-preview`` and
      ``1.12-preview-rich-root`` to enable testing of related pending
      features, namely content filtering and filtered views.
      (Ian Clatworthy)

  INTERNALS:

    * Added an ``InventoryEntry`` cache when deserializing inventories.
      Can cut the time to iterate over multiple RevisionsTrees in half.
      (John Arbash Meinel)

    * Added ``bzrlib.fifo_cache.FIFOCache`` which is designed to have
      minimal overhead versus using a plain dict for cache hits, at the
      cost of not preserving the 'active' set as well as an ``LRUCache``.
      (John Arbash Meinel)

    * ``bzrlib.patience_diff.unified_diff`` now properly uses a tab
      character to separate the filename from the date stamp, and doesn't
      add trailing whitespace when a date stamp is not supplied.
      (Adeodato Simó, John Arbash Meinel)

    * ``DirStateWorkingTree`` and ``DirStateWorkingTreeFormat`` added
      as base classes of ``WorkingTree4`` and ``WorkingTreeFormat4``
      respectively. (Ian Clatworthy)

    * ``KnitVersionedFiles._check_should_delta()`` now uses the
      ``get_build_details`` api to avoid multiple hits to the index, and
      to properly follow the ``compression_parent`` rather than assuming
      it is the left-hand parent. (John Arbash Meinel)

    * ``KnitVersionedFiles.get_record_stream()`` will now chose a
      more optimal ordering when the keys are requested 'unordered'.
      Previously the order was fully random, now the records should be
      returned from each pack in turn, in forward I/O order.
      (John Arbash Meinel)

    * ``mutter()`` will now flush the ``~/.bzr.log`` if it has been more
      than 2s since the last time it flushed. (John Arbash Meinel)

    * New method ``bzrlib.repository.Repository.add_inventory_by_delta``
      allows adding an inventory via an inventory delta, which can be
      more efficient for some repository types. (Robert Collins)

    * Repository ``CommitBuilder`` objects can now accumulate an inventory
      delta. To enable this functionality call ``builder.recording_deletes``
      and additionally call ``builder.record_delete`` when a delete
      against the basis occurs. (Robert Collins)

    * The default http handler has been changed from pycurl to urllib.
      The default is still pycurl for https connections. (The only
      advantage of pycurl is that it checks ssl certificates.)
      (John Arbash Meinel)

    * ``VersionedFiles.get_record_stream()`` can now return objects with a
      storage_kind of ``chunked``. This is a collection (list/tuple) of
      strings. You can use ``osutils.chunks_to_lines()`` to turn them into
      guaranteed 'lines' or you can use ``''.join(chunks)`` to turn it
      into a fulltext. This allows for some very good memory savings when
      asking for many texts that share ancestry, as the individual chunks
      can be shared between versions of the file. (John Arbash Meinel)

    * ``pull -v`` and ``push -v`` use new function
      ``bzrlib.log.show_branch_change`` (Aaron Bentley)
2009-01-19 21:41:48 +00:00
..
aap
accerciser Initial import of accerciser-1.4.0: 2009-01-16 23:38:22 +00:00
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 welcome to 1.7.1 2009-01-19 00:38:17 +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 Update to 1.24.1: 2009-01-16 11:46:01 +00:00
atf Update to 0.6: 2009-01-18 21:23:14 +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 Save distfile in subdirectory to avoid conflict if someone had already 2008-12-22 19:17:06 +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 Update to 3.2 2009-01-04 00:38:11 +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.11 "Eyes up!" 2009-01-19 2009-01-19 21:41:48 +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
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 Simplify. 2009-01-17 12:19:21 +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.34 2009-01-12 22:11:58 +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
cunit Initial import of CUnit-2.1 into the packages collection. 2009-01-10 21:03:58 +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 Move scrollkeeper/omf.mk to rarian/omf.mk. 2009-01-04 18:00:58 +00:00
diffutils Let to exactly point to own diff program. 2008-11-24 08:02:16 +00:00
distcc Changes 3.1: 2009-01-17 13:27:48 +00:00
distcc-pump distcc is a program to distribute compilation of C or C++ code across 2009-01-17 13:29:27 +00:00
distccmon-gnome Changes 3.1: 2009-01-17 13:27:48 +00:00
distccmon-gtk Changes 3.1: 2009-01-17 13:27:48 +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 sure that the libraries are linked with libiconv if necessary, to avoid 2009-01-08 08:42:41 +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.24.0: 2009-01-12 13:28:36 +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 Remove -ansi option from Makefile to prevent build problems as suggested by 2008-12-19 12:12:53 +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 Move scrollkeeper/omf.mk to rarian/omf.mk. 2009-01-04 18:00:58 +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 Update to 2.18.4: 2009-01-12 13:06:15 +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 s/ia/is/ 2008-12-22 18:06:00 +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
libdaemon Import libdaemon-0.12 as devel/libdaemon. 2008-12-20 17:24:48 +00:00
libdatrie ftp://linux.thai.net seems not working well, remove. 2008-03-17 12:52:00 +00:00
libdfui
libdnsres MAKE_JOBS_SAFE=NO 2009-01-11 13:04:01 +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 Update to 2.6.7: 2009-01-12 15:31:24 +00:00
libgnome update to 2.24.1 2008-10-16 13:24:07 +00:00
libgnomemm Update to 2.24.0: 2009-01-12 15:43:12 +00:00
libgnomeui Bump gtk2 depends -- this needs gail. 2008-10-17 10:41:53 +00:00
libgnomeuimm Update to 2.24.0: 2009-01-12 15:58:46 +00:00
libgphoto2 do pkgrevision bump because the binary package changed. 2008-11-18 20:49:46 +00:00
libgsf Update to 1.14.11: 2009-01-07 22:11:27 +00:00
libgweather Update to 2.24.3: 2009-01-13 15:25:24 +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 convert to use libtool 2009-01-04 23:10:06 +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 Update m17n library to 1.5.3. 2009-01-12 12:17:22 +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 Remove the bogus requirement for python25, fix the offending line instead. 2009-01-18 12:31:07 +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.2: 2009-01-07 21:50:29 +00:00
mico Move scrollkeeper/omf.mk to rarian/omf.mk. 2009-01-04 18:00:58 +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 Update to 0.4: 2009-01-08 12:17:40 +00:00
mono-tools Update to mono-tools 2.0, part of mono 2.0 2008-10-07 13:26:57 +00:00
monodevelop Fix PLIST 2008-12-22 13:16:49 +00:00
monotone Update to 0.42: 2009-01-18 21:24:12 +00:00
monotone-server Sync with monotone-0.42 update: bump version to 0.42 and rely on this release 2009-01-18 21:25:03 +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
nant Import nant version 0.86beta1. 2009-01-07 03:01:10 +00:00
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 Fix typo: H_NCURSES -> H_NCURSESW. Fixes PR 38665. 2009-01-18 06:56:34 +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 Update to opal 3.4.4. 2009-01-13 02:41:12 +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.202 to 0.203. 2009-01-18 23:12:15 +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.67 to 5.68. 2009-01-18 23:16:25 +00:00
p5-B-Hooks-EndOfScope Update from version 0.04 to 0.05. 2009-01-18 23:21:21 +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-Hooks-OP-PPAddr Added devel/p5-B-Hooks-OP-PPAddr version 0.02 2009-01-19 18:02:22 +00:00
p5-B-Hooks-Parser Added devel/p5-B-Hooks-Parser version 0.08 2009-01-19 18:02:57 +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 Update from version 0.06nb1 to 0.07. 2008-12-20 19:01:33 +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 Update from version 1.2901nb1 to 1.2902. 2009-01-04 17:24:46 +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 Update from version 0.08001nb1 to 0.08002. 2008-12-20 19:14:19 +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 Update from version 0.19nb1 to 0.20. 2008-12-20 19:25:36 +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 Add a patch from PR#40282, also reported at 2008-12-28 21:14:13 +00:00
p5-Class-MOP Update from version 0.73 to version 0.75. 2009-01-04 09:30:39 +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 Update from version 0.14nb1 to 0.16. 2008-12-20 20:26:10 +00:00
p5-Config-Find Update from version 0.24 to 0.26. 2008-12-20 20:59:18 +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 Update from version 2.38nb3 to 2.45. 2009-01-04 17:45:43 +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 Update from version 1.24nb1 to 1.26. 2009-01-19 00:16:26 +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.21 to 0.22. 2008-12-20 21:04:13 +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.003003 to 0.003004. 2008-12-20 21:27:17 +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 Change PKGVERSION_NOREV to the real Perl module version: 1.2.1. 2009-01-17 01:02:05 +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 Update from version 1.50nb1 to 1.52. 2008-12-20 22:07:45 +00:00
p5-ExtUtils-MakeMaker Update from version 6.48nb1 to 6.48nb2. 2009-01-05 12:15:16 +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-LibMagic Import p5-File-LibMagic version 0.90. 2008-12-19 18:52:36 +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-Next Initial import of p5-File-Next version 1.02 in the NetBSD Packages 2009-01-18 19:23:21 +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 Import p5-File-Path to version 2.07. 2009-01-11 13:34:36 +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 Update from version 0.20nb1 to 0.21. 2008-12-20 22:11:20 +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 Update from version 0.86 to 0.90. 2009-01-04 18:00:36 +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 Update from version 0.21 to 0.22. 2008-12-20 22:26:08 +00:00
p5-Inline Update from version 0.44nb3 to 0.45. 2008-12-20 23:38:37 +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 Update from version 0.38nb1 to 0.39. 2008-12-20 22:41:32 +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 Update from version 0.99.4nb1 to 0.99.4nb2. 2008-12-19 18:01:58 +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-Cmd Import p5-IPC-Cmd version 0.42. 2008-12-20 14:38:42 +00:00
p5-IPC-PubSub Update from version 0.28nb1 to 0.29. 2008-12-20 22:49:11 +00:00
p5-IPC-Run Update from version 0.80nb1 to 0.82. 2008-12-20 23:12:29 +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-Method-Signatures-Simple Added devel/p5-Method-Signatures-Simple version 0.03 2009-01-19 18:03:37 +00:00
p5-Module-Build Update from version 0.3000 to 0.3100 (upstream 0.31). 2009-01-04 18:17:31 +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.63 to version 0.64. 2009-01-04 09:30:40 +00:00
p5-MooseX-AttributeHelpers Update to version 0.14 from version 0.13. 2009-01-17 12:23:03 +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 Update from version 0.0008nb1 to 0.0009. 2008-12-20 23:42:13 +00:00
p5-MooseX-Param Import p5-MooseX-Param version 0.02. 2008-10-27 00:00:20 +00:00
p5-MooseX-StrictConstructor Import p5-MooseX-StrictConstructor version 0.07. 2009-01-11 14:06:19 +00:00
p5-MooseX-Types Update from version 0.07 to 0.08. 2008-12-20 23:45:30 +00:00
p5-MooseX-Types-Path-Class Import p5-MooseX-Types-Path-Class version 0.05. 2009-01-11 13:27:28 +00:00
p5-Mouse Update from version 0.13 to 0.14. 2009-01-04 20:48:02 +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 Update from version 0.17nb1 to 0.18. 2009-01-04 22:20:43 +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 Update from version 0.40nb1 to 0.42. 2009-01-04 22:37:19 +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.092 to 1.094.001 (upstream 1.094001). 2009-01-04 23:06:29 +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 Update from version 1.04nb1 to 1.04nb2. 2008-12-19 18:23:17 +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.854 to 0.85.4. 2009-01-02 22:18:37 +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-signatures Added devel/p5-signatures version 0.03 2009-01-19 18:04:07 +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 Update from version 0.03nb1 to 0.04. 2008-12-20 23:55:35 +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 Update from version 0.54nb1 to 0.55. 2008-12-21 00:01:53 +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-TempDir Import p5-Test-TempDir version 0.04. 2009-01-11 13:42:03 +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 Update from version 1.16 to 1.17. 2009-01-04 23:14:57 +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 Really depend on both, p5-YAML and p5-YAML-Syck. 2008-12-21 09:27:27 +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.25 to 0.26. 2008-12-21 00:10:13 +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.4: 2009-01-05 20:30:43 +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 ptlib to 2.4.4. 2009-01-13 02:19:10 +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.1: 2009-01-16 11:46:01 +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 Remove -ansi option from Makefile to prevent build problems as suggested by 2008-12-19 12:12:53 +00:00
py-gobject Update py-gobject to 2.16.0: 2009-01-07 21:28:56 +00:00
py-gobject-shared Update py-gobject to 2.16.0: 2009-01-07 21:28:56 +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 Bump to 0.6c9 2009-01-18 14:50:20 +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 Needs msgfmt. 2008-12-31 14:04:58 +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
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
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 Need to buildlink ruby for ruby.h. 2009-01-19 04:01:52 +00:00
ruby-gnome2-libglade Update ruby-gnome2 to 0.18.1. 2008-10-28 13:43:57 +00:00
ruby-gnome2-pango Need to buildlink ruby, pango and ruby-gnome2-glib for ruby.h, pango/pano.h and 2009-01-19 04:07:54 +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 Upgrade devel/scmgit to version 1.6.0.6 (from 1.6.0.2), in order to fix 2009-01-09 13:42:15 +00:00
scmgit-base Upgrade devel/scmgit to version 1.6.0.6 (from 1.6.0.2), in order to fix 2009-01-09 13:42:15 +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 Add forgotten patch to CVS. 2008-12-26 21:53:31 +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 Update to 2.0.18: 2009-01-07 10:55:22 +00:00
SDL_Pango Initial buildlink3 fragment. 2008-01-28 20:15:57 +00:00
SDL_ttf We don't install the example programs so we can avoid building them. showfont 2009-01-11 02:31:28 +00:00
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 update to sgb-2007-03.28.tar.gz distribution 2009-01-04 23:14:00 +00:00
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 Take maintainership, per private discussion with previous MAINTAINER. 2009-01-09 13:39:43 +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
zzuf Import zzuf-0.12. 2008-12-09 06:56:52 +00:00
Makefile + p5-B-Hooks-OP-PPAddr 2009-01-19 18:05:13 +00:00