summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2013-12-31LDFLAGS.SunOS+= -lsocket -lnsl; Fixes build failure, ideally.rodent1-1/+3
2013-12-31Updated to latest release, 6.0.7. net/ccrtp builds with this version, too.rodent2-6/+6
From ChangeLog: from ucommon 6.0.6 to 6.0.7 - error state in fsys open fixed - fsys error reset inline added from ucommon 6.0.5 to 6.0.6 - small cleanup of useless validator assignments - fix gnutls casting and warnings - modernized automake support
2013-12-31Update ruby-pkg-config to 1.1.5.obache2-7/+7
* Add XQuartz's path for X11
2013-12-30Update HOMEPAGE, old HOMEPAGE has no 2.2 informationryoon1-2/+2
2013-12-30Update to 0.61ryoon4-18/+19
Changelog: * backup-files is rewritten by bash now * Many bugfixes * Many cleanups
2013-12-29Update ruby-msgpack to 0.5.8.obache2-6/+6
2013-12-14 version 0.5.8: * Fixed compatibility with Ruby 2.1.0 * Added :symbolize_keys option to MessagePack.load and Unpacker#initialize
2013-12-28Fix MirBSD build of sparse.bsiegert2-5/+5
2013-12-28Fix build with GCC (4.8?) under Solaris.tron1-1/+5
2013-12-28Update MASTER_SITES.obache1-2/+2
2013-12-25Add link to GNOME bug report.tron2-3/+5
2013-12-25Fix build with SunStudio C Compiler under Solaris 10.tron2-1/+21
2013-12-24Update transifex-client to 0.10. This is a leaf package and a warning mailtaca3-14/+58
would be sent from Transifex when using old transifex-client. Here is some of changes from commit log. * Use urllib3 for the API call; it allows to have proper SSL certificate verification (see CVE-2013-2073) as well as drop a lot of code. * Add --psuedo option.
2013-12-23Reset maintainer for resigned developers.wiz11-29/+22
2013-12-22whitespaceryoon1-2/+2
2013-12-21Remove -soname and avoid stripping on Darwin. Fixes build.jperkin1-2/+9
2013-12-21Disable visibility on Darwin, fixes build.jperkin1-1/+7
2013-12-20Fix CVE-2013-7135 (patch is from Debian)wen3-3/+27
Add LICENSE Add missing BUILD_DEPENDS for test Approved by: wiz@
2013-12-19Add a Platform/MirBSD.cmake file to fix the MirBSD build. The file isbsiegert2-3/+6
installed along with other platform files, so I had to amend PLIST and bump the PKGREVISION. reviewed by wiz@, adam@
2013-12-17No separate library for dlopen on FreeBSD too.asau1-2/+2
2013-12-16Add missing half of the Darwin patch.jperkin2-4/+13
2013-12-16Update ruby-i18n to 0.6.9. This is security fix.taca3-8/+7
* Add I18n::exists? method. * Add I18n.locale_available? method. * Delete unused files. * I18n::MissingTranslation exception escapes key names for its html_message, fixing CVE-2013-4492. * Use CGI.escapeHTML instead of CGI.escape_html for Ruby 1.8.7. * Fix an issue with setting I18n.config.enforce_available_locales.
2013-12-16Put libboost_log_setup under PLIST.log. Fixes Darwin/gcc.jperkin1-4/+4
2013-12-16Force linking against libiconv for FreeBSD to fix build.asau1-1/+3
2013-12-16Reset PKGREVISIONryoon1-2/+1
2013-12-16Update to 17.0.11ryoon2-6/+6
* pkgsrc xulrunner17/firefox17 use external NSS Changelog: FIXED Update ESR17 to NSS 3.14.5 RTM (see 936951)
2013-12-15Update to 1.19wen2-7/+7
Add LICENSE Upstream changes: 1.19 2014 Apr 09 - unit test fix 1.18 2013 Apr 03 - POD 1.17 2013 Apr 02 - no use integer - optimize _copy_array
2013-12-15Update to 0.30wen2-7/+6
Upstream changes: 0.30 Wed Sep 18 09:21:00 2013 - No code changes. - Add t/intersection.*.pl as part of the expanded discussion of methods such as intersection(). This code was developed in conjunction with Joern Behre, to help clear up confusion over the issue of the uniqueness of items returned from various methods. - Add an FAQ with an item discussing this issue. - Expand the discussion of overloaded operators to recommend testing of the output of various methods before production use, and that unique() may need to be called, since unique() is not called automatically during a call to, say, intersection(). - Include docs for bag(), difference(), intersection(), is_equal() and not_equal() explicitly among all other methods, besides their original mention under 'OVERLOADED (COMPARISON) OPERATORS'. - Include docs for new() as well. 0.29 Wed Jul 3 16:20:00 2013 - No code changes. - Rename CHANGES to Changes as per CPAN::Changes::SPEC. - Recreate META.* files so they say licence is artistic_2 rather than artistic_1. Build.PL and Makefile.PL already said artistic_2, but the META.* files didn't. There is no reference to licences in the source of the module itself. This was requested by Christopher Meng who packages stuff for Fedora. 0.28 Wed Dec 19 08:50:00 2012 - Extend fix for RT#81971 to add ^ in the regexps used in index() and rindex(), so they are now /^\Q$value\E$/ and not just /\Q$value\E$/. This issue was also reported by Henrik Hald N鴕gaard. - Update docs for rindex() is say undef is returned - as with index() - if the value is not found. - Extend t/rt.81971.t to check rindex() returns undef when searching for the suffix of a value. 0.27 Sat Dec 15 07:19:00 2012 - Fix RT#81971, kindly reported by Henrik Hald N鴕gaard. When special chars, as used in regexps, are set members, or used to find set members, they must be quoted with \Q$value\E inside regexps. This fix was applied to count(), delete(), exists(), index() and rindex(). - Add t/rt.81971.t to exercise the new code. - While examining the code for this fix, I found a couple of other bugs: In index() and rindex(), the value searched for was compared with each set member using this regexp, /$value/, instead of this regexp, /$value$/. The missing, trailing, $ meant that the member could match just the prefix of $value, rather than match the value exactly. So in those 2 methods the tests are now /\Q$value\E$/. The other 3 methods mentioned above already used /$value$/.
2013-12-15Update to 3.15.3.1ryoon2-6/+6
Changelog: New in NSS 3.15.3.1 New Functionality No new major functionality is introduced in this release. This is a patch release to revoke trust of a subordinate CA certificate that was mis-used to generate a certificate used by a network appliance. Bugs fixed in NSS 3.15.3.1 Bug 946351 - Misissued Google certificates from DCSSI A complete list of all bugs resolved in this release can be obtained at https://bugzilla.mozilla.org/buglist.cgi?resolution=FIXED&classification=Components&query_format=advanced&target_milestone=3.15.3.1&product=NSS Compatibility NSS 3.15.3.1 shared libraries are backward compatible with all older NSS 3.x shared libraries. A program linked with older NSS 3.x shared libraries will work with NSS 3.15.3.1 shared libraries without recompiling or relinking. Furthermore, applications that restrict their use of NSS APIs to the functions listed in NSS Public Functions will remain compatible with future versions of the NSS shared libraries.
2013-12-15Add xulrunner24ryoon1-1/+2
2013-12-15Import xulrunner24-24.2.0 as devel/xulrunner24.ryoon4-0/+5942
XULRunner is a runtime environment for applications using the XML User Interface Language, XUL. It is the successor of the "Gecko" runtime environment. This package tracks 24 extended support release.
2013-12-15Update to 1.354wen2-7/+6
Upstream changelog is too long, please visit: http://cpansearch.perl.org/src/RCAPUTO/POE-Test-Loops-1.354/CHANGES
2013-12-15Update to 1.358wen2-7/+7
Upstream changelog is too long, please visit: http://cpansearch.perl.org/src/RCAPUTO/POE-1.358/CHANGES
2013-12-15Add p5-IO-Pipelywen1-1/+2
2013-12-15Import IO-Pipely-0.005 as devel/p5-IO-Pipely.wen3-0/+30
Pipes are troublesome beasts because there are a few different, incompatible ways to create them. Not all platforms support all ways, and some platforms may have hidden difficulties like incomplete or buggy support. IO::Pipely provides a couple functions to portably create one- and two-way pipes and pipe-like socket pairs. It acknowledges and works around known platform issues so you don't have to.
2013-12-15Update to 0.38wen2-6/+6
Upstream changes: 0.38 2013-12-14 18:39:30Z - update configure_requires checking in Makefile.PL, add CONTRIBUTING file
2013-12-15Fix build on Linux.markd2-1/+17
2013-12-14Fix compilation failure on SunOScheusov3-7/+78
2013-12-14Turn on DESTDIR support; no actual changes required. Clear BROKEN.dholland1-4/+1
2013-12-13SOL_TCP compatibility fix for SunOS.jperkin1-1/+3
2013-12-12SunOS libform does not have TYPE_IPV4, disable it.jperkin2-6/+26
2013-12-12Don't include devel/libinotify on SunOS. Makes package build.jperkin1-1/+5
2013-12-12Update to 0.39wen2-7/+6
Upstream changes: 0.39 - 2013-08-17, H.Merijn Brand <h.m.brand@xs4all.nl> * Upped copyright to 2013 * Add alternative test results for 5.19.3 and up (COW and no PV for IV)
2013-12-12Update to 0.48wen2-7/+6
Upstream changes: 0.48 2013-09-01 15:42:51+0900 - Fix tests for bleadperl 0.47 - Support PUREPERL_ONLY build See the Lancaster Consensus: https://github.com/sjn/toolchain-site/blob/219db464af9b2f19b04fec05547ac10180a469f3/lancaster-consensus.md#specifying-pure-perl-builds 0.46 - fixed unpacking issue on big-endian system. https://github.com/msgpack/msgpack-perl/issues/4 0.45 - support tied hashes(rurban++) 0.44 - do not display deprecated warnings from Data::MessagePack::Unpacker. T::Xslate using it... 0.43 2012-06-26T02:00:57 - Data::MessagePack::Unpacker was deprecated. 0.42 2012-06-25 09:56:58 - fix failing to pack IV/NV with MAGIC (e.g. $$ in 5.16.0) 0.41 2012-03-28 01:09:44 - Revert the privous changed utf8() behavior 0.40 2012-03-28 00:37:28 - Fix $messagepack->utf8(1) behavior - Fix tests on NV == long double env
2013-12-12Update to 2.36wen2-7/+6
Upstream changes: 2.35 Apply patches by Ilmari and D. Steinbrunner. Should work on 5.18 now. 2.34 Administrative release to eliminate build dependency on module used only for testing. 2.33 Caught up with various RT reports, and fixed a bunch of them. [RT #74198] fixed dumps containing read-only objects (obtained via JSON::XS) [RT #74198], Fixed stringification of code compiled under strict in later perls. Thanks to Father Chrysotomos for the patch and nudge. Also eliminated a false-fail prone test which was actually pretty useless, which should close several tickets which I wont bother to list. This release also is the first from the new git repository at https://github.com/demerphq/Data-Dump-Streamer
2013-12-12Update to 1.22wen2-7/+6
Upstream changes: 2013-05-10 Gisle Aas <gisle@ActiveState.com> Release 1.22 Deal with class names containing '=' [RT#72415] Filters now get access to $ctx->expr; the textual expression denoting the current object.
2013-12-12Update to 1.23wen2-7/+6
Upstream changes: 1.23 2013-09-26 DCANTRELL Add David Muir Sharnoff's tests for really big data structures (but not yet working); Check for taint-mode less insanely, thanks to Ilmari; Don't delay loading File::Find::Rule (see RT 87554)
2013-12-12Update to 1.18wen2-7/+6
Upstream changes: version 1.18; 2013-09-21 * bugfix: store peep chain link reliably under threads * update tests for Perl 5.19.4's removal of the special treatment of aliased undef in arrays * in doc, switch to consistent use of British English spellings * doc typo fix version 1.17; 2013-08-04 * bugfix: correct the dtrace-related macro squashing for Perls prior to 5.13.8, where the macros had the wrong number of parameters and prevented compilation * bugfix: use core's PL_no_localize_ref string constant as data string rather than format string * update to handle the new padrange op type in Perl 5.17.6 * update to handle the new op allocation mechanism in Perl 5.17.2 * clarify and expand documentation around list-like assignments * clarify documentation of deref() regarding lvalueness * remove the bulk of the documentation from the README file
2013-12-12Update to 0.004007wen2-8/+7
Upstream changes: 0.004004 Sun Aug 5 17:46:56 2012 - Further patch to failures.t - Added redefinition of Scalar::Util::blessed() to avoid nasty surprises (thanks Andrew!) - Added confess() and cluck() overrides and fixed caller() override to set @DB::args when appropriate 0.004005 Mon Aug 20 10:44:35 2012 - Further patch for t/confess.t (Thanks, David!) 0.004006 Thu Oct 4 16:49:47 2012 - Circumvented annoying undef-as-key warnings in Perl 5.17+ - Honour @CARP_NOT's when reporting context 0.004007 Fri Oct 5 23:05:05 2012 - Added BLESSED handler for better control over how blessed() lies - Upgraded reimplementation of blessed() to make more sense
2013-12-12Update to 0.014wen2-8/+9
Upstream changes: 0.014 2013-05-28 02:32:48 Europe/Amsterdam Pass coderefs and globrefs unchanged Conversion from Test::Exception to Test::Fatal (Karen Etheridge) Convert to Module::Build::Tiny
2013-12-12Update to 2.20wen2-7/+7
Upstream changes: 2.20 Sun Nov 24 10:52:00 2013 - Relax pre-req version requirements 2.19 Sun Sep 15 09:16:00 2013 - Change VERSION => $VERSION in Makefile.PL to VERSION_FROM => 'lib/Config/Tiny.pm'. Reported by Jean-Louis Morel. See RT#88670. 2.18 Sat Sep 14 10:03:00 2013 - Remove obsolete and wrong version # from Makefile.PL. Reported by Jean-Louis Morel. See RT#88658. - Implement Kevin Ryde's suggestion to test if read() will return undef. If so, set an error message and (still) return undef. 2.17 Fri Sep 13 12:41:00 2013 - Remove the file tests -efr during calls to read(). The open() tests for any error. Also, the -f test was reporting /dev/null as a directory, not a file. Thanx to Kevin Ryde for pushing me to implement this. See RT#36974. - Clean up some error messages slightly. 2.16 Fri Sep 6 11:54:00 2013 - Replace Path::Tiny with File::Spec, because the former's list of dependencies is soooo long :-(. Changed files: t/02.main.t, t/04.utf8.t, Build.PL and Makefile.PL. See: RT#88435 (for Tree::DAG_Node) for an explanation. 2.15 Sun Aug 4 14:59:00 2013 - Clean up the shambolic dates in this file. - Add a note under Caveats about setting options more that once. Only the first case is respected. Thanx to Kimmel K. See RT#69795. - Add a $encoding parameter to read_file() and write_file(). See docs for details. Add t/04.utf8.t and t/04.utf8.txt. Thanx to Mark Lawrence and Wolfgang Husmann. See RT#71029 and RT#85571. - For BSD-based systems, when writing a file during tests, use: my($temp_dir) = File::Temp -> newdir('temp.XXXX', CLEANUP => 1, EXLOCK => 0, TMPDIR => 1); - Rename t/*.t files. I use '.' rather than '_' in file names because the latter is a shift char. - Add MANIFEST.SKIP, Changelog.ini, Build.PL, META.json. - Add an FAQ to the docs. - Clean up the docs.