pkgsrc/devel
wiz 4656e33a4a Update to 0.6.5. From Peter Tworek on pkgsrc-users.
cgdb-0.6.5 (01/01/2010)

   * Turn autosourcereload to on by default. This matches GDB's behavior.

   * CGDB should successfully build on Mac OS X 10.5.
     Thanks Kyle McKay for sending in this patch.

   * Add support for :up and :down in the cgdb status bar.
     Thanks Benoit Pierre for reporting this.

   * Enhanced tgdb in a2 mode. It now understands GNAT's
     pre-instance-choice, instance-choice, post-instance-choice extension.

   * Made searching and :commands a little more vi-like. If you abort a
     search, you can still recall the last search with 'n' or 'N'.  If you
     backspace to the beginning of the line, a :command or /search is
     aborted.

   * Added some new cgdb commands.
       :c is now a synonym for :continue
       :f is now a synonym for :finish
       :n is now a synonym for :next
       :r is not a synonym for :run
       :s is now a synonym for :step
       :start is a new command that will send "start" to the debugger
       :kill is a new command that will send "kill" to the debugger

   * Shortcut mode has been removed from cgdb. If you liked it, you can
     put these commands in your cgdbrc file,
       map r :run<CR>
       map c :continue<CR>
       map f :finish<CR>
       map n :next<CR>
       map s :step<CR>
     and you will get the same functionality. Do not forget that,
       F5 is the same as 'run'.
       F6 is the same as 'continue'.
       F7 is the same as 'finish'.
       F8 is the same as 'next'.
       F10 is the same as 'step'.
     are always available.

   * Added a feature to CGDB which allows it to ask readline what key
     sequence it uses for the Home and End keys. That way, if the terminfo
     database is wrong, but the OS vendor modified /etc/inputrc, CGDB will
     have a working Home and End key.

   * CGDB fully supports the use of maps now. The feature is similar in
     nature to the vim map feature.  It supports map, unmap, imap
     and iunmap. The map/unmap work in CGDB mode and the imap/iunmap
     work in GDB mode.

   * Added the cgdbmodekey configuration option. This allows the user to
     change the key that switches them from GDB mode to CGDB mode. The
     default value is the Escape key. This is useful for users that want
     to use readline in vi-mode.

   * Fixed a bug in CGDB where the Insert and Delete keys were not
     recognized properly all of the time.

cgdb-0.6.4 (04/28/2007)

   * CGDB can now be compiled with -jN option. It would fail previously.

   * CGDB should now build on freebsd with out any patches.

   * Added a new highlighting group, SelectedLineNr. From the documentation:
     This represents the group that is used when CGDB is displaying the
     currently selected line.  This is the line that the cursor is on.

   * CGDB shuts down now when it receives C-d (control d), just like GDB
     does.

   * Changed the GDB prompt from "(tgdb)" to "(gdb)". I think users
     will be more comfortable with "(gdb)".

   * Fixed a serious bug in CGDB. After the user entered a command
     CGDB would not accept any more commands. This would only
     happen sometimes, if at all. This is due to the fact that CGDB
     had a bug in it that was sensitive to the amount of data that
     the read system call returns to it.

   * Fixed a bug in CGDB where it would not show a file in the
     source viewer if there was a space in the path.

   * Removed the escdelay option. It has been replaced by the
     timeout, timeoutlen, ttimeout and ttimeoutlen options. Please
     see the CGDB manual for more documentation on these options.

   * Fixed a bug in libkui. If the user quickly typed ESC followed
     by an 'o' while in the GDB window, the 'o' character would not
     get processed by CGDB until another character was hit.

   * CGDB has improved it's -d (Set debugger to use) command line
     option. CGDB used to force the user to have a space between the
     -d and the debugger to use, like "cgdb -d /usr/bin/gdb". Now the
     user can also start CGDB like "cgdb -d/usr/bin/gdb".

   * CGDB now honor's the '--' command line option, which will allow the
     user to explicitly say when they want to end passing arguments to
     CGDB and begin passing arguments to the debugger.

   * Fixed another bug in the configure script. If the getopt.h header
     file is not available on the system, then CGDB will fail to configure.
     It should finish, and most likely build successfully.

   * Fixed yet another bug in the auto tools scripts. cgdb-0.6.3 would
     improperly install gdbmi_driver if make was invoked like
     'make DESTDIR=/foo install'.

   * Fixed another bug in the configure script. If the curses.h header
     file is not available on the system, then CGDB will fail to configure.
     It would previously configure and then end up with a compile error.

cgdb-0.6.3 (06/03/2006)

   * CGDB will no longer crash if you attempt to do a regular expression
     search with / when there is no file in the source viewer.

   * CGDB now uses a psuedo terminal (PTY) to start GDB on, instead of
     using a pipe. Jens Frederich reported that on a Mac, typing Ctrl-C
     while the inferior was running would cause GDB to shut down, thus
     causing CGDB to shut down. This patch fixes that problem. At the
     same time, this patch caused GDB to ask the user several other
     questions regarding shared breakpoints, and quiting while the
     inferior is running. Thus, CGDB acts more as if you were just using
     GDB.

   * CGDB is now maintained in a subversion repository instead of a
     CVS repository. Although this might not appear to effect end users,
     it is possible that there will be problems associated with this
     switch. For this reason, I have documented this here.

   * Fixed another bug in the configure script. CGDB should now be able
     to configure itself on a Mac. Thanks to Jens Frederich for finding
     and reporting this problem.

   * CGDB no longer packages the generated auto tool files in CVS. However,
     the distributions will have these files. This means you will need
     autoconf, autoheader and automake installed to compile CGDB from CVS.

   * CGDB now compiles according to the c89 standard. This should help with
     porting to older systems.

   * The file cgdb.txt is now installed into $PREFIX/share/cgdb/cgdb.txt. This
     is the file CGDB will now use to display the manual when :help is typed.
     This prevents CGDB from copying the data into the users home directory.

cgdb-0.6.2 (04/09/2006)

   * CGDB should run on solaris 2.5 again. I don't think it would since
     CGDB .6.0.

   * Fixed a bug in the configure script that was probably added in .6.0
     when the large readline integration was done. It was possible for
     readline to choose the wrong termcap library, because of a bad
     autoconf macro that CGDB was using. This could potentially cause the
     screen to get corrupted.

   * Fixed a bug in the syntax highlighter for C strings. A line like
     char *s = "\""; would cause the highlighter to break and most of the
     file after that would be displayed in red (string literal color).

   * The message 'CGDB had unexpected results, ...' will no longer be
     displayed when CGDB can not parse a breakpoint. This message was being
     displayed when a watchpoint was issued by the user. It does not fix any
     bugs though, just stops the message from being displayed.

cgdb-0.6.1 (03/06/2006)

   * An improvement for tab completion support. With certain versions of GDB,
     an extra line "server complete ..." would be added to the list of
     possible completions. This is no longer added. I believe this would
     only happen with really old versions of GDB.

   * Improved tab completion support in readline for quoted data. For
     instance tab completing C++ member functions like b 'foo::b<tab>
     will now produce b 'foo::bar()'.

   * Improved tab completion support. This comes in 2 forms. First, CGDB
     honors the readline variable rl_completion_query_items. If the number
     of completions is greater than this variable, then the user will be
     asked if they want the completion to happen. Second, after each page of
     completions, the user will be asked if they want more completions to be
     displayed or not.

   * Thanks to Steve Folta for sending in a patch which added support in CGDB
     for configuring the syntax colors. The colors used to be hard coded and
     could not be changed. Now just use the ":highlight" command to change
     the default colors.  There is a new section in the manual called
     "CGDB highlighting groups" that describes the new functionality.

   * Again, thanks to Steve Folta for getting CGDB to run on terminals with
     background colors besides black. CGDB used to paint the terminal
     background color black regardless of what it was. Now it respects the
     background color. This feature only works when linked to ncurses. If you
     have curses, CGDB will force the background black.

   * CGDB broke it's terminal resizing functionality in cgdb-0.6.0. This is
     now working again. The bug was introduced while bringing readline into
     the same address space as CGDB.

   * The man page now get's installed when 'make install' is done.

cgdb-0.6.0 (01/30/2006)

   * There is a new manual for CGDB. The text version is located in
     cgdb/doc/cgdb.txt. The info version is available at cgdb/doc/cgdb.info.
     The text, html, pdf, info and possibly other versions are avialable at
     http://cgdb.sourceforge.net/documentation.shtml

   * There is a new CGDB man page. It is located in cgdb/doc/cgdb.1.

   * Fix a crash in CGDB if the user would type ':e' or ':edit' in the
     source window, and the source window was empty. This crash is considered
     not very significant, since I can't understand why the user would try to
     refresh the file, if it didn't exist.

   * Removed the :q! and :quit! commands, since they don't do anything
     different than :q or :quit.

   * Fix a bug regarding the CGDB source viewer displaying breakpoints. If you
     used the file dialog to open a file, and the file was an absolute
     path, CGDB would display the file. If it was the first time CGDB
     encountered this file, then when you set a breakpoint, CGDB would not
     display the line as having a breakpoint in the source window, even though
     the breakpoint was actually being set. This is now fixed.

   * CGDB now supports getting the initial line, as well as the initial
     file that GDB is on when it first starts the inferior. It used to only
     determine the initial file.

   * CGDB now supports when the terminal does not have control flow turned
     on. If control flow (XON/XOFF) is off, the ^s and ^q will go directly
     to readline instead of freezing and restarting the terminal.

   * CGDB now allows the user to use the \ character for line continuation
     purposes. GDB handles this and now CGDB also handles this. Before this,
     CGDB would break if the user attempted to do line continuation.

   * CGDB no longer needs to do a fork to communicate data back and forth to
     readline, it runs readline in it's own process context. This is a huge
     improvement because it means that when you run CGDB you should only see 1
     process executing instead of the usual 2.

   * CGDB now supports tab completion. This has been a long awaited missing
     feature of CGDB.

   * CGDB now depends on readline 5.1.

   * Fix a bug in the c/c++ syntax highlighter. If a file had "\\" as a
     string literal, the CGDB syntax tokenizer would be built incorrectly
     resulting in incorrect file highlighting.

cgdb-0.5.3 (08/08/2005)

   * CGDB now can detect the version of readline that it is going to link against.
   By doing this, it can alert the user at configure time if the readline version
   is OK to build CGDB with. If it is not OK, configure will fail.

   * CGDB has changed it's user interface in a way that is not backwards compatible.
   The 't' key, now sets a temporary breakpoint. The 't' key used to put CGDB into
   insert mode in the TTY window. Now 'I' does that.

   * CGDB is now capable of setting a temporary breakpoint thanks to Marcel Lanz.
   He sent in a patch with the functionality. Hitting 't' set's a temporary breakpoint.

   * It was reported that the "Windows" Key would cause CGDB to shut down.
   This has been fixed.

   * Added a new 'arrowstyle' option, see README for documentation

   * Add the ^l command to the Source window. CGDB will now clear and redraw
   the screen when this command is received.

   * It is now required to have the GNU history library in order
   to configure CGDB successfully. This was always the case, but the
   configure checks wouldn't catch it.

   * Get readline configure check to only look for libreadline. Not libedit, ...
   Future version of CGDB will depend on functionality that only readline will
   contains.

cgdb-0.5.2 (05/21/2005)

   * Attempt to get autoconf/automake machinery working with command,
   make DESTDIR=... install. This should simplify the job of package maintainers.

   * Added the --with-readline-prefix autoconf option. This makes configuring CGDB
   much easier when readline is in a non standard place.

   * Fixed major bug in CGDB-0.5.1 that prevented it from running on Solaris 9,
   FreeBSD 5.2.1 and probably many others. CGDB would hang when trying to read
   input. This bug made it impossible to use CGDB on those platforms. libkui is
   the cause of this problem and was a replacement input library for CGDB in
   cgdb-0.5.1. The bug is now fixed.

