pkgsrc/devel
wiz 0505a303b2 Update to 4.02:
2013-01-07  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Version 4.02 released.

	* Makefile.PL: Add the minimum Perl version to the package
	metadata.

	* t/basic256.t: List the tag first in the import list for
	compatibility with the Exporter from Perl 5.6.2.  Thanks to David
	Cantrell for the testing and debugging.

2012-12-31  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Version 4.01 released.

	* t/strict.t: During coverage checking, skip generic tests that
	don't run module code for a significant speed-up.

	* examples/generate-colors: Add POD documentation.
	* t/critic.t: Also check the examples directory.
	* t/pod.t: Likewise.
	* t/pod-spelling.t: Likewise.

	* t/aliases-env.t: Fix logic for skipping tests when Test::Warn is
	not installed.

2012-12-30  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Version 4.00 released.

	* LICENSE: New file summarizing copyright and license information.

	* examples/generate-colors: Add support for "basic" and "bright"
	test file types that test all the other supported attributes.
	* tests/README: Remove VT100 test files.  The license was unclear,
	and the new generate-colors example script does everything they do
	of significance for this package plus more.
	* tests/ansicolor: Likewise.
	* tests/vt100-torture: Likewise.

	* ANSIColor.pm (PUSHCOLOR): Take an array like all the other
	constant functions and join all arguments together before
	manipulating it.
	* t/basic.t: Multiple new tests for various weird edge cases.

	* ANSIColor.pm (AUTOLOAD): Only honor ANSI_COLORS_DISABLED if it
	is set to a true value.
	(color): Likewise.
	(colored): Likewise.
	* t/basic.t: Test that ANSI_COLORS_DISABLED must be true.

	* t/synopsis.t: New test for SYNOPSIS syntax.

	* ANSIColor.pm: Add COMPATIBILITY section to the documentation,
	collecting all information about when features were introduced and
	adding the version of Perl that they shipped with.  Add
	appropriate version numbers to the use statements in the SYNOPSIS.

	* ANSIColor.pm: Use coloralias to load aliases from the
	environment.  Improve commenting in the SYNOPSIS.  Document the
	new alias name restrictions.
	(coloralias): New function to set a color alias.  Enforce
	restrictions on the acceptable alias name.

	* t/aliases-env.t: Adjust warning test for new error message.
	* t/aliases-func.t: New test of coloralias.

2012-12-29  Stephen Thirlwall  <stephen.thirlwall@strategicdata.com.au>
	    Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Add support for custom color names configured with
	the ANSI_COLORS_ALIASES environment variable as set during module
	load.
	(color): Support custom colors.
	(colorvalid): Likewise.
	* t/aliases-env.t: New test of custom colors from the environment.
	* t/basic.t: Delete ANSI_COLORS_ALIASES from the environment before
	module load to avoid any effects from the test runner's settings.
	* t/basic256.t: Likewise.
	* t/eval.t: Likewise.
	* t/stringify.t: Likewise.
	* t/taint.t: Likewise.

2012-12-28  Kurt Starsinic  <kstarsinic@gmail.com>
	    Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Add constants (with tag :constants256) and
	attributes for 256-color emulators.
	(uncolor): Support the three-part 256-color codes.
	* t/basic256.t: New test for 256-color support.
	* examples/generate-colors: New script to generate 256-color test
	or demonstration files.

