pkgsrc/devel
hiramatsu 5f5f64b188 Update devel/cfitsio to 3.37.
Changes from previous:
----------------------
Version 3.37 - 3 June 2014

   - added configure options to support reading bzip2 compressed FITS files.
     This depends on having the bzlib library installed on the local machine.
     Patch submitted by Dustin Lang.

   - replaced the random Gaussian and Poissonian distribution functions with
     new code written by Craig Markwardt derived from public domain C++ functions
     written by John D Cook.

   - patched fitsio2.h to support CFITSIO on AArch64 (64-bit ARM)
     architecture (both big and little endian).  Supplied by
     Marcin Juszkiewicz and Sergio Pascual Ramirez, with further update
     by Michel Normand.

   - fixed bug in fpackutil.c that caused fpack to exit prematurely if
     the FZALGOR directive keyword was present in the HDU header.

Version 3.36 - 6 December 2013

   - added 9 Dec: small change to the fileseek function in drvrfile.c to
     support large files > 2 GB when building CFITSIO with MinGW on Windows

   - reorganized the CFITSIO code directory structure; added a 'docs'
     subdirectory for all the documentation, and a 'zlib' directory
     for the zlib/gzip file compression code.

   - made major changes to the compression code for FITS binary table
     to support all types of columns, including variable-length arrays.
     This code is mainly used via the fpack and funpack programs.

   - increased the number of FITS files that can be opened as one
     time to 1000, as defined by NMAXFILES in fitsio2.h.

   - made small configuration changes to configure.in, configure,
     fitsio.h, and drvrfile.c to support large files (64-bit file
     offsets} when using the mingw-w64 compiler (provided by
     Benjamin Gilbert).

   - made small change to fits_delete_file to more completely ignore
     any non-zero input status value.

   - fixed a logic error in a 'if' test when parsing a keyword name
     in the ngp_keyword_is_write function in grparser.c (provided
     by David Binderman).

   - when specifying the image compression parameters as part of the
     compressed image file name (using the "[compress]" qualifier
     after the name of the file), the quantization level value, if
     specified, was not being recognized by the CFITSIO compression
     routines. The image would always be compressed with the default
     quantization level of 4.0, regardless of what was specified.  This
     affected the imcopy program, and potentially other user-generated
     application programs that used this method to specify the
     compression parameters.  This bug did not affect fpack or
     funpack.   This was fixed in the imcomp_get_compressed_image_par
     routine in the imcompress.c file. (reported by Sean Peters)

   - defined a new CFITS_API macro in fitsio.h which is used to export the
     public symbols when building CFITSIO on Windows systems with CMake. This
     works in conjunction with the new Windows CMake build procedure that
     is described in the README.win32 file. This complete revamping of the
     way CFITSIO is built under Windows now supports building 64-bit
     versions of the library.  Thanks to Daniel Kaneider (Luminance HDR
     Team) for providing these new  CMake build procedures.

   - modified the way that the low-level file_create routine works when
     running in the Hera environment to ensure that the FITS file that is
     created is within the allow user data disk area.

   - modified fits_get_compression_type so that it does not return an error
     if the HDU is a normal FITS IMAGE extension, and is not a tile-compressed
     image.

   - modified the low-level ffgcl* and ffpcl* routines to ensure that they
     never try ro read or write more than 2**31 bytes from disk at one time,
     as might happen with very large images, to avoid integer overflow errors.
     Fix kindly provided by Fred Gutsche at NanoFocus AG (www.nanofocus.de).

   - modified Makefile.in so that doing 'make distclean' does not delete
     new config.sub and config.guess files that were recently added.

   - adopted a patch from Debian in zcompress.c to "define" the values of
     GZBUFSIZE and BUFFINCR, instead of exporting the symbols as 'int's.

Version 3.35 - 26 June 2013  (1st beta release was on 24 May)

   - fixed problem with the default tile size when compressing images with
     fpack using the Hcompress algorithm.

   - fixed returned value ("status" instead of "*status")

   - in imcompress.c, declared some arrays that are used to store the dimensions
     of the image from 'int' to 'long', to support very large images (at least
     on systems where sizeof(long) = 8),

   - modified the routines that convert a string value to a float or double
     to prevent them from returning a NaN or Inf value if the
     string is "NaN" or "Inf" (as can happen with gcc implementation of the
     strtod function).

   - removed/replaced the use of the assert() functions when locking or
     unlocking threads because they did not work correctly if NDEBUG is
     defined.

   - made modifications to the way the command-line file filters are parsed to
     1) remove the 1024-character limit when specifying a column filter,
     2) fixed a potential character buffer-overflow risk in fits_get_token, and
     3) improved the parsing logic to remove any possible of confusing
     2 slash characters ("//") in the string as the beginning of a
     comment string.

   - modified configure and Makefile.in so that when building CFITSIO
     as a shared library on linux or Mac platforms, it will use the SONAME
     convention to indicate whether each new release of the CFITSIO
     library is binary-compatible with the previous version.  Application
     programs that link with the shared library will not need to be
     recompiled as long as the versions are compatible.  In practice,
     this means that the shared library binary file that is created (on
     Linux systems) will have a name like 'libcfitsio.so.I.J.K', where I is the
     SONAME version number, J is the major CFITSIO version number (e.g. 3),
     and K is the minor CFITSIO version number (e.g., 34).  Two link
     files will also be created such that
       libcfitsio.so -> libcfitsio.so.I, and
       libcfitsio.so.I -> libcfitsio.I.J.K
     Application programs will still run correctly with the new version of
     CFITSIO as long as the 'I' version number remains the same, but the
     applications will fail to run if the 'I' number changes, thus alerting
     the user that the application must be rebuilt.

   - fixed bug in fits_insert_col when computing the new table row width
     when inserting a '1Q' variable length array column.

  - modified the image compression routines so that the output compressed
     image (stored in a FITS binary table) uses the '1Q' variable length
     array format (instead of '1P') when the input file is larger than 4 GB.

   - added support for "compression directive" keywords which indicate how
     that HDU should be compressed (e.g., which compression algorithm to use,
     what tiling pattern to use, etc.).  The values of these keywords will
     override the compression parameters that were specified on the command
     line when running the fpack FITS file compression program.

   - globally changed the variable and/or subroutine name "dither_offset"
     to "dither_seed" and "quantize_dither" to "quantize_method" so
     that the names more accurately reflects their purpose.

   - added support for a new SUBTRACTIVE_DITHER_2 method when compressing
     floating point images.  The only difference with the previous method
     is that pixels with a value exactly equal to 0.0 will not be dithered,
     and instead will be exactly preserved when the image is compressed.

   - added support for an alias of "RICE_ONE" for "RICE_1" as the value
     of the ZCMPTYPE keyword, which gives the name of the image compression
     algorithm.  This alias is used if the new SUBTRACTIVE_DITHER_2 option
     is used, to prevent old versions of funpack from creating a corrupted
     uncompressed image file.  Only newer versions of funpack will recognize
     this alias and be able to uncompress the image.

   - made performance improvement to fits_read_compressed_img so that
     when reading a section of an compressed image that includes only
     every nth pixel in some dimension, it will only uncompressed a tile
     if there are actually any pixels of interest in that tile.

   - fixed several issues with the beta FITS binary table compression code
     that is used by fpack:  added support for zero-length vector columns,
     made improvements to the output report when using the -T option in fpack,
     changed the default table compression method to 'Rice' instead of
     'Best', and now writes the 'ZTILELEN' keyword to document the number
     of table rows in each tile.

   - fixed error in ffbinit in calculating the total length of the binary
     table extension if the THEAP keyword was used to override the
     default starting location of the heap.

Version 3.34 - 20 March 2013

   - modified configure and configure.in to support cross-compiled cfitsio
     as a static library for Windows on a Linux platform using MXE
     (http://mxe.cc) - a build environment for mingw32. (contributed by
     Niels Kristian Bech Jensen)

   - added conditional compilation statementsfor the mingw32 environment in
     drvrfile.c because mingw32 does not include the ftello and fseeko functions.
     (contributed by Niels Kristian Bech Jensen)

   - fixed a potential bug in ffcpcl (routine to copy a column from one table
     to another table) when dealing with the rare case of a '0X' column (zero
     length bit column).

   - fixed an issue in the routines that update or modify string-valued
     keyword values, as a result of the change to ffc2s in the previous
     release.  These routines would exit with a 204 error status if the
     current value of the keyword to be updated or modified is null.

   - fixed typo in the previous modification that was intended to ignore
     numerical overflows in Hcompress when decompressing an image.

   - moved the 'startcol' static variable out of the ffgcnn routine and
     instead added it as a member of the 'FITSfile' structure that is defined
     in fitsio.h.  This removes a possible race condition in ffgcnn in
     multi-threaded environments.

Version 3.33 - 14 Feb 2013

   - modified the imcomp_decompress_tile routine to ignore any numerical
     overflows that might occur when using Hcompress to decompress the
     image.  If Hcompress is used in its 'lossy' mode, the uncompressed
     image pixel values may slightly exceed the range of an integer*2
     variable. This is generally of no consequence, so we can safely ignore
     any overflows in this case and just clip the values to the legal range.

   - the default tiling pattern when writing a tile-compressed image
     has been changed.  The old behavior was to compress the whole image
     as one single large tile.  This is often not optimal when dealing
     with large images, so the new default behavior is to treat each
     row of the image as one tile.  This is the same default behavior
     as in the standalone fpack program.  The default tile size can
     be overridden by calling fits_set_tile_dim.

   - fixed bug that resulted in a corrupted output FITS image when
     attempting to write a float or double array of values to a
     tile-compressed integer data type image.  CFITSIO does not support
     implicit data type conversion in this case and now correctly
     returns an appropriate error status.

   - modified ricecomp.c to define the nonzero_count lookup table as an
     external variable, rather then dynamically allocating it within the
     3 routines that use it.  This simplifies the code and eliminates the
     need for special thread locking and unlocking statements. (Thanks to
     Lars Kr. Lundin for this suggestion).

   - modified how the uncompressed size of a gzipped file is computed in the
     mem_compress_open routine in drvrmem.c.  Since gzip only uses 4 bytes
     in the compressed file header to store the original file size, one may
     need to apply a modulo 2^32 byte correction in some cases.  The logic
     here was modified to allow for corner cases (e.g., very small files, and
     when running on 32-bit platforms that do not support files larger than
     2^31 bytes in size).

   - added new public routine to construct a 80 keyword record from the 3 input
     component strings, i.e, the keyword name string, the value string, and
     the comment string: fits_make_key/ffmkky.  (This was already an undocumented
     internal routine in previous versions of CFITSIO).

   - modified ffc2s so that if the input keyword value string is a null string,
     then it will return a VALUE_UNDEFINED (204) status value.  This makes it
     consistent with the behavior when attempting to read a null keyword
     (which has no value) as a logical or as a number (which also returns
     the 204 error).  This should only affect cases where the header keyword
     does not have an equal sign followed by a space character in columns 9
     and 10 of the header record.

   - Changed the "char *" parameter declarations to "const char *" in many
     of the routines (mainly the routines that modify or update keywords) to
     avoid compiler warnings or errors from C++ programs that tend to be more
     rigorous about using "const char *" when appropriate.

   - added support for caching uncompressed image tiles, so that the tile does
     not need to be uncompressed again if the application program wants
     to read more data from the same tile. This required changes to the
     main FITS file structure that is defined in fitsio.h, as well as
     changes to imcompress.c.

   - enhanced the previous modification to drvrfile.c to handle additional user
     cases when running in the HEASARC's Hera environment.

Version 3.32 - Oct 2012

   - fixed flaw in the way logical columns (TFORM = 'L') in binary tables
     were read which caused an illegal value of 1 in the column to be interpreted
     as a 'T' (TRUE) value.

   - extended the column filtering syntax in the CFITSIO file name parser to
     enable users and scripts to append new COMMENT or HISTORY keyword into the
     header of the filtered file (provided by Craig Markwardt).  For example,
     fcopy "infile.fits[col #HISTORY='Processed on 2012-10-05']" outfile.fits
     will append this header keyword: "HISTORY Processed on 2012-10-05"

   - small change to the code that opens and reads an ASCII region file to
     return an error if the file is empty.

   - fixed obscure sign propagation error when attempting to read the
     uncompressed size of a gzipped FITS file.  This resulted in a memory
     allocation error if the gzipped file had an uncompressed file
     size between 2^31 and 2^32 bytes.  Fix supplied by Gudlaugur Johannesson
     (Stanford).

Version 3.31 - 18 July 2012

   - enhanced the CFITSIO column filtering syntax to allow the comma, in addition
     to the semi-colon, to be used to separate clauses, for example:
     [col X,Y;Z = max(X,Y)].  This was done because users are not allowed to
     enter the semi-colon character in the on-line Hera data processing
     system due to computer security concerns.

   - enhanced the CFITSIO extended filename syntax to allow specifying image
     compression parameters (e.g. '[compress Rice]') when opening an existing
     FITS file with write access.  The specified compression parameters will
     be used by default if more images are appended to the existing file.

   - modified drvrfile.c to do additional file security checks when CFITSIO
     is running within the HEASARC's Hera software system.  In this case
     CFITSIO will not allow FITS files to be created outside of the user's
     individual Hera data directory area.

   - fixed an issue in fpack and funpack on Windows machines, caused by
     the fact that the 'rename' function behaves differently on Windows
     in that it does not clobber an existing file, as it does on Unix
     platforms.

   - fixed bug in the way byte-swapping was being performed when writing
     integer*8 null values to an image or binary table column.

   - added the missing macro definition for fffree to fitsio.h.

   - modified the low level table read and write functions in getcol*.c and
     putcol*.c to remove the 32-bit limitation on the number of elements.
     These routines now support reading and writing more than 2**31 elements
     at one time. Thanks to Keh-Cheng Chu (Stanford U.) for the patch.

   - modified Makefile.in so that the shared libcfitsio.so is linked against
     pthreads and libm.

Version 3.30 - 11 April 2012

  Enhancements

   - Added new routine called fits_is_reentrant which returns 1 or 0 depending on
     whether or not CFITSIO was compiled with the -D_REENTRANT directive.  This can
     be used to determine if it is safe to use CFITSIO in multi-threaded programs.

   - Implemented much faster byte-swapping algorithms in swapproc.c based on code
     provided by Julian Taylor at ESO, Garching.  These routines significantly
     improve the FITS image read and write speed (by more than a factor of 2 in
     some cases) on little-endian machines (e.g., Linux and Microsoft Windows and
     Macs running on x86 CPUs) where byte-swapping is required when reading and
     writing data in FITS files.  This has no effect on big-endian machines
     (e.g. Motorola CPUs and some IBM systems).  Even faster byte-swapping
     performance can be achieved in some cases by invoking the new "--enable-sse2"
     or "--enable-ssse3" configure options when building CFITSIO on machines that
     have CPUs and compilers that support the SSE2 and SSSE3 machine instructions.

   - added additional support for implicit data type conversion in cases where
     the floating point image has been losslessly compressed with gzip.  The
     pixels in these compressed images can now be read back as arrays of short,
     int, and long integers as well as single and double precision floating-point.

   - modified fitsio2.h and f77_wrap.h to recognize IBM System z mainframes by
     testing if __s390x__ or __s390__ is defined.

   - small change to ffgcrd in getkey.c so that it supports reading a blank
     keyword (e.g., a keyword whose name simply contains 8 space characters).

   Bug Fixes

   - fixed a bug in imcomp_decompress_tile that caused the tile-compressed image
     to be uncompressed incorrectly (even though the tile-compressed image itself
     was written correctly) under the following specific conditions:
      - the original FITS image has a "float" datatype (R*4)
      - one or more of the image tiles cannot be compressed using the standard
        quantization method  and instead are losslessly compressed with gzip
      - the pixels in these tiles are not all equal to zero (this bug does
        affect tiles where all the pixels are equal to zero)
      - the program that is reading the compressed image uses CFITSIO's
        "implicit datatype conversion" feature to read the "float" image
        back into an array of "double" pixel values.
      If all these conditions are met, then the returned pixel values in the
      affected image tiles will be garbage, with values often ranging
      up to 10**34.  Note that this bug does not affect the fpack/funpack
      programs, because funpack does not use CFITSIO's implicit datatype
      conversion feature when uncompressing the image.