cgdb-0.5.1 (04/02/2005)

   * fixed crash when user tries to set a breakpoint on a file that's not
   a source file. This would happen if you typed ':help' to get into the
   help, and then tried to set a breakpoint using the spacebar.

   * obsolete the b and f commands. These were responsible for moving between
   the previous and the next source file. They made CGDB unstable and I don't
   think they were in the spirit of a vi/vim clone.

   * fixed an annoying bug that appeared while searching for a string. If you
   canceled the source view regex search by hitting ESC, 2 bad things would happen.
   You would end up on the line that you cancelled at
   The currently displayed line would stay the line you can cancelled at, even when
   you start moving around again.

   * reworked the signal handling code when GDB dies. Now CGDB handles the SIGCHLD
   and passes the signal notification to TGDB. This fixes a race condition that
   occurred, even though the race condition appeared to be harmless.

   * Several memory runtime fixes found thanks to valgrind. This could potentially
   fix crash's that I just never ran into.

   * Fix a bug in the c/c++ syntax highlighter. If a file had a dos file format
   and the C++ style comment // was used, then the file displayed would be
   completely unreadable. This is because the trailing '\r' would get grouped with
   the comment.

   * Fix CGDB command line interface. If the user invoked CGDB like this,
   'cgdb --args ./main one two three', then CGDB would hang or crash. This
   was because it use to add extra command line options to GDB on the end.
   Now it prepends the options to GDB, so that the --args command line
   can still be honored.

   * Added new logger interface. This traps all errors to a file or
   a file descriptor. There is now a mechanism to write warnings and
   errors to a file for inspection by the user.

   * Removed deprecated libinput from the various subdirectory. It has been
   replaced by libkui.

   * Added 'set asr' or autosourcereload option to CGDB. It is off by default.
   It is capable of reloading a source file when CGDB detects that a file has
   been modified. To turn this feature on do ':set asr'.

   * The :edit [:e] colon command has been implemented. It forces CGDB to
   reload the current file in the source viewer.

cgdb-0.5.0 (07/14/2004)

   * "progs" directory is no longer installed in a potentially
   read-only directory. It is installed now in top_builddir, instead of
   top_srcdir.

   * Added libkui into CGDB. This is the fisrt of the 4 new libraries
   designed to make CGDB flexible and modular. Because of this, the version
   number has been bumped up to .5.0.

   * Fixed crash in TGDB when buffering commands. If the user hit
   'n' <Enter> <Enter> ... fast, while GDB was not responding, or working
   on a command, the buffering code in TGDB would enter a bad command into
   a queue, causing it to crash when it tries to execute the command.

   * Fix crash in CGDB when parsing command line parameters. I think this crash
     showed up when I starting compiling CGDB with 3.3 instead of 2.95. It would
     crash when trying to pass the --pid argument to GDB through CGDB.

cgdb-0.4.2 (05/10/2004)

    * CGDB now compiles again on AIX 4.3.  Fixed Makefile.am in various/util/src
      to not have a space between the -L and the path.

cgdb-0.4.1 (04/26/2004)

   * Removed a memory leak from CGDB. When debugging applications that output
   a lot of text, CGDB would reportedly grow well over 400MB. Thanks to the
   sender of this patch, who decided to keep themselves anonymous.

   * Removed all instances of PATH_MAX and replaced with FSUTIL_PATH_MAX.
   PATH_MAX is not defined on HURD, and thus CGDB wouldn't compile in that
   environment.

   * Fixed TGDB bug. Tab completion was broken during cgdb-0.4.0 release.