2012-12-28  Russ Allbery  <rra@stanford.edu>

	* t/basic.t: Test uncolor with \e[m and '' as only arguments.

	* ANSIColor.pm: $AUTOLOCAL takes precedence over $AUTORESET,
	reversing the previous behvior.  Document the precedence.
	* t/basic.t: Test for $AUTOLOCAL vs. $AUTORESET precedence.

	* t/taint.t: New check for proper untainting in AUTOLOAD.
	* ANSIColor.pm: Comment the untainting of $AUTOLOAD so that it
	isn't accidentally removed as apparently unnecessary.

	* t/strict.t: Ignore t/taint.t for coverage checking, since
	Test::Strict doesn't know how to invoke tests that require
	tainting.

	* t/strict.t: Add test suite coverage checking if running the test
	in maintainer mode.
	* ANSIColor.pm (AUTOLOAD): Drop a redundant check on the result of
	eval so that 100% test coverage can be achieved.
	* t/basic.t: Remove taint checking, which is incompatible with
	coverage testing.  Add tests to achieve 100% coverage.
	* t/eval.t: Remove taint checking.
	* t/stringify.t: Likewise.

	* ANSIColor.pm: Document $Term::ANSIColor::AUTOLOCAL.

	* ANSIColor.pm (AUTOLOAD): Support ANSI_COLORS_DISABLED in the
	generated constant subs.  Fixes a bug where the environment
	variable would be ignored if the constant were used before it was
	set.
	* t/basic.t: Test for proper ANSI_COLORS_DISABLED support in
	generated constant subs.

	* t/critic.t: New test that runs perlcritic (and perltidy) on all
	source files and checks for violations.
	* t/data/perlcriticrc: New file.
	* t/data/perltidyrc: New file.
	* ANSIColor.pm: Substantial reworking to improve coding style and
	layout.  Update to Perl 5.6 syntax.  Unconditionally load Carp for
	simplicity.
	* Makefile.PL: Require Perl 5.6.  Remove conditionals for
	configuration that was not supported prior to Perl 5.6.
	* t/basic.t: Update coding style.
	* t/eval.t: Likewise.
	* t/stringify.t: Likewise.

	* t/minimum-version.t: New test for the minimum required version
	of Perl.

	* t/pod-coverage.t: New test for POD coverage.

	* ANSIColor.pm: Add use warnings.
	* Makefile.PL: Add use strict and use warnings.
	* t/strict.t: New test for strict and warnings in all code.

	* t/pod.t: Update coding style.
	* t/pod-spelling.t: Use Test::Spelling instead of including a
	less-tested version of the same code.  Update coding style.

2012-03-18  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Version 3.02 released.

	* ANSIColor.pm (AUTOLOAD): Only return pass-through behavior if
	the function that was called was one of our constants, rather than
	turning every unknown function in the Term::ANSIColor namespace
	into a passthrough join function when colors are disabled.
	* t/basic.t: Test proper error reporting with colors disabled.

	* ANSIColor.pm (AUTOLOAD): Preserve an existing value of $@ when
	generating a constant sub and restore it afterwards.  Diagnose
	errors in creating the constant sub and die instead of ignoring
	them.
	* t/eval.t: New test for $@ preservation.

	* ANSIColor.pm: Add italic and the ITALIC constant.  Document that
	the support for it is rare.
	* t/basic.t: Test italic and ITALIC support.

	* ANSIColor.pm: Add "mistyped" as a stopword, required by the
	latest aspell on Debian.

2011-07-20  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Version 3.01 released.

	* Makefile.PL: Change the DISTNAME to Term-ANSIColor.

	* ANSIColor.pm (colored): Only interpret an initial array
	reference as a list of colors, not any initial reference, allowing
	the colored function to work properly on objects with
	stringification defined.  Thanks, Revilo Reegiles.
	* t/stringify.t: New test for proper behavior with non-array
	references in colored.

2011-03-13  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Fix two syntax errors in the SYNOPSIS.  Thanks,
	Jan Hartung.

2010-10-08  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Warn in the documentation that attributes are not
	supported in and will not work with Perl formats.

2010-04-11  Russ Allbery  <rra@stanford.edu>

	* ANSIColor.pm: Update the URL for ECMA-048 in the documentation.
2013-11-24 10:05:32 +00:00
..
accerciser Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
accerciser3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
acme Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
acr Update to 0.8.5 2013-06-12 11:00:57 +00:00
acunia-jam Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
adocman Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
aegis Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
ald * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
allegro Install allegro.m4 file so packages using autoconf can find it. 2013-07-06 22:31:53 +00:00
anjuta Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
apache-ant update to 1.9.2 - just a fix for CVE-2013-1571 2013-07-30 14:40:59 +00:00
apache-ant15 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
apache-ivy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
apache-maven Fix case when PKG_SYSCONFBASE != ${PREFIX}/etc 2013-05-18 05:37:03 +00:00
apel Add emacs24nox to the list of EMACS_VERSIONS_ACCEPTED. 2013-03-10 05:10:59 +00:00
apr Update to 1.4.8: 2013-07-04 16:24:02 +00:00
apr-util Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
apr0 Update apr to 0.9.20. 2013-08-04 02:44:36 +00:00
arena Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
argp Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
argtable Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
as31 "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
asm2html Reset maintainer, domain no longer exists. 2013-03-28 23:59:03 +00:00
astyle Update to 1.15.3. Changes: 2013-05-25 16:39:39 +00:00
at-spi Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
at-spi2-atk Finish removing patch-atk-adaptor_accessible-cache.c which is not needed 2013-05-23 13:09:18 +00:00
at-spi2-core Use MAKE_DIRS to create installation directory for default config file. 2013-08-14 20:39:16 +00:00
atf Update atf to 0.18: 2013-11-16 20:26:54 +00:00
atf-libs Update atf and atf-libs to 0.17: 2013-02-14 18:36:12 +00:00
atk Update to 2.10.0: 2013-10-04 21:17:27 +00:00
atkmm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
autoconf Mention the files in mk/gnu-config that should be updated when updating 2013-10-02 07:25:56 +00:00
autoconf-archive Update to 2013.11.01: 2013-11-03 09:05:18 +00:00
autoconf213 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
autogen Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
automake Update to 1.14: 2013-07-02 06:37:00 +00:00
automake14 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
automoc4 Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
avl Set LICENSE, update HOMEPAGE, and remove commented-out MASTER_SITES. 2013-06-26 12:09:26 +00:00
avltree Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bcc Don't warn about mixing logical ops without parentheses or negative 2013-09-10 14:16:22 +00:00
bglibs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
bin86 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
binutils Don't bother with unused functions for Clang. Race conditions while 2013-09-23 10:03:14 +00:00
bison Bump PKGREVISION for previous 2013-11-09 05:36:26 +00:00
blame Disable (on NetBSD) ill-conceived GNUish mktime() code that generates 2012-12-17 01:28:29 +00:00
blib Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
bmake Take care for the case missing `type' command, PR pkg/48089. 2013-10-31 12:18:19 +00:00
boa-constructor Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
boehm-gc Update to 7.2e: Over a year of development, no concise summary found. 2013-11-18 19:53:57 +00:00
boost-build * Fix building with GCC (PR#48388). 2013-11-20 19:17:55 +00:00
boost-docs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
boost-headers Changes 1.55.0: 2013-11-12 16:49:07 +00:00
boost-jam * Fix building with GCC (PR#48388). 2013-11-20 19:17:55 +00:00
boost-libs Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
boost-python Changes 1.55.0: 2013-11-12 16:49:07 +00:00
bouml recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
bpython Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
buddy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bugzilla Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
bugzilla3 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
bullet Add missing linkage to own library. May fix the build failures seen 2012-12-21 02:33:08 +00:00
byacc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bzr Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bzr-explorer Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bzr-gtk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bzr-svn Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
bzrtools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
c-cpp-reference Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cbrowser Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ccache Update to 3.1.9: 2013-01-21 13:52:36 +00:00
cdecl * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
cdk Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
cervisia Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
cfitsio Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cflow Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cflow-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
cgdb cgdb works fine with terminfo and curses. 2013-10-16 10:51:39 +00:00
cgen Import cgen-20131001 as devel/cgen. 2013-10-12 08:39:02 +00:00
check Update check to 0.9.10. 2013-10-03 14:48:07 +00:00
chmlib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
chrpath Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
clib Update clib to version 0.3. 2013-03-09 00:23:26 +00:00
clisp-pcre Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
clisp-syscalls
clisp-wildcard "Please write NetBSD.org instead of netbsd.org" 2013-04-06 13:09:24 +00:00
clisp-zlib Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
cmake Changes 2.8.12.1: 2013-11-14 07:59:44 +00:00
cmake-fedora Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cmake-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
cmph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
coccinelle Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
coconut ncurses was removed from coconut 2013-10-16 11:55:43 +00:00
codeville Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cogito Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
colordiff Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
compiz-bcop Updated to latest release (before the rewrite). No NEWS/ChangeLog. Replaced 2013-06-30 20:16:15 +00:00
compizconfig-backend-gconf Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
confuse Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cook Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cppcheck Update to 1.60.1: 2013-07-14 17:33:59 +00:00
cppunit Fix installation of docs and adjust PLIST accordingly. 2013-08-15 10:26:32 +00:00
cproto Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cpuflags Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cqual Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cscope cscope works fine with system curses 2013-10-16 12:03:29 +00:00
cssc Apply the gtest change to cssc, gmock and open-vcdiff as well. 2013-05-09 20:05:35 +00:00
ctemplate Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cunit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cut Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cutter Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
cvs-fast-export Update to 0.5 (ok apb@). 2013-08-05 02:10:07 +00:00
cvs2cl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cvs2html Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cvs2svn Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cvsclone Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cvsd Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
cvsdiff2patch Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cvsgraph recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
cvslock Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cvsps Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
cvsps3 Update DESCR from http://www.catb.org/~esr/cvsps/ . 2013-05-18 10:08:05 +00:00
cvsup Mark remaining packages not support DESTDIR as BROKEN as decided 2013-10-24 10:31:02 +00:00
cvsup-bin Fixes: 2013-04-06 03:45:05 +00:00
cvsup-gui Mark remaining packages not support DESTDIR as BROKEN as decided 2013-10-24 10:31:02 +00:00
cvsup-gui-bin Fixes: 2013-04-06 03:45:05 +00:00
cvsutils Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cvsync PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
cxref Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
darcs Mark remaining packages not support DESTDIR as BROKEN as decided 2013-10-24 10:31:02 +00:00
darts Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
dconf USE_LANGUAGES=c99, fixes build on SunOS. 2013-10-29 10:34:30 +00:00
dconf-editor Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ddd friend declarations may not introduce default arguments. 2013-08-27 15:43:19 +00:00
deforaos-coder Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
deforaos-libsystem Portability fixes. 2013-03-06 12:02:14 +00:00
dejagnu Update to 1.5.1 (The date below is corrected). 2013-06-16 04:54:51 +00:00
delta Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
dev86 Update dev86 to 0.16.19. 2013-11-07 14:01:47 +00:00
devhelp Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
device-driver-doc-de Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
devIL recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
dia2code Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
diffuse Update to 0.4.7: 2013-05-14 19:44:22 +00:00
diffutils fix mkdir_p problem for diffutils po files 2013-08-21 14:08:08 +00:00
distcc Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
distcc-pump
distccmon-gnome Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
distccmon-gtk Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
dlcompat Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
dmake Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
dmalloc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
doc++ Avoid conflicts with std::hash and std::ref in C++11. 2013-04-30 22:16:12 +00:00
dolphin-plugins Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
dotconf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
doxygen Add tex-amsfonts dependency as it's explicitly used by doxygen. However, 2013-11-20 04:50:47 +00:00
doxymacs Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
easygit Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
eclipse Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ecore Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
edcommon Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
editline Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
eet Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
eina Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
eio Fix non-sunpro SunOS build. 2013-06-18 23:34:33 +00:00
electric-fence Adding buildlink3.mk file for electric-fence. Yes, some packages actually 2013-04-20 23:25:52 +00:00
elf digest 2013-10-16 12:32:34 +00:00
elfsh * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
elftoolchain Continue on certain harmless default warnings from clang. 2013-09-10 14:16:52 +00:00
elib Resolves: 2013-04-06 20:27:16 +00:00
emacs-ilisp patch-a{b,c,f} patch-ilisp-dia_el 2013-06-19 13:12:00 +00:00
emacs20-elib Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
epydoc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
eric3 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
eric4 Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
error Honor PKGMANDIR. 2012-12-30 04:24:41 +00:00
ethos Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ETL Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
etrace Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
exctags Use PREFIX instead of LOCALBASE. Commented patches/patch-aa and regenerated 2013-05-05 21:56:22 +00:00
exempi Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
ExmanIDE "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
fann Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
fann-devel Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
fastdep Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ffcall Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
fhist Don't use extern inline with Clang as the redefinitions conflict with C99. 2013-02-26 10:25:38 +00:00
flex Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
flexdock Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
flim Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
florist Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
fortran-utils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
fossil Update to 1.27 2013-11-03 12:46:26 +00:00
frama-c Fix GNU make version comparison logic. 2013-11-15 14:10:29 +00:00
fromcvs Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
ftnchek Remove GNU_CONFIGURE_LIBDIR. 2013-06-12 12:35:35 +00:00
g-wrap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
GConf Bump all packages for perl-5.18, that 2013-05-31 12:39:35 +00:00
GConf-ui Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gconfmm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gcvs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
gdb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
gdb6 Fix rpath option. 2013-10-20 18:17:19 +00:00
gdbus-codegen share hacks.mk with its base package. 2013-08-24 09:36:43 +00:00
gdl -this needs gtk3 rather than gtk2 2013-10-21 18:51:57 +00:00
geany Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gearmand Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
generate Add do-install target. 2013-10-08 11:25:55 +00:00
gengetopt Import gengetopt-2.22.6 as devel/gengetopt. 2013-10-23 17:41:57 +00:00
gentle Don't use share/doc/html. Clean up a lot of additional pkglint. 2012-12-21 01:26:34 +00:00
gettext Changes 0.18.3.1: 2013-08-22 14:39:00 +00:00
gettext-asprintf Changes 0.18.2: 2013-01-31 21:45:03 +00:00
gettext-lib Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
gettext-m4 "$foo is ambiguous. Use ${foo} if you mean a Makefile variable or $$foo if 2013-04-06 11:39:25 +00:00
gettext-tools Oops, missing bump. 2013-11-06 13:28:57 +00:00
gflib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
giblib Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
gindent Add PKGGNUDIR support. 2012-12-06 11:38:19 +00:00
git Changes 1.8.4.3: 2013-11-12 11:22:10 +00:00
git-base Changes 1.8.4.3: 2013-11-12 11:22:10 +00:00
git-docs marked to supersede the previous package name. 2013-09-11 01:26:00 +00:00
git-gitk marked to supersede the previous package name. 2013-09-11 01:26:00 +00:00
gitolite Fix a common mistake in many different packages: POSIX says that when using 2013-10-18 11:41:17 +00:00
glade Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
glade3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
glib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
glib2 Improve "poll list of mounted file systems" patch by removing some 2013-10-03 14:41:00 +00:00
glibmm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
global Update to 6.2.9: 2013-09-09 20:39:14 +00:00
gmake Update to 4.0: 2013-10-23 08:54:59 +00:00
gmock Apply the gtest change to cssc, gmock and open-vcdiff as well. 2013-05-09 20:05:35 +00:00
gmp Oops.. switched back to .tar.bz2 2013-10-02 15:13:46 +00:00
gmtk Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnatpython Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
gnome-common Support automake-1.14. Bump PKGREVISION. 2013-07-04 12:05:26 +00:00
gnustep-base Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
gnustep-examples Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
gnustep-make Don't create interfaces don't derive from NSObject. 2013-03-24 17:02:37 +00:00
gnustep-objc It is really a lot more likely that 4.6.0 is meant here... 2012-11-01 20:05:17 +00:00
gnustep-objc-lf2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
gob2 Update to 2.0.19: 2013-01-06 00:33:46 +00:00
gobject-introspection Support __inline__ for older OSX. 2013-10-04 15:36:30 +00:00
google-glog Fix use of NUL compared against pointers, including a real bug due to 2013-07-18 12:01:29 +00:00
googletest Fake std::tr1 namespace for tuple and compile with C++11 for clang. 2013-05-09 13:49:10 +00:00
Gorm Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
gperf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
gprbuild-aux Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
gps Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gputils Explicitly disable HTML doc generation, fixes PLIST errors on systems where 2013-06-25 09:44:12 +00:00
grantlee Import grantlee 0.3.0 2013-11-07 08:13:51 +00:00
gsoap Don't use gethostbyname_r on NetBSD. 2013-08-31 14:46:48 +00:00
gst-plugins0.10-pango Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gst-plugins1-pango Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtexinfo Update to 5.2: 2013-10-06 16:12:00 +00:00
gtl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
guile-gnome Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
guile-gtk Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
guile-lib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
guile-slib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
guile-www Update to 2.37: 2013-07-28 20:46:18 +00:00
gyp Add a patch. 2013-09-08 16:33:56 +00:00
haskell-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
hdf When extracting -R... from the Fortran link line, prefix it with -Wl 2013-10-27 20:31:21 +00:00
hdf5 recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
hdf5-c++ Changes 1.8.11: 2013-09-01 09:56:41 +00:00
heirloom-getopt
heirloom-libcommon
heirloom-what
hg-git Update to 0.4.0 2013-05-20 08:18:55 +00:00
hoe Update hoe to 3.7.1. 2013-09-13 12:56:50 +00:00
hptools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ht Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
hugs-HUnit Drop maintainership. 2013-11-21 23:50:04 +00:00
hugs-unix Drop maintainership. 2013-11-21 23:50:04 +00:00
idiff Define prototypes to avoid conflicting implicit declarations. 2012-12-20 22:00:06 +00:00
idutils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
imake Update to 1.0.6: 2013-07-23 06:48:21 +00:00
iniparser Import iniparser-3.1 as devel/iniparser. 2013-11-22 11:49:42 +00:00
intel2gas Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
isect Resolves: 2013-04-06 20:27:16 +00:00
its4 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
jam Fix build on Solaris without /usr/bin/ccs/ar. 2012-12-26 18:51:47 +00:00
java-subversion Update subversion to 1.8.1. 2013-08-09 11:38:58 +00:00
javacc Update to 5.0 2013-06-30 12:31:42 +00:00
javadeps
jenkins Update to 1.509.3 2013-09-28 23:19:43 +00:00
jflex Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
jq Update jq to version 1.2. This is the version which should have been added 2013-04-26 10:20:34 +00:00
js2-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
js_of_ocaml Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
kapptemplate Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
kcachegrind Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
kdbg recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kde-dev-scripts Fixup a couple of replace-interpreter entries. 2013-11-10 23:04:32 +00:00
kde-dev-utils Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
kdesdk-kioslaves Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
kdesdk-strigi-analyzers Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
kdesdk-thumbnailers Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
kdesdk3 Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
kdevelop Drop maintainership of kde3 packages. Haven't had any systems running 2012-12-17 18:37:06 +00:00
kdevelop-base Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
kdevelop4 Update to 4.4.1 2013-11-07 13:51:37 +00:00
kdevplatform Update to 1.5.2 2013-11-07 13:48:59 +00:00
kdiff3 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdiff3-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
ko-po-check Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
kompare Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
kscope recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kyua-atf-compat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
kyua-cli Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
kyua-testers Initial import of kyua-testers, version 0.1: 2013-02-19 05:29:15 +00:00
lcc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
lcov Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
ldapsdk Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
ldpc Allow this package to be cross-built - pick up ${CC} from the environment, 2013-05-11 21:21:22 +00:00
lemon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
lettuce Updated to latest release as discussed on tech-pkg@ a month ago. PLIST 2013-06-30 22:33:58 +00:00
libarena Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libargparse Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libast Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libatomic_ops automake-1.13 compatability. 2013-01-25 11:25:50 +00:00
libbegemot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libbinio Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libblkid Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libbonobo Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
libbonoboui Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libcfg+ Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libcompizconfig Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
libconfig Update devel/libconfig to 1.4.9. 2013-10-30 21:15:49 +00:00
libctl Update to 3.2.1, provided by outpaddling and asau in wip. 2013-01-23 21:46:33 +00:00
libdaemon Fix build on OpenBSD/amd64 5.2. 2013-01-06 03:32:34 +00:00
libdatrie Update libdatrie to 0.2.6. 2013-09-03 09:12:56 +00:00
libdbusmenu-qt Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
libdnsres Removed undocumented (and almost always unsupported) bounded attribute. 2013-11-04 16:41:16 +00:00
libdockapp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libebml Add a number of includes hidden by libstdc++'s name space pollution. 2013-04-29 21:31:09 +00:00
libelf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libetm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libev 4.15 Fri Mar 1 12:04:50 CET 2013 2013-08-28 12:34:59 +00:00
libevent Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
libexecinfo Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
libextractor Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libf2c Revert. 2013-04-07 20:43:26 +00:00
libffi Add libffi support for VAX and m88k. Tested with netbsd-6 on VAX. 2013-11-03 23:51:51 +00:00
libfirm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libFoundation Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libFoundation-examples
libftdi Fixes: 2013-04-06 03:45:05 +00:00
libgail-gnome Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
libgcroots Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libgee update to 0.6.8 2013-03-14 19:20:20 +00:00
libgee0.8 Update to 0.8.7: 2013-07-15 12:42:33 +00:00
libgetopt Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
libglade Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libglademm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgnome Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgnomemm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgnomeui Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgnomeuimm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgphoto2 fixes missing revision bump from jpeg-9. 2013-03-15 13:15:07 +00:00
libgsf libgsf 1.14.28 2013-08-11 20:19:58 +00:00
libgweather Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
libhfs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libiberty Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libidn definition file for Cygwin. 2013-09-20 09:09:58 +00:00
libinotify Add buildlink3.mk file for this package. Coming update to compiz will use 2013-05-16 00:07:48 +00:00
libixp Fix SunOS build. 2013-05-17 19:49:12 +00:00
libjit Resolves: 2013-04-06 20:27:16 +00:00
libjudy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
liblangtag Packaged devel/liblangtag, an interface for language tag recognition that 2013-08-24 16:15:10 +00:00
libltdl Update to libtool-2.4.2: 2013-04-12 13:44:07 +00:00
libmaa Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmatchbox Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
libmcs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmemcache Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmemcached Fix bl3 for the sasl option. 2013-09-16 16:46:32 +00:00
libmemmgr Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmimedir Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmowgli Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libmtp Update to 1.1.6 2013-04-08 09:52:01 +00:00
libnet10 Look for dlpi interface before bpf, SunOS has both but this package assumes 2013-02-22 21:12:25 +00:00
libnet11 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libnjb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libntlm Update to 1.4: 2013-09-15 17:32:44 +00:00
liboil Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
liboop Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libosip Update to latest stable, 4.0.0. Buildlink pthread. Move disabling of 2013-07-14 14:55:16 +00:00
libowfat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libpeas Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libpgm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
libportlib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libproplist Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
librfuncs Reset MAINTAINER/OWNER (became observers) 2013-02-01 22:21:05 +00:00
librlog Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
librsync Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
librxspencer Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libsexy Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libsexymm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libsigc++ Reset maintainer, address bounces. 2013-09-23 10:33:01 +00:00
libsigc++1 Reset maintainer, address bounces. 2013-09-23 10:33:01 +00:00
libsigsegv Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libslang Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libslang2 Deal with the /usr/bin/env changes in REPLACE_INTERPRETER. 2013-04-14 19:46:50 +00:00
libsmi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libstash Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libstatgrab Works fine with system curses 2013-10-16 13:09:00 +00:00
libstree "Packages that install libtool libraries should define USE_LIBTOOL." 2013-04-06 14:22:39 +00:00
libstroke Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libtai Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libtar Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libtecla Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libthai Update libthai to 0.1.19. 2013-09-03 09:24:42 +00:00
libthrift Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
libtool PR 48081: Explicitly disable Fortran in libtool-base, otherwise it will 2013-08-27 15:50:23 +00:00
libtool-base PR 48081: Explicitly disable Fortran in libtool-base, otherwise it will 2013-08-27 15:50:23 +00:00
libtool-fortran PR 48081: Explicitly disable Fortran in libtool-base, otherwise it will 2013-08-27 15:50:23 +00:00
libtool-info Resolves: 2013-04-06 20:27:16 +00:00
libts "This line belongs inside the .ifdef block." 2013-04-06 13:46:33 +00:00
libusb Use PKGVERSION_NOREV. Prodded by joerg. 2013-06-23 16:59:16 +00:00
libusb-compat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libusb1 Added patch from OpenBSD 2012-11-20 13:01:47 +00:00
libusbx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libuuid Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
libuv Set license to 2013-03-06 17:32:08 +00:00
libuxre
libview Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libvolume_id Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
libwhisker2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
libwnck Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libwnck3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libxenserver From 6.2, this is 2-clause BSD rather than GPL 2013-07-18 13:05:48 +00:00
lincvs Hand in maintainership. 2013-04-13 07:55:01 +00:00
lmdbg Update to 1.2.0 2013-08-07 21:07:25 +00:00
locktests Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
log4cplus TLS is not supported by NetBSD<6 2013-09-23 13:55:50 +00:00
log4cxx Add missing include. Avoid incompatible forward declaration, just 2013-04-30 22:17:38 +00:00
log4shib 1.0.6: 2013-06-16 10:01:00 +00:00
lokalize Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
ltsa Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
lua-alt-getopt Revbump after updating lang/lua to 5.2.2. 2013-08-15 06:32:05 +00:00
lua-filesystem Use LUA_PKGPREFIX. Many Lua packages already do, but not these. 2013-10-30 06:03:37 +00:00
lua-gi Use LUA_PKGPREFIX. Many Lua packages already do, but not these. 2013-10-30 06:03:37 +00:00
lua-lpeg Use LUA_PKGPREFIX. Many Lua packages already do, but not these. 2013-10-30 06:03:37 +00:00
lua-lrexlib Update lua module depends. 2013-10-31 23:32:26 +00:00
lua-lrexlib-onig Revbump after updating lang/lua to 5.2.2. 2013-08-15 06:32:05 +00:00
lua-lrexlib-pcre Revbump after updating lang/lua to 5.2.2. 2013-08-15 06:32:05 +00:00
lua-lrexlib-posix Revbump after updating lang/lua to 5.2.2. 2013-08-15 06:32:05 +00:00
lua-mode Update to 20130419: 2013-07-29 20:35:00 +00:00
lua-penlight Use LUA_PKGPREFIX. Many Lua packages already do, but not these. 2013-10-30 06:03:37 +00:00
lua-posix Use the LUA_CDIR and LUA_LDIR plist vars. 2013-10-30 06:04:16 +00:00
lua-stdlib Revbump after updating lang/lua to 5.2.2. 2013-08-15 06:32:05 +00:00
lua-stdlib-doc Use LUA_PKGPREFIX in PKGNAME, should hopefully fix bulk-medium dependency 2013-11-01 18:17:43 +00:00
lutok Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
lwp Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
m4 Fix build on DragonFly 3.4.3 2013-11-01 09:49:20 +00:00
m17n-lib recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
mad-flute PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
magit Drop maintainership. 2013-11-21 23:50:04 +00:00
makedepend Update to 1.0.5: 2013-07-23 06:49:11 +00:00
makedepf90 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
maketool Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
man-pages Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
mantis Update to 1.2.15 2013-06-30 11:47:44 +00:00
matio Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
mcpp Import mcpp-2.7.2 as devel/mcpp. 2013-10-20 15:06:58 +00:00
mdds Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
meld Update to 1.8.2: 2013-10-18 21:40:54 +00:00
mell Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
memcached Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
menhir Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
mercurial Update to 2.8: 2013-11-02 17:29:31 +00:00
mico Add a comment about the assertion on unresolvable hostname. 2013-08-30 16:58:14 +00:00
mk-configure Fix for Minix. Thanks to Thomas Cort. ++pkgrevision 2013-04-06 08:39:31 +00:00
mkcmd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
mm-common Import mm-common-0.9.6 as devel/mm-common. 2013-07-07 15:04:28 +00:00
mono-addins Clear PLATFORM in the environment; if it's defined the build fails. 2013-11-24 02:39:54 +00:00
mono-tools Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
monodevelop Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
monodevelop-database Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
monotone monotone doesn't build against Lua 5.2, so require 5.1. 2013-11-13 22:48:10 +00:00
monotone-server Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
monotone-viz Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
mph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
mr Update to 1.20130826. From the changelog: 2013-08-28 04:48:39 +00:00
msgpack Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
nana Resolves: 2013-04-06 20:27:16 +00:00
nant Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
nasm Update to 2.10.09 2013-08-13 00:17:36 +00:00
nbitools Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
nbpatch bin/nbpatch require manifest file for UAC. 2013-02-10 13:06:43 +00:00
ncc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ncurses Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
ncursesw Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
netbeans-ide Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
netbsd-iscsi-lib Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
netcdf recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
netcdf-fortran recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
newfile Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
noweb Install TeX files into share/texmf-dist, not share/texmf. 2013-10-30 02:58:19 +00:00
npapi-sdk Update npapi-sdk to 0.27.2. 2013-01-05 11:44:07 +00:00
nqc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
nsis Honor wrappers. Fix build with libc++. 2013-10-15 14:41:36 +00:00
nspr Update to 4.10.2 2013-11-21 15:22:58 +00:00
nspr-reference Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
nss Update to 3.15.3 2013-11-21 15:23:47 +00:00
ObjectiveLib Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
ocaml-batteries Package update to version 2.1, including a patch to compile with 2013-11-01 10:32:53 +00:00
ocaml-deriving-ocsigen Updated ocaml-deriving-ocsigen to its latest version, 0.5. Changes include: 2013-11-01 11:42:40 +00:00
ocaml-findlib Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
ocaml-lwt Revbump and patches to compile with ocaml 4.01. 2013-11-01 10:50:03 +00:00
ocaml-optcomp Needs ocaml-findlib. 2013-11-05 17:39:15 +00:00
ocaml-react Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
ode Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ogre recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
okteta Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
omake Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
opal Fix missing dependency as seen in libc++ build. 2013-10-15 14:42:10 +00:00
open-vcdiff Add b3.mk. 2013-08-15 17:12:12 +00:00
opencm opencm doesn't use curses, just termcap. 2013-10-16 13:27:40 +00:00
opengrok Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
openrcs Fix build with automake 1.4. 2013-07-19 12:50:44 +00:00
orc Update to 0.4.18. 2013-09-02 16:10:39 +00:00
ossp-uuid Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-accessors Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-accessors-fast Import p5-accessors-fast-0.03 as devel/p5-accessors-fast. 2013-07-06 00:41:26 +00:00
p5-Acme-PlayCode Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-Annotate Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-C3 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-CheckDigits Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-Dependency Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-Diff Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-HowSimilar Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-Merge Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Algorithm-Permute Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-aliased Update to 0.31 2013-11-24 02:17:48 +00:00
p5-AnnoCPAN-Perldoc Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Any-Moose Update to 0.21 2013-08-27 02:28:13 +00:00
p5-AnyEvent Update to 7.05 2013-08-27 02:24:13 +00:00
p5-AnyEvent-AIO Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-AnyEvent-IRC Update to 0.97 2013-07-13 12:58:58 +00:00
p5-AnyEvent-XMPP Update to 0.54 2013-08-27 02:32:54 +00:00
p5-App-Cache Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-App-CLI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-App-Cmd Update to 0.322 2013-10-28 15:40:09 +00:00
p5-App-cpanminus Update to 1.6932 2013-07-25 14:32:33 +00:00
p5-App-cpanoutdated Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-App-FatPacker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-App-perlbrew Update to 0.64 2013-07-13 11:40:02 +00:00
p5-App-Prove-Plugin-ProgressBar Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-AppConfig Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-AppConfig-Std Update to 1.08: 2013-09-05 18:37:03 +00:00
p5-Array-Compare Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Array-Diff Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Array-RefElem Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-asa Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Async-Interrupt Change version number in pkgsrc to 1.10, so that it to be greater than previous 2013-09-02 13:40:33 +00:00
p5-AtExit Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Attribute-Handlers Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Attribute-Lexical Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-autobox Update to 2.82 2013-10-27 11:49:50 +00:00
p5-autobox-Core Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Autodia Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-autodie Updating package for CPAN distribution autodie in devel/p5-autodie from 2013-07-03 15:09:54 +00:00
p5-AutoLoader Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-AutoXS-Header Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Compiling Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-EndOfScope Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-OP-Annotation Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-OP-Check Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-OP-Check-EntersubForCV Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-OP-Check-StashChange Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-OP-PPAddr Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Hooks-Parser Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Keywords Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-B-Utils Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-BackPAN-Index Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-bareword-filehandles Adding package for CPAN distribution bareword-filehandles version 0.003 2013-07-03 07:29:07 +00:00
p5-Bit-Vector Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-boolean Update to 0.30 2013-07-14 00:34:35 +00:00
p5-BSD-Resource Update to 1.29.07 2013-07-13 08:32:13 +00:00
p5-Cache Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-Cache-Cache Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-Cache-FastMmap Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Cache-Memcached Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Cache-Simple-TimedExpiry Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-capitalization Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Capture-Tiny Update to 0.22 2013-07-13 11:32:32 +00:00
p5-Carp-Always Adding package fpr CPAN distribution Carp-Always version 0.12 to 2013-07-03 06:52:36 +00:00
p5-Carp-Assert Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Carp-Assert-More Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Carp-Clan Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Carp-REPL Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Check-ISA Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-circular-require Adding package for CPAN distribution circular-require version 0.10 into 2013-07-03 08:41:29 +00:00
p5-CLASS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Accessor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Accessor-Chained Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Accessor-Grouped Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Accessor-Lite Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Accessor-Named Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Adapter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Autouse Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Base Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-C3 Update to 0.25 2013-07-15 01:25:29 +00:00
p5-Class-C3-Adopt-NEXT Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-C3-Componentised Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-C3-XS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Container Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Data-Accessor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Data-Inheritable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-ErrorHandler Update to 0.02. From the changelog: 2013-05-31 14:59:52 +00:00
p5-Class-Factory Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Factory-Util Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Field Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Fields Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Gomor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Inner Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-InsideOut Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Inspector Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-ISA Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Load Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Load-XS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Loader Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-MakeMethods Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Method-Modifiers Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-MethodMaker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Mix Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-ObjectTemplate Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-OOorNO Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-ReturnValue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Singleton Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Std Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Throwable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Trigger Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Unload Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-Virtual Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-WhiteHole Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-XML Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-XPath Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Class-XSAccessor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Clone Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Clone-Fast Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Clone-PP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-common-sense Update p5-common-sense to 3.72. 2013-09-02 12:48:10 +00:00
p5-Compress-PPMd Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Compress-Raw-Bzip2 Update to 2.062: 2013-09-05 18:47:16 +00:00
p5-Compress-Raw-Zlib Update to 2.062: 2013-09-05 18:48:26 +00:00
p5-Config-Any Update to 0.24 2013-10-15 14:26:03 +00:00
p5-Config-Auto Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-AutoConf Updating package for CPAN Perl5 module Config::AutoConf in 2013-09-13 10:27:11 +00:00
p5-Config-Find Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-General Update to 2.52 2013-10-15 14:34:20 +00:00
p5-Config-GitLike Update to 1.12 2013-10-15 15:19:08 +00:00
p5-Config-Grammar Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-INI Update to 0.020 2013-10-15 15:10:48 +00:00
p5-Config-IniFiles Update to 2.82 2013-10-15 15:26:13 +00:00
p5-Config-MVP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-MVP-Reader-INI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-Properties Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-Std Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Config-Tiny Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Const-Fast Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-constant Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-constant-def Import p5-constant-def-0.01 as devel/p5-constant-def. 2013-07-06 00:39:59 +00:00
p5-Context-Preserve Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Contextual-Return Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Coro Update p5-Coro to 6.31. 2013-09-02 13:16:26 +00:00
p5-CPAN Updating package for CPAN distribution CPAN in devel/p5-CPAN from 1.9800nb2 2013-10-21 17:45:17 +00:00
p5-CPAN-Checksums Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-DistnameInfo Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-FindDependencies Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-Inject Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-Meta Update to 2.132140 2013-08-25 07:44:45 +00:00
p5-CPAN-Meta-Check Update to 0.007 2013-08-13 02:55:00 +00:00
p5-CPAN-Meta-Requirements Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-Meta-YAML Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-Perl-Releases Update to 1.24 2013-07-13 11:36:46 +00:00
p5-CPAN-Reporter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-CPAN-Uploader Updating package for CPAN distribution CPAN-Uploader in devel/p5-CPAN-Uploader 2013-07-03 16:26:57 +00:00
p5-Curses Build form and menu support now. 2013-10-16 16:27:26 +00:00
p5-Curses-UI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Curses-UI-POE Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Alias Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Buffer Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Compare Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Denter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Dump Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Dump-Streamer Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Dumper-Concise Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Dumper-Names Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Hierarchy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Integer Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-MessagePack Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-OptList Update to 0.108: 2013-09-05 18:39:35 +00:00
p5-Data-Page Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Pageset Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Peek Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Record Import p5-Data-Record-0.02 as devel/p5-Data-Record. 2013-10-11 11:04:10 +00:00
p5-Data-Section Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Section-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Serializer Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-ShowTable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Taxi Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-TemporaryBag Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Data-Uniqid Added devel/p5-Data-Uniqid version 0.12 2013-08-26 09:59:05 +00:00
p5-Data-UUID Update to 1.219: 2013-07-31 07:10:35 +00:00
p5-Data-Visitor Update to 0.30 2013-07-27 01:09:52 +00:00
p5-Date-Business Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Date-Calc Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Date-Calc-XS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Date-Manip Update to 6.41 2013-09-10 07:17:33 +00:00
p5-Date-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Debug-Client Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Declare-Constraints-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Autoflush Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-BeginLift Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Caller Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-CheckLib Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-CheckOS Update to 1.71 2013-08-15 15:12:36 +00:00
p5-Devel-Cover Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Cycle Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Declare Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Dumpvar Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-ebug Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-EvalContext Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Events Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Events-Objects Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-FindPerl Adding package for CPAN distribution Devel-FindPerl version 0.006 into 2013-07-03 06:59:46 +00:00
p5-Devel-FindRef Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Gladiator Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-GlobalDestruction Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Hide Adding package for CPAN distribution Devel-Hide version 0.0009 into 2013-07-03 07:24:49 +00:00
p5-Devel-Leak-Object Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-LexAlias Update to 0.05: 2013-06-12 13:51:03 +00:00
p5-Devel-NYTProf Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-PartialDump Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-PatchPerl Update to 0.96 2013-07-13 09:31:57 +00:00
p5-Devel-PPPort Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Pragma Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Profile Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Refactor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-REPL Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Size Update p5-Devel-Size to 0.79, compatibility fix for perl-5.18. 2013-06-01 03:46:57 +00:00
p5-Devel-SmallProf Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-StackTrace Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-StackTrace-AsHTML Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-StackTrace-WithLexicals Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-Symdump Update to 2.10: 2013-09-05 18:49:30 +00:00
p5-Devel-Trace Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Devel-TraceUse Updating package for CPAN distribution Devel-TraceUse in 2013-07-03 16:28:44 +00:00
p5-Dir-Self Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Dist-CheckConflicts Update to 0.09: 2013-09-05 18:43:26 +00:00
p5-Dist-Zilla Updating package for CPAN distribution Dist-Zilla in devel/p5-Dist-Zilla 2013-07-03 16:49:57 +00:00
p5-Dist-Zooky Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-enum Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Env-Path Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Error Update to 0.17021: 2013-09-05 18:52:42 +00:00
p5-EV Update p5-EV to 4.15. 2013-09-02 12:23:43 +00:00
p5-Eval-Closure Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Event Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Event-ExecFlow Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Event-RPC Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ex-lib Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Exception-Class Update to 1.37 2013-07-21 10:37:30 +00:00
p5-Exception-Handler Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Expect Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Expect-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-experimental Adding package for CPAN distribution experimental version 0.005 into 2013-07-03 08:43:31 +00:00
p5-Exporter-Lite Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-AutoInstall Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-CBuilder Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-Command Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-Config Adding package for CPAN distribution ExtUtils-Config version 0.007 2013-07-03 06:55:51 +00:00
p5-ExtUtils-CppGuess Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-Depends Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-Embed Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-F77 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-Helpers Adding package for CPAN distribution ExtUtils-Helpers version 0.021 into 2013-07-03 07:05:55 +00:00
p5-ExtUtils-Install Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-InstallPaths Adding package for CPAN distribution ExtUtils-InstallPaths version 0.009 2013-07-03 07:07:52 +00:00
p5-ExtUtils-LibBuilder Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-MakeMaker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-Manifest Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-ModuleMaker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-ModuleMaker-TT Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-ParseXS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-PkgConfig Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-XSBuilder Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ExtUtils-XSpp Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-BaseDir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Binary Import p5-File-Binary-1.7 as devel/p5-File-Binary. 2013-07-06 00:30:52 +00:00
p5-File-BOM Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-ChangeNotify Update to 0.23 2013-07-27 01:49:39 +00:00
p5-File-chdir Update to 0.1008. From the changelog: 2013-07-10 01:37:29 +00:00
p5-File-ConfigDir Updating package for CPAN module File-ConfigDir in devel/p5-File-ConfigDir 2013-10-21 17:49:37 +00:00
p5-File-DesktopEntry Update to 0.05 2013-08-31 04:33:03 +00:00
p5-File-DirCompare Update to 0.7 2013-08-31 04:42:23 +00:00
p5-File-DirSync Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Find-Rule Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Find-Rule-Age Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Find-Rule-Perl Update to 1.13 2013-08-31 07:09:16 +00:00
p5-File-Find-Rule-Permissions Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Find-Rule-PPI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Find-Rule-VCS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Flat Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-FlockDir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-HomeDir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-LibMagic Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Listing Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-MimeInfo Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Modified Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Next Update to 1.12: 2013-09-05 18:53:38 +00:00
p5-File-NFSLock Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Path Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Path-Expand Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Path-Tiny 0.7 2013-09-26 18:46:19 2013-11-05 02:47:59 +00:00
p5-File-PathConvert Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Policy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-pushd Changes 1.005: 2013-09-10 18:16:20 +00:00
p5-File-Save-Home Update to 0.09 2013-11-05 02:44:06 +00:00
p5-File-ShareDir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-ShareDir-Install Update to 0.05 2013-11-05 02:28:15 +00:00
p5-File-Slurp Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Slurp-Unicode Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Temp Update to 0.2304 2013-11-05 01:49:43 +00:00
p5-File-Tempdir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Touch Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Type Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Util Update to 4.132140 2013-11-05 01:42:56 +00:00
p5-File-Which Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-FileHandle-Fmode Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-FileHandle-Unget Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-FileKGlob Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Filesys-Notify-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-FindBin-libs Update to 1.8. From the changelog: 2013-07-10 01:16:23 +00:00
p5-Format-Human-Bytes Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-FreezeThaw Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Getopt-ArgvFile Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Getopt-Euclid Update to 0.4.4 2013-09-03 14:52:49 +00:00
p5-Getopt-Long Update to 2.42 2013-11-24 00:48:35 +00:00
p5-Getopt-Long-Descriptive Update to 0.096 2013-11-24 00:58:56 +00:00
p5-Getopt-Mixed Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Getopt-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-gettext Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Git-CPAN-Patch Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Git-Repository Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
p5-Git-Wrapper Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
p5-glib2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Gnome2 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-Gnome2-GConf Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Graph Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Gravatar-URL Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Gtk2-GladeXML Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-Guard Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-Case Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-FieldHash Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-Flatten Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-Merge Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-Merge-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-MoreUtils Updating package for CPAN distribution Hash-MoreUtils from 0.02 to 0.04. 2013-10-21 17:52:40 +00:00
p5-Hash-MultiValue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hash-Util-FieldHash-Compat Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Heap Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Hook-LexWrap Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IMDB-Film Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Import-Into Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-indirect Adding package for CPAN distribution indirect version 0.30 into 2013-07-03 08:52:50 +00:00
p5-Inline Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-InlineX-C2XS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Internals Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-AIO Update p5-IO-AIO to 4.18. 2013-09-02 13:03:17 +00:00
p5-IO-All Update to 0.46 2013-07-13 09:25:09 +00:00
p5-IO-Capture Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-CaptureOutput Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Compress Update to 2.062: 2013-09-05 18:58:32 +00:00
p5-IO-Digest Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Handle-Util Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-HTML Update to 1.00: 2013-09-05 18:57:18 +00:00
p5-IO-InSitu Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Interactive Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-LockedFile Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Multiplex Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Null Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Pager Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Pipeline Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Prompt Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Prompter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-String Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-stringy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Stty Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Tee Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-TieCombine Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Tty Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Util Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-Zlib Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-Cache Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-IPC-Cmd Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-DirQueue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-PubSub Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-Run Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-Run3 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-Shareable Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-IPC-SharedCache Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-ShareLite Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-Signal Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-System-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IPC-SysV Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-LDAP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-LEOCHARRE-CLI2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-LEOCHARRE-Debug Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-LEOCHARRE-Dir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Lexical-Persistence Update to 1.023 2013-08-21 09:39:05 +00:00
p5-Lexical-SealRequireHints Updating package for CPAN distribution Lexical-SealRequireHints in 2013-07-03 09:02:50 +00:00
p5-lib-abs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-List-AllUtils Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-List-MoreUtils Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-List-UtilsBy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-local-lib Update to 1.008010 2013-07-13 09:37:37 +00:00
p5-Locale-Msgfmt Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Locale-PO Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Agent Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Any Updating package for CPAN distribution Log-Any in devel/p5-Log-Any from 2013-07-03 13:43:50 +00:00
p5-Log-Any-Adapter Updating package for CPAN distribution Log-Any-Adapter in 2013-07-03 13:46:09 +00:00
p5-Log-Any-Adapter-Dispatch Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Any-Adapter-Log4perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Dispatch Updating package for CPAN distribution Log-Dispatch in devel/p5-Log-Dispatch 2013-07-03 06:17:38 +00:00
p5-Log-Dispatch-Array Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Dispatch-Config Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Dispatch-DBI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Dispatch-FileRotate Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Dispatch-Perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Dispatchouli Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Handler Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Log4perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-LogLite Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Report Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Log-Trace Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mac-Carbon Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mac-SystemDirectory Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Make Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Memoize 1.03 Sun, 22 Apr 2012 17:11:16 -0400 2013-07-10 01:58:44 +00:00
p5-Memoize-ExpireLRU Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Memoize-Memcached Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MetaCPAN-API Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Method-Signatures Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Method-Signatures-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mixin-ExtraFields Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mixin-ExtraFields-Param Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mixin-Linewise Update to 0.102 2013-11-24 04:12:59 +00:00
p5-Mo Update to 0.37 2013-10-27 08:59:58 +00:00
p5-Modern-Perl Update to 1.20121103. From the changelog: 2013-07-10 02:17:05 +00:00
p5-Module-Build Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Build-Tiny Update to 0.030 2013-10-15 02:37:10 +00:00
p5-Module-Build-WithXSpp Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-CoreList Updating CPAN distribution Module-CoreList in devel/p5-Module-CoreList from 2013-10-21 17:56:39 +00:00
p5-Module-CPANTS-Analyse Update to 0.90.02 2013-08-25 07:50:37 +00:00
p5-Module-Dependency Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-ExtractUse Update to 0.31 2013-08-25 07:30:29 +00:00
p5-Module-Find Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Implementation Update to 0.07: 2013-09-05 18:41:02 +00:00
p5-Module-Install Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Install-AuthorTests Add two perl modules, extensions for p5-Module-Install. 2013-06-12 14:49:09 +00:00
p5-Module-Install-PadrePlugin Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Install-ReadmeFromPod Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Install-Repository Add two perl modules, extensions for p5-Module-Install. 2013-06-12 14:49:09 +00:00
p5-Module-Install-RTx Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Install-Substitute Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Install-XSUtil Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Load Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Manifest Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Metadata Import p5-Module-Metadata-1.000019 as devel/p5-Module-Metadata. 2013-11-22 10:31:08 +00:00
p5-Module-Pluggable Updating package for CPAN distribution Module-Pluggable in 2013-07-03 13:28:31 +00:00
p5-Module-Refresh Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Runtime Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-ScanDeps Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Starter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Starter-PBP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Util Update to 1.09 2013-08-27 07:18:17 +00:00
p5-Module-Versions Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Module-Versions-Report Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Moo Update to 1.003001 2013-10-02 07:35:57 +00:00
p5-Moose Update to 2.1005 2013-08-13 03:03:25 +00:00
p5-Moose-Autobox Update to 0.15 2013-10-28 15:30:54 +00:00
p5-Moose-Policy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Aliases Update to 0.11 2013-07-27 05:23:44 +00:00
p5-MooseX-App-Cmd Updating package for CPAN distribution MooseX-App-Cmd in 2013-07-03 16:33:11 +00:00
p5-MooseX-Attribute-Chained Import MooseX-Attribute-Chained-1.0.1 as devel/p5-MooseX-Attribute-Chained. 2013-10-27 13:12:55 +00:00
p5-MooseX-AttributeHelpers Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Attributes-Curried Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-ClassAttribute Update to 0.27 2013-07-27 07:10:43 +00:00
p5-MooseX-CompileTime-Traits Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-ConfigFromFile Updating package for CPAN distribution MooseX-ConfigFromFile in 2013-07-03 16:30:59 +00:00
p5-MooseX-Daemonize Update to 0.18 2013-07-27 08:10:13 +00:00
p5-MooseX-Declare Update to 0.37 2013-10-02 14:26:03 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-FollowPBP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Getopt Update to 0.58 2013-10-02 14:38:16 +00:00
p5-MooseX-Has-Options Update to 0.003 2013-07-27 08:28:45 +00:00
p5-MooseX-InsideOut Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-LazyRequire Update to 0.10 2013-07-27 08:39:10 +00:00
p5-MooseX-MarkAsMethods Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Meta-TypeConstraint-ForceCoercion Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Method-Signatures Update to 0.44 2013-07-27 09:00:50 +00:00
p5-MooseX-MethodAttributes Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-MultiInitArg Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-NonMoose Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Object-Pluggable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-OneArgNew Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Param Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Params-Validate Update to 0.18 2013-08-21 09:30:35 +00:00
p5-MooseX-POE Import the MooseX-POE package into pkgsrc. 2013-11-04 21:12:58 +00:00
p5-MooseX-Role-Parameterized Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Role-WithOverloading Update to 0.13 2013-08-21 09:23:42 +00:00
p5-MooseX-SemiAffordanceAccessor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-SetOnce Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-SimpleConfig Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Singleton Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-StrictConstructor Update to 0.19 2013-08-21 09:14:38 +00:00
p5-MooseX-Traits Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Traits-Pluggable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Types Fix build.(Spotted by joerg@, thanks !) 2013-11-05 00:46:10 +00:00
p5-MooseX-Types-Common Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Types-JSON Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Types-LoadableClass Update to 0.009 2013-08-21 09:05:31 +00:00
p5-MooseX-Types-LogAny Adding package for CPAN distribution MooseX-Types-LogAny version 0.001001 2013-07-03 15:45:21 +00:00
p5-MooseX-Types-Path-Class Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Types-Perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Types-Stringlike Adding package for CPAN distribution MooseX-Types-Stringlike version 0.001 2013-07-03 15:54:52 +00:00
p5-MooseX-Types-Structured Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooseX-Types-URI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MooX-Cmd Update to 0.008: 2013-11-22 11:59:09 +00:00
p5-MooX-ConfigFromFile Import p5-MooX-ConfigFromFile-0.002 as devel/p5-MooX-ConfigFromFile. 2013-10-11 11:32:51 +00:00
p5-MooX-File-ConfigDir Import p5-MooX-File-ConfigDir-0.002 as devel/p5-MooX-File-ConfigDir. 2013-10-11 11:30:58 +00:00
p5-MooX-Options Update to 3.99: 2013-11-22 10:51:37 +00:00
p5-MooX-Roles-Pluggable Update to 0.002: 2013-10-12 13:48:12 +00:00
p5-MooX-Types-MooseLike Update to 0.25 2013-08-21 09:00:01 +00:00
p5-MooX-Types-MooseLike-Numeric Import MooX-Types-MooseLike-Numeric-1.01 as devel/p5-MooX-Types-MooseLike-Numeric. 2013-07-21 09:46:26 +00:00
p5-Mouse Update to 2.0.0 2013-11-16 13:12:05 +00:00
p5-MouseX-NativeTraits Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MouseX-Types Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MouseX-Types-Path-Class Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-MRO-Compat Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-multidimensional Adding package for CPAN distribution multidimensional-0.011 into 2013-07-03 09:04:31 +00:00
p5-namespace-autoclean pkg_add doesn't like '>'; use '>=' instead, since that's what I think 2013-10-23 18:15:19 +00:00
p5-namespace-clean Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Net-CIDR Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Net-LDAP-Batch Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Net-LDAP-Class Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Net-LDAP-Server-Test Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Net-Netmask Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-NEXT Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Object-Declare Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Object-Event Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Object-InsideOut Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-Object-Pluggable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Object-Realize-Later Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Object-Signature Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-OLE-Storage_Lite Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-OOTools Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Ouch Update to 0.0402. From the changelog: 2013-07-10 01:19:36 +00:00
p5-Package-Constants Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Package-DeprecationManager Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Package-Generator Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Package-Stash Update to 0.36: 2013-09-05 18:46:02 +00:00
p5-Package-Stash-XS Update to 0.28: 2013-09-05 18:44:35 +00:00
p5-Package-Variant Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PadWalker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-pango Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-PAR Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PAR-Dist Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parallel-ForkManager Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parallel-Prefork Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Params-Classify Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Params-Coerce Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Params-Util Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Params-Validate Update to 1.08: 2013-09-05 19:03:53 +00:00
p5-parent Update to 0.228 2013-10-19 11:17:31 +00:00
p5-Parse-CPAN-Meta Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-CPAN-Packages Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-ErrorString-Perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-ExuberantCTags Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-Method-Signatures Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-RecDescent Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-Yapp Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PatchReader Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Path-Class Update to 0.32: 2013-09-05 18:20:09 +00:00
p5-Path-Class-File-Stat Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Path-Dispatcher Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Path-Dispatcher-Declarative Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PathTools Updating packge for Perl5 modules File::Spec and Cwd in CPAN distribution 2013-06-29 09:25:30 +00:00
p5-Perl-APIReference Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl-Critic Update to 1.120 2013-10-31 03:04:33 +00:00
p5-perl-headers Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl-MinimumVersion Update to 1.32 2013-10-31 03:22:47 +00:00
p5-Perl-PrereqScanner Updating package for CPAN distribution Perl-PrereqScanner in 2013-07-03 16:41:41 +00:00
p5-Perl-Tidy Update to 20130922 2013-10-15 14:54:17 +00:00
p5-Perl-Version Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl4-CoreLibs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl6-Export Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl6-Export-Attrs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl6-Junction Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Perl6-Slurp Update to 0.051003: 2013-09-05 19:23:11 +00:00
p5-PerlIO-eol Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PerlIO-gzip Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PerlIO-via-Bzip2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PerlIO-via-dynamic Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PerlIO-via-symlink Set PERL5_MODULE_TYPE to Module::Install so the pkgsrc version is used 2013-06-12 14:03:53 +00:00
p5-PHP-Serialization Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-pip Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Pod-Usage Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POE Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POE-Component-Cron Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POE-Component-Pluggable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POE-Component-Schedule Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POE-Component-Syndicator Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POE-Test-Loops Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-POEx-Types Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PPI Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-PPI-PowerToys Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PPI-XS Updating package for CPAN distribution PPI-XS in devel/p5-PPI-XS from 2013-07-03 13:26:32 +00:00
p5-PPIx-Regexp Update to 0.034 2013-10-31 03:17:00 +00:00
p5-PPIx-Utilities Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-prefork Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Probe-Perl Updating package for CPAN distribution Probe-Perl in devel/p5-Probe-Perl 2013-07-03 16:23:16 +00:00
p5-Proc-Background Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-Daemon Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-InvokeEditor Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-PID-File Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-Pidfile Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-ProcessTable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-Queue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-Wait3 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Proc-WaitStat Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PV Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Python-Serialise-Marshal Import p5-Python-Serialise-Marshal-0.02 as devel/p5-Python-Serialise-Marshal. 2013-07-06 00:38:25 +00:00
p5-Readonly Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Readonly-XS Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Regexp-Assemble Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Regexp-MatchContext Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Regexp-Parser Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Regexp-Shellish Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Return-Value Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Role-HasMessage Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Role-Identifiable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Role-Tiny Update to 1.003002 2013-10-02 07:32:27 +00:00
p5-Rose-Object Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-RT-Authen-ExternalAuth Import p5-RT-Authen-ExternalAuth version 0.17 into pkgsrc. 2013-07-28 00:10:27 +00:00
p5-Safe-Hole Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Safe-Isa Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Scalar-Defer Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Scalar-List-Utils Updating package for CPAN distribution for Scalar-List-Utils in 2013-10-21 18:03:42 +00:00
p5-Scalar-Util-Refcount Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Schedule-RateLimiter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Scope-Guard Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Scope-Upper Update to 0.22: 2013-06-12 14:05:14 +00:00
p5-SDL Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
p5-Set-Array Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Set-IntSpan Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Set-Object Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Set-Scalar Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Shell-Perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-ShipIt Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-signatures Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Smart-Comments Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Software-License Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sort-Maker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sort-Naturally Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sort-Versions Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Spiffy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Spoon Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Storable Update to 2.45: 2013-11-24 09:58:21 +00:00
p5-Stream-Buffered Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-strictures Update to 1.005001 2013-11-24 03:52:19 +00:00
p5-String-Escape Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-String-Format Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-String-PerlIdentifier Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Exporter Updating package for CPAN distribution Sub-Exporter in devel/p5-Sub-Exporter 2013-07-03 13:54:01 +00:00
p5-Sub-Exporter-ForMethods Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Exporter-GlobExporter Update to 0.003: 2013-09-05 18:42:01 +00:00
p5-Sub-Exporter-Progressive Remove patch, no longer needed. 2013-07-03 18:26:44 +00:00
p5-Sub-Identify Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Install Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Installer Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Name Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Override Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sub-Uplevel Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-subversion Changes 1.8.4: 2013-11-02 09:19:17 +00:00
p5-SUPER Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SVN-Class Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SVN-Dump Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SVN-Mirror Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SVN-Notify Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SVN-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-syntax Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Syntax-Keyword-Junction Updating package for CPAN distribution Syntax-Keyword-Junction in 2013-07-03 16:39:31 +00:00
p5-Sys-Syscall Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-System-Command Update to 1.100 2013-07-02 14:47:19 +00:00
p5-TAP-Formatter-HTML Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-TAP-Harness-Archive Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Task-Weaken Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tee Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Template-Plugin-Handy Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Template-Plugin-HashMerge Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Template-Plugin-ListMoreUtils Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Template-Plugin-ListUtil Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Template-Plugin-VMethods Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-Animation Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ANSIColor Update to 4.02: 2013-11-24 10:05:32 +00:00
p5-Term-Cap Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ProgressBar Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-Prompt Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ReadKey Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ReadLine Doesn't use ncurses, or any curses. 2013-10-16 16:34:37 +00:00
p5-Term-ReadLine-Perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ReadLine-TTYtter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ReadPassword Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-Screen Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-Shell Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-ShellUI Update to 0.92: 2013-09-05 19:04:59 +00:00
p5-Term-Size Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Term-Size-Any Import p5-Term-Size-Any-0.002 as devel/p5-Term-Size-Any. 2013-11-22 10:43:37 +00:00
p5-Term-Size-Perl Import p5-Term-Size-Perl-0.029 as devel/p5-Term-Size-Perl. 2013-11-22 10:40:57 +00:00
p5-Test-Aggregate Update to 0.370 2013-09-05 01:11:19 +00:00
p5-Test-Approx Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Assertions Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Base Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-BDD-Cucumber Comment out p5-Term-ANSIColor dependency, in perl since 5.6.0. 2013-11-24 10:02:40 +00:00
p5-Test-CheckDeps Update to 0.008 2013-10-02 08:06:11 +00:00
p5-Test-CheckManifest Update to 1.26 2013-09-05 06:30:44 +00:00
p5-Test-Class Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
p5-Test-ClassAPI Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Cmd Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Command-Simple Update to 0.04 2013-09-05 06:36:22 +00:00
p5-Test-Compile Update to 0.24 2013-09-05 06:43:15 +00:00
p5-Test-CPAN-Meta-YAML Update to 0.22 2013-09-05 01:33:57 +00:00
p5-Test-Deep Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Differences Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Dir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-DistManifest Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Distribution Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Exception Update to 0.32. From the changelog: 2013-07-10 02:13:58 +00:00
p5-Test-Expect Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-FailWarnings Update to 0.007 2013-09-05 06:50:02 +00:00
p5-Test-Fatal Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-File Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-File-Contents Update to 0.21 2013-09-05 06:56:35 +00:00
p5-Test-File-ShareDir Fix build. 2013-09-12 01:19:33 +00:00
p5-Test-Fixture-DBIC-Schema Update to 0.04 2013-09-05 07:46:30 +00:00
p5-Test-Harness Update to 3.29 2013-10-15 02:33:08 +00:00
p5-Test-HexString Update to 0.03. From the changelog: 2013-07-10 02:38:52 +00:00
p5-Test-InDistDir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Inline Update to 2.213 2013-09-05 07:51:16 +00:00
p5-Test-Inter Update to 1.05 2013-09-05 07:55:18 +00:00
p5-Test-Kwalitee Update to 1.14 2013-09-08 01:45:49 +00:00
p5-Test-LeakTrace Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Log4perl Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-LongString Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Manifest Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Memory-Cycle Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-MinimumVersion Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Mock-LWP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-MockModule Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-MockObject Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-More-Behaviour Comment out p5-Term-ANSIColor dependency, in perl since 5.6.0. 2013-11-24 10:02:40 +00:00
p5-Test-Most Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-NoWarnings Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Object Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Output Update to 1.02: 2013-09-05 19:09:16 +00:00
p5-Test-Perl-Critic Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Pod Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Pod-Coverage Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Pod-Spelling-CommonMistakes Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-POE-Client-TCP Update to 1.12 2013-09-08 04:54:42 +00:00
p5-Test-POE-Server-TCP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Reporter Update to 1.59 2013-06-07 00:37:03 +00:00
p5-Test-Requires Update to 0.07: 2013-09-05 19:12:06 +00:00
p5-Test-Script Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Script-Run Update to 0.05 2013-09-08 05:00:37 +00:00
p5-Test-SharedFork Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Simple Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Spec Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-SubCalls Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Taint Update to 1.06 2013-09-08 05:05:08 +00:00
p5-Test-TempDir Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Tester Update to 0.109: 2013-09-05 19:07:07 +00:00
p5-Test-TinyMocker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Trap Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Unit Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-use-ok Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-UseAllModules Update to 0.14 2013-08-25 05:58:32 +00:00
p5-Test-Version Import Test-Version-1.002004 as devel/p5-Test-Version. 2013-11-24 01:38:46 +00:00
p5-Test-Warn Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Warnings Update to 0.012 2013-10-15 02:41:38 +00:00
p5-Test-Weaken Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Test-Without-Module Adding package for CPAN distribution Test-Without-Module version 0.17 2013-07-03 07:27:16 +00:00
p5-Test-WWW-Selenium Update to 1.36 2013-09-08 05:08:52 +00:00
p5-Test-YAML-Meta Update to 0.20 2013-09-08 05:14:33 +00:00
p5-Test-YAML-Valid Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Throwable Fix DEPENDS and bump PKGREVISION 2013-10-09 14:47:01 +00:00
p5-Tie-Array-AsHash Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-Array-Sorted Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-Cache Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-Cache-LRU Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-Cache-LRU-Expires Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-File Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-Function Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-IxHash Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-LLHash Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-RefHash Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-RefHash-Weak Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-RegexpHash Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tie-ToObject Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Tree-DAG_Node Update to 1.18 2013-11-24 01:13:31 +00:00
p5-Tree-Simple Update to 1.23 2013-11-24 01:45:33 +00:00
p5-Tree-Simple-VisitorFactory Update to 0.12 2013-11-24 01:52:49 +00:00
p5-Try-Tiny Update to 0.18 2013-08-22 02:56:11 +00:00
p5-TryCatch Update to 1.003002 2013-08-22 04:14:39 +00:00
p5-UNIVERSAL-can Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-UNIVERSAL-isa Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-UNIVERSAL-moniker Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-UNIVERSAL-require Update to 0.15 2013-11-24 01:59:08 +00:00
p5-UUID-Tiny Update to 1.04 2013-09-03 14:57:34 +00:00
p5-Variable-Magic Update to 0.53 2013-11-24 02:03:03 +00:00
p5-VCP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-VCP-Dest-svk Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-version Update to 0.9904: 2013-09-05 19:27:14 +00:00
p5-Want Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-WeakRef Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Wx-Perl-DataWalker Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-XSLoader Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
palmpower Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pango Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
pangomm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
pangox-compat Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
papaya Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
pardiff Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
patch Use ${PKGGNUDIR} and ${PKGMANDIR} in INSTALLATION_DIRS. 2012-12-31 00:27:36 +00:00
patchutils Update to 0.3.2. Changes: 2013-08-21 10:18:03 +00:00
pcc-libs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pccts Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pcl-cvs Resolves: 2013-04-06 20:27:16 +00:00
pcre Changes 8.33: 2013-05-28 14:07:50 +00:00
pcre++ Add a number of includes hidden by libstdc++'s name space pollution. 2013-04-29 21:31:09 +00:00
pcre-ocaml Revision bump associated with the update of lang/ocaml to version 4.01. 2013-11-01 11:30:21 +00:00
pdcurses Fixes: 2013-04-06 03:45:05 +00:00
pedisassem Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-gettext Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-gmp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-libawl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-memcache Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-memcached Import devel/php-memcached. 2013-09-13 08:07:01 +00:00
php-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
php-opcache * Set USE_PHP_EXT_PATCHES to "Yes". 2013-10-18 15:50:45 +00:00
php-pcntl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-posix Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-shmop Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-sysvmsg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-sysvsem Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
php-sysvshm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
physfs catch up to changes in Makefile 2013-07-17 12:24:41 +00:00
picp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
picprg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pilrc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pipestatus Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pkg-config disable maintainer mode for internal glib2, same as devel/glib2. 2013-09-28 06:32:08 +00:00
ply Update to 3.4, based on PR 48186 by @kiaderouiche 2013-09-05 20:29:48 +00:00
pmccabe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
poco PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
popt Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
poxml Update to KDE SC 4.11.3 2013-11-07 10:42:25 +00:00
prcs Use streamsize for xsputn. 2013-08-31 14:46:20 +00:00
ProjectCenter Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
protobuf Make it depend on zlib explicitly. 2013-03-29 09:17:26 +00:00
pstreams Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
psvn Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
pth Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pthread-sem Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
pthread-stublib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ptlib Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
pvs Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
pwlib PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
py-argparse Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-at-spi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-at-spi2 Don't enable Python 3.x support as py-cairo dependency doesn't support 2013-05-20 14:51:13 +00:00
py-babel some failure with Python32 2013-10-11 14:25:24 +00:00
py-blinker Update py-blinker to 1.3. 2013-07-09 16:55:41 +00:00
py-buildbot Update to version 0.8.8. (Ok joerg@) Some changes: 2013-11-08 15:32:10 +00:00
py-buildbot-slave Update to version 0.8.8. (Ok joerg@) Some changes: 2013-11-08 15:32:10 +00:00
py-cffi Import py27-cffi-0.7.2 as devel/py-cffi. 2013-09-30 17:19:59 +00:00
py-checker Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-cheetah Reset MAINTAINER/OWNER (became observers) 2013-02-01 22:21:05 +00:00
py-compizconfig Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
py-coverage Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-cparser Import py27-cparser-2.10 as devel/py-cparser. 2013-09-30 17:21:21 +00:00
py-curses Replace py-curses/buildlink3.mk with DEPENDS. 2013-06-04 07:38:49 +00:00
py-cursespanel Remove unused file. 2013-06-04 07:50:05 +00:00
py-cython Update to 0.19.2: 2013-10-20 22:04:31 +00:00
py-daemon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-darcsver Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-decorator Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-distribute Update to 0.6.49: 2013-07-08 08:50:09 +00:00
py-doctor Import py27-doctor-0.4 as devel/py-doctor. 2013-09-30 17:23:04 +00:00
py-dulwich Update to 0.8.7 2013-05-20 07:10:39 +00:00
py-expect Fix configure test for expect library. 2013-10-27 20:17:40 +00:00
py-fann Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-filechunkio Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-11-18 02:25:37 +00:00
py-flakes Remove unused patch. 2013-10-03 08:45:43 +00:00
py-funcparserlib Update py-funcparserlib to 0.3.6. 2013-10-12 13:38:38 +00:00
py-game Include compiler.mk before checking PKGSRC_COMPILER. 2013-10-25 22:24:58 +00:00
py-generate Update distinfo for deleted patch. 2013-10-06 18:44:54 +00:00
py-gobject Revbump after cairo update 2013-09-02 19:50:38 +00:00
py-gobject-shared Revbump after cairo update 2013-09-02 19:50:38 +00:00
py-gobject3 Revbump after cairo update 2013-09-02 19:50:38 +00:00
py-hgtools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-11-18 02:25:37 +00:00
py-idle Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-InlineEgg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-ipython drop maintainership. 2013-10-26 12:15:59 +00:00
py-ipython012 drop maintainership. 2013-10-26 12:15:59 +00:00
py-ipython013 update to 0.13.2 2013-10-29 18:18:46 +00:00
py-jersey Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-kjbuckets Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-kqueue Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-libevent-rpcgen Helps to set INSTALLATION_DIRS too. 2013-05-10 04:13:51 +00:00
py-libmc Import devel/py-libmc. 2013-09-13 08:09:46 +00:00
py-lockfile Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-logilab-astng Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-logilab-common Replace py-readline/buildlink3.mk with DEPENDS. 2013-06-04 07:35:14 +00:00
py-mako Changes 0.8.1: 2013-07-18 20:33:50 +00:00
py-mock Update to 1.0.1 2012-12-02 13:12:28 +00:00
py-msgpack Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-multiprocessing Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-nose Update py-nose to 1.3.0 2013-09-11 09:38:53 +00:00
py-open-vcdiff Add py27-open-vcdiff-0.1pre06d46e3de6f7: 2013-08-15 17:14:06 +00:00
py-Optik Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-ordereddict Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-pep8 Import py27-pep8-1.3.4 as devel/py-pep8 from wip/py-pep8 2013-01-03 14:19:01 +00:00
py-pexpect Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-pip Update to 1.4 2013-07-25 15:11:59 +00:00
py-polib Import py27-polib-1.0.3 as devel/py-polib. 2013-04-24 13:34:28 +00:00
py-pqueue Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-py add py-py-1.4.15, a helper library needed for py-test 2013-07-24 10:44:51 +00:00
py-pyev fix license and other pkglint problems 2013-01-20 03:35:46 +00:00
py-pyparsing The pyparsing module is an alternative approach to creating and executing 2013-07-22 11:59:53 +00:00
py-Pyro Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-pysvn Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
py-pytemplate Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-pyutil Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-quixote remove hard DESTDIR and add REPLACE_PYTHON 2013-04-18 00:56:41 +00:00
py-readline * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
py-requests Add missing dependencies, fix interpreter path in installed script. 2013-06-16 11:48:51 +00:00
py-rope Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-setuptools Update to 1.3: 2013-11-04 21:33:08 +00:00
py-setuptools_trial Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-speaklater Import speaklater-1.3 as devel/py-speaklater. 2013-04-01 17:35:59 +00:00
py-stompclient Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-subversion Changes 1.8.4: 2013-11-02 09:19:17 +00:00
py-subvertpy Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
py-sysctl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-tabular Import Python module "tabular" version 0.1 as py-tabular. 2013-06-02 01:47:54 +00:00
py-test add pytest-2.3.5, another Python testing framework 2013-07-24 10:46:38 +00:00
py-testtools Update py-testtools to 0.9.24. 2013-01-19 11:03:17 +00:00
py-unit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-unitgui Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-unittest2 Fix PLIST for python != 2.7. 2013-07-08 16:17:20 +00:00
py-urwid Update to 1.1.1: 2013-05-15 22:35:31 +00:00
py-usb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-virtualenv Update to 1.10.1: 2013-08-15 10:44:10 +00:00
py-windbg 'For consistency, please add a trailing slash to "http://example.com".' 2013-04-06 12:08:38 +00:00
py-xdg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-zconfig Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
py-ZopeInterface Changes 4.0.5: 2013-08-13 17:42:28 +00:00
python-mode builds with emacs24 2013-06-10 21:51:04 +00:00
pythontidy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
qbzr Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
qconf Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
qjson Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
qof Deal with doxygen changes. 2013-03-02 18:14:57 +00:00
qtscriptgenerator Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
quilt if linux, use , else use gsed 2013-06-14 18:19:17 +00:00
ragel Make sure setiosflags is visible in the default scope. 2013-06-10 18:56:05 +00:00
rapidsvn Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
ratfor Add some void love. Reduce number of missing prototypes. 2012-11-01 19:49:32 +00:00
RBTools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
rcs Prevent to regenerate of man pages. PR pkg/48331. 2013-10-22 12:21:03 +00:00
rdp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
re2c Update re2c to 0.13.6. 2013-11-21 11:21:07 +00:00
readline Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
refinecvs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
Renaissance Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
reposurgeon Update to 2.41. Changes: 2013-11-16 07:22:58 +00:00
roundup Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
rox-lib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
rpc2 * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
rscode Not MAKE_JOBS_SAFE. 2013-01-10 23:52:36 +00:00
rsltc Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
rt-mysql Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
rt-pgsql Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
rt3 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
rt4 Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
RTFM Fix a common mistake in many different packages: POSIX says that when using 2013-10-18 11:41:17 +00:00
RTx-RightsMatrix Bump all packages for perl-5.18, that 2013-05-31 12:39:35 +00:00
rubigen
ruby-abstract
ruby-activemodel32 Update ruby-activemodel32 to 2013-10-18 15:26:02 +00:00
ruby-activesupport32 Update ruby-activesupport32 to 3.2.15. 2013-10-18 15:24:38 +00:00
ruby-amstd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ruby-assistance
ruby-atomic Add ruby-atomic package version 1.1.14. 2013-09-13 12:59:41 +00:00
ruby-backports Update ruby-backports to 3.3.3. 2013-09-13 14:02:03 +00:00
ruby-blankslate Add ruby-blankslate package version 2.1.2.4. 2013-02-11 08:37:56 +00:00
ruby-bsearch 'You can use "foo" instead of "${WRKSRC}/foo".' 2013-04-06 15:46:33 +00:00
ruby-byaccr Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ruby-cmd Use OVERRIDE_GEMSPEC instead of modifying gemspec file. 2013-03-07 15:08:11 +00:00
ruby-curses Works fine with system curses 2013-10-16 17:13:30 +00:00
ruby-daemon_controller Update ruby-daemon_controller to 1.1.5. 2013-09-13 14:12:44 +00:00
ruby-debug Use OVERRIDE_GEMSPEC instead of modifying gemspec file. 2013-03-07 15:08:11 +00:00
ruby-debug-base Use OVERRIDE_GEMSPEC instead of modifying gemspec file. 2013-03-07 15:08:11 +00:00
ruby-debug-extra Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
ruby-debug-ide Use OVERRIDE_GEMSPEC instead of modifying gemspec file. 2013-03-07 15:08:11 +00:00
ruby-deprecated
ruby-dhaka
ruby-eet * Fix build problem with newer rake. 2013-03-07 17:00:44 +00:00
ruby-eventmachine Update ruby-eventmachine to 1.0.3. 2013-03-10 13:19:12 +00:00
ruby-extlib Update ruby-extlib to 0.9.16. 2013-01-12 06:39:32 +00:00
ruby-facade
ruby-fast_gettext Update ruby-fast_gettext to 0.8.0. 2013-09-15 09:56:12 +00:00
ruby-ffi Update ruby-ffi to 1.9.0. 2013-06-16 15:00:20 +00:00
ruby-fiddle Add ruby200 support. 2013-07-21 02:34:28 +00:00
ruby-flexmock Update ruby-flexmock to 1.3.2. 2013-06-16 15:36:25 +00:00
ruby-gemcutter Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
ruby-getopt
ruby-gettext Update ruby-gettext to 3.0.0. 2013-09-15 09:59:08 +00:00
ruby-gettext-activerecord
ruby-gettext-rails
ruby-gettext_i18n_rails Update ruby-gettext_i18n_rails to 0.10.1. 2013-09-15 10:01:24 +00:00
ruby-gnome2-atk revert `say good-bye to ruby-1.8', it should not be done dureing a freeze. 2013-06-20 09:12:13 +00:00
ruby-gnome2-gio revert `say good-bye to ruby-1.8', it should not be done dureing a freeze. 2013-06-20 09:12:13 +00:00
ruby-gnome2-glib revert `say good-bye to ruby-1.8', it should not be done dureing a freeze. 2013-06-20 09:12:13 +00:00
ruby-gnome2-gobject-introspection revert `say good-bye to ruby-1.8', it should not be done dureing a freeze. 2013-06-20 09:12:13 +00:00
ruby-gnome2-pango Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ruby-hashery Update ruby-hashery to 2.1.1. 2013-09-15 10:02:36 +00:00
ruby-heckle
ruby-highline Update ruby-highline to 1.6.19. 2013-06-16 15:39:20 +00:00
ruby-hike Update ruby-hike to 1.2.3. 2013-06-16 15:45:06 +00:00
ruby-i18n Update ruby-i18n to 0.6.5. 2013-09-15 10:07:57 +00:00
ruby-inline Update ruby-inline to 3.12.2. 2013-06-16 15:47:16 +00:00
ruby-io-console Tweak GEM_CLEANBUILD for ruby200 and enable with ruby200. 2013-07-21 02:39:27 +00:00
ruby-io-like 'For consistency, please add a trailing slash to "http://example.com".' 2013-04-06 12:08:38 +00:00
ruby-kgio Update ruby-kgio to 2.8.1. 2013-09-15 10:04:03 +00:00
ruby-linecache
ruby-little-plugger
ruby-locale Resign as maintainer (not really using Ruby at all any more). 2013-09-09 12:29:25 +00:00
ruby-locale-rails Resign as maintainer (not really using Ruby at all any more). 2013-09-09 12:29:25 +00:00
ruby-lockfile
ruby-log4r 'For consistency, please add a trailing slash to "http://example.com".' 2013-04-06 12:08:38 +00:00
ruby-logging Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
ruby-loquacious Various MASTER_SITES-related fixes. 2013-04-06 14:09:32 +00:00
ruby-memcache Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ruby-memoize Use RbConfig instead of legacy Config. 2013-07-21 02:40:46 +00:00
ruby-metaclass Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
ruby-metaid
ruby-minitest Update ruby-minitest to 5.0.7. 2013-09-15 10:09:21 +00:00
ruby-mkrf
ruby-mocha Update ruby-mocha to 0.14.0. 2013-06-16 16:17:41 +00:00
ruby-mode Update ruby-mode to 2.0.0p247. 2013-07-21 03:00:37 +00:00
ruby-msgpack Update ruby-msgpack to 0.5.7. 2013-11-21 07:54:13 +00:00
ruby-ncurses Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ruby-needle
ruby-ole Update ruby-ole to 1.2.11.7. 2013-07-04 12:09:18 +00:00
ruby-open4
ruby-parseconfig
ruby-parser Update ruby-parser to 3.2.2. 2013-09-15 10:11:05 +00:00
ruby-parsetree
ruby-parslet Add ruby-parslet package version 1.4.0. 2013-02-11 08:47:19 +00:00
ruby-path Update ruby-path to 1.3.3. 2013-09-15 18:38:34 +00:00
ruby-pathname2
ruby-pkg-config Fixes: 2013-04-06 03:45:05 +00:00
ruby-polyglot Resign as maintainer (not really using Ruby at all any more). 2013-09-09 12:29:25 +00:00
ruby-posix-spawn
ruby-priority-queue No need to specify GEM_CLEANBUILD. 2013-07-21 02:41:40 +00:00
ruby-racc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ruby-railties32 Update ruby-railties32 to 3.2.15. 2013-10-18 15:34:46 +00:00
ruby-rake Update ruby-rake to 10.0.4. 2013-06-16 15:23:39 +00:00
ruby-randexp
ruby-rbtree Tweak GEM_CLEANBUILD for ruby200. 2013-07-21 02:42:09 +00:00
ruby-rbx-require-relative Update ruby-rbx-require-relative to 0.0.9. 2013-02-11 02:56:33 +00:00
ruby-rcov
ruby-rcsparse Update to 0.0.0.46. 2013-05-26 01:44:44 +00:00
ruby-rd-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
ruby-rdoc Make sure to add a patch file. 2013-07-07 15:58:52 +00:00
ruby-readline Fix fallout from the readline shuffle. Makes this package build with 2013-08-21 20:02:50 +00:00
ruby-rgl
ruby-rspec Update ruby-rspec to 2.14.1. 2013-09-15 10:17:01 +00:00
ruby-rspec-core Update ruby-rspec-core to 2.14.5. 2013-09-15 10:13:53 +00:00
ruby-rspec-expectations Update ruby-rspec-expectations to 2.14.2 2013-09-15 10:14:58 +00:00
ruby-rspec-mocks Update ruby-rspec-mocks to 2.14.3. 2013-09-15 10:15:50 +00:00
ruby-rspec-rails Update ruby-rspec-rails to 2.14.0. 2013-09-15 10:17:31 +00:00
ruby-SDL Utilize GEM_NAME in PLIST. 2013-07-07 15:24:19 +00:00
ruby-setup Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ruby-sexp-processor Update ruby-sexp-processor to 4.3.0. 2013-09-15 10:20:21 +00:00
ruby-simple_uuid Update ruby-simple_uuid to 0.3.0. 2012-12-17 12:17:56 +00:00
ruby-simplecov Enable ruby200. 2013-07-21 02:42:41 +00:00
ruby-simplecov-html Enable ruby200. 2013-07-21 02:42:41 +00:00
ruby-spruz
ruby-stomp Update ruby-stomp to 1.2.16. 2013-09-15 10:23:23 +00:00
ruby-stream Previous distfile wasn't really gem format file and now real gem file 2013-07-07 16:02:42 +00:00
ruby-subexec Update ruby-subexec 0.2.3. 2013-06-16 16:41:56 +00:00
ruby-subversion Changes 1.8.4: 2013-11-02 09:19:17 +00:00
ruby-templater
ruby-term-ansicolor Add ruby-term-ansicolor package version 1.0.7. 2013-02-11 08:53:37 +00:00
ruby-termcolor
ruby-test-spec
ruby-test-unit Update ruby-test-unit to 2.5.5. 2013-06-16 16:50:36 +00:00
ruby-test-unit-notify Import ruby-test-unit-notify-1.0.1 as devel/ruby-test-unit-notify. 2013-10-01 10:40:27 +00:00
ruby-thor Update ruby-thor to 0.18.1. 2013-09-15 10:24:55 +00:00
ruby-thrift PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
ruby-thrift_client Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
ruby-turn
ruby-uglifier Update ruby-uglifier to 1.3.0. 2012-12-17 12:31:14 +00:00
ruby-uuidtools Update y to 2.1.4. 2013-06-16 16:53:30 +00:00
ruby-validatable
ruby2ruby Update ruby2ruby 2.0.6. 2013-09-15 10:26:29 +00:00
rubyforge
rudiments Don't bail out with Clang due to a unused private member. Fix infinite 2013-09-17 21:09:50 +00:00
rvm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
rx Resolves: 2013-04-06 20:27:16 +00:00
sablecc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
scintilla Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
scmcvs Changes 1.12.13: 2013-10-14 06:51:02 +00:00
scons Don't treat SunOS as non-POSIX. Bump PKGREVISION. 2013-09-19 11:07:04 +00:00
sdcc * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
sdcc3 Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
SDL Bump PKGREVISION from audio/jack. 2013-02-09 22:11:28 +00:00
SDL-intro-en Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
SDL-intro-ko Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
SDL2 Changes 2.0.1: 2013-11-02 20:20:07 +00:00
SDL_gfx Update to 2.0.24. Changes: 2013-07-21 14:13:45 +00:00
SDL_Pango Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
SDL_ttf Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
SDLmm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
semantic Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
semi Resolves: 2013-04-06 20:27:16 +00:00
sfio Declare vsscanf consistent with modern systems. Continue on parentheses 2013-09-10 14:18:11 +00:00
sfslite C++ requires int as argument for postfix operators. 2013-10-20 18:16:34 +00:00
sgb Not MAKE_JOBS_SAFE; tries to use gb_miles.h while still building it. 2013-11-24 02:53:46 +00:00
sgi-stl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
sgi-stl-docs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
shtk Update to 1.3: 2013-07-28 23:30:44 +00:00
silc-toolkit Don't use -fno-regmove. 2013-10-27 20:30:44 +00:00
slib Update to 3b4 (pkgsrc 3.2.4): 2013-05-19 17:50:31 +00:00
sml-mode Resolves: 2013-04-06 20:27:16 +00:00
snappy Update to 1.1.1 2013-11-16 19:31:30 +00:00
sofia-sip PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
SOPE Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
sparse Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
sparsehash Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
spiff Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
spin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
splint Set LICENSE to gnu-gpl-v2 and fix modern solaris builds with c99 2013-05-04 19:48:00 +00:00
st Fix "libtool: compile: unable to infer tagged configuration" by not 2012-12-17 01:58:55 +00:00
stgit Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
stooop Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
subversion Changes 1.8.4: 2013-11-02 09:19:17 +00:00
subversion-base Changes 1.8.4: 2013-11-02 09:19:17 +00:00
subversion16 Update subversion16 to 1.6.23. 2013-06-29 07:57:37 +00:00
subversion16-base Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
sunifdef Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
svk Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
swig removed superfluous dependency on perl 2013-08-04 09:59:24 +00:00
swig2 Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
swt Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
syncdir Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
sysexits Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
tailor Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
tavrasm Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
tcl-tclcl Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
tcl-tclOO Remove conflict. 2013-11-16 21:04:37 +00:00
tclap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
tcllib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
tclreadline tclreadline does not use ncurses 2013-10-16 21:16:44 +00:00
teem Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
tet3 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
tex-etoolbox
tex-etoolbox-doc
tex-l3kernel
tex-l3kernel-doc
tex-l3packages
tex-l3packages-doc
tex-lualibs
tex-lualibs-doc
tex-luatexbase Fix DEPENDS; tex-luatex != luatex. 2012-11-18 01:08:35 +00:00
tex-luatexbase-doc
tex-multido
tex-multido-doc
tex-pst-uml
tex-pst-uml-doc
tig Note that NetBSD curses does not support getsyx or setsyx. 2013-10-16 20:26:23 +00:00
tkcvs Update to 8.2.3. Notable changes: 2013-08-21 10:14:54 +00:00
tkdiff Update to 4.2. Changes: 2013-04-13 06:04:12 +00:00
tla Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
tmake Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
topgit Finish git rename from scmgit to git. 2013-09-09 14:07:58 +00:00
tpasm Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
tradcpp Add RCS Id. 2013-09-17 20:27:10 +00:00
transifex-client Update transifex-client to 0.9, fixing CVE-2013-2073. 2013-05-23 14:54:53 +00:00
tre Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
treecc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
trio Update to 1.12. Changes: 2013-03-03 10:35:07 +00:00
tvision Looks fine with system curses 2013-10-16 20:47:23 +00:00
ucl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
ucommon NetBSD now has SIOCGIFINDEX, but not some of the other Linux APIs. 2013-11-08 21:14:37 +00:00
ucpp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
umbrello Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
unidiff "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
uno Reset MAINTAINER/OWNER (became observers) 2013-02-01 22:21:05 +00:00
userspace-rcu Userspace RCU 0.7.8 2013-09-14 06:47:12 +00:00
valgrind Update valgrind to version 3.9.0. 2013-11-05 17:49:52 +00:00
valide At least try to honour wrappers. 2013-11-04 16:42:21 +00:00
vanessa_adt Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
vanessa_logger Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
vanessa_socket Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
vera++ Drop maintainership. 2013-11-21 23:50:04 +00:00
vtcl Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
wide Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
xa65 Import xa65-2.3.5 as devel/xa65, packaged for wip by Moritz Wilhelmy. 2012-12-12 13:16:02 +00:00
xdelta Resolves: 2013-04-06 20:27:16 +00:00
xdelta3 Update to 3.0.6. Changes: 2013-04-27 12:08:34 +00:00
xfce4-dev-tools Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfconf Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xmake Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
xorg-util-macros Update to 1.17.1: 2013-09-07 07:11:47 +00:00
xsd Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
xulrunner10 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xulrunner17 Update to 17.0.10 2013-11-14 13:16:31 +00:00
xulrunner192 Use -fexceptions / -fno-exceptions. 2013-10-20 18:17:04 +00:00
xxgdb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
yajl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
yasm Fix cross-build of devel/yasm by setting CC_FOR_BUILD to NATIVE_CC. 2013-05-10 04:28:21 +00:00
z80-asm Reset maintainer, domain no longer exists. 2013-03-28 23:59:03 +00:00
ZenTest Update ZenTest package to 4.9.3. 2013-09-13 12:54:23 +00:00
zlib Use find-headers instead of find-files to detect builtin header files. 2013-11-23 10:51:09 +00:00
zzuf Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
Makefile Add p5-Test-Version 2013-11-24 01:40:45 +00:00