2015-04-08 16:23:27 +00:00
..
accerciser
accerciser3 Update accerciser3 to 3.14.0 2014-10-08 00:03:05 +00:00
acme
acr Update to 0.9.9, based on 0.9.8 package by krytarowski in wip. 2015-01-01 19:00:15 +00:00
acunia-jam Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
adocman
aegis
afl Update to 1.58b: 2015-04-02 22:36:43 +00:00
ald document ONLY_FOR_PLATFORM 2015-01-04 04:46:01 +00:00
alex Import alex-3.1.4 from wip/alex 2015-02-14 09:01:33 +00:00
allegro
anjuta
ant-contrib Added devel/ant-contrib version 0.6 2014-08-29 21:40:52 +00:00
apache-ant Fix support for space in JAVA_HOME. Required for Darwin java7 2014-09-03 19:36:52 +00:00
apache-ant15
apache-ivy
apache-maven Add forgotten patch file change. 2014-12-09 11:52:03 +00:00
apel Bump PKGREVISION 2014-11-02 16:08:33 +00:00
appdata-tools Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
apr Unconditionally use the !ARM, !CRAY version of APR_OFFSET. 2014-11-25 14:55:46 +00:00
apr-util Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
arena
argp
argtable
as31
asm2html honour PKGMANDIR 2015-03-13 17:02:31 +00:00
astyle needs libiconv 2015-03-13 17:08:14 +00:00
at-spi
at-spi2-atk Update at-spi2-atk to 2.14.1 2014-10-25 11:10:10 +00:00
at-spi2-core Update at-spi2-core to 2.14.1 [tks mef@] 2015-01-10 16:27:34 +00:00
atf Remove MAKE_JOBS_SAFE=yes, the variable only has an effect when set to 'no'. 2014-09-02 08:32:36 +00:00
atk Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
atkmm
autoconf Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
autoconf-archive Update to 2015.02.24: 2015-02-25 16:52:08 +00:00
autoconf213 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
autogen add gzip as tool due to libopts-35.0.10.tar.gz generation in install phase 2015-03-12 14:07:11 +00:00
automake Update to 1.15: 2015-01-08 16:40:50 +00:00
automake14 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
automoc4
avl
avltree
bcc Use system headers. Avoid redefining macros. 2015-02-19 22:25:12 +00:00
bglibs
bin86 Fix format strings. Use fixed sized types to hopefully get it to work on 2015-02-23 18:20:21 +00:00
binutils Use C++11 containers in gold for libc++, old ext version doesn't work on 2015-03-24 14:23:14 +00:00
bison Remove hash for deleted patch patch-Makefile.in 2015-03-24 08:03:54 +00:00
blame
blib
bmake
bmkdep Remove incomplete RCSID from patch file, confuses 'pkg_info -b'. 2014-10-10 10:01:33 +00:00
boa-constructor
boehm-gc reference upstream bug report for previous 2015-02-16 08:07:20 +00:00
boost-build Chamges 1.57.0: 2014-11-07 19:28:38 +00:00
boost-docs Changes 1.56.0: 2014-08-13 10:56:35 +00:00
boost-headers Don't use plain "throw;", it breaks clang -fno-exceptions build. Bump 2015-01-15 13:01:44 +00:00
boost-jam Chamges 1.57.0: 2014-11-07 19:28:38 +00:00
boost-libs Find bzip2 and zlib correctly. 2015-03-16 14:07:41 +00:00
boost-python Chamges 1.57.0: 2014-11-07 19:28:38 +00:00
bouml
bpython
buddy
bugs-everywhere Import py27-bugs-everywhere-1.1.1 as devel/bugs-everywhere. 2014-08-09 21:57:14 +00:00
bugzilla
bugzilla3
bullet
byacc (pkgsrc) 2014-12-15 06:04:13 +00:00
bzr
bzr-explorer Fixes egg-file handling. 2014-12-21 08:15:03 +00:00
bzr-gtk
bzr-svn Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
bzrtools
c-cpp-reference
capstone Update to 3.0.2 2015-03-12 00:27:07 +00:00
cbrowser
ccache change from .xz to .gz distfile. xz needs gettext-lib by default which 2015-03-19 23:01:15 +00:00
cdecl
cdk
cervisia Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
cfitsio Update devel/cfitsio to 3.37. 2015-04-08 16:23:27 +00:00
cflow
cflow-mode
cgdb
cgen
check Update 0.9.10 to 0.9.14 2014-12-12 07:38:43 +00:00
chmlib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
chrpath
clib
clisp-pcre
clisp-syscalls
clisp-wildcard
clisp-zlib
cmake Changes 3.2.1: 2015-04-07 20:53:48 +00:00
cmake-fedora Set MAINTAINER to pkgsrc-users. 2015-03-15 17:09:00 +00:00
cmake-mode
cmocka Remove FETCH_USING, not package-setable. 2015-03-31 22:03:48 +00:00
cmockery2 Add cmockery2-1.3.8 2014-08-07 11:18:04 +00:00
cmph
coccinelle Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
coconut
codeville
cogito
colordiff Update to 1.0.13: 2014-08-21 14:05:11 +00:00
commit-patch Update to 2.5.2: 2015-01-16 09:21:49 +00:00
compiz-bcop
compizconfig-backend-gconf Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
concurrencykit
confuse Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
cook Requires USE_TOOLS+=groff to build mandatory documentation. 2014-09-24 13:50:54 +00:00
cppcheck Revbump cppcheck because the dependecy tinyxml2 was updated. 2015-03-15 10:02:23 +00:00
cppunit
cproto Update to 4.7l, set LICENSE. 2015-01-16 09:23:50 +00:00
cpuflags document ONLY_FOR_PLATFORM 2015-01-04 04:46:01 +00:00
cqual
cscope lex (libfl) is a runtime dependency. 2014-07-24 13:20:10 +00:00
cssc wants to link with pthreads 2015-03-14 14:24:48 +00:00
ctemplate
cunit
cut
cutter Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
cvs-fast-export
cvs2cl
cvs2html
cvs2svn
cvsclone
cvsd
cvsdiff2patch
cvsgraph bison rules are racy. 2014-08-19 13:32:10 +00:00
cvslock
cvsps Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
cvsps3 Update to 3.13 2015-02-28 08:32:12 +00:00
cvsup-bin
cvsup-gui-bin
cvsutils
cvsync recursive bump for mhash bump. While here fix build with gcrypt option. 2015-03-05 22:40:54 +00:00
cxref
darcs
darts
dconf Recursive bump for vala-0.28.0 update. 2015-04-03 07:38:34 +00:00
dconf-editor Recursive bump for vala-0.28.0 update. 2015-04-03 07:38:34 +00:00
ddd
deforaos-coder
deforaos-configure Packaged DeforaOS configure 0.1.1 2014-11-02 14:12:25 +00:00
deforaos-libsystem Moved the manual pages to PKGMANDIR as they should 2014-10-03 16:51:00 +00:00
dejagnu (pkgsrc) 2015-02-07 12:49:54 +00:00
delta Perl script work significantly better with Perl around. Bump revision. 2014-09-22 11:53:00 +00:00
dev86 Update to 0.16.21 2014-12-21 00:43:38 +00:00
devhelp Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
device-driver-doc-de
devIL
dia2code
diffuse
diffutils Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
distcc
distcc-pump
distccmon-gnome
distccmon-gtk
dlcompat
dmake
dmalloc
doc++
dolphin-plugins Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
dotconf
doxygen Fix PLIST for nopangocairo case. 2015-03-28 15:23:14 +00:00
doxymacs Use less random gcc flags. 2014-08-13 22:39:56 +00:00
easygit
eclipse For "Others might work but might need significant tweaking", remove 2015-01-04 04:56:53 +00:00
ecore
edcommon Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
editline Forgot this. 2015-03-19 23:05:33 +00:00
eet Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
eina
eio
electric-fence
elf
elfsh
elftoolchain Ignore const cast issues. 2014-12-10 23:22:05 +00:00
elib Fix for texinfo 5.x. 2014-07-14 10:51:33 +00:00
emacs-ilisp
emacs20-elib
epydoc
eric4 Update to 4.5.24. Extract using bsdtar instead of gtar. 2014-08-22 09:11:59 +00:00
error
ethos
ETL
etrace
exctags SECURITY: Fix CVE-2014-7204 (DoS in JavaScript parser) in exuberant-ctags. 2015-03-29 09:19:06 +00:00
exempi Revbump after updating boost 2014-11-07 19:39:24 +00:00
ExmanIDE
fann Repeat after me: va_list is not a pointer. Bump revision. Slightly 2015-02-28 23:43:01 +00:00
fastdep
ffcall Don't use the frame pointer on SunOS. 2015-03-19 14:04:45 +00:00
fhist
flex Prevent libfi to be linked with libintl. 2014-08-23 07:46:38 +00:00
flexdock
flim
florist
fortran-utils
fossil Update to 1.32 based on patch by Jan Danielsson in private email. 2015-03-15 07:54:35 +00:00
frama-c Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
frink
fromcvs Update fromcvs to 0.0.0.134, latest GitHub source. 2015-03-01 13:35:36 +00:00
ftnchek
g-wrap remove dup RCS id 2015-03-05 20:14:52 +00:00
gccmakedep
GConf Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
GConf-ui
gconfmm
gcvs
gdb Move wip/gdb (version 7.9) over the 5.x version that has been here for a 2015-03-15 14:56:46 +00:00
gdb5 Copy devel/gdb to devel/gdb5 in preparation for importing GDB 7.9. 2015-03-15 14:31:31 +00:00
gdb6 document NOT_FOR_PLATFORM 2015-01-04 02:16:49 +00:00
gdbus-codegen Reset PKGREVISION after update. 2014-09-05 21:12:38 +00:00
gdl
geany
gearmand Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
generate
gengetopt
gentle Consistently use our CFLAGS. Fix build with Clang. 2015-02-23 18:21:09 +00:00
gettext update one teeny version to the version with the fix for 2015-01-03 18:04:06 +00:00
gettext-asprintf
gettext-lib update one teeny version to the version with the fix for 2015-01-03 18:04:06 +00:00
gettext-m4 Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
gettext-tools As threatened in April, add --without-emacs to fix build on OSX. 2015-01-10 16:19:48 +00:00
gflib
giblib
gindent Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
git Changes 2.3.5: 2015-04-08 10:37:07 +00:00
git-base Changes 2.3.5: 2015-04-08 10:37:07 +00:00
git-docs Changes 2.2.0: 2014-11-30 18:43:41 +00:00
git-gitk Changes 2.1.0: 2014-08-25 07:49:08 +00:00
git-svn and reset PKGREVISION after the update to 2.1.0 2014-08-25 07:51:48 +00:00
gitolite Update yo 3.6.2 2014-11-29 03:23:01 +00:00
glade
glade3
glib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
glib2 Update glib2 to 2.42.2 2015-03-14 01:24:54 +00:00
glibmm Work-around NetBSD's native iconv lacking support for WCHAR_T. 2015-02-03 11:50:43 +00:00
global Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
gmake Appy upstream git commit 292da6f6867b75a5af7ddbb639a1feae022f438f 2014-11-09 03:22:57 +00:00
gmock
gmp port some changes from netbsd gmp and adapt them to the gmp 6.x. 2015-04-03 07:41:26 +00:00
gmtk Set MAINTAINER to pkgsrc-users. 2015-03-15 17:30:24 +00:00
gnatpython
gnome-common Update to 3.14.0: 2014-10-05 15:03:33 +00:00
gnustep-base Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
gnustep-examples Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
gnustep-make Don't use the clang bl3.mk file, it will go away soon. Change to DEPENDS. 2015-03-04 16:51:57 +00:00
gnustep-objc
gnustep-objc-lf2
gob2
gobject-introspection Update gobject-introspection to 1.42.0 2014-10-07 23:29:49 +00:00
google-glog Add buildlink3.mk. 2014-11-29 09:35:17 +00:00
googletest
Gorm Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
gperf Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
gperftools Add buildlink3.mk. 2015-04-03 17:20:53 +00:00
gprbuild-aux
gps Remove MAKE_JOBS_SAFE=yes, the variable only has an effect when set to 'no'. 2014-09-02 08:32:36 +00:00
gputils needs flex 2015-03-12 12:51:04 +00:00
grantlee Update grantlee to 0.5.1 2014-11-13 08:58:04 +00:00
gsoap flex (libfl) is a runtime dependency. 2014-07-24 13:22:36 +00:00
gst-plugins0.10-pango
gst-plugins1-pango Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gtexinfo Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
gtl
guile-gnome
guile-gtk
guile-lib Update to 0.2.2. 2014-12-04 01:05:25 +00:00
guile-slib
guile-www Update to 2.39. Upstream changes: 2015-02-22 23:04:13 +00:00
gyp Update to 0.1pre2019 2015-01-06 10:26:59 +00:00
happy Set BUILDLINK_DEPMETHOD.happy to "build" as happy is not a library but a build tool 2015-02-14 04:46:33 +00:00
haskell-mode Update HOMEPAGE, was 404 status. 2015-01-19 13:36:12 +00:00
hdevtools Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
hdf
hdf5 Avoid reference to WRAPPER_BINDIR in final binaries. 2014-09-24 10:40:57 +00:00
hdf5-c++
heirloom-getopt
heirloom-libcommon
heirloom-what
hg-git Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
hoe Add ALTERNATIVES file which should be commited previous commit. 2015-03-01 13:39:15 +00:00
hptools
hs-ansi-terminal Update to 0.6.2.1 2014-11-06 13:00:44 +00:00
hs-base-unicode-symbols Import hs-base-unicode-symbols-0.2.2.4 from wip 2015-03-03 15:40:50 +00:00
hs-blaze-builder Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
hs-cmdargs Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-cpphs Update to 1.18.7 2015-01-17 14:05:10 +00:00
hs-data-default make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-data-default-class make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-data-default-instances-base make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-data-default-instances-containers make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-data-default-instances-dlist make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-data-default-instances-old-locale make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-deepseq-generics make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-dlist make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-exceptions Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-extensible-exceptions make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-ghc-mtl Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-ghc-paths make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-hashable Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
hs-haskell-src-exts Import haskell-src-exts-1.16.0.1 as devel/hs-haskell-src-exts, 2015-01-28 18:46:53 +00:00
hs-hint Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-lifted-base Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-mmorph Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-monad-control Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-MonadRandom Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-mtl Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-primitive Update to 0.5.4.0 2015-02-14 04:10:27 +00:00
hs-QuickCheck Forgot to add a dependency on devel/hs-transformers. Bump revision 2015-02-14 04:57:28 +00:00
hs-random Update to 1.1 2014-10-21 21:27:51 +00:00
hs-reflection Import reflection-1.5.1 as devel/hs-reflection. 2014-11-07 13:07:56 +00:00
hs-resourcet Update to 1.1.3.1 2014-12-11 12:24:45 +00:00
hs-safe make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-split make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-stm make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-syb make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-tagged make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-text Update to 1.2.0.3 2014-12-12 22:53:35 +00:00
hs-tf-random Bump PKGREVISION for hs-random-1.1 2014-10-21 21:28:58 +00:00
hs-transformers Update to 0.4.2.0 2014-11-23 12:51:34 +00:00
hs-transformers-base Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-transformers-compat Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-uniplate Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
hs-unordered-containers Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
hs-utf8-string make it clear what package depend on 2014-08-29 14:08:38 +00:00
hs-vault Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
hs-vector Update to vector-0.10.12.2 2015-03-02 23:44:43 +00:00
hs-vector-algorithms Bump PKGREVISION for hs-transformers-0.4.2.0 2014-11-23 12:52:31 +00:00
hs-void Bump PKGREVISION for hs-text-1.2.0.3 2014-12-12 22:55:24 +00:00
ht
hugs-HUnit
hugs-unix
idiff
idutils Patch around problem in configure script directly, using a patch 2015-01-02 22:34:02 +00:00
imake
iniparser
intel2gas
intellij-idea-ce
isect
its4 Use CXX as C++ compiler. Remove messed up compile test using 2014-12-25 17:39:58 +00:00
jam
java-subversion Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
javacc
javadeps
jenkins Update to 1.565.3 from 1.532.1 2014-10-25 15:04:06 +00:00
jflex Update to 1.6.0 2014-10-06 13:33:54 +00:00
jq
js2-mode
js_of_ocaml Revbump associated with ocaml 4.02.1. Also added the ocaml-tyxml option 2015-01-20 16:09:15 +00:00
kapptemplate Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kcachegrind Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kdbg Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde-dev-scripts Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kde-dev-utils Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kdesdk-kioslaves Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
kdesdk-strigi-analyzers Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kdesdk-thumbnailers Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kdesdk3 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
kdevelop
kdevelop-base Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
kdevelop4 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
kdevplatform Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
kdiff3 Update kdiff3 to 0.9.98 2014-11-14 10:08:09 +00:00
kdiff3-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
ko-po-check
kompare Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
kscope Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kyua Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
lcc Use BROKEN_EXCEPT_ON_PLATFORM. 2015-01-04 05:00:45 +00:00
lcov
ldapsdk
ldpc
lemon
lettuce
libarena
libargparse
libast
libatomic_ops Provide patched Makefile.in regen form patched Makefile.am. 2014-11-09 08:33:14 +00:00
libbegemot
libbinio
libblkid Fix C syntax. 2015-01-09 14:27:46 +00:00
libbonobo
libbonoboui
libbson Update devel/libbson to 1.1.2. 2015-03-24 13:21:43 +00:00
libcfg+ Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libcompizconfig Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
libconfig
libctl
libdaemon
libdatrie Set MAINTAINER to pkgsrc-users. 2015-03-15 17:08:59 +00:00
libdbusmenu-qt
libdnsres
libdockapp
libdshconfig
libebml devel/libebml: needs a C compiler to build 2015-01-13 18:19:01 +00:00
libelf
libestr Update libestr to 0.1.10. 2015-01-16 16:40:45 +00:00
libetm Switch to groff rather than nroff for tools, mandoc as an nroff substitute 2014-07-14 19:20:46 +00:00
libev Explicitly disable inotify on SunOS, assumes Linux statfs. 2015-02-02 10:25:35 +00:00
libevent wants to link with pthreads (libevent_pthreads.la) 2015-03-14 17:43:57 +00:00
libexecinfo
libextractor
libf2c
libffi Disable incompatible assembly sections on 32-bit OSX. Based on MacPorts fix 2015-03-23 15:34:18 +00:00
libfirm Update to libFirm 1.21.0 2014-11-06 20:46:01 +00:00
libFoundation
libFoundation-examples
libftdi
libftdi1 PKGREVISION++, by converting (duplicated) libconfuse to confuse. Thanks gdt@. 2015-01-18 06:18:58 +00:00
libgail-gnome Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
libgcroots probably imported for uim package improvement, but not interesting for myself. 2014-09-28 03:16:17 +00:00
libgee Recursive bump for vala-0.28.0 update. 2015-04-03 07:38:34 +00:00
libgee0.6 Update comment to point to newest vala version. 2014-11-25 12:04:55 +00:00
libgetopt SunOS getopt doesn't define/use optreset 2014-09-13 11:03:17 +00:00
libgit2 bulk build wants openssl 2015-01-13 23:05:26 +00:00
libglade
libglademm
libgnome
libgnomemm
libgnomeui
libgnomeuimm USE_TOOLS+=gm4, required on SunOS. 2014-09-24 20:46:21 +00:00
libgphoto2
libgsf Update libgsf to 1.14.30 2014-08-23 20:40:38 +00:00
libgweather Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
libhfs
libhid Remove redundant includes. Tell configure explicitly how to link Python. 2014-12-18 10:51:02 +00:00
libiberty Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libidn Update to 1.30. Add comment to one patch, and remove another patch 2015-03-05 21:05:14 +00:00
libinotify wants to link with libpthread 2015-03-12 14:54:14 +00:00
libixp needs pthreads (libixp_pthread.a) 2015-03-12 15:34:16 +00:00
libjit
libjudy
libkgapi Initial import libkgapi 2.2.0 2014-11-13 11:13:45 +00:00
libkomparediff2 Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
liblangtag Update to 0.5.6: 2015-04-03 06:58:04 +00:00
libltdl Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
libmaa
libmatchbox HOMEPAGE and MASTER_SITES moved. 2014-12-28 15:12:22 +00:00
libmcs
libmemcache
libmemcached
libmemmgr
libmimedir
libmm Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libmowgli
libmtp Pull in devel/libusb on SunOS instead of the unsupported devel/libusb1, the 2014-08-21 14:03:45 +00:00
libnet10 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libnet11 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libnjb
libntlm
liboil
liboop
libosip Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libowfat
libpeas Don't hardcode /usr/pkg, use PYTHONCONFIG instead. 2015-01-06 14:41:08 +00:00
libpgm
libportlib
libproplist
librfuncs
librlog
librsync
librxspencer
libsafec Initial import of libsafec, providing bounds checking memory and string 2014-11-09 01:52:24 +00:00
libsexy
libsexymm
libsigc++ Update to 2.4.1: 2015-02-28 10:24:45 +00:00
libsigc++1
libsigsegv
libslang Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libslang2 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libsmi
libstash
libstatgrab
libstree
libstroke Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libtai
libtar
libtecla Account for the libraries installed on FreeBSD 2015-03-01 18:27:25 +00:00
libthai Set MAINTAINER to pkgsrc-users. 2015-03-15 19:51:07 +00:00
libthrift Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
libtool When relinking with DESTDIR, also look into DESTDIR for the desired 2014-12-02 10:56:24 +00:00
libtool-base When relinking with DESTDIR, also look into DESTDIR for the desired 2014-12-02 10:56:24 +00:00
libtool-fortran Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
libtool-info Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
libts Needs groff and a real nroff(1). 2014-07-15 10:01:09 +00:00
libusb Improve STEP_MSG. 2015-02-04 23:44:34 +00:00
libusb-compat update 0.1.4 to 0.1.5 2014-11-24 12:53:19 +00:00
libusb1 wants to link with pthreads 2015-03-11 22:25:25 +00:00
libusbx document NOT_FOR_PLATFORM 2015-01-04 02:52:03 +00:00
libuuid Fix generated fake uuid.pc. A missing ";" meant that the Cflags line was 2014-09-19 12:50:43 +00:00
libuv
libuxre
libview
libvolume_id
libwhisker2
libwnck
libwnck3 Update libwnck3 to 3.14.0 (first version since 3.4.9) 2014-11-27 01:16:04 +00:00
libxenserver
libzen
lincvs
lmdbg Use BROKEN_ON_PLATFORM for undocumented MacOS restriction. 2015-01-04 02:47:06 +00:00
locktests
log4cplus
log4cxx
log4shib configure script says pthread is required 2015-03-15 01:07:20 +00:00
lokalize Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
ltsa
lua-alt-getopt Simplify PKGNAME. 2015-01-10 20:48:58 +00:00
lua-BitOp No support for Lua 5.3. 2015-03-18 10:24:49 +00:00
lua-filesystem Update devel/lua-filesystem to 1.6.3. 2015-03-24 13:35:49 +00:00
lua-gi Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lua-ljsyscall Add TODO. 2015-04-03 20:46:12 +00:00
lua-lpeg Update devel/lua-lpeg to version 0.12.2. 2015-03-04 19:14:10 +00:00
lua-lrexlib Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lua-lrexlib-onig Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lua-lrexlib-pcre
lua-lrexlib-posix Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lua-mode
lua-penlight Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lua-posix No support for Lua 5.3. 2015-03-18 10:24:49 +00:00
lua-stdlib Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lutok Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
lwp
m4 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
m17n-lib Set MAINTAINER to pkgsrc-users. 2015-03-15 19:57:40 +00:00
mad-flute Request from joerg to link with the correct lib paths 2014-12-02 21:49:23 +00:00
magit
makedepend Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
makedepf90
maketool
man-pages
mantis Update to 1.2.17. pkgsrc changes: Add bash:run to USE_TOOLS and 2014-09-24 01:06:26 +00:00
matio
mcpp
mdds Update to 0.12.0. Use proper master site. 2015-02-27 13:39:41 +00:00
meld Update to 3.13.0: 2014-12-31 14:28:27 +00:00
mell Set MAINTAINER to pkgsrc-users. 2015-03-15 17:00:29 +00:00
memcached Fix build with newer DTrace. 2015-03-26 10:16:14 +00:00
menhir Bugfix for ocamlfind dependency not being picked up (thanks to joerg@ for 2014-10-13 12:03:15 +00:00
mercurial
mico Fix detection of thread-safe OpenSSL. 2014-11-10 18:01:01 +00:00
mk-configure Update to 0.29.0 2014-11-30 16:26:58 +00:00
mkcmd Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
mm-common needs gzip as tool during build 2015-03-12 17:27:50 +00:00
mono-addins Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
mono-tools Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
monodevelop Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
monodevelop-database Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
monotone Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
monotone-server
monotone-viz Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
mph
mr Update to 1.20141024. From the changelog: 2014-10-25 15:34:54 +00:00
msgpack Set MAINTAINER to pkgsrc-users. 2015-03-15 16:47:19 +00:00
nana
nant Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
nasm Update to 2.11.08 2015-02-23 11:25:08 +00:00
nbpatch
ncc
ncurses Drop the use of -no-cpp-precomp which is specific to Apple's supplied toolchain 2015-02-18 03:10:41 +00:00
ncursesw Install all needed header files and a -config script. 2014-09-16 09:48:41 +00:00
netbeans-ide
netbsd-iscsi-lib Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
netcdf
netcdf-fortran
newfile
ninja-build Correctly sanitize environment. 2014-11-27 13:38:15 +00:00
noweb
npapi-sdk Set MAINTAINER to pkgsrc-users. 2015-03-15 17:09:00 +00:00
nqc
nsis
nspr Fix config.guess override. 2015-02-21 00:10:21 +00:00
nspr-reference
nss Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
ObjectiveLib Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
ocaml-batteries Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
ocaml-cmdliner Don't steer away from the documented procedure, use bsd.prefs.mk 2015-03-06 01:18:04 +00:00
ocaml-deriving-ocsigen Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
ocaml-extlib Revbump associated with update of lang/ocaml. 2015-02-11 14:01:05 +00:00
ocaml-findlib Revbump assiocated with ocaml 4.02.1. 2015-01-20 15:33:55 +00:00
ocaml-lwt Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
ocaml-oasis Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
ocaml-odn Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
ocaml-optcomp Revbump associated with ocaml 4.02.1. 2015-01-20 16:12:12 +00:00
ocaml-re Revbump associated with update of lang/ocaml. 2015-02-11 13:56:07 +00:00
ocaml-react Revbump associated with ocaml 4.02.1 2015-01-20 15:22:53 +00:00
ocaml-reactiveData New package ocaml-reactiveData, reactive programming with incremental 2015-01-20 15:19:54 +00:00
ocaml-sexplib Added package devel/ocaml-sexplib, a library for S-Expressions in OCaml. 2015-01-20 16:27:02 +00:00
ocaml-type_conv Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
ocamlgraph Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
ocamlify Revbump associated with ocaml 4.02.1. 2015-01-20 15:59:18 +00:00
ocamlmod Revbump associated with ocaml 4.02.1. 2015-01-20 15:59:18 +00:00
ode
ogre
okteta Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
omake Revbump associated with update of lang/ocaml. 2015-01-20 14:24:34 +00:00
opal
open-vcdiff
opencm Find builtin Kerberos headers on SunOS, and fix Texinfo 5.x. 2014-09-24 21:25:54 +00:00
opengrok Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
openocd Import openocd-0.8.0 as devel/openocd. 2015-04-04 00:26:42 +00:00
openrcs Call the various autotools directly as bootstrap wants to use the wrong 2014-08-13 22:38:33 +00:00
orc wants to link with pthreads 2015-03-11 22:25:25 +00:00
ossp-uuid
p5-accessors
p5-accessors-fast
p5-Acme-PlayCode
p5-Algorithm-Annotate Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Algorithm-C3 Update to 0.10 2014-09-06 08:19:39 +00:00
p5-Algorithm-CheckDigits
p5-Algorithm-Dependency Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Algorithm-Diff Update to 1.1903: 2014-11-26 12:10:35 +00:00
p5-Algorithm-HowSimilar Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Algorithm-Merge Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Algorithm-Permute
p5-aliased
p5-Alien-Packages
p5-AnnoCPAN-Perldoc
p5-Any-Moose Update 0.24 to 0.26 2015-03-15 13:06:03 +00:00
p5-AnyEvent (old) MASTER_SITES not deleted, deleting. 2015-03-15 13:11:26 +00:00
p5-AnyEvent-AIO
p5-AnyEvent-IRC
p5-AnyEvent-RabbitMQ Update 1.17 to 1.18 2015-01-14 15:23:02 +00:00
p5-AnyEvent-XMPP Update to 0.55 2014-07-29 03:44:21 +00:00
p5-App-Cache
p5-App-CLI Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-App-Cmd Update to 0.327 2015-03-01 08:57:02 +00:00
p5-App-cpanminus Update to 1.7027 2015-02-18 13:45:23 +00:00
p5-App-cpanoutdated Update 0.20 to 0.24 2014-12-12 08:37:53 +00:00
p5-App-FatPacker Udate 0.010000 to 0.010002 2015-01-26 04:55:31 +00:00
p5-App-perlbrew Add dependency on curl for fetching files. 2015-03-01 09:27:41 +00:00
p5-App-Prove-Plugin-ProgressBar
p5-App-Prove-Plugin-ProgressBar-Each Import p5-App-Prove-Plugin-ProgressBar-Each, a per-test-script 2015-01-04 06:25:14 +00:00
p5-AppConfig Update to 1.71: 2015-03-05 07:02:17 +00:00
p5-AppConfig-Std (pkgsrc) 2015-01-26 05:29:48 +00:00
p5-Array-Compare (pkgsrc) 2014-12-12 11:05:56 +00:00
p5-Array-Diff
p5-Array-RefElem
p5-asa
p5-Async-Interrupt (pkgsrc) 2015-02-13 14:03:34 +00:00
p5-AtExit Update 2.01 to 2.02 2015-01-26 05:33:33 +00:00
p5-Attribute-Lexical Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-autobox Update to 2.83 2015-02-18 12:29:25 +00:00
p5-autobox-Core Update 1.2 to 1.28 2015-02-18 12:42:00 +00:00
p5-Autodia
p5-autodie 2.26 2014-12-26 16:27:23+00:00 UTC 2015-02-18 12:49:40 +00:00
p5-AutoLoader Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-autovivification Import autovivification perl module as p5-autovivification packaged for 2015-02-16 16:46:07 +00:00
p5-AutoXS-Header
p5-B-Compiling Update 0.02 to 0.04 2014-12-12 11:15:28 +00:00
p5-B-Hooks-EndOfScope update to 0.14 2015-02-05 13:46:50 +00:00
p5-B-Hooks-OP-Annotation
p5-B-Hooks-OP-Check
p5-B-Hooks-OP-Check-EntersubForCV
p5-B-Hooks-OP-Check-StashChange
p5-B-Hooks-OP-PPAddr
p5-B-Hooks-Parser Update 0.10 to 0.12 2014-12-12 11:17:14 +00:00
p5-B-Keywords Update to 1.14 2015-03-01 08:59:05 +00:00
p5-B-Utils Update 0.21 to 0.25 (0.25 part is missing at following) 2014-12-12 11:21:49 +00:00
p5-BackPAN-Index (pkgsrc) 2015-01-26 08:00:04 +00:00
p5-bareword-filehandles
p5-Bit-Vector Update to 7.4: 2014-11-23 13:02:59 +00:00
p5-boolean Update to 0.45: 2015-02-08 14:15:52 +00:00
p5-BSD-Resource Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Cache Update to 2.11 2015-03-01 09:06:06 +00:00
p5-Cache-Cache Update 1.06 to 1.08 2015-01-26 07:14:40 +00:00
p5-Cache-FastMmap Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Cache-Memcached
p5-Cache-Simple-TimedExpiry
p5-capitalization
p5-Capture-Tiny Update to 0.28 2015-02-12 04:58:56 +00:00
p5-Carp-Always Udate to 0.13 2015-01-26 07:16:50 +00:00
p5-Carp-Assert Update to 0.21 2015-01-26 07:20:48 +00:00
p5-Carp-Assert-More (pkgsrc) 2015-01-26 07:25:42 +00:00
p5-Carp-Clan Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Carp-REPL Update 0.15 to 0.17 2015-01-26 07:32:06 +00:00
p5-Check-ISA
p5-CHI Update to 0.59 2015-01-26 06:44:35 +00:00
p5-circular-require Update to 0.11 2015-02-18 12:53:17 +00:00
p5-CLASS
p5-Class-Accessor Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Accessor-Chained Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Accessor-Grouped Update to 0.10012 2014-11-22 05:11:50 +00:00
p5-Class-Accessor-Lite Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Accessor-Named
p5-Class-Adapter
p5-Class-Autouse Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Base Update to 0.0.6 2015-01-27 13:52:34 +00:00
p5-Class-C3 Update to 0.27 2015-01-08 14:05:33 +00:00
p5-Class-C3-Adopt-NEXT
p5-Class-C3-Componentised
p5-Class-C3-XS
p5-Class-Container Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Data-Accessor
p5-Class-Data-Inheritable Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-ErrorHandler Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Factory Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Factory-Util Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Field Update to 0.23 2015-01-08 14:11:02 +00:00
p5-Class-Fields Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Gomor Update to 1.03 2015-01-27 13:54:18 +00:00
p5-Class-Inner Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-InsideOut
p5-Class-Inspector Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-ISA
p5-Class-Load Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Load-XS Update to 0.09 2015-01-08 14:14:54 +00:00
p5-Class-Loader Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-MakeMethods Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Method-Modifiers Update to 2.11: 2014-09-07 12:22:45 +00:00
p5-Class-MethodMaker Update to 2.23 2015-03-15 13:23:25 +00:00
p5-Class-Mix
p5-Class-ObjectTemplate Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-OOorNO Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-ReturnValue Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Class-Singleton Update to 1.5: 2014-11-09 12:01:29 +00:00
p5-Class-Std
p5-Class-Throwable Update 0.11 to 0.13 2015-02-05 13:49:06 +00:00
p5-Class-Tiny Update to 1.001 2015-01-31 13:05:13 +00:00
p5-Class-Trigger Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-Unload
p5-Class-Virtual Add comment for necessity of DEPENDS at make test. 2015-03-17 00:27:28 +00:00
p5-Class-WhiteHole Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Class-XML
p5-Class-XPath Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Class-XSAccessor Update to 1.19 2014-07-28 13:43:07 +00:00
p5-Clone Update to 0.38: 2015-01-21 21:45:28 +00:00
p5-Clone-Fast Use MASTER_SITE_PERL_CPAN. 2015-01-30 10:24:13 +00:00
p5-Clone-PP Update to 1.06: 2014-09-06 13:32:09 +00:00
p5-common-sense Update to 3.73: 2014-09-06 13:03:21 +00:00
p5-Compress-PPMd
p5-Compress-Raw-Bzip2 Update to 2.068: 2014-12-31 14:35:21 +00:00
p5-Compress-Raw-Zlib Update to 2.068: 2014-12-31 14:34:30 +00:00
p5-Config-Any
p5-Config-Any-Merge
p5-Config-Auto Update to 0.44 2015-01-28 04:30:04 +00:00
p5-Config-AutoConf Update to 0.310 2015-03-01 09:07:35 +00:00
p5-Config-Find Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Config-General Update 2.52 to 2.56 2015-01-28 04:40:24 +00:00
p5-Config-GitLike Update to 1.15 2015-02-18 13:16:23 +00:00
p5-Config-Grammar Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Config-INI Update to 0.025 2015-01-24 07:28:56 +00:00
p5-Config-IniFiles Update to 2015-01-28 04:45:37 +00:00
p5-Config-MVP Update to 2.200009 2015-03-15 13:27:28 +00:00
p5-Config-MVP-Reader-INI Update 2.101461 to 2.101463 2015-01-28 04:54:36 +00:00
p5-Config-Properties Update 1.73 to 1.77 2015-01-28 04:56:24 +00:00
p5-Config-Std Update to 0.901 2015-01-28 04:58:05 +00:00
p5-Config-Tiny Update 2.20 to 2.22 2015-03-15 23:06:00 +00:00
p5-Const-Fast Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-constant-def Remove another reference to removed p5-constant. 2015-01-31 12:20:53 +00:00
p5-Context-Preserve
p5-Contextual-Return
p5-Convert-Binary-C
p5-Coro (pkgsrc) 2015-02-13 14:00:02 +00:00
p5-CPAN (old) MASTER_SITES not deleted, deleting, sorry again. 2015-03-15 13:17:00 +00:00
p5-CPAN-Changes Update to 0.30 2014-09-06 08:30:06 +00:00
p5-CPAN-Checksums Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-CPAN-DistnameInfo
p5-CPAN-FindDependencies
p5-CPAN-Inject Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-CPAN-Meta 2.150001 2015-03-09 14:41:39-04:00 America/New_York 2015-03-15 13:20:10 +00:00
p5-CPAN-Meta-Check Update to 0.011 2015-04-05 13:38:35 +00:00
p5-CPAN-Meta-Requirements Update to 2.133 2015-03-01 09:01:02 +00:00
p5-CPAN-Meta-YAML
p5-CPAN-Mini Update to 1.111016 2014-10-04 13:46:56 +00:00
p5-CPAN-ParseDistribution Import p5-CPAN-ParseDistribution-1.52 as devel/p5-CPAN-ParseDistribution. 2015-02-01 08:49:39 +00:00
p5-CPAN-Perl-Releases Update 2.06 to 2.10 2015-03-01 09:03:40 +00:00
p5-CPAN-Reporter Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-CPAN-Uploader Update to 0.103008 2015-02-12 04:41:18 +00:00
p5-CPANPLUS Import p5-CPANPLUS-0.9152 as devel/p5-CPANPLUS. 2015-02-06 05:12:28 +00:00
p5-Curses (pkgsrc) 2015-01-29 01:00:26 +00:00
p5-Curses-UI Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Curses-UI-POE Update 0.03500 to 0.04000 (DISTNAME version is 0.40) 2015-02-08 07:00:04 +00:00
p5-Data-Alias
p5-Data-Buffer Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Data-Compare Update 1.23 to 1.25 2015-01-29 00:43:58 +00:00
p5-Data-Denter
p5-Data-Dump Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Data-Dump-Streamer Update 2.36 to 2.38 .. ChangeLog is not really known, but written as: 2015-01-28 01:48:28 +00:00
p5-Data-Dumper Import perl module Data::Dumper 2015-02-07 16:17:57 +00:00
p5-Data-Dumper-Concise Update 2.020 to 2.022 2015-01-29 01:02:40 +00:00
p5-Data-Dumper-Names
p5-Data-GUID
p5-Data-Hierarchy Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Data-Integer Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Data-MessagePack
p5-Data-Munge Update to 0.094 2015-03-15 13:29:52 +00:00
p5-Data-OptList Update to 0.109: 2014-09-06 12:52:02 +00:00
p5-Data-Page
p5-Data-Pageset
p5-Data-Peek Update to 0.43 2015-02-12 05:15:25 +00:00
p5-Data-Perl Import p5-Data-Perl-0.002009 as devel/p5-Data-Perl. 2014-09-06 14:19:36 +00:00
p5-Data-Printer Correction to PKGVERSION 0.35_01 to 0.35.01, sorry. 2015-01-31 13:27:07 +00:00
p5-Data-Record
p5-Data-Section Add BUILD_DEPENDS+= for make test. 2015-03-17 12:40:02 +00:00
p5-Data-Section-Simple
p5-Data-Serializer Upate to 0.60 2015-01-29 01:19:51 +00:00
p5-Data-ShowTable Update 3.3 to 4.6 2015-03-15 13:37:08 +00:00
p5-Data-Stag
p5-Data-Taxi
p5-Data-TemporaryBag Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Data-Uniqid Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Data-UUID Update to 1.220 2015-01-29 01:21:36 +00:00
p5-Data-Visitor
p5-Date-Business Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Date-Calc Update to 6.4: 2015-03-09 06:09:57 +00:00
p5-Date-Calc-XS Update to 6.3 2015-03-15 13:39:13 +00:00
p5-Date-Manip Update to 6.49: 2015-03-05 07:00:17 +00:00
p5-Date-Simple
p5-Debug-Client Update 0.20 to 0.29 2015-01-29 01:25:53 +00:00
p5-Declare-Constraints-Simple
p5-Devel-Autoflush Update to 0.06 2015-01-29 04:53:21 +00:00
p5-Devel-BeginLift
p5-Devel-Caller Update to 2.06 2015-01-29 04:57:08 +00:00
p5-Devel-CheckBin Import p5-Devel-CheckBin-0.02 as devel/p5-Devel-CheckBin. 2014-09-07 12:27:31 +00:00
p5-Devel-CheckCompiler Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Devel-CheckLib Update to 1.03 2015-01-29 05:02:56 +00:00
p5-Devel-CheckOS Update 1.73 to 1.76 2015-03-15 13:41:44 +00:00
p5-Devel-Cover Release 1.17 - 20 September 2014 2015-01-29 05:06:07 +00:00
p5-Devel-Cycle Update to 1.12 2015-01-29 05:08:07 +00:00
p5-Devel-Declare Update 0.006012 to 0.006017 2015-01-29 05:10:25 +00:00
p5-Devel-Dumpvar
p5-Devel-ebug Update to 0.56 2015-01-29 05:38:35 +00:00
p5-Devel-EvalContext
p5-Devel-Events
p5-Devel-Events-Objects
p5-Devel-FindPerl 0.012 2013-11-20 14:57:15 Europe/Amsterdam 2015-01-29 05:11:55 +00:00
p5-Devel-FindRef Update 1.422 to 1.440 2015-01-29 05:15:19 +00:00
p5-Devel-Gladiator Update 0.01 to 0.07 2015-01-29 05:16:50 +00:00
p5-Devel-GlobalDestruction Update to 0.13: 2014-09-07 12:21:39 +00:00
p5-Devel-Hide
p5-Devel-Leak-Object
p5-Devel-LexAlias
p5-Devel-NYTProf Update to 5.07 2015-03-01 09:11:23 +00:00
p5-Devel-OverloadInfo Add BUILD_DEPENDS only for make test, as an interim solution. 2015-03-17 12:09:22 +00:00
p5-Devel-PartialDump Update 0.15 to 0.17 2015-01-29 05:20:14 +00:00
p5-Devel-PatchPerl Add missing dependency. From Kai-Uwe Eckhardt in PR 49704. 2015-03-01 09:26:34 +00:00
p5-Devel-PPPort Update 3.28 to 3.31 2015-03-15 13:45:55 +00:00
p5-Devel-Pragma Update 0.54 to 0.60 2015-01-29 05:24:50 +00:00
p5-Devel-Profile
p5-Devel-Refactor
p5-Devel-REPL Update to 1.003026 from Leonardo Taccari in PR 49606. 2015-01-26 23:20:42 +00:00
p5-Devel-Size
p5-Devel-SmallProf Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Devel-StackTrace Update to 2.00 2014-11-03 07:12:12 +00:00
p5-Devel-StackTrace-AsHTML Update 0.11 to 0.14 2015-01-29 05:29:41 +00:00
p5-Devel-StackTrace-WithLexicals Update 0.10 to 2.01 2015-01-29 05:32:26 +00:00
p5-Devel-Symdump Update to 2.14: 2014-12-30 12:54:15 +00:00
p5-Devel-Trace
p5-Devel-TraceUse Update 2.09 to 2.093 2015-01-29 05:35:11 +00:00
p5-Dir-Self Update 0.10 to 0.11 2015-01-29 05:40:19 +00:00
p5-Dist-CheckConflicts Update to 0.11: 2014-09-06 12:59:20 +00:00
p5-Dist-Zilla Update to 5.032 2015-03-01 09:37:19 +00:00
p5-Dist-Zooky Update 0.10 to 0.14 2015-01-29 08:43:47 +00:00
p5-enum Update to 1.10: 2014-09-06 12:50:03 +00:00
p5-Env-Path Update to 0.19 2015-01-29 09:19:17 +00:00
p5-Error Update to 0.17023: 2015-02-17 13:09:05 +00:00
p5-EV Explicitly disable inotify on SunOS, assumes Linux statfs. 2015-02-02 10:25:35 +00:00
p5-Eval-Closure Update to 0.12 2015-01-29 08:49:35 +00:00
p5-Event Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Event-ExecFlow
p5-Event-RPC Update to 1.05 2015-01-29 08:56:15 +00:00
p5-ex-lib
p5-Exception-Class Update 1.37 to 1.39 2015-01-29 08:58:19 +00:00
p5-Exception-Handler Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Expect (pkgsrc) 2015-03-15 13:54:37 +00:00
p5-Expect-Simple
p5-experimental Update 0.007 to 0.013 2015-02-18 12:56:28 +00:00
p5-Exporter-Lite Update to 0.06: 2014-08-13 19:45:09 +00:00
p5-Exporter-Tiny Update 0.042 to 0.043.01 2015-01-29 12:17:44 +00:00
p5-ExtUtils-AutoInstall Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-ExtUtils-CBuilder Update 0.28.02.16 to 0.28.02.20 2015-01-29 12:14:08 +00:00
p5-ExtUtils-Command Update 1.18 to 1.20 2015-01-29 12:20:10 +00:00
p5-ExtUtils-Config
p5-ExtUtils-CppGuess Update 0.07 to 0.08 2015-01-29 12:26:44 +00:00
p5-ExtUtils-Depends Update to 0.404 2015-01-31 01:01:18 +00:00
p5-ExtUtils-F77 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-ExtUtils-Helpers Update to 0.022 2015-01-29 12:29:01 +00:00
p5-ExtUtils-InstallPaths Update to 0.011 2015-02-17 13:35:18 +00:00
p5-ExtUtils-LibBuilder Update to 0.06: 2014-09-06 22:42:34 +00:00
p5-ExtUtils-MakeMaker Revert 7.05.10 to 7.04. 7.05.10 was really 7.05_10 and DEVELOPER RELEASE, 2015-02-09 13:38:32 +00:00
p5-ExtUtils-MakeMaker-Coverage Correction to PKGNAME, sorry 2015-03-18 02:34:08 +00:00
p5-ExtUtils-MakeMaker-CPANfile Import p5-ExtUtils-MakeMaker-CPANfile-0.06 as devel/p5-ExtUtils-MakeMaker-CPANfile. 2014-11-24 11:41:12 +00:00
p5-ExtUtils-Manifest Update to 1.70 2015-01-28 02:46:36 +00:00
p5-ExtUtils-ModuleMaker Update 0.52 to 0.54 2015-03-15 13:57:43 +00:00
p5-ExtUtils-ModuleMaker-TT Update to 0.94 2015-01-29 12:34:16 +00:00
p5-ExtUtils-ParseXS Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-ExtUtils-PkgConfig Update to 1.15: 2014-12-10 22:02:16 +00:00
p5-ExtUtils-XSBuilder Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-ExtUtils-XSpp Update 0.16.02 to 0.18 2015-01-29 12:42:01 +00:00
p5-File-BaseDir Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Binary
p5-File-BOM
p5-File-ChangeNotify Update to 0.24 2015-01-31 01:08:16 +00:00
p5-File-chdir Update to 0.1010 2015-02-08 02:41:48 +00:00
p5-File-ConfigDir Update to 0.016 2015-02-08 02:39:21 +00:00
p5-File-DesktopEntry Update 0.05 to 0.08 (again, the commit log is the same as done in 01/31) 2015-02-02 16:43:08 +00:00
p5-File-DirCompare Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-DirSync Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Find-Rule Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Find-Rule-Age Update 0.2 to 0.302 2015-01-31 01:18:49 +00:00
p5-File-Find-Rule-Perl Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Find-Rule-Permissions Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Find-Rule-PPI Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Find-Rule-VCS Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Flat Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-FlockDir Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-HomeDir
p5-File-LibMagic Add comment for necessity of DEPENDS at make test. 2015-03-17 00:27:28 +00:00
p5-File-Listing
p5-File-MimeInfo update to 0.27 2015-03-01 10:03:07 +00:00
p5-File-Modified Update 0.07 to 0.09 2015-01-31 01:29:01 +00:00
p5-File-Next
p5-File-NFSLock Update 1.21 to 1.27 2015-01-26 07:02:19 +00:00
p5-File-Path Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Path-Expand
p5-File-Path-Tiny
p5-File-PathConvert Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Policy
p5-File-pushd Update 1.005 to 1.009 2015-01-31 01:38:22 +00:00
p5-File-Save-Home Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-ShareDir Update 1.03 to 1.102 2015-01-31 01:31:34 +00:00
p5-File-ShareDir-Install Update to 0.10 2015-01-31 01:33:20 +00:00
p5-File-ShareDir-ProjectDistDir Import File-ShareDir-ProjectDistDir-1.000004 as devel/p5-File-ShareDir-ProjectDistDir. 2015-03-05 14:35:14 +00:00
p5-File-Slurp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Slurp-Tiny Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Temp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Tempdir
p5-File-Touch (pkgsrc) 2015-01-31 01:35:48 +00:00
p5-File-Type Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Util Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-File-Which Update to 1.16: 2015-04-02 22:45:46 +00:00
p5-FileHandle-Fmode Update to 0.14 2015-01-31 01:40:30 +00:00
p5-FileHandle-Unget
p5-Filesys-Notify-Simple Update 0.08 to 0.12 2015-01-31 01:42:28 +00:00
p5-FindBin-libs Update to 2.12. From the changelog: 2015-02-12 13:09:22 +00:00
p5-Format-Human-Bytes
p5-FreezeThaw Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Future Update to 0.32 2015-03-11 14:29:39 +00:00
p5-Getopt-ArgvFile Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Getopt-Euclid Update to 1.4.5 2015-01-31 13:11:34 +00:00
p5-Getopt-Long Update to 2.45 2015-03-01 10:09:22 +00:00
p5-Getopt-Long-Descriptive Update 0.097 to 0.099 2015-01-31 13:21:24 +00:00
p5-Getopt-Mixed Update to 1.12 2014-09-06 13:43:19 +00:00
p5-Getopt-Simple Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Getopt-Tabular Import p5-Getopt-Tabular-0.3 as devel/p5-Getopt-Tabular. 2014-08-13 20:43:07 +00:00
p5-gettext Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Git-CPAN-Patch (pkgsrc) 2015-02-06 05:48:56 +00:00
p5-Git-Repository Update 1.306 to 1.312 2015-02-01 12:34:55 +00:00
p5-Git-Repository-Plugin-AUTOLOAD Import p5-Git-Repository-Plugin-AUTOLOAD-1.001 as devel/p5-Git-Repository-Plugin-AUTOLOAD. 2015-02-07 08:47:27 +00:00
p5-Git-Wrapper Update 0.038 to 0.040 2015-03-15 14:10:36 +00:00
p5-Glib-Object-Introspection Update 0.019 to 0.027 2015-02-12 05:18:17 +00:00
p5-glib2 Update 1.304 to 1.307 2015-02-08 13:35:48 +00:00
p5-Gnome2 Update 1.042 to 1.045 2015-02-12 05:45:42 +00:00
p5-Gnome2-GConf
p5-Graph Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Gravatar-URL
p5-Gtk2-GladeXML
p5-Guard Update 1.023 2015-02-05 14:14:29 +00:00
p5-Hash-Case Update to 1.020 2015-02-06 05:57:37 +00:00
p5-Hash-FieldHash (pkgsrc) 2015-02-07 14:54:31 +00:00
p5-Hash-Flatten
p5-Hash-Merge Update 0.12 to 0.200 2015-02-07 14:57:45 +00:00
p5-Hash-Merge-Simple
p5-Hash-MoreUtils Update 0.04 to 0.05 2015-02-05 14:47:09 +00:00
p5-Hash-MultiValue Update 0.16 2015-02-18 13:19:02 +00:00
p5-Hash-Util-FieldHash-Compat (pkgsrc) 2015-02-07 15:10:50 +00:00
p5-Heap Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Hook-LexWrap Update to 0.15 2015-02-07 15:13:02 +00:00
p5-IMDB-Film Udate to 0.53 2015-02-08 02:45:24 +00:00
p5-Import-Into Add BUILD_DEPENDS+= for make test. 2015-03-17 12:40:02 +00:00
p5-indirect Update 0.30 to 0.33 2015-02-18 12:58:05 +00:00
p5-Inline Update 0.78 to 0.80 2015-03-15 23:18:17 +00:00
p5-Inline-C Update 0.73 to 0.75 2015-03-15 23:20:10 +00:00
p5-InlineX-C2XS Update 0.22 to 0.24 (Changes does not describe for 0.24) 2015-03-15 23:22:57 +00:00
p5-Internals
p5-IO-AIO Avoid PAGESIZE definition on SunOS. 2015-03-17 10:37:14 +00:00
p5-IO-All Update 0.61 to 0.85 2015-02-08 13:44:24 +00:00
p5-IO-Async Update to 0.65 2015-03-15 23:08:38 +00:00
p5-IO-Capture
p5-IO-CaptureOutput Update to 1104: 2015-01-25 11:59:47 +00:00
p5-IO-Compress Update to 2.068: 2014-12-31 14:36:43 +00:00
p5-IO-Digest Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Handle-Util
p5-IO-HTML Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-InSitu
p5-IO-Interactive
p5-IO-LockedFile Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Multiplex Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Null Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Pager Update 0.31 to 0.34 2015-03-15 23:11:34 +00:00
p5-IO-Pipeline
p5-IO-Pipely
p5-IO-Prompt Update 0.997001 to 0.997002 (PKGVERSION 0.997.001 to 0.997.002) 2015-03-15 23:14:06 +00:00
p5-IO-Prompter Update to 0.004012 2015-02-08 02:53:33 +00:00
p5-IO-String Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-stringy Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Stty Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Tee Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-TieCombine Update 1.002 to 1.004 2015-02-08 02:56:20 +00:00
p5-IO-Tty Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Util Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IO-Zlib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IPC-Cache
p5-IPC-Cmd Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IPC-DirQueue Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IPC-PubSub
p5-IPC-Run update 0.92 to 0.94 2015-02-14 02:23:30 +00:00
p5-IPC-Run3 Update 0.045 to 0.048 2015-03-15 23:16:06 +00:00
p5-IPC-Shareable Update 0.60 to 0.61 2015-02-08 03:00:35 +00:00
p5-IPC-SharedCache Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IPC-ShareLite Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-IPC-Signal
p5-IPC-System-Simple Update 1.21 to 1.25 2015-02-08 03:03:06 +00:00
p5-IPC-SysV Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-LDAP Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-LEOCHARRE-CLI2
p5-LEOCHARRE-Debug
p5-LEOCHARRE-Dir
p5-Lexical-Persistence
p5-Lexical-SealRequireHints
p5-lib-abs Update to 0.93 2015-02-18 12:59:57 +00:00
p5-List-AllUtils Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-List-MoreUtils Update to 0.410: 2015-04-02 22:44:46 +00:00
p5-List-Pairwise Import p5-List-Pairwise-1.03 as devel/p5-List-Pairwise, 2015-02-07 09:11:36 +00:00
p5-List-UtilsBy Update 0.07 to 0.09 2015-02-09 15:08:36 +00:00
p5-local-lib Update to 2.000015 2015-02-18 13:04:54 +00:00
p5-Locale-Msgfmt
p5-Locale-PO Update 0.21 to 0.27 2015-02-09 15:14:52 +00:00
p5-Log-Agent Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Log-Any Update to 1.03 2015-01-18 10:02:55 +00:00
p5-Log-Any-Adapter-Dispatch Adjust DEPENDS because Log::Any::Adapter was merged into Log::Any. 2015-01-18 10:09:20 +00:00
p5-Log-Any-Adapter-Log4perl Update to 0.07 2015-01-18 10:20:29 +00:00
p5-Log-Dispatch Update to 2.44 2015-01-18 12:24:46 +00:00
p5-Log-Dispatch-Array
p5-Log-Dispatch-Config Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Log-Dispatch-DBI
p5-Log-Dispatch-FileRotate
p5-Log-Dispatch-Perl
p5-Log-Dispatchouli Update to 2.012 2015-01-18 12:37:43 +00:00
p5-Log-Handler Update to 0.84 2015-01-18 12:51:46 +00:00
p5-Log-Log4perl Update to 1.46 2015-01-18 12:57:01 +00:00
p5-Log-LogLite Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Log-Message Import p5-Log-Message-0.08 as devel/p5-Log-Message. 2015-02-06 05:13:11 +00:00
p5-Log-Report Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Log-Report-Optional Update to 1.01 2015-01-18 13:00:25 +00:00
p5-Log-Trace
p5-Mac-Carbon
p5-Mac-SystemDirectory
p5-Make Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Memoize Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Memoize-ExpireLRU Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Memoize-Memcached Update to 0.04 2015-01-24 08:02:19 +00:00
p5-MetaCPAN-API (pkgsrc) 2015-02-09 15:20:32 +00:00
p5-Method-Signatures Update to 20141021 2014-12-03 07:33:25 +00:00
p5-Method-Signatures-Simple Update to 1.07 2014-12-03 07:37:17 +00:00
p5-Mixin-ExtraFields Revert MASTER_SITES= to authors URL. 2015-02-09 15:40:58 +00:00
p5-Mixin-ExtraFields-Param Update 0.011 to 0.021 2015-02-09 15:42:51 +00:00
p5-Mixin-Linewise Update to 0.106 2015-01-24 07:53:43 +00:00
p5-Mo Update to 0.39 2014-10-13 05:50:19 +00:00
p5-Modern-Perl Update to 1.20150127 2015-02-12 06:19:47 +00:00
p5-Module-Build Enable one BUILD_DEPENDS, to let 'make test' pass. 2015-03-17 14:00:03 +00:00
p5-Module-Build-Tiny Update to 0.039 2014-12-03 07:07:03 +00:00
p5-Module-Build-WithXSpp Update 0.12 to 0.14 2015-02-12 06:29:40 +00:00
p5-Module-Build-XSUtil Update 0.06 to 0.14 2015-02-12 06:32:50 +00:00
p5-Module-CoreList Update to 5.20150220 2015-03-15 23:25:43 +00:00
p5-Module-CPANfile Import Module-CPANfile-1.1000 as devel/p5-Module-CPANfile. 2014-09-16 14:01:42 +00:00
p5-Module-CPANTS-Analyse Fix dependency path. 2015-02-13 21:39:09 +00:00
p5-Module-Dependency
p5-Module-ExtractUse Update 0.31 to 0.33 2015-01-28 03:35:33 +00:00
p5-Module-Find Update to 0.13 2015-03-15 23:28:50 +00:00
p5-Module-Implementation Update to 0.09: 2014-09-06 12:57:19 +00:00
p5-Module-Install Update to 1.14. From the changelog: 2015-01-04 06:09:43 +00:00
p5-Module-Install-AuthorTests
p5-Module-Install-PadrePlugin
p5-Module-Install-ReadmeFromPod Udate 0.18 to 0.22 2015-02-12 06:58:43 +00:00
p5-Module-Install-Repository
p5-Module-Install-RTx Update to 0.37: 2015-02-09 22:20:44 +00:00
p5-Module-Install-Substitute Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Module-Install-XSUtil Update to 0.45. From the changelog: 2015-01-04 06:11:43 +00:00
p5-Module-Load Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Module-Manifest
p5-Module-Metadata Update 1.000024 to 1.000026 2015-02-12 07:00:52 +00:00
p5-Module-Pluggable Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Module-Refresh Add BUILD_DEPENDS only for make test, as an interim solution. 2015-03-17 12:09:22 +00:00
p5-Module-Runtime
p5-Module-Runtime-Conflicts Update to 0.001 2015-03-15 23:32:33 +00:00
p5-Module-ScanDeps Update to 1.18 2015-02-12 07:02:48 +00:00
p5-Module-Starter Update 1.58(0) to 1.71(0) (0) is for PKGNAME 2015-02-12 07:08:33 +00:00
p5-Module-Starter-PBP
p5-Module-Util
p5-Module-Versions
p5-Module-Versions-Report
p5-Mojo-IOLoop-ForkCall Update p5-Mojo-IOLoop-ForkCall to 0.16 2015-01-17 17:45:13 +00:00
p5-Moo Update to 2.000001: 2015-04-02 22:42:10 +00:00
p5-Moos Update to 0.30 2014-08-28 09:40:24 +00:00
p5-Moose Update to 2.1403 2014-12-08 08:30:14 +00:00
p5-Moose-Autobox
p5-Moose-Policy
p5-MooseX-Aliases
p5-MooseX-App (pkgsrc) 2015-02-14 12:03:54 +00:00
p5-MooseX-App-Cmd 0.30 2015-01-08 03:54:49Z 2015-02-13 12:47:45 +00:00
p5-MooseX-Attribute-Chained
p5-MooseX-AttributeHelpers
p5-MooseX-Attributes-Curried
p5-MooseX-ClassAttribute
p5-MooseX-CompileTime-Traits
p5-MooseX-ConfigFromFile
p5-MooseX-Daemonize
p5-MooseX-Declare Update to 0.40 2014-12-03 07:13:22 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast
p5-MooseX-FollowPBP
p5-MooseX-Getopt Update 0.66 to 0.68 2015-03-15 23:46:37 +00:00
p5-MooseX-Has-Options
p5-MooseX-InsideOut
p5-MooseX-LazyRequire Update to 0.11 2014-11-03 06:49:52 +00:00
p5-MooseX-MarkAsMethods
p5-MooseX-Meta-TypeConstraint-ForceCoercion
p5-MooseX-Method-Signatures Update to 0.48 2014-11-03 07:01:55 +00:00
p5-MooseX-MethodAttributes Update to 0.29 2014-07-13 10:16:20 +00:00
p5-MooseX-MultiInitArg Fix build 2014-08-15 00:48:55 +00:00
p5-MooseX-NonMoose Update to 0.26 2014-07-13 11:06:03 +00:00
p5-MooseX-Object-Pluggable Update to 0.0014 2015-02-13 12:55:58 +00:00
p5-MooseX-OneArgNew Update to 0.004 2014-07-13 11:51:06 +00:00
p5-MooseX-Param
p5-MooseX-Params-Validate 0.21 2015-02-08 2015-02-13 12:59:18 +00:00
p5-MooseX-POE Use standard email address (pkgsrc-p5-people should not be MAINTAINER). 2014-07-19 14:26:06 +00:00
p5-MooseX-Role-Parameterized Update to 1.08 2014-11-03 07:18:02 +00:00
p5-MooseX-Role-Tempdir Import p5-MooseX-Role-Tempdir-0.03 as devel/p5-MooseX-Role-Tempdir. 2015-02-06 05:11:38 +00:00
p5-MooseX-Role-WithOverloading Update to 0.16 2015-02-13 13:01:41 +00:00
p5-MooseX-SemiAffordanceAccessor Update to 0.10 2014-11-03 07:26:17 +00:00
p5-MooseX-SetOnce Update to 0.200002 2014-11-03 07:32:09 +00:00
p5-MooseX-SimpleConfig Update to 0.11 2015-02-13 13:03:10 +00:00
p5-MooseX-Singleton Update to 0.29 2014-11-03 07:48:14 +00:00
p5-MooseX-StrictConstructor
p5-MooseX-Traits Update to 0.12 2014-10-02 00:52:38 +00:00
p5-MooseX-Traits-Pluggable Update to 0.12 2014-11-03 07:50:50 +00:00
p5-MooseX-Types Update to 0.45 2014-11-01 07:25:50 +00:00
p5-MooseX-Types-Common
p5-MooseX-Types-JSON Update to 1.00 2014-11-03 08:00:24 +00:00
p5-MooseX-Types-LoadableClass Update to 0.013 2015-02-13 13:04:52 +00:00
p5-MooseX-Types-LogAny update to 0.001003 2015-02-13 13:06:34 +00:00
p5-MooseX-Types-Path-Class
p5-MooseX-Types-Perl Update to 0.101343 2014-11-03 08:04:16 +00:00
p5-MooseX-Types-Stringlike Update to 0.003 2014-11-03 08:07:19 +00:00
p5-MooseX-Types-Structured
p5-MooseX-Types-URI Update to 0.07 2014-11-01 07:34:05 +00:00
p5-MooX-Cmd Update 0.011 to 0.013 2015-03-15 23:38:43 +00:00
p5-MooX-ConfigFromFile Update to 0.006 2015-03-15 23:41:00 +00:00
p5-MooX-File-ConfigDir Update to 0.005 2015-03-15 23:43:36 +00:00
p5-MooX-HandlesVia Update to 0.001008: 2015-04-02 22:48:15 +00:00
p5-MooX-late Import p5-MooX-late-0.015 as devel/p5-MooX-late. 2014-09-06 14:07:19 +00:00
p5-MooX-Log-Any Update to 0.004001 2015-01-24 10:37:56 +00:00
p5-MooX-Options Udate to 4.018 2015-03-15 23:37:19 +00:00
p5-MooX-Roles-Pluggable
p5-MooX-Types-MooseLike Update to 0.28: 2015-03-01 11:47:54 +00:00
p5-MooX-Types-MooseLike-Numeric Update to 1.02 2014-10-13 05:35:03 +00:00
p5-Mouse Update to 2.4.1 2014-10-13 05:28:42 +00:00
p5-MouseX-Getopt
p5-MouseX-NativeTraits
p5-MouseX-Types
p5-MouseX-Types-Path-Class
p5-MRO-Compat
p5-multidimensional
p5-namespace-autoclean Update 0.20 to 0.24 2015-02-18 13:07:42 +00:00
p5-namespace-clean Update to 0.25: 2014-09-07 12:19:04 +00:00
p5-Net-CIDR Update 0.14 to 0.18 2015-02-13 13:14:26 +00:00
p5-Net-LDAP-Batch
p5-Net-LDAP-Class Update to 0.26 2015-02-13 13:33:48 +00:00
p5-Net-LDAP-Server-Test Update 0.10 to 0.19 2015-02-13 13:30:06 +00:00
p5-Net-Netmask Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-NEXT
p5-Object-Accessor Import p5-Object-Accessor-0.48 as devel/p5-Object-Accessor. 2015-02-06 05:12:55 +00:00
p5-Object-Declare
p5-Object-Event
p5-Object-InsideOut
p5-Object-Pluggable
p5-Object-Realize-Later (pkgsrc) 2015-02-13 13:37:47 +00:00
p5-Object-Signature
p5-OLE-Storage_Lite Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-OOTools Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Ouch Update to 0.0409. From the changelog: 2015-01-30 16:06:08 +00:00
p5-Package-Constants Update 0.04 to 0.06 2015-02-14 02:44:15 +00:00
p5-Package-DeprecationManager
p5-Package-Generator Update 0.103 to 1.106 2015-02-14 02:46:12 +00:00
p5-Package-Stash Update to 0.37. Fix dependency. 2014-10-01 10:57:12 +00:00
p5-Package-Stash-XS
p5-Package-Variant (pkgsrc) 2015-02-14 02:50:59 +00:00
p5-PadWalker Update 1.96 to 2.0 2015-02-14 03:10:18 +00:00
p5-pango (pkgsrc) 2015-02-14 01:17:01 +00:00
p5-PAR Update 1.005 to 1.008 2015-02-14 02:36:36 +00:00
p5-PAR-Dist Update 0.47 to 0.49 2015-02-14 02:34:12 +00:00
p5-Parallel-ForkManager Update to 1.12 2015-03-15 23:51:30 +00:00
p5-Parallel-Prefork (pkgsrc) 2015-02-14 09:58:20 +00:00
p5-Params-Classify Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Params-Coerce
p5-Params-Util Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Params-Validate Update to 1.18 2015-02-14 12:06:44 +00:00
p5-parent
p5-Parse-CPAN-Meta Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Parse-CPAN-Packages Update 2.35 to 2.40 2015-02-14 12:11:10 +00:00
p5-Parse-ErrorString-Perl Update 0.15 to 0.21 2015-02-14 12:14:11 +00:00
p5-Parse-ExuberantCTags Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Parse-Method-Signatures Update 1.003014 to 1.003016 2015-02-14 12:20:17 +00:00
p5-Parse-RecDescent Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Parse-Yapp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PatchReader
p5-Path-Class Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Path-Class-File-Stat Update 0.03 to 0.05 2015-02-14 12:21:53 +00:00
p5-Path-Dispatcher Update to 1.06 2015-03-15 23:53:12 +00:00
p5-Path-Dispatcher-Declarative
p5-Path-FindDev Import Path-FindDev-0.5.2 as devel/p5-Path-FindDev 2015-03-05 14:23:20 +00:00
p5-Path-IsDev Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PathTools Update to 3.47 2014-08-31 06:49:41 +00:00
p5-Pegex Update to 0.60. From the changelog: 2015-02-12 13:14:10 +00:00
p5-Perl-APIReference Update to 0.19 2015-03-15 23:55:16 +00:00
p5-Perl-Critic Update 1.123 to 1.125 2015-03-15 23:57:30 +00:00
p5-perl-headers Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Perl-MinimumVersion Update to 1.38 2015-02-06 09:56:59 +00:00
p5-Perl-PrereqScanner Update 1.016 to 1.022 2015-02-14 12:35:15 +00:00
p5-Perl-Tidy Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Perl-Version (pkgsrc) 2015-02-14 12:40:27 +00:00
p5-Perl4-CoreLibs
p5-Perl6-Export Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Perl6-Export-Attrs
p5-Perl6-Junction
p5-Perl6-Slurp Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PerlIO-eol Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PerlIO-gzip Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PerlIO-utf8_strict Update to 0.005 2015-02-14 12:42:44 +00:00
p5-PerlIO-via-Bzip2 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PerlIO-via-dynamic Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PerlIO-via-symlink Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PHP-Serialization
p5-pip Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Pod-Usage Update to 1.66 2015-02-23 11:19:09 +00:00
p5-POE Add REPLACE_PERL= lib/POE/Wheel/Curses.pm 2015-02-08 06:53:54 +00:00
p5-POE-Component-Cron
p5-POE-Component-Pluggable Remove p5-constant. Included in perl since 5.004, and current CPAN version 2015-01-31 12:19:55 +00:00
p5-POE-Component-Schedule
p5-POE-Component-Syndicator
p5-POE-Test-Loops Update 1.354 to 1.360 2015-02-08 06:36:29 +00:00
p5-POEx-Types
p5-PPI Update to 1.220 2015-01-06 14:22:20 +00:00
p5-PPI-PowerToys
p5-PPI-XS
p5-PPIx-Regexp Update 0.037 to 0.038 2015-03-15 23:49:53 +00:00
p5-PPIx-Utilities
p5-prefork Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Probe-Perl Update to 0.03 2015-02-14 12:54:38 +00:00
p5-Proc-Background
p5-Proc-Daemon (pkgsrc) 2015-02-14 13:00:36 +00:00
p5-Proc-InvokeEditor Use by-module MASTER_SITES. 2015-02-14 13:09:29 +00:00
p5-Proc-PID-File Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Proc-Pidfile Update 1.005 to 1.06 2015-02-14 13:07:48 +00:00
p5-Proc-ProcessTable Update to 0.51: 2014-10-20 09:00:52 +00:00
p5-Proc-Queue Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Proc-Simple Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Proc-Wait3
p5-Proc-WaitStat
p5-PV Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Python-Serialise-Marshal
p5-Readonly Update to 2.00 2015-01-06 14:32:05 +00:00
p5-Readonly-XS
p5-Regexp-Assemble
p5-Regexp-MatchContext
p5-Regexp-Parser
p5-Regexp-Shellish Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Return-MultiLevel Update to 0.04 2014-10-02 11:34:03 +00:00
p5-Return-Value Update 1.666001 to 1.666004 (PKGVERSION's are 1.666.001 to 1.666.004) 2015-02-15 01:28:37 +00:00
p5-Role-Basic
p5-Role-HasMessage Update to 0.006 2015-02-15 01:32:03 +00:00
p5-Role-Identifiable Update 0.005 to 0.007 2015-02-15 01:34:12 +00:00
p5-Role-Tiny Update to 2.0: 2015-03-01 11:43:56 +00:00
p5-Rose-Object
p5-RT-Authen-ExternalAuth
p5-Safe-Hole Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Safe-Isa Update to 1.000005 2014-09-13 16:01:14 +00:00
p5-Scalar-Defer
p5-Scalar-List-Utils Update to 1.41: 2015-01-04 12:26:36 +00:00
p5-Scalar-Util-Refcount Update MASTER_SITES and HOMEPAGE (to metacpan) 2015-02-14 00:54:49 +00:00
p5-Schedule-RateLimiter
p5-Scope-Guard
p5-Scope-Upper Update 0.22 to 0.25 2015-02-15 08:17:54 +00:00
p5-SDL
p5-Set-Array
p5-Set-IntSpan Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Set-Object Update 1.28 to 1.34 2015-02-15 08:20:54 +00:00
p5-Set-Scalar Update 1.25 to 1.29 2015-02-15 08:23:14 +00:00
p5-Shell-Perl Update to 0.0023 2015-02-15 08:26:20 +00:00
p5-ShipIt Update to 0.60 2015-04-05 13:12:11 +00:00
p5-Signal-Mask Import p5-Signal-Mask-0.008 as devel/p5-Signal-Mask. 2015-02-14 09:49:12 +00:00
p5-signatures Update to 0.11 2015-04-05 13:24:28 +00:00
p5-Smart-Comments Update 1.0.4 to 1.000005 2015-02-15 08:34:33 +00:00
p5-Software-License Update 0.103004 to 0.103010 2015-02-16 13:40:14 +00:00
p5-Sort-Maker
p5-Sort-Naturally
p5-Sort-Versions (pkgsrc) 2015-02-16 14:01:29 +00:00
p5-Spiffy Update 0.31 to 0.46 2015-02-01 05:56:03 +00:00
p5-Spoon
p5-Storable Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Stream-Buffered Update to 0.03 2015-02-16 14:06:03 +00:00
p5-strictures Update to 2.0: 2015-03-01 11:44:52 +00:00
p5-String-Escape Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-String-Format Update to 1.17 2015-02-16 14:27:01 +00:00
p5-String-PerlIdentifier Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-String-Print Update 0.13 to 0.15 2015-02-16 14:38:55 +00:00
p5-Sub-Exporter
p5-Sub-Exporter-ForMethods
p5-Sub-Exporter-GlobExporter Update to 0.004 2015-02-16 14:41:43 +00:00
p5-Sub-Exporter-Progressive
p5-Sub-Identify Update 0.04 to 0.10 (Changes does not mention for 0.10) 2015-02-16 14:49:01 +00:00
p5-Sub-Install Update to 0.928: 2014-09-06 12:51:03 +00:00
p5-Sub-Installer
p5-Sub-Name Update to 0.13: 2015-04-02 22:43:45 +00:00
p5-Sub-Override (pkgsrc) 2015-02-16 14:55:35 +00:00
p5-Sub-Uplevel Update to 0.25 2015-02-16 14:58:00 +00:00
p5-subversion Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
p5-SUPER
p5-SVN-Class Update to 0.18 2015-02-15 08:13:38 +00:00
p5-SVN-Dump Update to 0.06 2015-02-15 08:15:20 +00:00
p5-SVN-Mirror Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-SVN-Notify
p5-SVN-Simple Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Symbol-Global-Name
p5-syntax
p5-Syntax-Keyword-Junction
p5-Sys-Syscall (pkgsrc) 2015-02-17 05:33:45 +00:00
p5-System-Command Update to 1.111 2015-02-17 05:35:51 +00:00
p5-TAP-Formatter-HTML
p5-TAP-Harness-Archive Update to 0.16: 2015-01-31 12:11:13 +00:00
p5-Task-Weaken
p5-Tee Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Template-Plugin-Handy
p5-Template-Plugin-HashMerge
p5-Template-Plugin-ListMoreUtils
p5-Template-Plugin-ListUtil
p5-Template-Plugin-VMethods
p5-Term-Animation
p5-Term-ANSIColor Remove unnecessary (overwritten) MASTER_SITES line. 2015-02-17 06:02:24 +00:00
p5-Term-Cap Update to 1.16 2015-02-17 06:04:17 +00:00
p5-Term-Encoding Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Term-ProgressBar Update 2.13 to 2.17 2015-02-17 06:07:49 +00:00
p5-Term-ProgressBar-Quiet Import p5-Term-ProgressBar-Quiet, a progress bar for things that 2015-01-04 06:15:47 +00:00
p5-Term-ProgressBar-Simple Import p5-Term-ProgressBar-Simple, simpler progress bars. 2015-01-04 06:21:28 +00:00
p5-Term-Prompt
p5-Term-ReadKey Mark as not make-jobs safe per PR 49338. 2014-10-30 13:48:50 +00:00
p5-Term-ReadLine Update to 1.26: 2015-02-01 18:28:32 +00:00
p5-Term-ReadLine-Perl
p5-Term-ReadLine-TTYtter
p5-Term-ReadPassword Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Term-Screen Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Term-Shell
p5-Term-ShellUI
p5-Term-Size Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Term-Size-Any
p5-Term-Size-Perl
p5-Term-UI Import p5-Term-UI-0.42 as devel/p5-Term-UI. 2015-01-29 06:34:15 +00:00
p5-Test-Aggregate Update to 0.372 2015-01-28 01:50:06 +00:00
p5-Test-Approx Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-Assertions
p5-Test-Base Update to 0.88 2014-08-31 06:57:35 +00:00
p5-Test-BDD-Cucumber Update to 0.32. From the changelog: 2014-12-25 05:36:56 +00:00
p5-Test-CheckDeps Update 0.008 to 0.010 2015-01-28 01:57:41 +00:00
p5-Test-CheckManifest Update 1.26 to 1.29 2015-01-28 02:00:12 +00:00
p5-Test-Class Update to 0.48. From the changelog: 2014-11-23 14:24:57 +00:00
p5-Test-ClassAPI Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-CleanNamespaces Update 0.16 to 0.18 2015-01-28 02:02:24 +00:00
p5-Test-Cmd Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-Command-Simple
p5-Test-Compile Update to 1.2.1 (as of 2014-12-08) 2015-01-28 02:09:17 +00:00
p5-Test-CPAN-Meta-YAML Update 0.22 to 0.24 2015-01-28 01:53:39 +00:00
p5-Test-Deep Update to 0.113: 2014-09-14 13:40:19 +00:00
p5-Test-Differences Add two more BUILD_DEPENDS+= for make test not to skip t/pod*.t 2015-03-17 13:02:39 +00:00
p5-Test-Dir
p5-Test-DistManifest
p5-Test-Distribution Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-Exception Update to 0.36 2015-01-28 02:10:55 +00:00
p5-Test-Expect
p5-Test-FailWarnings Update to 0.008 2015-01-28 02:13:03 +00:00
p5-Test-Fatal Update to 0.014: 2014-12-10 21:59:51 +00:00
p5-Test-File 1.41 - Fri Sep 12 15:47:30 2014 2015-01-28 02:16:31 +00:00
p5-Test-File-Contents Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Test-File-ShareDir Update 1.000000 to 1.000005 2015-01-28 02:27:53 +00:00
p5-Test-Fixture-DBIC-Schema
p5-Test-Harness Update to 3.35 2015-01-28 02:30:48 +00:00
p5-Test-HexString
p5-Test-Identity Use CPAN projectname MASTER_SITES. 2015-02-03 12:24:24 +00:00
p5-Test-InDistDir
p5-Test-Inline Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Test-Inter (pkgsrc) 2015-02-17 06:29:59 +00:00
p5-Test-Kwalitee Update 1.14 to 1.22 2015-02-17 06:33:45 +00:00
p5-Test-LeakTrace Update to 0.15 2015-02-17 06:36:14 +00:00
p5-Test-Log4perl
p5-Test-LongString Update 0.15 to 0.17 2015-02-17 06:38:17 +00:00
p5-Test-Manifest Update to 2.02 2014-09-04 07:53:39 +00:00
p5-Test-Memory-Cycle
p5-Test-MinimumVersion
p5-Test-Mock-LWP Update 0.06 to 0.08 2015-02-17 06:40:39 +00:00
p5-Test-MockModule
p5-Test-MockObject
p5-Test-More-Behaviour
p5-Test-Most Update to 0.34. From the changelog: 2014-11-23 14:29:44 +00:00
p5-Test-NoWarnings
p5-Test-Object
p5-Test-Output Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Test-Perl-Critic (pkgsrc) 2015-02-17 06:50:00 +00:00
p5-Test-Pod Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Test-Pod-Coverage Update to 1.10. Set LICENSE. 2014-09-06 12:42:37 +00:00
p5-Test-Pod-Spelling-CommonMistakes Update to 1.001 2015-02-17 06:56:55 +00:00
p5-Test-POE-Client-TCP
p5-Test-POE-Server-TCP Update to 1.16 to 1.18 2015-02-17 06:42:37 +00:00
p5-Test-Refcount (pkgsrc) 2015-02-03 13:05:10 +00:00
p5-Test-Reporter Update 1.5900 to 1.6000 2015-02-01 05:49:55 +00:00
p5-Test-Requires Update to 0.08: 2014-09-06 14:53:28 +00:00
p5-Test-Roo Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-Script
p5-Test-Script-Run Update 0.05 to 0.08 2015-02-17 13:02:57 +00:00
p5-Test-SharedFork Update 0.21 to 0.29 2015-02-17 13:05:40 +00:00
p5-Test-Simple Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-Spec Update 0.47 to 0.49 2015-02-03 01:02:27 +00:00
p5-Test-SubCalls Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Test-Taint
p5-Test-TempDir Update to 0.09 2015-02-17 13:11:07 +00:00
p5-Test-Tester
p5-Test-TinyMocker Update 0.03 to 0.05 2015-02-17 13:12:54 +00:00
p5-Test-Trap Update 0.2.5 to 0.3.0 2015-02-17 13:20:28 +00:00
p5-Test-Unit Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Test-use-ok
p5-Test-UseAllModules Update 0.14 to 0.17 2015-02-17 13:22:30 +00:00
p5-Test-utf8 Import Test-utf8-1.01 as devel/p5-Test-utf8. 2014-09-12 08:09:23 +00:00
p5-Test-Version Update 1.002004 to 1.004001 2015-02-17 13:24:24 +00:00
p5-Test-Warn Update to 0.30: 2014-11-02 17:35:21 +00:00
p5-Test-Warnings Update to 0.021 2015-04-05 13:54:58 +00:00
p5-Test-Weaken
p5-Test-Without-Module 0.18 20140830 2015-02-17 13:26:15 +00:00
p5-Test-WWW-Selenium
p5-Test-YAML-Meta Update to 0.22 2015-02-17 13:28:13 +00:00
p5-Test-YAML-Valid
p5-Throwable (pkgsrc) 2015-02-18 01:11:24 +00:00
p5-Tie-Array-AsHash Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Tie-Array-Sorted Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Tie-Cache Update 0.17 to 0.21 2015-02-18 01:14:54 +00:00
p5-Tie-Cache-LRU
p5-Tie-Cache-LRU-Expires Update 0.54 to 0.55 2015-02-18 03:17:52 +00:00
p5-Tie-Cycle Use MASTER_SITE_PERL_CPAN 2015-01-30 13:38:14 +00:00
p5-Tie-Function
p5-Tie-IxHash Update to 1.23 2015-02-18 03:22:27 +00:00
p5-Tie-LLHash Update to 1.004 2015-02-18 03:23:57 +00:00
p5-Tie-RefHash
p5-Tie-RefHash-Weak
p5-Tie-RegexpHash Update 0.15 to 0.17 2015-02-18 03:25:45 +00:00
p5-Tie-ToObject
p5-Tree-DAG_Node Update to 1.23: 2014-11-02 17:33:47 +00:00
p5-Tree-Simple Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Tree-Simple-VisitorFactory Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Try-Tiny
p5-TryCatch Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Type-Tiny Update to 1.000005: 2014-10-26 11:52:42 +00:00
p5-Type-Tiny-XS Add p5-Type-Tiny-XS, optionally used by Type::Tiny 0.045_03 and 2014-11-23 14:15:31 +00:00
p5-Types-Serialiser Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-UNIVERSAL-can
p5-UNIVERSAL-isa Update to 1.20140927 2014-11-06 02:22:52 +00:00
p5-UNIVERSAL-moniker Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-UNIVERSAL-require
p5-UUID-Tiny
p5-Variable-Magic Update to 0.55: 2014-10-23 07:20:11 +00:00
p5-VCP
p5-VCP-Dest-svk
p5-version Update to 0.9911 2015-01-19 01:10:15 +00:00
p5-Want
p5-WeakRef Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Wx-Perl-DataWalker
p5-XSLoader Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
palmpower
pango Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
pangomm
pangox-compat Update to 0.0.2. 2015-01-16 09:29:36 +00:00
papaya Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
pardiff
patch PR pkg/49672: OSX build fix (already reported and fixed upstream) 2015-02-20 07:09:19 +00:00
patchelf Missing DESCR from import time 2014-08-19 12:12:12 +00:00
patchutils Update to 0.3.3, set LICENSE. 2015-01-16 09:27:45 +00:00
pcc-libs
pccts Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
pcl-cvs
pcre patch for CVE-2014-8964 from upstream 2014-11-30 14:48:43 +00:00
pcre++ Update MASTER_SITES, was 404 status. 2015-02-14 01:27:15 +00:00
pcre-ocaml Update to latest version 7.1.5; also introduces a patch to build properly 2015-01-20 14:31:09 +00:00
pdcurses
pedisassem Use BROKEN_ON_PLATFORM with LP64PLATFORMS 2015-01-04 02:19:37 +00:00
php-gettext
php-gmp
php-igbinary Import php55-igbinary-1.2.1 as devel/php-igbinary. 2015-04-07 11:23:09 +00:00
php-libawl
php-memcache Find zlib correctly. 2014-09-24 21:32:32 +00:00
php-memcached Add igbinary option, disabled by default. This option enables binary 2015-04-07 23:09:39 +00:00
php-mode
php-opcache Reset PKGREVISION with updating of php54, php55 and php56. 2015-03-20 16:33:28 +00:00
php-pcntl
php-posix
php-pthreads Needs to be if empty, not if !empty 2015-04-04 13:09:54 +00:00
php-raphf Add buildlink3.mk for this package. The new version of www/php-http needs 2015-04-07 23:54:11 +00:00
php-shmop
php-sysvmsg
php-sysvsem
php-sysvshm
php-xcache Support different installations of PHP package versions. Fix MESSAGE, PLIST 2015-03-21 21:35:07 +00:00
php-xdebug Update php-xdebug to 2.3.1. 2015-03-15 00:43:32 +00:00
physfs
picp
picprg
pilrc
pipestatus
pkg-config Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
ply
pmccabe
poco
popt Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
poxml Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
prcs
ProjectCenter Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
protobuf Depend on libgcc to provide working atomic instructions. Use consistent 2015-02-19 14:12:33 +00:00
pstreams
psvn
pth Adapt syscall name patch for NetBSD>=6.0. 2015-03-21 16:18:12 +00:00
pthread-sem
pthread-stublib Remove automatically generated comment. 2015-02-25 20:41:44 +00:00
ptlib Explicitly disable pulse so that doesn't accidently detect. 2014-11-23 06:06:49 +00:00
pvs master site is gone, add a mirror 2015-03-14 17:50:25 +00:00
pwlib document NOT_FOR_PLATFORM 2015-01-04 02:21:16 +00:00
py-argcomplete Update py-argcomplete to 0.8.4. 2014-12-12 11:45:05 +00:00
py-argh On python26, argparse>=1.1 is required, and requires.txt will be installed. 2014-12-16 07:00:52 +00:00
py-argparse
py-astor Updated to 0.4.1. No longer has tests directory installed to ${PYSITELIB}. 2015-03-30 02:34:17 +00:00
py-astroid Update to 1.3.6 2015-04-05 15:36:27 +00:00
py-at-spi
py-at-spi2 Update py-at-spi2 to 2.14.0 2014-10-25 11:30:16 +00:00
py-atomicwrites Update to 0.1.4, changes not found. 2015-03-12 13:48:22 +00:00
py-attic Import py34-attic-0.14 as devel/py-attic, packaged for wip by myself. 2015-04-03 09:43:47 +00:00
py-babel Set MAINTAINER to pkgsrc-users. 2015-03-15 19:31:44 +00:00
py-blinker
py-buildbot Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-buildbot-slave Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-cffi Update to 0.9.2: 2015-03-15 21:08:00 +00:00
py-checker
py-cheetah wip/gnuradio-core is converted to full DEPENDS. buildlink3.mk is NOT necessary now. Thanks joerg@. 2014-09-02 15:14:19 +00:00
py-click Update to 4.0: 2015-04-05 14:16:58 +00:00
py-compizconfig Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
py-configargparse Uses set and dict comprehension as well as OrderedDict -- not for Python 2015-03-21 19:25:23 +00:00
py-configobj Import py34-configobj-5.0.6 as devel/py-configobj, packaged for wip 2015-02-04 10:08:33 +00:00
py-coverage
py-cparser
py-curses
py-cursespanel
py-cython Update to 0.22: 2015-02-17 14:00:01 +00:00
py-d2to1 Import py27-d2to1-0.2.11 as devel/py-d2to1. 2015-04-05 23:17:05 +00:00
py-daemon Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-daemonize
py-darcsver
py-decorator Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-dialog Add ports for pythondialog and python2-pythondialog, frontends to the 2015-01-11 20:14:58 +00:00
py-dialog2 Fix PLIST for python != 2.7 2015-01-13 12:17:20 +00:00
py-distribute
py-docopt Update to 0.6.2. Fix HOMEPAGE. 2014-08-31 21:30:58 +00:00
py-doctor
py-dulwich Update to 0.10.1a for a security problem (see below). 2015-04-02 15:28:25 +00:00
py-enum34
py-expect
py-extras Set MAINTAINER to pkgsrc-users. 2015-03-15 19:57:40 +00:00
py-fann2 Updated MAINTAINER. 2015-04-01 01:53:44 +00:00
py-filechunkio Update devel/py-filechunkio to 1.6. 2015-04-05 21:13:41 +00:00
py-flake8 Import py34-flake8-2.2.5 as devel/py-flake8. 2015-01-03 00:05:47 +00:00
py-flakes
py-flexmock
py-funcparserlib Set MAINTAINER to pkgsrc-users. 2015-03-15 17:20:19 +00:00
py-game
py-generate
py-gflags Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-gobject Add patch from https://bugzilla.gnome.org/show_bug.cgi?id=668522 2014-10-23 13:53:55 +00:00
py-gobject-shared
py-gobject3 Apply upstream Bug#737874 fix, remove redefinitions. 2014-11-01 11:25:41 +00:00
py-gobject3-common
py-greenlet
py-h5py pkglint cleanups. 2014-10-05 16:27:25 +00:00
py-hgnested Revert, missed the earlier update for the same change. 2014-09-11 13:49:06 +00:00
py-hgtools Update to 6.3. Update LICENSE (see 6.0 below). 2015-02-09 18:53:03 +00:00
py-hgview Update to 1.8.2, changes not found. 2014-08-31 21:37:55 +00:00
py-idle Use ${PY_DISTVERSION} in PKGNAME instead of 0. 2015-02-17 08:08:31 +00:00
py-InlineEgg
py-iowait
py-ipaddr
py-ipython
py-ipython1
py-ipython010
py-ipython013
py-jaraco_util Fix dependencies. 2014-12-23 18:52:03 +00:00
py-jersey
py-kjbuckets
py-kqueue Use PKG_SKIP_REASON for unsupported platforms. 2015-01-04 09:50:46 +00:00
py-libevent-rpcgen update libevent to version 2.0.22 (which also updates py-libevent-rpcgen) 2015-02-04 08:04:34 +00:00
py-libmc
py-limits Import py27-limits-1.0.4 as devel/py-limits. 2015-04-02 23:22:31 +00:00
py-lockfile
py-logan Forgot .include "../../lang/python/pyversion.mk". 2015-04-01 11:36:00 +00:00
py-logilab-astng Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-logilab-common Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-macholib macholib 1.7 2014-08-07 01:40:00 +00:00
py-mako
py-mccabe Import py34-mccabe-0.3 as devel/py-mccabe. 2015-01-03 00:05:02 +00:00
py-memcached Sun, 21 Sep 2014 13:41:30 -0600 Sean Reifschneider <jafo@tummy.com> 2015-04-03 15:13:19 +00:00
py-mercurial Add an upstream patch to fix a test failure. 2015-04-04 11:20:35 +00:00
py-minimock
py-mock
py-modulegraph Fix PLIST for Python != 2.7. 2014-08-14 16:09:23 +00:00
py-more-itertools Improve EGG_NAME default to work for packages with '-' in their name. 2014-12-31 13:57:25 +00:00
py-msgpack Set MAINTAINER to pkgsrc-users. 2015-03-15 18:46:55 +00:00
py-multiprocessing
py-newt
py-nose 1.3.4 fixes an issue with Python 3.4 and initializing a TestSuite 2015-03-15 17:50:58 +00:00
py-open-vcdiff
py-Optik
py-ordereddict Set MAINTAINER to pkgsrc-users. 2015-03-15 18:31:52 +00:00
py-pbr Add missing file. 2015-03-15 00:58:18 +00:00
py-pep8 Update to 1.5.7 2014-07-28 02:48:49 +00:00
py-pexpect
py-pip
py-polib
py-pqueue
py-pretend
py-proteus No need to list the same PYTHON_VERSIONS_INCOMPATIBLE version mulitple times. 2015-03-26 22:11:47 +00:00
py-protobuf Doesn't use modern print syntax. 2014-10-17 22:13:24 +00:00
py-py Update to 1.4.26: 2014-10-27 08:39:20 +00:00
py-py2app Fixes unwanted subst x86_64 with ${MACHINE_ARCH}, PR pkg/49418 by Sevan Janiyan. 2014-11-25 11:18:05 +00:00
py-pyev
py-pylint Update to 1.4.3 2015-04-05 15:59:54 +00:00
py-pyparsing
py-Pyro devel/py-unittest2 support py3x now. 2014-12-13 09:05:30 +00:00
py-pysvn Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
py-pytemplate
py-pyutil
py-quixote
py-readline
py-rednose Import py27-rednose-0.4.1 as devel/py-rednose. 2014-12-06 03:12:25 +00:00
py-requests Update to 2.6.0 for a security issue. 2015-03-16 13:58:37 +00:00
py-requests-toolbelt Update to 0.4.0: 2015-04-05 14:20:03 +00:00
py-rope
py-rply Updated to 0.7.3. No ChangeLog, but from repo we can see that: 2015-04-01 02:45:52 +00:00
py-serpent
py-setuptools Update to 15.0: 2015-04-05 14:17:42 +00:00
py-setuptools_trial
py-speaklater
py-spwd
py-stompclient
py-subversion Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
py-subvertpy Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
py-sysctl document ONLY_FOR_PLATFORM 2015-01-04 05:43:31 +00:00
py-tabular
py-test Update to 2.7.0: 2015-04-02 22:40:44 +00:00
py-testtools Set MAINTAINER to pkgsrc-users. 2015-03-15 19:11:21 +00:00
py-tortoisehg Update to 3.3.3: 2015-04-05 14:23:47 +00:00
py-tryton Remove obsolete python 2.6 patch. Also make sure we append to 2015-04-01 11:34:55 +00:00
py-trytond No need to list the same PYTHON_VERSIONS_INCOMPATIBLE version mulitple times. 2015-03-26 22:11:47 +00:00
py-unit
py-unitgui
py-unittest2 Update py-unittests to 0.8.0. 2014-12-13 08:36:03 +00:00
py-unittest2py3k
py-urwid Update to 1.3.0: 2014-10-22 09:30:37 +00:00
py-usb
py-virtualenv Update to 12.0.7: 2015-02-08 16:39:35 +00:00
py-windbg
py-xdg
py-zanata-python-client TypeError with Python 3.x. 2015-01-09 14:28:13 +00:00
py-zconfig
py-ZopeComponent Add a package for zope.component, version 4.2.1. From DESCR: 2015-01-16 19:32:25 +00:00
py-ZopeInterface Update zope.interface to 4.1.2. Reset maintainer, as sifu tells me he no longer 2015-01-13 12:54:25 +00:00
python-mode
pythontidy
qbzr
qconf
qjson Update qjson to 0.8.1 2014-11-13 09:07:17 +00:00
qof PKGREVISION++ 2015-02-02 02:37:37 +00:00
qore-uuid-module Import qore-uuid-module-1.3nb1 as devel/qore-uuid-module, packaged 2014-12-30 15:54:32 +00:00
qtscriptgenerator Remove MAKE_JOBS_SAFE=no, added 4 years and a few releases ago, and enable 2014-09-01 16:44:02 +00:00
quilt Update to 0.64 2015-03-25 12:45:02 +00:00
R-evaluate Initial import of evaluate v0.5.5 as devel/R-evaluate. 2014-09-20 03:48:56 +00:00
R-Rcpp Initial import of Rcpp v0.11.2 as devel/R-Rcpp. 2014-09-19 20:12:51 +00:00
radare2 Import radare2-0.9.8 as devel/radare2. 2015-02-27 12:11:20 +00:00
ragel Update to latest release, 6.9. Fix HOMEPAGE and MASTER_SITES. Some patches 2015-03-27 03:50:55 +00:00
rainbow-delimiters-el
rapidsvn Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
ratfor
RBTools
rcs Update to 5.9.4: 2015-01-24 17:59:42 +00:00
rdp
re2c Update to 0.13.7.5: 2014-09-04 09:12:17 +00:00
readline Fix build under Cygwin. 2015-03-20 14:46:47 +00:00
redmine Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
refinecvs
Renaissance Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
reposurgeon Update to 3.19: 2015-01-16 09:30:51 +00:00
roundup
rox-lib
rpc2 Patches to build on SunOS (OI here) 2015-01-23 14:31:38 +00:00
rscode
rsltc
rt-mysql
rt-pgsql
rt3 apply the Request Tracker 4.0.0 patch for CVE-2014-9472, CVE-2015-1165 2015-03-01 22:45:26 +00:00
rt4 Update to 4.2.10 2015-03-01 21:25:17 +00:00
RTFM
RTx-RightsMatrix
rubigen
ruby-abstract
ruby-activemodel32 Update ruby-activemodel32 to 3.2.21. No change except version number. 2014-11-18 15:44:09 +00:00
ruby-activesupport32 Update ruby-activesupport32 to 3.2.21. No change except version number. 2014-11-18 15:43:47 +00:00
ruby-algorithms Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-amstd
ruby-assistance
ruby-atomic Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-backports Update ruby-backports to 3.6.4. 2015-02-01 13:56:35 +00:00
ruby-blankslate
ruby-bsearch
ruby-byaccr
ruby-celluloid Add ruby-celluloid package version 0.16.0. 2015-03-13 13:32:04 +00:00
ruby-cmd
ruby-curses
ruby-curses-gem Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-daemon_controller
ruby-debugger Bump PKGREVISION since ruby200 was dropped by precious commit. 2015-03-14 07:44:43 +00:00
ruby-debugger-linecache Add ruby-debugger-linecache package version 1.2.0. 2015-02-04 13:36:04 +00:00
ruby-debugger-ruby_core_source Bump PKGREVISION since ruby200 and ruby21 was dropped by precious commit. 2015-03-14 07:46:36 +00:00
ruby-delayer Set MAINTAINER to pkgsrc-users. 2015-03-15 19:51:07 +00:00
ruby-deprecated
ruby-dhaka
ruby-docile Update ruby-docile to 1.1.5. 2015-03-13 13:34:16 +00:00
ruby-eet
ruby-eventmachine Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-extlib
ruby-facade Update ruby-facade to 1.0.6. 2015-02-01 14:02:31 +00:00
ruby-fast_gettext Update ruby-fast_gettext to 0.9.2. 2015-02-01 14:03:55 +00:00
ruby-ffi Update ruby-ffi to 1.9.8. 2015-03-15 16:04:57 +00:00
ruby-ffi-yajl Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-fiddle Allow build with ruby22-base. 2015-03-08 16:26:19 +00:00
ruby-flexmock
ruby-gemcutter
ruby-getopt Update ruby-getopt to 1.4.2. 2015-02-01 14:17:40 +00:00
ruby-gettext Update ruby-gettext to 3.1.6. 2015-02-01 14:26:25 +00:00
ruby-gettext-activerecord
ruby-gettext-rails
ruby-gettext_i18n_rails Update ruby-gettext_i18n_rails to 1.2.1. 2015-03-01 15:24:20 +00:00
ruby-gnome2-atk
ruby-gnome2-gio Update ruby-gnome2 package to 2.2.3. 2014-11-09 06:27:02 +00:00
ruby-gnome2-glib Update ruby-gnome2 to 2.2.4. 2014-12-30 08:53:44 +00:00
ruby-gnome2-gobject-introspection
ruby-gnome2-pango Update ruby-gnome2 package to 2.2.3. 2014-11-09 06:27:02 +00:00
ruby-hashery
ruby-heckle
ruby-highline
ruby-hike
ruby-i18n Update ruby-i18n to 0.7.0. 2015-03-13 13:38:08 +00:00
ruby-inline Update ruby-inline to 3.12.3. 2015-02-01 14:43:47 +00:00
ruby-io-console Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-io-like
ruby-kgio Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-libyajl2 Add ${GEM_EXTSDIR}/gem.build_complete to PLIST. 2015-03-08 16:42:28 +00:00
ruby-little-plugger
ruby-locale
ruby-locale-rails
ruby-lockfile Use --format-executable instead of post-install target. 2015-03-08 16:43:32 +00:00
ruby-log4r
ruby-logging
ruby-loquacious
ruby-memcache
ruby-memoize Set MAINTAINER to pkgsrc-users. 2015-03-15 17:20:19 +00:00
ruby-mercenary Update ruby-mercenary to 0.3.5. 2015-02-01 14:45:18 +00:00
ruby-metaclass
ruby-metaid
ruby-minitest Update ruby-minitest to 5.5.1. 2015-02-01 14:49:16 +00:00
ruby-mixlib-authentication
ruby-mixlib-cli
ruby-mixlib-config
ruby-mixlib-log
ruby-mixlib-shellout Update ruby-mixlib-shellout to 2.0.1. 2015-01-19 20:56:22 +00:00
ruby-mkrf
ruby-mocha Update ruby-mocha to 1.1.0. 2015-02-01 14:50:43 +00:00
ruby-mode
ruby-msgpack Set MAINTAINER to pkgsrc-users. 2015-03-15 19:42:33 +00:00
ruby-ncurses
ruby-needle
ruby-ole Set MAINTAINER to pkgsrc-users. 2015-03-15 17:08:59 +00:00
ruby-open4 Update ruby-open4 to 1.3.4. 2015-02-01 16:08:38 +00:00
ruby-parseconfig Update ruby-parseconfig to 1.0.6. 2015-02-01 16:09:57 +00:00
ruby-parser Update ruby-parser to 3.6.5. 2015-03-13 13:41:27 +00:00
ruby-parsetree
ruby-parslet Update ruby-parslet to 1.5.0. 2015-02-01 12:43:24 +00:00
ruby-path
ruby-pathname2 Update ruby-pathname2 to 1.7.3. 2015-02-01 16:13:09 +00:00
ruby-pkg-config Set MAINTAINER to pkgsrc-users. 2015-03-15 19:57:40 +00:00
ruby-polyglot Update ruby-polyglot to 0.3.5. 2015-02-01 16:20:29 +00:00
ruby-posix-spawn Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-power_assert Fix version list of ruby-power_assert. Propagate it into dependees. 2015-03-02 11:05:34 +00:00
ruby-priority-queue Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-racc Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-railties32 * Relax dependency to rack-ssl. 2015-03-14 07:42:22 +00:00
ruby-rake Allow build with ruby18. 2015-03-10 16:33:55 +00:00
ruby-randexp
ruby-rbtree Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-rcov Bump PKGREVISION refelcts PLIST update. 2015-03-08 16:01:26 +00:00
ruby-rcsparse Update ruby-rcsparse to 0.0.0.47 which is latest revision on GitHub, 2015-02-01 16:36:32 +00:00
ruby-rd-mode
ruby-rdoc These package are still needed by ruby18 packages. 2015-03-10 16:18:54 +00:00
ruby-readline Fix build with ruby21-base. 2015-03-08 16:29:40 +00:00
ruby-rgl Correct a wrong DEPENDS line. 2015-03-01 15:52:48 +00:00
ruby-rspec Update ruby-rspec to 3.2.0. It is meta rubygem (package). 2015-02-07 14:43:30 +00:00
ruby-rspec-core Update ruby-rspec-core to 3.2.2. 2015-03-13 13:45:35 +00:00
ruby-rspec-expectations Update ruby-rspec-expectations to 3.2.0. 2015-02-07 14:41:07 +00:00
ruby-rspec-mocks Update ruby-rspec-mocks to 3.2.1. 2015-03-13 13:46:44 +00:00
ruby-rspec-rails Update ruby-rspec-rails to 3.2.1. 2015-03-13 13:49:03 +00:00
ruby-rspec-support Update ruby-rspec-support to 3.2.2. 2015-03-13 13:47:40 +00:00
ruby-rugged Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-SDL Add ${GEM_EXTSDIR}/gem.build_complete for new rubygems and updated ruby. 2015-03-08 15:17:17 +00:00
ruby-setup
ruby-sexp-processor Update ruby-sexp-processor to 4.5.0. 2015-03-13 13:51:18 +00:00
ruby-shoulda-context Unbump PKGREVISION on select ruby packages. 2014-07-16 08:37:20 +00:00
ruby-shoulda-matchers Updated to 2.6.2. ruby18 isn't supported. From NEWS.md: 2014-08-14 02:18:41 +00:00
ruby-simple_uuid
ruby-simplecov License changed to MIT. 2015-03-13 14:00:10 +00:00
ruby-simplecov-html License changed to MIT. 2015-03-13 14:00:10 +00:00
ruby-spruz
ruby-stomp Update ruby-stomp to 1.3.4. 2015-02-02 15:09:02 +00:00
ruby-stream
ruby-subexec
ruby-subversion Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
ruby-templater
ruby-term-ansicolor
ruby-termcolor
ruby-test-spec
ruby-test-unit Fix version list of ruby-power_assert. Propagate it into dependees. 2015-03-02 11:05:34 +00:00
ruby-test-unit-notify Set MAINTAINER to pkgsrc-users. 2015-03-15 18:46:55 +00:00
ruby-thor Update to 0.19.1. No changelog provided. 2014-08-27 00:04:19 +00:00
ruby-thrift Remove "-Werror" for now to solve build problem until someone fix (or 2015-03-08 16:07:28 +00:00
ruby-thrift_client
ruby-tins Update ruby-tins to 1.3.5. 2015-03-13 14:07:04 +00:00
ruby-turn Update ruby-turn to 0.9.7. 2015-02-02 15:24:41 +00:00
ruby-uglifier Update ruby-uglifier to 2.7.1. 2015-03-13 14:08:46 +00:00
ruby-uuidtools Update ruby-uuidtools to 2.1.5. 2015-02-02 15:28:45 +00:00
ruby-validatable
ruby-wmi-lite Import wmi-lite as devel/ruby-wmi-lite. 2015-01-19 20:32:18 +00:00
ruby2ruby Update ruby2ruby to 2.1.3. 2015-02-02 15:30:22 +00:00
rudiments Basic epoll implementation may be detected on recent Illumos platforms, 2014-12-28 17:29:42 +00:00
rvm
rx
sablecc
scintilla
scmcvs Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
scons Changes 2.3.4: 2014-10-07 10:17:28 +00:00
sdcc lex (libfl) is a runtime dependency. 2014-07-24 13:23:31 +00:00
sdcc3 Update to 3.4.0 2014-12-30 22:23:27 +00:00
SDL Read from uhid device and insert events until there are no more events 2015-03-03 19:14:04 +00:00
SDL-intro-en
SDL-intro-ko
SDL2 flush any pending events from the joystick device when opening on netbsd, bump PKGREVISION 2015-02-25 12:45:59 +00:00
SDL_gfx
SDL_Pango
SDL_ttf
SDLmm
semantic
semi
sfio
sfslite
sgb
sgi-stl
sgi-stl-docs
shtk update to my previous commit which was still sitting in my tree 2015-03-11 19:39:57 +00:00
silc-toolkit
slib
sml-mode
snappy
snappy-java10 Don't try to crap into the user's home directory. 2014-12-23 18:51:37 +00:00
sofia-sip
SOPE Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
sparse
sparsehash
spiff
spin
splint
st Fix the way this detects the OS, and remove ONLY_FOR_PLATFORM. 2015-01-04 05:41:01 +00:00
startbug1 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
stgit
stooop Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
subversion Changes 1.8.13: 2015-03-31 20:32:11 +00:00
subversion-base Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
sunifdef
svk Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
swig Update swig to 1.3.38. It required by x11/ruby-wxruby with ruby193. 2015-03-10 16:24:57 +00:00
swig2 Change php53 to php54 in comment outed line. 2015-03-15 15:30:57 +00:00
swt
syncdir Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
sysexits Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tailor
talloc Don't build and install the man page (which isn't in PLIST, and 2014-11-19 15:36:26 +00:00
tavrasm
tcl-tclcl Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tcl-tclOO
tclap
tcllib SECURITY: Apply patch for XSS in html::textarea as of 2015-03-21 17:14:04 +00:00
tclreadline
teem Use CC as linker, ld doesn't support e.g. -pthread. 2015-01-21 15:18:05 +00:00
tet3 Use PKG_SKIP_REASON for unsupported platforms. 2015-01-04 09:50:46 +00:00
tex-etoolbox
tex-etoolbox-doc
tex-l3kernel
tex-l3kernel-doc
tex-l3packages
tex-l3packages-doc
tex-lualibs
tex-lualibs-doc
tex-luatexbase
tex-luatexbase-doc
tex-multido
tex-multido-doc
tex-pst-uml
tex-pst-uml-doc
tex-xifthen
tex-xifthen-doc
tig
tkcvs Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tkdiff Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tla Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tmake
tmin Set LICENSE. 2014-12-10 20:07:45 +00:00
topgit
tpasm
tradcpp
transifex-client
tre
treecc
trio
tvision
ucl Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
ucommon
ucpp
umbrello Update to KDE SC 4.14.3 2014-11-14 08:03:30 +00:00
unidiff
uno Systematize handling of -m32 for generating 32-on-64 binaries. 2015-01-04 02:40:22 +00:00
userspace-rcu Fix build with Clang on ARM. 2015-03-19 19:14:26 +00:00
valgrind Update devel/valgrind to 3.10.1. 2014-12-01 10:19:36 +00:00
vanessa_adt
vanessa_logger
vanessa_socket
vera++ Revbump after updating boost 2014-11-07 19:39:24 +00:00
vtcl
waf Update to 1.8.7: 2015-03-01 15:06:19 +00:00
wide
xa65
xdelta
xdelta3
xfce4-dev-tools
xfconf
xmake Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
xorg-util-macros
xsd Revbump after updating boost 2014-11-07 19:39:24 +00:00
xulrunner10 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
xulrunner17 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
xulrunner24 Sync MOZ_BRANCH in xulrunner31 & xulrunner24 with their matching firefox 2014-12-10 13:43:31 +00:00
xulrunner31 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
xulrunner192 Revbump after updating textproc/icu 2015-04-06 08:17:13 +00:00
xxgdb
yajl
yasm Update to 1.3.0: 2014-08-17 16:37:56 +00:00
z80-asm Update to 2.3.7 2014-12-21 00:31:56 +00:00
ZenTest Update ZenTest to 4.11.0. 2015-02-01 13:42:42 +00:00
zlib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
zzuf Help config.guess/config.sub override logic. 2015-02-23 18:28:51 +00:00
Makefile +php-igbinary - packaged originally in pkgsrc-wip by mbowie@buzmo.com 2015-04-07 11:25:02 +00:00