2011-09-08 19:46:30 +00:00
..
accerciser recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
acme
acr Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
acunia-jam
adocman Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
aegis recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ald * marked as user-destdir ready. 2011-03-01 09:06:41 +00:00
allegro Deal with C99 vs GNU89 inline semantic 2011-08-20 15:28:09 +00:00
anjuta recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
apache-ant Updated devel/apache-ant to 1.8.2 2011-04-15 14:47:17 +00:00
apache-ant15
apache-ivy Added devel/apache-ivy version 2.2.0 2011-04-15 09:39:31 +00:00
apache-maven
apel Fix PLIST generation when EMACS_TYPE is set to emacs23nox. 2011-08-27 22:05:12 +00:00
apr Update "apr" package to version 1.4.5. Change since version 1.4.4: 2011-05-22 22:41:00 +00:00
apr-util recursive bump from icu shlib major bump. 2011-06-10 21:57:06 +00:00
apr0 Changes 2.0.64: 2010-11-01 18:03:03 +00:00
arena
argp
argtable
ArX recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
as31 Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
asm2html
astyle
at-spi recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
atf Update to 0.14: 2011-06-14 13:55:15 +00:00
atk Use patch provided by the ATK maintainers to fix GNOME bug 654767. Tested 2011-07-18 12:02:02 +00:00
atkmm Changes 2.22.5: 2011-05-12 11:10:35 +00:00
autoconf Update to 2.68, requested by adam for pkg-config-0.25. 2010-09-24 09:46:42 +00:00
autoconf213
autogen -add portability fixes, avoid picking up bash 2011-07-08 11:44:02 +00:00
automake Recognize newer python versions. Fixed in upstream git, slightly differently. 2010-10-17 00:39:32 +00:00
automake14 Add fix for the vulnerability reported in CVE-2009-4029 taken from the 2011-06-10 09:43:41 +00:00
automoc4 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
avl
avltree Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
bcc
bglibs
bin86 Fix mismatched return statements, which clang dislikes 2011-08-29 01:39:11 +00:00
binutils Hide some potential bugs by disabling default warnings with clang. 2011-09-07 23:41:04 +00:00
bison Do not install yacc.1. Addresses PR 45161 by Thomas Cort. 2011-08-06 17:15:42 +00:00
blame
blib recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
bmake Update version in Makefile 2011-06-18 22:43:34 +00:00
boa-constructor recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
boehm-gc Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
boost-build Changes 1.46.0: 2011-02-24 11:05:34 +00:00
boost-docs Changes 1.45.0: 2010-11-26 21:07:00 +00:00
boost-headers Changes 1.46.1: 2011-03-18 07:49:44 +00:00
boost-jam Request C++-11 mode for Clang too. 2011-09-07 23:43:40 +00:00
boost-libs Changes 1.46.0: 2011-02-24 11:05:34 +00:00
boost-python Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
bouml png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
buddy
bugzilla
bugzilla3
bullet Set LICENSE. 2010-09-03 23:04:02 +00:00
byacc Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
bzr Change MAINTAINER on bzr packages. 2010-12-06 13:57:27 +00:00
bzr-explorer Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
bzr-gtk Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
bzr-svn Update bzr-svn to 1.0.2, for compatible with bzr-2.1. 2011-07-22 14:17:37 +00:00
bzrtools Change MAINTAINER on bzr packages. 2010-12-06 13:57:27 +00:00
c-cpp-reference
c4
cbrowser
ccache Update to 3.1.4, inspired by PR 44659 by Marko Schuetz Schmuck: 2011-03-02 06:40:51 +00:00
cdecl
cdk
cfitsio Update to 3.280: 2011-08-06 15:44:20 +00:00
cflow recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cflow-mode
cgdb Update to 0.6.5. From Peter Tworek on pkgsrc-users. 2011-09-08 19:46:30 +00:00
check Update check to 0.9.8. 2010-08-18 04:36:13 +00:00
chmlib
chrpath
clib Import clib version 0.2.2. 2010-04-27 23:52:53 +00:00
clisp-pcre Import CLISP PCRE module as devel/clisp-pcre. 2010-07-09 18:59:48 +00:00
clisp-syscalls Fix build on SunOS. 2011-04-20 18:57:22 +00:00
clisp-wildcard Add package for wildcard module of lang/clisp. Remove conflicting option 2011-04-20 18:50:00 +00:00
clisp-zlib Import CLISP zlib module as devel/clisp-zlib. 2010-07-09 18:56:31 +00:00
cmake Changes 2.8.5: 2011-07-31 22:04:03 +00:00
cmake-mode
cmph Update devel/cmph to 1.1 and add a support for the "test" target. 2011-05-22 11:33:31 +00:00
coccinelle Update to 0.2.3. 2010-08-07 14:23:23 +00:00
coconut recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
codeville
cogito REPLACE_BASH; REPLACE_PERL. USE_TOOLS+=perl:run. PKGREVISION -> 3. 2011-06-19 19:34:52 +00:00
colordiff
compiz-bcop recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
compizconfig-backend-gconf recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
confuse recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cook recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cppcheck Update to 1.48. Ok reed except for the cmake dependency :) 2011-05-29 11:52:12 +00:00
cppunit devel/cppunit misses a destructor declaration for one of its classes. 2011-06-28 09:28:24 +00:00
cproto Update cproto to 4.7i. 2010-08-15 02:31:53 +00:00
cpuflags fix PLIST for last 2010-12-06 10:56:31 +00:00
cqual
cscope Install some emacs support files. Requested by Stefan in PR 44250. 2010-12-18 13:06:04 +00:00
cssc set LICENSE. 2011-02-02 11:31:17 +00:00
ctemplate CTemplate is a simple but powerful template language for C++. It emphasizes 2011-05-12 12:32:09 +00:00
cunit
cut
cutter Update cutter to 1.1.8. 2011-08-02 12:15:00 +00:00
cvs2cl
cvs2html
cvs2p4
cvs2svn
cvsclone
cvsd
cvsdiff2patch Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
cvsgraph png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
cvslock
cvsps
cvsup Sprinkle a few ${DESTDIR}. Most probably not enough, but I can't test this. 2011-04-07 13:17:14 +00:00
cvsup-bin
cvsup-gui
cvsup-gui-bin
cvsutils
cvsync recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cxref
darcs recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
darts
dconf recursive bump from gettext-lib shlib bump. 2011-04-22 14:40:40 +00:00
dconf-editor recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ddd Update to DDD 3.1.12 from PR pkg/43402 (David H. Gutteridge) 2010-06-02 13:34:34 +00:00
dejagnu
dev86
devhelp recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
device-driver-doc-de
devIL oops - forgot a libungif reference 2011-03-10 10:35:03 +00:00
dia2code
diffuse Update to 0.4.5. 2011-07-13 14:45:39 +00:00
diffutils recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
distcc recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
distcc-pump recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
distccmon-gnome Recursive bump from gdbm shlib bump. 2011-08-23 13:06:45 +00:00
distccmon-gtk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
dlcompat
dmake
dmalloc
doc++ recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
dotconf import dotconf 2010-11-04 16:57:00 +00:00
doxygen Fix build with clang 2011-08-20 15:29:01 +00:00
doxymacs
easygit Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
eclipse
edcommon
eet Mechanically replace references to graphics/jpeg with the suitable 2010-12-23 11:44:24 +00:00
eina
electric-fence Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
elf
elfsh
elib
emacs-ilisp
emacs20-elib
epydoc
equeue
eric3 Add user-destdir installation support. 2011-03-11 12:02:50 +00:00
eric4 update to 4.4.15 2011-06-09 16:44:10 +00:00
error service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
ethos recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ETL
etrace REPLACE_PYTHON. Depend on python. PKGREVISION -> 1. 2011-06-19 19:40:36 +00:00
exctags
exempi update to 2.1.1 2010-11-16 13:50:56 +00:00
ExmanIDE
fann
fann-devel
fastdep
ffcall
fhist recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
flex recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
flexdock
flim Fix PLIST for emacs versions coming with md4/ntlm/sasl-ntlm.elc. 2010-07-24 06:57:42 +00:00
florist recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
fortran-utils
fossil Update to Fossil 1.18 (2011-07-13) 2011-08-17 13:42:50 +00:00
frama-c recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
fromcvs
ftnchek
g-wrap recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
GConf update to 2.32.3 2011-05-13 17:07:27 +00:00
GConf-ui reset PKGREV for base pkg update 2011-05-13 17:08:10 +00:00
gconfmm disable API doc build -- this is generally a mess, and it is broken 2011-05-11 15:26:18 +00:00
gcvs recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdb recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdb6 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdbada recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gdl recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
geany Update geany to 0.20. 2011-05-12 13:12:18 +00:00
generate Correction to the home page and distribution site. 2010-09-30 18:30:20 +00:00
gentle
gettext Fix buidling on Mac OS X 10.7 2011-08-05 00:36:09 +00:00
gettext-asprintf Changes 0.18.1: 2011-04-12 17:41:28 +00:00
gettext-lib Added BUILDLINK_ABI_DEPENDS 2011-04-15 09:24:33 +00:00
gettext-m4 Changes 0.18.1: 2011-04-12 17:41:28 +00:00
gettext-tools Fix build on OpenSolaris-based distribibutions. 2011-08-22 21:53:40 +00:00
gflib
giblib png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
gindent recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
glade recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
glade3 recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
glib
glib2 Get rid of pkg-config build dependency. 2011-08-04 23:52:04 +00:00
glibmm Changes 2.28.2: 2011-07-15 12:22:08 +00:00
global Update GNU GLOBAL from 5.4 to 5.9.3. 2011-01-19 04:24:15 +00:00
gmake Do not use strndup on MirBSD, it used to be broken. Fixes lots of 2011-07-09 16:25:35 +00:00
gmock Import gmock-1.6.0 (googlemock) as devel/gmock from wip/gmock 2011-07-29 15:18:29 +00:00
gmp allow to use gmp/mpfr/mpc which comes with the system (eg on 2011-07-08 09:40:57 +00:00
gnatpython Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
gnome-build recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
gnome-common
gnustep-base recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gnustep-examples Update gnustep-examples to 1.3.0. This includes a couple more examples 2011-04-07 02:17:00 +00:00
gnustep-make Update gnustep-make to 2.4.0. Notable changes include: 2011-04-07 01:41:31 +00:00
gnustep-objc
gnustep-objc-lf2
gob2 Fix bug that was emitting #line directives with a line number of 0, which 2011-08-01 05:03:44 +00:00
gobject-introspection Drop buildlink to graphics/cairo to reduce dependency. 2011-08-09 16:28:03 +00:00
googletest Update to 1.6.0 2011-05-13 10:54:39 +00:00
Gorm Update Gorm to 1.2.12. Notable changes include: 2011-04-07 02:20:30 +00:00
gperf
gprbuild-aux add gprbuild-aux-20101120, a Multi-language project builder, 2011-02-03 19:04:02 +00:00
gps fix a typo, PR#45135. 2011-07-24 13:11:43 +00:00
gputils Fix INSTALLATION_DIRS assignment. 2011-05-14 20:15:28 +00:00
gsoap Update gsoup to 2.7.17. 2010-09-18 12:11:36 +00:00
gst-plugins0.10-pango reset PKGREV for base pkg update 2011-05-18 09:48:59 +00:00
gtexinfo recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gtl Update gtl to 1.2.4. 2011-04-16 11:05:49 +00:00
guile-fcgi
guile-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
guile-gtk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
guile-lib
guile-slib Support user-destdir. 2011-06-15 12:52:59 +00:00
guile-www Update to 2.31. Adjust HOMEPAGE/etc. Add TEST_TARGET. 2011-05-31 11:53:52 +00:00
guile16-gtk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
haskell-mode
hdf Mechanically replace references to graphics/jpeg with the suitable 2010-12-23 11:44:24 +00:00
hdf5 Don't reverse CPPFLAGS. 2010-04-24 21:27:36 +00:00
heirloom-getopt DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-libcommon DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
heirloom-what DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
hg-git Make it work with mercurial 1.8. 2011-03-08 09:38:18 +00:00
hoe Update hoe package to 2.12.2. 2011-08-25 15:29:12 +00:00
hptools
ht
hugs-HUnit
hugs-unix
idiff
idutils recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
imake When using clang, use devel/ucpp as the C preprocessor, as clang's cpp 2011-07-26 16:05:27 +00:00
intel2gas
isect
its4
jam
java-subversion recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
javacc
javadeps
jflex
js2-mode
kdbg recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
kdesdk3 need dependency on bash for REPLACE_BASH to work properly. 2011-07-03 02:08:08 +00:00
kdesdk4 need dependency on bash for REPLACE_BASH to work properly. 2011-07-03 02:08:08 +00:00
kdevelop
kdevelop-base recursive bump from icu shlib major bump. 2011-06-10 21:57:06 +00:00
kdevelop4 recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
kdevplatform recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
kdiff3 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ko-po-check Remove PYTHON_VERSION_ACCEPTED, just not compatible with python23. 2011-06-14 09:54:55 +00:00
kscope recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
kyua-cli Update to 0.2: 2011-08-24 21:04:42 +00:00
lcc Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
lcov Upgrade lcov to 1.9. Branch coverage analysis added and defaults to on. 2010-12-06 19:19:15 +00:00
ldapsdk Fix main() prototype 2011-09-07 23:44:27 +00:00
ldpc update ldpc package to pkgrevision 1 2011-02-10 16:15:36 +00:00
lemon
libarena Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
libargparse
libast png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
libatomic_ops
libbegemot Fix build on SunOS. 2011-05-14 20:21:19 +00:00
libbinio
libblkid Avoid installing some files not in PLIST, namely language and hwclock files. 2011-01-08 22:30:38 +00:00
libbonobo recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libbonoboui recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libcfg+
libcompizconfig recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libconfig Drop maintainership on these packages, I am no longer interested. 2010-05-07 08:34:22 +00:00
libctl
libdaemon
libdatrie Update libdatrie to 0.2.4. 2010-08-05 12:50:27 +00:00
libdbusmenu-qt need qmake to build, add buildlink to qt4-tools. 2011-07-04 11:34:21 +00:00
libdnsres revbump(1) for devel/libevent update. 2011-02-11 21:22:02 +00:00
libdockapp Add comment to patch. regen checksum. 2011-05-04 19:23:08 +00:00
libebml Fix patching on Mac OSX; fix installing the library; fix some pkglint issues 2011-03-18 12:42:13 +00:00
libelf Package owner resigned. Change to pkgsrc-users 2010-08-28 09:16:35 +00:00
libetm
libev Update libev to version 4.04. 2011-03-06 16:09:42 +00:00
libevent Fix the interpreter of event_rpcgen.py to point to a known Python binary. 2011-04-23 21:17:28 +00:00
libextractor recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libf2c Like lang/f2c, disable -Werror when building with clang. 2011-07-19 13:53:30 +00:00
libffi The library uses m68k_sync_icache from libm68k on NetBSD/m68k. 2011-04-24 09:51:29 +00:00
libfirm
libFoundation
libFoundation-examples
libftdi buildlink for liftdi 2010-10-23 15:34:34 +00:00
libgail-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgcroots Update libgcroots to 0.2.3. 2011-05-26 09:23:16 +00:00
libgee recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libgetopt Don't use __weak_alias. This results in duplicate symbols being created 2011-09-07 00:56:17 +00:00
libglade recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libglademm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libgnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgnomemm recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgnomeui recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgnomeuimm recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgphoto2 add back devel/libusb/buildlink3.mk so this builds on NetBSD 5.99.51 again 2011-05-01 10:19:52 +00:00
libgsf Workaround for PR#41475 is not required anymore. 2011-06-06 07:55:54 +00:00
libgsf-gnome recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
libgweather recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
libhfs Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
libiberty
libidn Changes 1.22: 2011-05-05 07:46:44 +00:00
libinotify Initial import of libinotify-0.0, part of Dmitry Matveev's GSoC 2011 2011-08-29 09:44:01 +00:00
libixp
libjit
libjudy Closes PR pkg/44851, oked by wiz@ and reed@ 2011-05-07 09:59:16 +00:00
libltdl
libmaa Closes PR pkg/44850, oked by wiz@ and reed@ 2011-05-07 10:06:02 +00:00
libmatchbox Fix build with png-1.5. 2011-01-29 11:09:44 +00:00
libmcs Fix library names on SunOS. 2011-04-21 14:25:09 +00:00
libmemcache
libmemmgr
libmimedir
libmm
libmowgli Fix library soname on SunOS. 2011-04-21 20:29:20 +00:00
libmtp Fix build on SunOS. 2011-04-21 15:06:04 +00:00
libnet10
libnet11
libnjb
libntlm Changes 1.2: 2011-01-28 07:44:25 +00:00
liboil Drop lvalue cast to allow building with Clang. 2011-07-19 13:57:17 +00:00
liboop
libosip Updated libosip to 3.5.0 2011-02-19 17:02:57 +00:00
libowfat
libportlib
libproplist
librfuncs move BUILDLINK_LDFLAGS definition from bl3.mk to builtin.mk -- in theory, 2010-08-30 17:27:11 +00:00
librlog
librsync recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
librxspencer
libscsi This package is BSD-specific; set ONLY_FOR_PLATFORM. 2010-10-31 09:08:11 +00:00
libsexy recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libsexymm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libsigc++ Changes 2.2.9: 2011-03-10 11:03:11 +00:00
libsigc++1
libsigsegv Update to libsigsegv 2.10 2011-04-06 21:51:14 +00:00
libslang
libslang2 Fix interpreter path 2011-06-10 10:14:14 +00:00
libsmi Add fix for CVE-2010-2891 taken from Debian's GIT repository. 2010-11-23 11:30:50 +00:00
libstash
libstatgrab Updating devel/libstatgrab from 0.16 to 0.17 2010-08-24 06:33:10 +00:00
libstree
libstroke
libtai Fix void main, which clang won't accept. While here, fix an LP64 issue 2011-08-01 05:37:12 +00:00
libtar
libtecla
libthai Update libthai to 0.1.15. 2011-04-06 11:13:32 +00:00
libthrift Fixes PLIST for perl option with perl!=5.12.x by using PLIST_SUBST variables. 2011-08-19 12:37:09 +00:00
libtool Add MirBSD support to libtool. The patches are based on the ones from MirPorts, 2011-05-14 16:49:45 +00:00
libtool-base Add MirBSD support to libtool. The patches are based on the ones from MirPorts, 2011-05-14 16:49:45 +00:00
libtool-info
libts
libusb Fix broken variable expansion. 2011-04-21 14:46:29 +00:00
libuuid Changes 2.19.1: 2011-05-12 12:26:15 +00:00
libuxre Regexp library from heirloom collection aware of utf-8 2011-05-28 09:48:07 +00:00
libview recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libvolume_id Fix build on SunOS. 2011-07-26 14:17:52 +00:00
libwhisker2
libwnck recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libxenserver recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
lincvs
lmdbg For all packages based on mk-configure "configure" target is provided. 2011-09-04 18:21:26 +00:00
locktests POSIX locks stress-test 2011-05-03 12:32:40 +00:00
log4cplus Import log4cplus version 1.0.4. 2011-04-27 15:05:06 +00:00
log4cxx Disable build/install of doxygen-built HTML docs. 2011-02-18 18:00:43 +00:00
log4shib Minor Makefile tweak 2011-07-28 21:54:08 +00:00
ltsa
lua-alt-getopt Update HOMEPAGE and MASTER_SITES per Aleksey Cheusov in PR 44729. 2011-03-16 23:14:55 +00:00
lua-filesystem Import lua-filesystem-1.5.0 as devel/lua-filesystem. 2010-09-21 09:30:41 +00:00
lua-lrexlib Add {,nb*} suffix to dependencies. Approved by joerg@ 2011-07-29 22:09:15 +00:00
lua-lrexlib-onig Lrexlib is a binding of three regular expression library APIs 2011-07-24 08:50:40 +00:00
lua-lrexlib-pcre Lrexlib is a binding of three regular expression library APIs 2011-07-24 08:49:29 +00:00
lua-lrexlib-posix Lrexlib is a binding of three regular expression library APIs 2011-07-24 08:50:03 +00:00
lua-mode Update to 20110121: 2011-02-11 10:05:30 +00:00
lua-stdlib Dependency on lua-lrexlib-pcre was added. 2011-07-25 20:10:50 +00:00
lua-stdlib-doc
lwp devel/lwp: 2.4 -> 2.6 2011-03-11 19:57:59 +00:00
m4 Update to 1.4.16: 2011-03-16 14:31:46 +00:00
m17n-lib recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
makedepend Update to 1.0.3: 2010-12-02 14:46:39 +00:00
makedepf90 Update HOMEPAGE and MASTER_SITES. 2010-07-16 12:00:27 +00:00
maketool recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
mantis No need to buildlink with database library. 2010-09-30 08:27:52 +00:00
matio
mdds Update to 0.5.3: 2011-08-06 10:53:30 +00:00
meld Update to 1.5.2: 2011-08-06 10:45:21 +00:00
mell
memcached Updated devel/memcached to 1.4.5 2011-05-27 11:58:52 +00:00
menhir Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
mercurial Update to 1.9.2: 2011-08-29 14:49:15 +00:00
mico DESTDIR support 2010-07-07 01:13:08 +00:00
mk-configure configure.mk implements target "do-configure" common for all projects 2011-09-04 15:40:11 +00:00
mkcmd Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
mono-addins recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
mono-tools recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
monodevelop recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
monodevelop-database recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
monotone recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
monotone-server Set EXTRACT_SUFX so it uses the same tarball as monotone. 2011-04-03 08:58:00 +00:00
monotone-viz recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
mph
mr Update to 1.04. From the changelog: 2011-06-21 02:57:11 +00:00
mscgen Initial import of mscgen-0.20, packaged for wip by Jan Danielsson. 2011-05-15 11:10:58 +00:00
msgpack Update msgpack to 0.5.7. 2011-09-04 02:57:11 +00:00
nana
nant recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
nasm
nbitools check-interpreter fix. 2011-07-03 19:45:14 +00:00
nbpatch From PR 43188: basename(3) and dirname(3) are in libgen on IRIX 2010-05-02 22:33:27 +00:00
ncc
ncurses Changes 5.9: 2011-04-06 14:02:47 +00:00
ncursesw Changes 5.8: 2011-02-28 11:02:46 +00:00
netbeans-ide Add openjdk7 to PKG_JVMS_ACCEPTED - from Nathanial Sloss 2011-08-16 08:38:07 +00:00
netbsd-iscsi-lib Update to 20110222. 2011-02-22 13:33:22 +00:00
netcdf "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
newfile * Add two CONFLICTS patterns: 2010-09-13 14:39:30 +00:00
newt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
noweb Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
nqc
nsis Reset maintainer. 2010-11-01 00:08:09 +00:00
nspr Version bump due to firefox update. 2011-08-18 18:31:34 +00:00
nspr-reference
nss Version bump due to firefox update. 2011-08-18 18:31:34 +00:00
ObjectiveLib
ocaml-findlib Check-point ocamlfind buildlink3.mk; overwrite "ocamlfind install" command 2011-06-15 05:25:46 +00:00
ocaml-lwt
ode
ogre png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
omake Update to 0.9.8.6rc1 and add lots of upstream SVN patches to make 2010-12-17 09:40:14 +00:00
opal CFLAGS+=-D__STDC_CONSTANT_MACROS so that UINT64_C() is defined for C++ 2011-02-06 08:00:05 +00:00
opencm
opengrok recursive bump from icu shlib major bump. 2011-06-10 21:57:06 +00:00
orc update to 0.4.14 2011-05-18 09:58:39 +00:00
ossp-uuid
p4
p4-docs
p4d
p4pr
p4web
p5-accessors Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Acme-PlayCode Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Annotate Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-C3 Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-CheckDigits Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Dependency Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Diff Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-HowSimilar Revision bump after updating perl to 5.14.1 2011-08-07 05:38:14 +00:00
p5-Algorithm-Merge Revision bump after updating perl to 5.14.1 2011-08-07 05:49:30 +00:00
p5-aliased Revision bump after updating perl to 5.14.1 2011-08-07 05:49:30 +00:00
p5-AnnoCPAN-Perldoc Revision bump after updating perl to 5.14.1 2011-08-07 05:49:30 +00:00
p5-Any-Moose Changes 0.15: 2011-08-07 05:59:47 +00:00
p5-AnyEvent Adjust package name to deal with Perl version numbering 2011-08-13 17:53:07 +00:00
p5-AnyEvent-AIO Revision bump after updating perl to 5.14.1 2011-08-07 06:52:49 +00:00
p5-AnyEvent-IRC Revision bump after updating perl to 5.14.1 2011-08-07 06:52:49 +00:00
p5-App-Cache Revision bump after updating perl to 5.14.1 2011-08-07 06:52:49 +00:00
p5-App-CLI Changes 0.31: 2011-08-07 06:58:43 +00:00
p5-App-Cmd Changes 0.311: 2011-08-07 07:04:29 +00:00
p5-App-cpanminus Changes 1.4008: 2011-08-07 07:08:26 +00:00
p5-App-cpanoutdated Changes 0.18: 2011-08-07 07:43:34 +00:00
p5-App-FatPacker As noted in Changes, no longer needs p5-File-Path >= 2.07. 2011-08-07 10:04:33 +00:00
p5-App-perlbrew Update to 0.28, add some missing dependencies. 2011-08-16 21:11:30 +00:00
p5-AppConfig Revision bump after updating perl to 5.14.1 2011-08-07 07:55:16 +00:00
p5-AppConfig-Std Revision bump after updating perl to 5.14.1 2011-08-07 07:55:16 +00:00
p5-Array-Compare Revision bump after updating perl to 5.14.1 2011-08-07 07:55:16 +00:00
p5-Array-Diff As noted in Changes, require p5-Algorithm-Diff 1.19. 2011-08-07 10:01:09 +00:00
p5-Array-RefElem Revision bump after updating perl to 5.14.1 2011-08-07 08:01:11 +00:00
p5-asa Changes 1.03: 2011-08-07 08:02:38 +00:00
p5-Async-Interrupt Revision bump after updating perl to 5.14.1 2011-08-07 08:03:22 +00:00
p5-AtExit Revision bump after updating perl to 5.14.1 2011-08-07 08:05:31 +00:00
p5-Attribute-Handlers Changes 0.91: 2011-08-07 08:07:00 +00:00
p5-Attribute-Lexical As Changes 0.004, require newser Lexical::SealREquireHints, it's 0.005 2011-08-07 09:54:14 +00:00
p5-autobox Changes 2.75: 2011-08-07 08:14:48 +00:00
p5-autobox-Core Revision bump after updating perl to 5.14.1 2011-08-07 08:15:28 +00:00
p5-autodie Revision bump after updating perl to 5.14.1 2011-08-07 08:16:40 +00:00
p5-AutoLoader Changes 5.71: 2011-08-07 08:18:18 +00:00
p5-AutoXS-Header Revision bump after updating perl to 5.14.1 2011-08-07 08:19:30 +00:00
p5-B-Compiling Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-B-Hooks-EndOfScope Revision bump after updating perl to 5.14.1 2011-08-09 06:52:35 +00:00
p5-B-Hooks-OP-Annotation Changes 0.44: 2011-08-09 07:35:41 +00:00
p5-B-Hooks-OP-Check Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Hooks-OP-Check-StashChange Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Hooks-OP-PPAddr Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Hooks-Parser Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Keywords Revision bump after updating perl to 5.14.1 2011-08-09 07:36:34 +00:00
p5-B-Utils Changes 0.15: 2011-08-09 07:55:51 +00:00
p5-BackPAN-Index Changes 0.40: 2011-08-09 09:04:26 +00:00
p5-Bit-Vector Revision bump after updating perl to 5.14.1 2011-08-09 09:11:32 +00:00
p5-boolean Changes 0.27: 2011-08-09 09:14:11 +00:00
p5-BSD-Resource Revision bump after updating perl to 5.14.1 2011-08-09 09:15:01 +00:00
p5-Cache Revision bump after updating perl to 5.14.1 2011-08-09 09:15:01 +00:00
p5-Cache-Cache Revision bump after updating perl to 5.14.1 2011-08-09 09:15:01 +00:00
p5-Cache-FastMmap Changes 1.39: 2011-08-09 09:19:45 +00:00
p5-Cache-Memcached Revision bump after updating perl to 5.14.1 2011-08-09 09:20:58 +00:00
p5-Cache-Simple-TimedExpiry Revision bump after updating perl to 5.14.1 2011-08-09 09:20:58 +00:00
p5-capitalization Revision bump after updating perl to 5.14.1 2011-08-09 09:20:58 +00:00
p5-Capture-Tiny Changes 0.11: 2011-08-09 09:25:28 +00:00
p5-Carp-Assert Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Carp-Assert-More Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Carp-Clan Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Carp-REPL Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-CLASS Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Class-Accessor Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Class-Accessor-Chained Revision bump after updating perl to 5.14.1 2011-08-09 09:34:45 +00:00
p5-Class-Accessor-Grouped As noted in Changes 0.10003, only require MRO::Compat for older perls, 2011-08-09 09:54:15 +00:00
p5-Class-Accessor-Named Revision bump after updating perl to 5.14.1 2011-08-09 09:43:06 +00:00
p5-Class-Adapter Changes 1.08: 2011-08-09 09:44:33 +00:00
p5-Class-Autouse Changes 2.00: 2011-08-09 09:46:31 +00:00
p5-Class-Base Revision bump after updating perl to 5.14.1 2011-08-09 10:00:16 +00:00
p5-Class-C3 Revision bump after updating perl to 5.14.1 2011-08-09 10:00:16 +00:00
p5-Class-C3-Adopt-NEXT Revision bump after updating perl to 5.14.1 2011-08-09 10:00:16 +00:00
p5-Class-C3-Componentised Changes 1.001000: 2011-08-09 10:08:01 +00:00
p5-Class-C3-XS Revision bump after updating perl to 5.14.1 2011-08-09 10:09:20 +00:00
p5-Class-Container Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Data-Accessor Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Data-Inheritable Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-ErrorHandler Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Factory Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Factory-Util Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Field Revision bump after updating perl to 5.14.1 2011-08-10 04:05:44 +00:00
p5-Class-Fields Changes 0.204: 2011-08-10 04:14:11 +00:00
p5-Class-Gomor Revision bump after updating perl to 5.14.1 2011-08-10 04:14:51 +00:00
p5-Class-Inner Revision bump after updating perl to 5.14.1 2011-08-10 04:14:51 +00:00
p5-Class-InsideOut Revision bump after updating perl to 5.14.1 2011-08-10 04:14:51 +00:00
p5-Class-Inspector Changes 1.25: 2011-08-10 04:17:23 +00:00
p5-Class-ISA Revision bump after updating perl to 5.14.1 2011-08-10 04:18:22 +00:00
p5-Class-Load Added devel/p5-Class-Load version 0.08 2011-08-30 09:10:34 +00:00
p5-Class-Loader Revision bump after updating perl to 5.14.1 2011-08-10 04:18:22 +00:00
p5-Class-MakeMethods Revision bump after updating perl to 5.14.1 2011-08-10 04:18:22 +00:00
p5-Class-Method-Modifiers Changes 1.07: 2011-08-10 04:23:14 +00:00
p5-Class-MethodMaker Update to 2.18. Addresses PR 45224. 2011-08-08 20:44:51 +00:00
p5-Class-Mix Revision bump after updating perl to 5.14.1 2011-08-10 04:24:24 +00:00
p5-Class-ObjectTemplate Revision bump after updating perl to 5.14.1 2011-08-10 04:31:04 +00:00
p5-Class-OOorNO Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-ReturnValue Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Singleton Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Std Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Throwable Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Trigger Revision bump after updating perl to 5.14.1 2011-08-10 06:30:21 +00:00
p5-Class-Unload Changes 0.07: 2011-08-10 06:35:42 +00:00
p5-Class-Virtual Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-WhiteHole Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-XML Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-XPath Revision bump after updating perl to 5.14.1 2011-08-10 06:36:17 +00:00
p5-Class-XSAccessor Changes 1.11: 2011-08-10 06:42:39 +00:00
p5-Class-XSAccessor-Array Revision bump after updating perl to 5.14.1 2011-08-10 06:43:11 +00:00
p5-Clone Revision bump after updating perl to 5.14.1 2011-08-06 20:00:57 +00:00
p5-Clone-PP Revision bump after updating perl to 5.14.1 2011-08-06 20:00:57 +00:00
p5-common-sense Ouch: commit distinfo as well 2011-08-10 08:46:11 +00:00
p5-Compress-PPMd Revision bump after updating perl to 5.14.1 2011-08-10 06:45:27 +00:00
p5-Compress-Raw-Bzip2 Changes 2.037: 2011-08-10 06:47:42 +00:00
p5-Compress-Raw-Zlib Changes 2.037: 2011-08-10 06:49:29 +00:00
p5-Config-Any Changes 0.23: 2011-08-10 08:16:42 +00:00
p5-Config-Auto Changes 0.38: 2011-08-10 08:20:17 +00:00
p5-Config-AutoConf Changes 0.16: 2011-08-10 08:22:50 +00:00
p5-Config-Find Revision bump after updating perl to 5.14.1 2011-08-10 08:24:35 +00:00
p5-Config-General Changes 2.50: 2011-08-10 08:26:25 +00:00
p5-Config-GitLike Changes 1.05: 2011-08-10 08:30:07 +00:00
p5-Config-INI Changes 0.18: 2011-08-10 08:33:08 +00:00
p5-Config-IniFiles Changes 2.68: 2011-08-10 08:34:33 +00:00
p5-Config-Std Changes 0.900: 2011-08-10 08:37:14 +00:00
p5-Config-Tiny Changes 2.14: 2011-08-10 08:38:37 +00:00
p5-constant Changes 1.21: 2011-08-10 08:39:56 +00:00
p5-Context-Preserve Revision bump after updating perl to 5.14.1 2011-08-10 08:40:57 +00:00
p5-Contextual-Return Revision bump after updating perl to 5.14.1 2011-08-10 08:40:57 +00:00
p5-Coro Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-CPAN Changes 1.9800: 2011-08-10 09:52:50 +00:00
p5-CPAN-Checksums Changes 2.07: 2011-08-10 10:00:00 +00:00
p5-CPAN-DistnameInfo Changes 0.12: 2011-08-10 10:01:37 +00:00
p5-CPAN-FindDependencies Revision bump after updating perl to 5.14.1 2011-08-10 10:06:58 +00:00
p5-CPAN-Inject Changes 1.13: 2011-08-10 10:11:59 +00:00
p5-CPAN-Meta Initial import of CPAN-Meta-2.112150. 2011-08-16 21:30:20 +00:00
p5-CPAN-Reporter Update to 1.2002. 2011-08-16 21:39:41 +00:00
p5-Curses Revision bump after updating perl to 5.14.1 2011-08-11 17:05:19 +00:00
p5-Curses-UI Revision bump after updating perl to 5.14.1 2011-08-11 17:05:19 +00:00
p5-Curses-UI-POE Revision bump after updating perl to 5.14.1 2011-08-11 17:05:19 +00:00
p5-Data-Alias Changes 1.15: 2011-08-11 17:09:33 +00:00
p5-Data-Buffer Revision bump after updating perl to 5.14.1 2011-08-11 17:10:40 +00:00
p5-Data-Compare Revision bump after updating perl to 5.14.1 2011-08-11 17:10:40 +00:00
p5-Data-Denter Revision bump after updating perl to 5.14.1 2011-08-11 17:10:40 +00:00
p5-Data-Dump Changes 1.19: 2011-08-11 17:14:09 +00:00
p5-Data-Dump-Streamer Changes 2.32: 2011-08-11 17:17:29 +00:00
p5-Data-Dumper-Concise Changes 2.020: 2011-08-11 17:20:00 +00:00
p5-Data-Dumper-Names Revision bump after updating perl to 5.14.1 2011-08-11 17:21:06 +00:00
p5-Data-Hierarchy Revision bump after updating perl to 5.14.1 2011-08-12 06:15:06 +00:00
p5-Data-OptList Changes 0.107: 2011-08-12 06:27:04 +00:00
p5-Data-Page Revision bump after updating perl to 5.14.1 2011-08-12 06:28:39 +00:00
p5-Data-Pageset Revision bump after updating perl to 5.14.1 2011-08-12 06:28:39 +00:00
p5-Data-Peek Changes 0.33: 2011-08-12 06:30:57 +00:00
p5-Data-Section Changes 0.101.621: 2011-08-16 08:22:51 +00:00
p5-Data-Serializer Changes 0.59: 2011-08-12 06:34:44 +00:00
p5-Data-ShowTable Revision bump after updating perl to 5.14.1 2011-08-12 06:37:04 +00:00
p5-Data-Taxi Changes 0.96: 2011-08-12 06:38:28 +00:00
p5-Data-TemporaryBag Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Data-UUID Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Data-Visitor Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Business Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Calc Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Calc-XS Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
p5-Date-Manip Changes 6.24: 2011-08-12 06:52:03 +00:00
p5-Date-Simple Revision bump after updating perl to 5.14.1 2011-08-12 06:53:37 +00:00
p5-Debug-Client Changes 0.12: 2011-08-12 06:55:53 +00:00
p5-Declare-Constraints-Simple Revision bump after updating perl to 5.14.1 2011-08-12 06:56:59 +00:00
p5-Devel-Autoflush Revision bump after updating perl to 5.14.1 2011-08-12 06:56:59 +00:00
p5-Devel-Caller Revision bump after updating perl to 5.14.1 2011-08-12 06:56:59 +00:00
p5-Devel-Checklib Changes 0.93: 2011-08-12 07:05:32 +00:00
p5-Devel-CheckOS Changes 1.64: 2011-08-12 07:07:33 +00:00
p5-Devel-Cover Changes 0.79: 2011-08-12 07:17:27 +00:00
p5-Devel-Cycle Revision bump after updating perl to 5.14.1 2011-08-12 07:18:35 +00:00
p5-Devel-Declare Changes 0.006005: 2011-08-12 07:23:28 +00:00
p5-Devel-Dumpvar Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-ebug Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-EvalContext Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-Events Revision bump after updating perl to 5.14.1 2011-08-12 07:24:09 +00:00
p5-Devel-Events-Objects Revision bump after updating perl to 5.14.1 2011-08-12 07:36:06 +00:00
p5-Devel-FindRef Revision bump after updating perl to 5.14.1 2011-08-12 07:36:06 +00:00
p5-Devel-Gladiator Revision bump after updating perl to 5.14.1 2011-08-12 07:36:06 +00:00
p5-Devel-GlobalDestruction Changes 0.04: 2011-08-12 07:40:48 +00:00
p5-Devel-Leak-Object Revision bump after updating perl to 5.14.1 2011-08-12 07:42:49 +00:00
p5-Devel-LexAlias Revision bump after updating perl to 5.14.1 2011-08-12 08:21:32 +00:00
p5-Devel-NYTProf Changes 4.06: 2011-08-12 08:24:55 +00:00
p5-Devel-PartialDump Changes 0.15: 2011-08-12 08:27:58 +00:00
p5-Devel-PatchPerl Initial import of p5-Devel-PatchPerl-0.52. 2011-08-16 20:25:25 +00:00
p5-Devel-PPPort Update p5-Devel-PPPort to version 3.19.03. Chance since version 3.19.03: 2011-08-06 10:02:34 +00:00
p5-Devel-Profile Revision bump after updating perl to 5.14.1 2011-08-12 08:29:30 +00:00
p5-Devel-Refactor Revision bump after updating perl to 5.14.1 2011-08-12 08:29:30 +00:00
p5-Devel-REPL Changes 1.003.012: 2011-08-12 11:40:55 +00:00
p5-Devel-Size Changes 0.77: 2011-08-12 11:43:55 +00:00
p5-Devel-SmallProf Revision bump after updating perl to 5.14.1 2011-08-12 11:45:31 +00:00
p5-Devel-StackTrace Changes 1.27: 2011-08-12 11:47:39 +00:00
p5-Devel-StackTrace-AsHTML Changes 0.11: 2011-08-12 11:49:35 +00:00
p5-Devel-StackTrace-WithLexicals Changes 0.10: 2011-08-12 11:50:51 +00:00
p5-Devel-Symdump Revision bump after updating perl to 5.14.1 2011-08-12 11:51:39 +00:00
p5-Devel-Trace Changes 0.11: unknown 2011-08-12 11:56:24 +00:00
p5-Devel-TraceUse Changes 2.05: 2011-08-12 11:58:10 +00:00
p5-Dir-Self Revision bump after updating perl to 5.14.1 2011-08-12 11:59:16 +00:00
p5-Dist-CheckConflicts Initial import of p5-Dist-CheckConflicts-0.02: 2011-08-16 20:50:54 +00:00
p5-enum Revision bump after updating perl to 5.14.1 2011-08-09 07:33:08 +00:00
p5-Error Revision bump after updating perl to 5.14.1 2011-08-12 11:59:16 +00:00
p5-EV Changes 4.03: 2011-08-12 12:02:11 +00:00
p5-Eval-Closure Tune down requirements 2011-08-23 08:53:08 +00:00
p5-Event Changes 1.20: unknown 2011-08-12 12:03:39 +00:00
p5-Event-ExecFlow Revision bump after updating perl to 5.14.1 2011-08-12 12:13:52 +00:00
p5-Event-RPC Revision bump after updating perl to 5.14.1 2011-08-12 12:13:52 +00:00
p5-ex-lib Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Exception-Class Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Exception-Handler Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Expect Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Expect-Simple Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-Exporter-Lite Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-ExtUtils-AutoInstall Revision bump after updating perl to 5.14.1 2011-08-12 12:27:44 +00:00
p5-ExtUtils-CBuilder Changes 0.28.02.02: 2011-08-12 12:41:03 +00:00
p5-ExtUtils-Command Changes 1.17: 2011-08-12 12:44:03 +00:00
p5-ExtUtils-Depends Changes 0.304: 2011-08-12 12:46:08 +00:00
p5-ExtUtils-Embed Revision bump after updating perl to 5.14.1 2011-08-12 12:49:40 +00:00
p5-ExtUtils-F77 Changes 1.17: 2011-08-12 12:53:06 +00:00
p5-ExtUtils-Install Revision bump after updating perl to 5.14.1 2011-08-12 12:54:07 +00:00
p5-ExtUtils-MakeMaker Add two missing dependencies; fixes conflict with p5-File-Copy-Recursive. 2011-08-16 21:37:44 +00:00
p5-ExtUtils-Manifest Changes 1.59: 2011-08-12 13:44:25 +00:00
p5-ExtUtils-ModuleMaker Correct LICENSE 2011-08-12 13:50:23 +00:00
p5-ExtUtils-ModuleMaker-TT Revision bump after updating perl to 5.14.1 2011-08-12 13:53:57 +00:00
p5-ExtUtils-ParseXS Changes 3.03: 2011-08-12 13:58:47 +00:00
p5-ExtUtils-PkgConfig Revision bump after updating perl to 5.14.1 2011-08-12 18:47:30 +00:00
p5-ExtUtils-XSBuilder Revision bump after updating perl to 5.14.1 2011-08-12 18:47:30 +00:00
p5-ExtUtils-XSpp perl-5.14.1 contains sufficient ExtUtils::ParseXS. Bump PKGREVISION. 2011-08-17 03:05:15 +00:00
p5-File-BaseDir Revision bump after updating perl to 5.14.1 2011-08-12 18:57:13 +00:00
p5-File-BOM Revision bump after updating perl to 5.14.1 2011-08-12 18:57:13 +00:00
p5-File-ChangeNotify p5-Moose ate p5-Class-MOP - update depends & bump PKGREVISION 2011-08-23 09:17:16 +00:00
p5-File-chdir Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-ConfigDir Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-DesktopEntry Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-DirCompare Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-DirSync Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-Find-Rule Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-Find-Rule-Age Revision bump after updating perl to 5.14.1 2011-08-12 19:09:59 +00:00
p5-File-Find-Rule-Perl Changes 1.10: 2011-08-12 19:20:05 +00:00
p5-File-Find-Rule-Permissions Revision bump after updating perl to 5.14.1 2011-08-12 19:21:45 +00:00
p5-File-Find-Rule-PPI Changes 1.06: 2011-08-13 07:46:03 +00:00
p5-File-Find-Rule-VCS Changes 1.08: 2011-08-13 07:47:41 +00:00
p5-File-Flat Revision bump after updating perl to 5.14.1 2011-08-13 07:48:46 +00:00
p5-File-FlockDir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-HomeDir Changes 0.98: 2011-08-13 07:54:44 +00:00
p5-File-LibMagic Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-Listing Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-MimeInfo Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-Modified Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-Next Revision bump after updating perl to 5.14.1 2011-08-13 07:56:19 +00:00
p5-File-NFSLock Changes 1.21: 2011-08-13 08:20:29 +00:00
p5-File-Path Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Path-Expand Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Path-Tiny Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-PathConvert Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Policy Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-pushd Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-Save-Home Revision bump after updating perl to 5.14.1 2011-08-13 08:33:17 +00:00
p5-File-ShareDir Changes 1.03: 2011-08-13 08:44:01 +00:00
p5-File-Slurp Changes 9999.19: 2011-08-16 07:00:59 +00:00
p5-File-Temp Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Tempdir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Touch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Type Added LICENSE 2011-08-16 07:31:04 +00:00
p5-File-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-File-Which Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FileHandle-Fmode Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FileHandle-Unget Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FileKGlob Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Filesys-Notify-Simple Changes 0.07: 2011-08-16 07:47:25 +00:00
p5-Format-Human-Bytes Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-FreezeThaw Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Getopt-ArgvFile Added LICENSE 2011-08-16 07:57:18 +00:00
p5-Getopt-Euclid Changes 0.2.7 2011-08-16 07:58:55 +00:00
p5-Getopt-Long Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Getopt-Long-Descriptive Depend on the same p5-Params-Validate version as Makefile.PL does. 2011-08-16 08:22:07 +00:00
p5-Getopt-Mixed Added LICENSE 2011-08-16 08:01:43 +00:00
p5-Getopt-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-gettext Added LICENSE 2011-08-16 08:01:43 +00:00
p5-Git-CPAN-Patch Changes 0.6.1: 2011-08-16 08:30:16 +00:00
p5-glib2 Changes 1.224: 2011-08-16 08:36:10 +00:00
p5-Gnome2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Gnome2-GConf Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Graph Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Gtk2-GladeXML Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Guard Changes 1.022: 2011-08-16 09:37:17 +00:00
p5-Hash-Case Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hash-Flatten Update to 1.19: 2011-08-17 09:42:44 +00:00
p5-Hash-Merge Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hash-MoreUtils Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hash-MultiValue Update to 0.09: 2011-08-17 09:43:46 +00:00
p5-Hash-Util-FieldHash-Compat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Heap Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Hook-LexWrap Update to 0.24: 2011-08-17 09:44:49 +00:00
p5-IMDB-Film Update to 0.50: 2011-08-16 22:40:51 +00:00
p5-Inline Update to 0.48: 2011-08-17 11:43:59 +00:00
p5-InlineX-C2XS Update to 0.16: 2011-08-17 11:57:17 +00:00
p5-Internals Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-AIO Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-All Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Capture Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-CaptureOutput Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Compress Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Digest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Handle-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-InSitu Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Interactive Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-LockedFile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Multiplex Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Null Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Pager Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Pipeline Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Prompt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-String Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-stringy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Stty Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Tee Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-TieCombine Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Tty Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IO-Zlib Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Cmd Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-DirQueue Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-PubSub Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Run Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Run3 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Shareable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-SharedCache Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-ShareLite Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-Signal Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-System-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-IPC-SysV Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LDAP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LEOCHARRE-CLI2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LEOCHARRE-Debug Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-LEOCHARRE-Dir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Lexical-Persistence Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Lexical-SealRequireHints Update p5-Lexical-SealRequireHints to 0.005. 2011-08-14 16:26:57 +00:00
p5-lib-abs Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-List-MoreUtils Updated devel/p5-List-MoreUtils to 0.33 2011-08-23 08:59:04 +00:00
p5-local-lib Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Locale-Msgfmt Update to 0.15: 2011-08-16 22:12:12 +00:00
p5-Locale-PO Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Agent Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Any Update to 0.13: 2011-08-17 11:58:20 +00:00
p5-Log-Any-Adapter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Any-Adapter-Dispatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Any-Adapter-Log4perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch-Config Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch-DBI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Dispatch-FileRotate Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Log4perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-LogLite Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Report Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Log-Trace Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mac-Carbon Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mac-SystemDirectory Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Make Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Memoize Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Memoize-ExpireLRU Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Memoize-Memcached Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Method-Signatures-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mixin-ExtraFields Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mixin-ExtraFields-Param Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mixin-Linewise Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Modern-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Build Update p5-Module-Build to 0.38000 (upstream 0.3800). 2011-08-15 04:22:56 +00:00
p5-Module-CoreList Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-CPANTS-Analyse Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Dependency Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-ExtractUse Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Find Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install Update to 1.01: 2011-08-16 20:16:51 +00:00
p5-Module-Install-PadrePlugin Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install-RTx Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install-Substitute Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Install-XSUtil Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Load Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Manifest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Refresh Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-ScanDeps Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Starter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Starter-PBP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Util Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Versions Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Module-Versions-Report Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Moose Moose ate Class::MOP - add appropriate conflict 2011-08-23 09:14:28 +00:00
p5-Moose-Autobox Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Moose-Policy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-App-Cmd Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-AttributeHelpers Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Attributes-Curried Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-ClassAttribute Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-ConfigFromFile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Declare Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-FollowPBP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Getopt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-InsideOut Updated devel/p5-MooseX-InsideOut to 0.106 2011-08-23 09:20:49 +00:00
p5-MooseX-LazyRequire Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Meta-TypeConstraint-ForceCoercion Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Method-Signatures Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-MethodAttributes Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-MultiInitArg Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-NonMoose Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Object-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Param Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Params-Validate Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Role-Parameterized Updated devel/p5-MooseX-Role-Parameterized to 0.27 2011-08-23 10:54:20 +00:00
p5-MooseX-Role-WithOverloading Updated devel/p5-MooseX-Role-WithOverloading to 0.09 2011-08-23 10:03:56 +00:00
p5-MooseX-SemiAffordanceAccessor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-SimpleConfig Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Singleton Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-StrictConstructor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Traits p5-Moose ate p5-Class-MOP - update depends & bump PKGREVISION 2011-08-23 09:21:42 +00:00
p5-MooseX-Traits-Pluggable p5-Moose ate p5-Class-MOP - update depends & bump PKGREVISION 2011-08-23 09:21:42 +00:00
p5-MooseX-Types Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-Common Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-JSON Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-LoadableClass Add (missed) dependency onp5-Class-Load, bump pkgrevision 2011-08-30 09:12:26 +00:00
p5-MooseX-Types-Path-Class p5-Moose ate p5-Class-MOP - update depends & bump PKGREVISION 2011-08-23 09:21:42 +00:00
p5-MooseX-Types-Structured Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MooseX-Types-URI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Mouse Update "p5-Mouse-0.93" package 0.93. Changes since version 0.70: 2011-08-06 10:16:56 +00:00
p5-MouseX-Types Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-MRO-Compat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-namespace-autoclean Updated devel/p5-namespace-autoclean to 0.12 2011-08-23 09:27:29 +00:00
p5-namespace-clean Updated devel/p5-namespace-clean to 0.21 2011-08-18 11:53:02 +00:00
p5-Net-CIDR Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-LDAP-Batch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-LDAP-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-LDAP-Server-Test Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Net-Netmask Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-NEXT Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Declare Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Event Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-InsideOut Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Realize-Later Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Object-Signature Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-OLE-Storage_Lite Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-OOTools Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Package-Constants Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Package-DeprecationManager Updated devel/p5-Package-DeprecationManager to 0.11 2011-08-23 08:56:26 +00:00
p5-Package-Generator Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Package-Stash Update to 0.31: 2011-08-16 21:01:49 +00:00
p5-Package-Stash-XS Initial import of p5-Package-Stash-XS-0.23: 2011-08-16 20:57:51 +00:00
p5-PadWalker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-pango Update to 1.222: 2011-08-16 22:13:54 +00:00
p5-PAR Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PAR-Dist Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parallel-ForkManager Changes 0.7.9: 2011-08-30 06:42:00 +00:00
p5-Parallel-Prefork Changes 0.11: 2011-08-30 06:45:43 +00:00
p5-Params-Classify Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Params-Coerce Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Params-Util Update to 1.04. Set LICENSE. 2011-08-16 22:42:25 +00:00
p5-Params-Validate Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-parent Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-CPAN-Meta Changes 1.4401: 2011-08-10 11:38:29 +00:00
p5-Parse-CPAN-Packages Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-ErrorString-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-ExuberantCTags Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-Method-Signatures Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-RecDescent Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Parse-Yapp Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PatchReader Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Class-File-Stat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Dispatcher Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Path-Dispatcher-Declarative Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PathTools Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl-APIReference Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl-Critic Update to 1.116: 2011-08-16 23:01:57 +00:00
p5-perl-headers Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl-MinimumVersion Update to 1.28: 2011-08-16 23:03:03 +00:00
p5-Perl-Tidy Update to 20101217: 2011-08-16 23:04:17 +00:00
p5-Perl-Version Update to 1.011: 2011-08-16 23:05:28 +00:00
p5-Perl6-Export Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl6-Export-Attrs Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl6-Junction Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Perl6-Slurp Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-eol Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-gzip Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-via-Bzip2 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-via-dynamic Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PerlIO-via-symlink Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PHP-Serialization Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-pip Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE Changes 1.312: 2011-08-06 13:24:20 +00:00
p5-POE-Component-Cron Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE-Component-Pluggable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE-Component-Schedule Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-POE-Test-Loops Changes 1.312: 2011-08-06 13:15:54 +00:00
p5-PPI Update to 1.215: 2011-08-16 22:48:24 +00:00
p5-PPI-PowerToys Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PPI-XS Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PPIx-Regexp Update to 0.021: 2011-08-16 22:52:41 +00:00
p5-PPIx-Utilities Update to 1.1.0: 2011-08-16 22:56:04 +00:00
p5-prefork Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Probe-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Background Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Daemon Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-InvokeEditor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-PID-File Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Pidfile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-ProcessTable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Queue Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-Wait3 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Proc-WaitStat Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-PV Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Readonly Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Readonly-XS Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-Assemble Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-MatchContext Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-Parser Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Regexp-Shellish Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Return-Value Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Rose-Object Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Safe-Hole Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-sapnwrfc Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scalar-Defer Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scalar-List-Utils Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scalar-Util-Refcount Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Schedule-RateLimiter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scope-Guard Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Scope-Upper Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SDL Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Set-IntSpan Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Set-Object Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Set-Scalar Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Shell-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-ShipIt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-signatures Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Smart-Comments Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Software-License Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Sort-Maker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Sort-Versions Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Spiffy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Spoon Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Storable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-String-Escape Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-String-Format Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-String-PerlIdentifier Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Sub-Exporter Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Identify Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Install Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Installer Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Name Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Override Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-Sub-Uplevel Revision bump after updating perl to 5.14.1 2011-08-07 12:52:28 +00:00
p5-subversion Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SUPER Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-SVN-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SVN-Dump Update to 0.05: 2011-08-16 23:06:31 +00:00
p5-SVN-Mirror Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-SVN-Notify Update to 2.82: 2011-08-16 23:09:33 +00:00
p5-SVN-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-TAP-Formatter-HTML Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-TAP-Harness-Archive Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Task-Weaken Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tee Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-Handy Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-HashMerge Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-ListMoreUtils Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-ListUtil Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Template-Plugin-VMethods Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ANSIColor Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Cap Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ProgressBar Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Prompt Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadKey Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadLine Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadLine-Perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ReadPassword Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Screen Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Shell Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-ShellUI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Term-Size Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Aggregate Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Approx Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Assertions Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Base Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-CheckManifest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Class Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-ClassAPI Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Cmd Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Compile Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Deep Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Differences Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Distribution Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Exception Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Expect Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Fatal Added devel/p5-Test-Fatal version 0.006 2011-08-16 11:57:59 +00:00
p5-Test-File-Contents Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Fixture-DBIC-Schema Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Harness Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-HexString Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Inline Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Inter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Kwalitee Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-LeakTrace Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Log4perl Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-LongString Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Manifest Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Memory-Cycle Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-MinimumVersion Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Mock-LWP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-MockModule Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-MockObject Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Most Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-NoWarnings Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Object Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Output Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Perl-Critic Drop Module::Build requirements, default dependency is sufficient. 2011-08-16 09:30:36 +00:00
p5-Test-Pod Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Pod-Coverage Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Pod-Spelling-CommonMistakes Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-POE-Client-TCP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-POE-Server-TCP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Reporter Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Requires Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Script Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Script-Run Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-SharedFork Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Spec Initial import of p5-Test-Spec-0.38: 2011-08-16 21:04:55 +00:00
p5-Test-SubCalls Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Taint Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-TempDir Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Tester Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Trap Initial import of p5-Test-Trap-0.2.1. 2011-08-16 20:40:16 +00:00
p5-Test-Unit Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-use-ok Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-UseAllModules Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Warn Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-Weaken Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-WWW-Selenium Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-YAML-Meta Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Test-YAML-Valid Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Throwable Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Array-AsHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Array-Sorted Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Cache Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Cache-LRU Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-Cache-LRU-Expires Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-File Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-IxHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-LLHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-RefHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-RefHash-Weak Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-RegexpHash Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tie-ToObject Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tree-DAG_Node Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tree-Simple Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Tree-Simple-VisitorFactory Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Try-Tiny Updated devel/p5-Try-Tiny to 0.09 2011-08-16 11:54:30 +00:00
p5-TryCatch Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-can Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-isa Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-moniker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UNIVERSAL-require Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-UUID-Tiny Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Variable-Magic Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-VCP Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-VCP-Dest-svk Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-version Changes 0.9300: 2011-08-10 06:24:06 +00:00
p5-Want Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-WeakRef Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-Wx-Perl-DataWalker Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
p5-XSLoader Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
palmpower
pango recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
pangomm 2.28.2: 2011-05-12 11:15:43 +00:00
papaya * remove a redundant link in texinfo file. 2011-07-06 13:17:46 +00:00
pardiff
patch Update "patch" package to version 2.5.9. Changes since version 2.5.4: 2011-07-09 10:32:17 +00:00
patchutils Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
pcc-libs Initial import of pcc-libs 1.0.0 into the packages collection. 2011-04-10 10:40:45 +00:00
pccts update to 1.33.33 2011-03-11 14:49:03 +00:00
pcl-cvs service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
pcre Update to 8.13. Add comments to patches. 2011-08-22 12:58:08 +00:00
pcre++
pcre-ocaml
pdcurses Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
pedisassem
php-gettext recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
php-gmp Revert revision of several PHP extensions after both core PHP packages 2010-07-24 22:24:21 +00:00
php-libawl Update AWL to 0.45. 2010-11-12 18:20:19 +00:00
php-memcache Update php-memcache package to 2.2.6. 2010-12-19 03:00:52 +00:00
php-mode
php-pcntl
php-posix
php-shmop Add a patch to fix bug #54193 (Integer overflow in shmop_read()) referring 2011-03-21 16:08:28 +00:00
php-sysvmsg
php-sysvsem
php-sysvshm
physfs
picp
picprg
pilrc recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
pipestatus
pkg-config Squash a C++ism: Variable declarations only at the beginning of a block. 2010-12-10 07:45:56 +00:00
ply Update ply to version 3.3. 2010-08-29 11:00:31 +00:00
pmccabe
poco Bring in boost-license, 1.0. Certified by OSI as an Open Source 2011-02-06 18:54:49 +00:00
popt recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
prcs Instead of trying to guess which platforms will choke on an explicit 2010-07-31 21:37:25 +00:00
ProjectCenter Update ProjectCenter to 0.6.0. Changes are mainly bugfixes and minor 2011-04-07 02:23:06 +00:00
psvn
pth don't install the pthread drop-in emulation header and library in case 2010-09-07 10:46:47 +00:00
pthread-sem
pthread-stublib
ptlib Need flex, PR#43537 by Aleksey Cheusov. 2010-06-27 11:14:50 +00:00
pvs pvs needs tex-amsmath, not the entire teTeX. 2011-02-19 00:42:21 +00:00
pwlib Add destdir installation support. 2011-03-21 12:27:11 +00:00
py-argparse Fix HOMEPAGE. 2010-07-24 17:46:59 +00:00
py-at-spi recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-babel Update py-babel to 0.9.5. 2010-04-21 06:01:51 +00:00
py-checker
py-cheetah Changes 2.4.2: 2011-04-08 12:54:20 +00:00
py-compizconfig recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-coverage add py-coverage-3.3.1, a module that measures code coverage, from 2010-08-10 17:03:39 +00:00
py-ctypes
py-curses Install standard python modules into usual location instead of site-packages. 2011-05-04 11:38:05 +00:00
py-cursespanel Install standard python modules into usual location instead of site-packages. 2011-05-04 11:38:05 +00:00
py-cython Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-darcsver Express dependency on py-expat. 2010-09-26 13:53:47 +00:00
py-dulwich dulwich-0.6.0: 2010-06-14 10:15:15 +00:00
py-expect Fix build with modern libtool by using -module and correct arguments. 2010-07-21 14:11:16 +00:00
py-fann
py-funcparserlib Import py-funcparserlib-0.3.5 as devel/py-funcparserlib. 2011-07-15 13:34:02 +00:00
py-game Force use of GAS for Clang. 2011-09-07 23:45:06 +00:00
py-generate
py-gobject update to 2.28.4 2011-05-13 17:14:42 +00:00
py-gobject-shared sync w/ base pkg update 2011-05-13 17:15:13 +00:00
py-idle
py-InlineEgg
py-jersey Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-kjbuckets
py-kqueue
py-logilab-astng Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-logilab-common Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-mako Mako is a template library written in Python. It provides a familiar, non-XML 2011-02-11 08:24:02 +00:00
py-mock Import py26-mock-0.7.0b4 as devel/py-mock. 2011-01-29 14:53:14 +00:00
py-msgpack Update py-msgpack to 0.1.10. 2011-09-04 06:11:30 +00:00
py-multiprocessing add py-multiprocessing-2.6.2.1, a threading package which was 2010-11-02 19:20:16 +00:00
py-newt Drop PYTHON_VERSION_ACCEPTED, just "Doesn't support Python 2.3". 2011-06-14 09:51:45 +00:00
py-nose Update py-nose to 0.11.3. 2010-04-19 11:40:16 +00:00
py-Optik
py-pexpect Added LICENSE 2011-04-15 13:43:13 +00:00
py-pqueue
py-Pyro
py-pysvn recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
py-pytemplate
py-pyutil Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-quixote
py-readline Install standard python modules into usual location instead of site-packages. 2011-05-04 11:38:05 +00:00
py-rope Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-setuptools This package now needs "py-expat" under Mac OS X for Python 2.6.* because 2010-09-04 15:57:16 +00:00
py-setuptools_trial Fix pattern. [Hi gdt!] 2010-07-25 17:08:08 +00:00
py-subversion recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
py-subvertpy Update py-subvertpy to 0.8.2. 2011-07-22 14:54:45 +00:00
py-sysctl Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-testtools Import py-testtools-0.9.11 as devel/py-testtools. 2011-07-22 14:15:01 +00:00
py-unit
py-unitgui
py-urwid Let's assume for now that everything that worked with python-2.6 also 2011-02-25 09:47:18 +00:00
py-usb
py-windbg recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
py-xdg Update py-xdg to 0.19. 2010-08-14 12:39:01 +00:00
py-zconfig
py-ZopeInterface update to 3.6.1 2010-06-16 14:33:54 +00:00
python-mode
pythontidy Add PythonTidy 1.20 2011-08-31 11:43:17 +00:00
qbzr Change MAINTAINER on bzr packages. 2010-12-06 13:57:27 +00:00
qconf recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
qof recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
qtscriptgenerator recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
quilt Update to version 0.48. 2010-11-22 09:32:24 +00:00
ragel Update ragel to 6.6. 2011-05-02 12:42:20 +00:00
rake Reduce patch file since newer rubygems handles gemspec better. 2011-08-12 16:01:39 +00:00
rapidsvn recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
ratfor
RBTools RBTools provides the post-review command: 2011-01-30 00:55:59 +00:00
rcs
rdp
re2c
readline Changes 6.2: 2011-02-23 11:00:17 +00:00
refinecvs Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
Renaissance
roundup Update roundup to 1.4.19. Set LICENSE. 2011-07-17 02:24:13 +00:00
rox-lib recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
rpc2 devel/rpc2: 2.7 -> 2.10 2011-03-11 20:01:47 +00:00
rscode
rsltc * convert bison dependency from BUILD_DEPENDS to USE_TOOLS. 2010-09-26 11:03:05 +00:00
rt-mysql * add destdir installation support. 2011-03-21 11:39:27 +00:00
rt-pgsql
rt3 Upstream announce message: 2011-04-16 09:41:19 +00:00
RTFM
RTx-RightsMatrix Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
RTx-Shredder Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
rubigen Switch to use RUBY_RAILS. 2011-03-28 14:08:38 +00:00
ruby-abstract * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:08:46 +00:00
ruby-activemodel Update ruby-activemodel package to 3.0.10. 2011-08-17 14:17:16 +00:00
ruby-activesupport Update ruby-activesupport package to 2.3.14. 2011-08-17 14:12:03 +00:00
ruby-activesupport3 Update ruby-activesupport3 package to 3.0.10. 2011-08-17 14:16:45 +00:00
ruby-amstd * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:10:59 +00:00
ruby-assistance * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:11:58 +00:00
ruby-bsearch * Add LICENSE. 2010-09-10 05:12:28 +00:00
ruby-byaccr
ruby-cmd * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:13:12 +00:00
ruby-curses * Remove RUBY_HAS_ARCHLIB. 2010-09-10 03:31:12 +00:00
ruby-debug Restrict dependency to ruby-debug-base package. 2011-08-12 16:25:03 +00:00
ruby-debug-base Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-debug-extra Update ruby-debug-extra package to 0.10.4. 2011-06-19 15:27:19 +00:00
ruby-debug-ide Update patch for latest rubygems. No functional change. 2011-08-12 16:26:48 +00:00
ruby-deprecated Avoid to define constant Deprecate since it is conflict with rubygems. 2011-08-12 15:56:38 +00:00
ruby-dhaka * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:32:22 +00:00
ruby-eet Pass CCDLFLAGS to C compiler to fix recent build problem. 2011-08-12 16:29:04 +00:00
ruby-eventmachine Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-extlib Current version of this package dosen't have any dependency to 2011-08-12 16:11:33 +00:00
ruby-facade Update ruby-facade package to 1.0.5. 2010-12-04 03:56:47 +00:00
ruby-ffi Update ruby-ffi package to 1.0.9. 2011-06-17 15:14:40 +00:00
ruby-flexmock Update ruby-flexmock package to 0.9.0. 2011-06-17 15:31:39 +00:00
ruby-gemcutter Update ruby-gemcutter to 0.7.0. 2011-08-12 16:30:00 +00:00
ruby-getopt Update devel/ruby-getopt package to 1.4.1. 2011-08-12 16:31:07 +00:00
ruby-gettext * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:41:27 +00:00
ruby-gettext-activerecord Switch to use RUBY_RAILS. 2011-03-27 15:51:49 +00:00
ruby-gettext-rails Switch to use RUBY_RAILS. 2011-03-27 15:51:49 +00:00
ruby-gnome2-atk Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-gnome2-gio Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-gnome2-glib Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-gnome2-pango Update ruby-gnome2 to 0.90.9. 2011-06-12 11:43:33 +00:00
ruby-heckle Add dependency to hoe due to gemspec. 2011-08-12 16:31:45 +00:00
ruby-highline Update ruby-highline package to 1.6.2. 2011-06-17 15:34:02 +00:00
ruby-i18n Add a note to be careful for updating this package. 2011-06-10 03:46:09 +00:00
ruby-inline Update ruby-inline package to 3.9.0. 2011-06-17 15:35:49 +00:00
ruby-linecache Update ruby-linecache package to 0.46. 2011-06-19 10:36:43 +00:00
ruby-little-plugger Importing ruby-little-plugger 1.1.2. 2010-09-12 01:32:06 +00:00
ruby-locale * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:51:37 +00:00
ruby-locale-rails * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:52:09 +00:00
ruby-lockfile Importing devel/ruby-lockfile 1.4.3. 2010-09-12 01:32:55 +00:00
ruby-log4r Update ruby-log4r package to 1.1.9. 2010-12-04 04:01:06 +00:00
ruby-logging Update devel/ruby-logging to 1.4.3. 2010-09-10 13:51:45 +00:00
ruby-loquacious Importing ruby-loquacious version 1.8.1. 2011-08-12 16:04:22 +00:00
ruby-memcache Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-memoize Import ruby-memoize-1.3.1 as devel/ruby-memoize. 2011-02-25 02:34:13 +00:00
ruby-metaid Remove empty value of LICENSE. 2010-09-23 09:22:13 +00:00
ruby-mkrf * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 05:59:06 +00:00
ruby-mocha Update ruby-mocha package to 0.9.12. 2011-06-18 01:47:54 +00:00
ruby-mode Update ruby-mode to use bundled in Ruby 1.9.2, ruby-mode-1.9.2pl0. 2010-09-15 12:17:35 +00:00
ruby-ncurses Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-needle * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:04:02 +00:00
ruby-ole Update ruby-ole to 1.2.11.2. 2011-09-08 10:49:41 +00:00
ruby-parser Update ruby-parser package to 2.2.0. 2011-08-25 15:23:16 +00:00
ruby-parsetree Update ruby-parsetree package to 3.0.7. 2011-06-18 01:50:36 +00:00
ruby-pathname2 Update ruby-pathname2 package to 1.6.4. 2011-06-18 01:51:40 +00:00
ruby-pkg-config Update ruby-pkg-config to 1.1.1. 2011-05-03 09:49:03 +00:00
ruby-polyglot Update devel/ruby-polyglot pacakge to 0.3.2. 2011-08-12 16:33:05 +00:00
ruby-posix-spawn Import ruby19-posix-spawn-0.3.6 as devel/ruby-posix-spawn. 2011-08-21 04:57:36 +00:00
ruby-priority-queue Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-racc Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-railties Update ruby-railties package to 3.0.10. 2011-08-17 14:20:04 +00:00
ruby-rbtree Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-rbx-require-relative Import ruby18-rbx-require-relative pacakge version 0.0.5. 2011-06-19 10:32:17 +00:00
ruby-rcov Update devel/ruby-rcov package to 0.9.10. 2011-08-12 16:36:01 +00:00
ruby-rcsparse Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
ruby-rd-mode * Add LICENSE. 2010-09-10 06:20:13 +00:00
ruby-rdoc Update ruby-rdoc pacakge to 3.9.4. 2011-09-04 17:04:18 +00:00
ruby-readline * Remove RUBY_HAS_ARCHLIB. 2010-09-10 03:32:30 +00:00
ruby-rgl Update devel/ruby-rgl pacakge to 0.4.0. 2010-09-10 06:21:16 +00:00
ruby-rspec Update ruby-rspec package to 2.6.0. 2011-06-18 03:56:28 +00:00
ruby-rspec-core Importing ruby-rspec-core version 2.6.4, part of ruby-rspec 2.6.0. 2011-06-18 03:45:15 +00:00
ruby-rspec-expectations Importing ruby-rspec-expectations version 2.6.0, part of ruby-rspec 2.6.0. 2011-06-18 03:46:40 +00:00
ruby-rspec-mocks Importing ruby-rspec-mocks version 2.6.0, part of ruby-rspec 2.6.0. 2011-06-18 03:47:40 +00:00
ruby-rspec-rails Importing rspec-rails version 2.6.1, it is for Ruby on Rails 3. 2011-06-18 04:03:39 +00:00
ruby-rspec-rails1 Remove unneeded dependency. No PKGREVISION bump with short time slot. 2011-06-18 03:29:27 +00:00
ruby-rspec1 Small correction of dependency's pattern. 2011-06-18 03:31:07 +00:00
ruby-SDL recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ruby-setup * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:26:00 +00:00
ruby-sexp-processor Update ruby-sexp-processor package to 3.0.6. 2011-08-17 13:24:39 +00:00
ruby-simple_uuid Remove GEM_CLEANBUILD since it is pure ruby extension. 2011-08-20 15:17:27 +00:00
ruby-stream No need to patch gemspec since newer rubygems handles gracefully. 2011-08-12 16:37:05 +00:00
ruby-subexec Update devel/ruby-subexec package to 0.1.0. 2011-03-23 16:22:37 +00:00
ruby-subversion recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
ruby-templater Fix the real problem, spelling error in the category Makefile 2011-08-13 23:27:11 +00:00
ruby-termcolor Update devel/ruby-termcolor to 1.2.1. 2010-09-10 06:29:40 +00:00
ruby-test-spec Update devel/ruby-test-spec to 0.10.0. 2010-09-10 06:30:47 +00:00
ruby-test-unit Update ruby-test-unit package to 2.3.2. 2011-08-17 13:28:21 +00:00
ruby-thor Update ruby-thor package to 0.14.6. 2010-12-04 04:03:53 +00:00
ruby-thrift Update ruby-thrift pacakge to 0.6.0. 2011-06-18 02:01:06 +00:00
ruby-thrift_client Update devel/ruby-thrift_client package to 0.6.3. 2011-08-12 16:38:48 +00:00
ruby-uuidtools Update ruby-uuidtools to 2.1.2. 2011-06-17 13:38:33 +00:00
ruby-validatable * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:34:24 +00:00
ruby2ruby Refelect dependency due to gemspec. 2011-08-12 16:39:31 +00:00
rubyforge * Add CONFLICTS a pattern matches previous package name 2010-09-13 14:12:14 +00:00
rudiments
rvm devel/rvm: 1.14 -> 1.17 2011-03-11 20:04:46 +00:00
rx
sablecc
sapnwrfcsdk
scintilla recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
scmcvs Fixes build on SUA 6.0. 2011-02-12 01:58:54 +00:00
scmgit Changes 1.7.6.1: 2011-08-30 09:34:42 +00:00
scmgit-base Changes 1.7.6.1: 2011-08-30 09:34:42 +00:00
scmgit-docs Changes 1.7.6: 2011-07-08 11:14:43 +00:00
scons PR/43759: update scons to 1.3.1. Changes (windows-only omitted): 2011-03-12 16:04:58 +00:00
sdcc * set LICENSE=gnu-gpl-v2 2011-03-11 11:36:28 +00:00
SDL Recursive bump from gdbm shlib bump. 2011-08-23 13:06:45 +00:00
SDL-intro-en
SDL-intro-ko
SDL_gfx Update to 2.0.22: 2010-09-12 21:54:26 +00:00
SDL_Pango recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
SDL_ttf Changes 2.0.10: 2010-07-23 13:22:12 +00:00
SDLmm
semantic
semi
sfio Add user-destdir installation support. 2011-03-21 08:47:12 +00:00
sgb Use an absolute path to invoke tex. 2010-06-13 19:07:24 +00:00
sgi-stl
sgi-stl-docs
silc-toolkit Changes 1.1.10 (toolkit): 2010-08-30 11:17:16 +00:00
slib Update to 3b3 (pkgsrc 3.2.3): 2010-08-16 08:29:26 +00:00
sml-mode
snappy Initial import of snappy version 1.0.1 into the packages collection. 2011-04-05 05:34:16 +00:00
sparse
sparsehash Add LICENSE 2011-05-29 15:12:26 +00:00
spiff
spin Initial import of spin version 5.2.5 into the Packages Collection. 2010-10-24 18:54:12 +00:00
splint
st Not MAKE_JOBS_SAFE 2011-06-19 05:59:25 +00:00
stgit Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
stlport exactly set --mode and --tag for libtool. 2010-09-26 11:27:21 +00:00
stooop
subversion Update subversion pacakges to 1.6.17. 2011-06-03 13:26:49 +00:00
subversion-base recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
sunifdef Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
svk Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
swig
swt recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
syncdir
sysexits
tailor This is a Python egg, so s/extension/egg in Makefile, to install egg info files 2010-06-04 20:01:00 +00:00
tavrasm
tcl-tclcl
tcllib
tclreadline
teem Add upstream bug report URL. 2011-08-04 23:58:35 +00:00
tet3 LICENSE=artistic 2011-03-07 05:37:41 +00:00
tex-multido Import tex-multido-1.42 as devel/tex-multido. 2011-03-16 17:49:02 +00:00
tex-multido-doc Import tex-multido-doc-1.42 as devel/tex-multido-doc. 2011-03-16 17:49:10 +00:00
tex-pst-uml Import tex-pst-uml-0.83 as devel/tex-pst-uml. 2011-03-18 21:49:31 +00:00
tex-pst-uml-doc Import tex-pst-uml-doc-0.83 as devel/tex-pst-uml-doc. 2011-03-18 21:49:41 +00:00
tig Fix broken build. 2011-07-31 22:15:36 +00:00
tkcvs Improve DESCR based on HOMEPAGE. Prompted by Snader_LB. 2011-08-16 10:52:42 +00:00
tkdiff Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
tla Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
tmake Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
topgit
tpasm
tre recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
treecc Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
trio
tvision marked as user-destdir installation ready. 2011-03-07 05:58:35 +00:00
ucl
ucpp
unidiff
uno Not MAKE_JOBS_SAFE. 2010-07-21 10:09:46 +00:00
valgrind * LICENSE=gnu-gpl-v2 2011-03-21 08:24:38 +00:00
valide recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
vanessa_adt Changes 0.0.8: 2010-06-02 12:42:38 +00:00
vanessa_logger Changes 0.0.8: 2010-06-02 12:42:14 +00:00
vanessa_socket recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
vtcl
wide
xdelta
xdelta3 Update to 3.0z: 2010-11-23 17:20:04 +00:00
xfce4-dev-tools recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
xfconf Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:26:04 +00:00
xmake service suspended. fetch from backup. 2011-03-11 11:19:55 +00:00
xorg-util-macros
xsd Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
xulrunner Update to firefox-6.0.1. 2011-09-05 05:35:23 +00:00
xulrunner192 Update legacy firefox36 package to 3.6.21. 2011-09-05 11:05:21 +00:00
xxgdb
yasm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
z80-asm
ZenTest Update ZenTest package to 4.6.2. 2011-08-25 15:21:47 +00:00
zlib On at least OS X 10.4 the builtin zlib does not provide all the symbols 2010-12-14 19:51:45 +00:00
zzuf Updte zzuf to 0.12. 2010-12-25 11:00:51 +00:00
Makefile add and enable pythontidy 2011-09-01 03:41:07 +00:00