summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-06-18update of expat from 2.2.0 to 2.2.1 (mostly security fixes and cleanup)spz4-7/+39
Security issues fixed: CVE-2017-9233, CVE-2016-9063, improve fix for CVE-2016-5300 fixed regression from fix to CVE-2016-0718 Cleanup: Drop AmigaOS 4.x, Borland C++ Builder, OpenVMS, Open Watcom, Visual Studio 6.0 and Pre-X Mac OS support
2017-06-18Updated graphics/p5-Image-JpegTran-AutoRotate to 0.04schmonz1-1/+2
2017-06-18Update to 0.04. From the changelog:schmonz2-9/+7
* Fix orientations 5 and 7. (@truist)
2017-06-18Updated devel/p5-local-lib to 2.000023mef1-1/+2
2017-06-18Updated devel/p5-local-lib from 2.000019 to to 2.000023mef2-8/+7
------------------------------------------------------- 2.000023 - 2017-06-07 - fix use of 'note' in test for compatibilty with old Test::More 2.000022 - 2017-06-07 - releasing as stable 2.000_021 - 2017-04-23 - account for an empty SHELL variable when detecting shell - author test cleanups - bootstrapping option --no-manpages now affects bootstrapping process, not just later module installs - cope with home directories with spaces when bootstrapping with old CPAN.pm 2.000_020 - 2016-10-18 - fix handling of inc_version_list - don't load strict or warnings outside author mode - load and use Cwd when we're printing and exiting - use loaded Cwd/Win32::Cwd if it's available - handle relative paths in current executable - don't try to run current executable in embedded perl - handle relative directories better - fix shell test for powershell 1 and group policy restricted environments - avoid user init files in shell test - use safer format to check environment in shell test - many test cleanups
2017-06-18Updated devel/p5-Test-Kwalitee to 1.26mef1-1/+2
2017-06-18Updated devel/p5-Test-Kwalitee to 1.26mef2-8/+7
-------------------------------------- 1.26 2017-05-11 12:04:49Z - bump Test::More prereq for (fully) working subtests - properly detect the xt/ caller condition when running kwalitee_ok directly (RT#120824)
2017-06-18Updated devel/p5-MooseX-Types-LoadableClass to 0.015mef1-1/+2
2017-06-18Updated devel/p5-MooseX-Types-LoadableClass to 0.015mef2-8/+7
---------------------------------------------------- 0.015 2017-06-16 23:37:46Z - do not create an extra, unused ClassName type (this fixes a problem observed with MooseX::Types and Sub::Defer; see RT#119534)
2017-06-18Updated devel/p5-Moose to 2.2005mef1-1/+2
2017-06-18Updated devel/p5-Moose to 2.2005mef2-8/+7
--------------------------------- 2.2005 2017-05-03 [OTHER] - increased minimum required version of Test::More, to ensure a reliable subtest.
2017-06-18Updated devel/p5-MooX-File-ConfigDir to 0.006mef1-1/+2
2017-06-18Updated devel/p5-MooX-File-ConfigDir to 0.006mef2-8/+7
--------------------------------------------- 0.006 2017-05-22 - add support for vendorapp_cfg_dir - add .perltidyrc for common style (repository ...)
2017-06-18Updated devel/p5-MooX-ConfigFromFile to 0.008mef1-1/+2
2017-06-18Updated devel/p5-MooX-ConfigFromFile to 0.008mef2-8/+7
--------------------------------------------- 0.008 2017-05-23 - ensure all tests run and report instead of swallowing issues - make tests passing with perl 5.26 - add import shortcuts config_prefixes and config_hashmergeloaded - ensure reasonable code quality by adding author tests against Perl::Critic and Perl::Tidy
2017-06-18Updated devel/p5-PAR to 1.015mef1-1/+2
2017-06-18Update p5-PAR from 1.011 to 1.015mef2-8/+7
--------------------------------- 1.015 2017-04-13 - Fix RT#120722 (Reason for Module::Signature dependency unclear since 2008) - "require" a non-broken version of Digest::SHA - remove other crypto related "recommends" - Switch from Module::Install to ExtUtils::MakeMaker - avoids the hassle with Module::Install for Perl without "." in @INC - add some resources cf META.json 1.014 2016-12-18 - Fix RT#119224: "Issue about Can't locate loadable object for module" drop "use" statements in PAR/Heavy.pm added in edf5f24d - Fix RT#119010: "Wrong license link" always refer to the included LICENSE file - generate hello.par in Makefile target "pure_all" 1.013 2016-11-27 - Fix a crucial typo, hopefully fixes RT#118981 "Tests fail (with PAR 1.012?)" - Build t/hello.par at "make" time 1.012 2016-11-25 - Guard against concurrent extraction attempts of zip into "inc" - use a file lock to protect the extraction of the complete zip into "inc" - _run_member_*(), _tempfile(), _dl_extract(): make the "persistent" filename only visible when the file has been completely written - Make build and test work if @INC does not include "." - Upgrade to Module::Install 1.17
2017-06-17Updated lang/sbcl to 1.3.18asau1-1/+2
2017-06-17Update to SBCL 1.3.18 asau2-7/+7
changes in sbcl-1.3.18 relative to sbcl-1.3.17: * minor incompatible change: existing values of CFLAGS, ASFLAGS, CPPFLAGS, and LINKFLAGS will be incorporated into C compiler invocations when building from source. * minor incompatible change: the result of WRITE-TO-STRING may be a BASE-STRING if all characters written are of type BASE-CHAR. * minor incompatible change: the broadcast stream with no output streams is a singleton object. That object satisfies OPEN-STREAM-P regardless of how many times CLOSE is invoked on it. * enhancement: x86[-64] backends contain an experimental feature which aids in demonstrating reachability of any object starting from a tenured object or a thread stack by producing a proof as a sequence of pointers to follow. The file "tests/traceroot.test.sh" contains an example usage. * enhancement: if the alien symbol "gc_coalesce_string_literals" is set to 1 prior to SAVE-LISP-AND-DIE, then similar string constants loaded from different fasl files may be collapsed to one object. If the variable is set to 2, then additionally strings which are STRING= in code resulting from COMPILE can be coalesced. For instance, two functions returning the literal string "HI" might return EQ strings after collapsing, which may be undesired in a particular use. The flag pertains to gencgc only. * enhancement: SXHASH values on pathnames are better distributed * bug fix: MAKE-PATHNAME removes empty strings as components of a directory, as is permitted: "Whenever a pathname is constructed the components may be canonicalized if appropriate." * optimization: various printer and FORMAT performance enhancements. * bug fix: GET-FOREGROUND no longer fails in case all other interactive threads exit (lp#1682671, reported by Syll) * bug fix: RELEASE-FOREGROUND always removes the current thread from the list of interactive threads. (lp#1682867, reported by Syll)
2017-06-17Fix cmake 3.8 issue. Patch from upstream.joerg2-1/+14
2017-06-17Fix build on NetBSD.joerg2-1/+16
2017-06-17Restrict -falign-functions to GCC.joerg1-2/+3
2017-06-17Fix C++11 issues. Fix obvious string handling bug. Bump revision.joerg5-3/+55
2017-06-17Fix the problem with hexdump and LLVM properly. Use .incbin on NetBSDjoerg2-6/+17
instead of forcing 8M+ element character array literals through the compiler.
2017-06-17Require C++11.joerg1-2/+2
2017-06-17Require C++11 and fix fallout.joerg3-2/+18
2017-06-17Uses *.mk.joerg1-1/+3
2017-06-17Fix portability.joerg2-3/+14
2017-06-17Fix build with Perl 5.26.joerg2-1/+160
2017-06-17Fix some C99 compat issues.joerg2-1/+97
2017-06-17Remove now obsolete Emacs ASLR hacks.joerg6-80/+8
2017-06-17Deal with Python 3.x code in py27 build.joerg2-4/+11
2017-06-17Use the build dependency I reported to actually fix the build.joerg1-2/+2
2017-06-17Deal with lack of Python 3.x support in Python 2.7.joerg2-265/+275
2017-06-17Disable depcomp replacement. libcpp wants to read the main depcomp afterjoerg1-1/+4
the configure phase.
2017-06-17operator bool for streams is explicit in C++11, so request it wherejoerg3-1/+55
necessary.
2017-06-17Workaround a boost bug.joerg2-1/+16
2017-06-17Bump PKGREVISION for previous.schmonz1-1/+2
2017-06-17Be silent if there's nothing to commit. From Nathan Arthur in private mail.schmonz2-5/+22
2017-06-17+ etckeeper-1.18.7 (pending a tarball somewhere)schmonz1-1/+2
2017-06-17Updated mail/pymsgauth to 2.1.0nb7schmonz1-1/+2
2017-06-17Add pymsgauth-tag, a Unix filter that takes an RFC822 mail message on stdinschmonz5-4/+94
and prints it to stdout, adding a pymsgauth token in the header if needed. Patch has been submitted upstream. Bump PKGREVISION.
2017-06-17updated devel/p5-String-Print from 0.15 to 0.90mef2-8/+7
----------------------------------------------- version 0.90: Wed 14 Jun 14:47:03 CEST 2017 Improvements: - spell-fix rt.cpan.org#96464 [Gregor Herrmann, Debian] - add output encoding (encodeFor) - add complex keys
2017-06-17Updated devel/p5-MooseX-App to 1.38mef1-1/+2
2017-06-17Updated devel/p5-MooseX-App to 1.38mef2-9/+7
---------------------------------- re 1.38 2017-06-20 - Cleanups (get rid of smartmatch, inentation, documentation, tests) - Also handle =head[2-4] tags when processing pod (#47) - Subcommands (based on work by Yanick Champoux)
2017-06-17Updated devel/p5-MooseX-Types-Structured to 0.36mef1-1/+2
2017-06-17Updated devel/p5-MooseX-Types-Structured to 0.36mef2-8/+7
----------------------------------------------- 0.36 2017-05-09 23:08:27Z - update distribution tooling (should fix RT#114060)
2017-06-17Updated devel/p5-Parse-Yapp to 1.06mef1-1/+2
2017-06-17Updated devel/p5-Parse-Yapp to 1.06mef2-8/+8
----------------------------------- 1.06 Wed Jun 14 2017 - First Release In Over 15 Years, How's That For Long-Term Stability?!? :-) - Bug Fix, Unescaped Left Curly Braces { In Regular Expressions, Fatal Since Perl v5.25.1, Minor Changes In YappParse.yp & Parse.pm - Typo Fixes, POD Spelling & Syntax - Copyright Assignment Documents, Desarmenien To Braswell
2017-06-17Updated devel/p5-Perl-Critic to 1.128mef1-1/+2