13696 Commits

Author SHA1 Message Date
sthen
1371206576 zap stray apostrophe in DESCR, ok ajacoutot@
(also forces an update, I had some weird issues with firefox hanging after
a snapshot update which seemed to go away after forcing this to be updated).
2014-11-21 23:53:14 +00:00
ajacoutot
8e5c7f627b Update to harfbuzz-0.9.36. 2014-11-21 08:01:30 +00:00
kurt
1bdfbb8039 Remove 1.6 from cvs. It was unlinked last release. okay sthen@ 2014-11-20 23:14:57 +00:00
kurt
550ea43b07 update to u71 including security fixes. okay sthen@ 2014-11-20 23:09:44 +00:00
naddy
b5e27242d6 fix for perl 5.20, which has dropped the "do $subr()" construct; ok espie@ 2014-11-19 23:55:05 +00:00
benoit
a37a2dcf03 Update to capstone-3.0. 2014-11-19 21:59:31 +00:00
benoit
938c9c9072 Update to p5-Tie-Cache-0.21.
ok ajacoutot@
2014-11-19 20:02:44 +00:00
benoit
c04bfa54b5 Update to p5-Tie-CPHash-1.06.
ok ajacoutot@
2014-11-19 20:00:19 +00:00
sthen
b99424c44d reset maintainer 2014-11-18 22:39:59 +00:00
sthen
fad3c6d750 depend on p5-Module-Pluggable 2014-11-18 22:38:05 +00:00
sthen
e18da0a649 +p5-Module-Pluggable 2014-11-18 22:33:21 +00:00
sthen
5bc2734b66 merge 2014-11-18 22:32:24 +00:00
sthen
a0b57145d1 fix a ${MACHINE_ARCH} that crept into PLIST which should have been "amd64" 2014-11-18 21:11:32 +00:00
jasper
b75e4900b5 committed upstream 2014-11-18 18:35:47 +00:00
sthen
de8f270fea fix following uvm_extern.h changes, ok jasper@ 2014-11-18 16:04:43 +00:00
benoit
4fda5f8862 Update to p5-Class-Load-0.22.
ok ajacoutot@
2014-11-18 13:02:08 +00:00
benoit
9d3e0ffcab Update to p5-Class-Load-XS-0.09.
ok ajacoutot@
2014-11-18 12:59:49 +00:00
benoit
2b1b736e79 Update to p5-Class-Singleton-1.5.
ok ajacoutot@
2014-11-18 12:57:35 +00:00
benoit
eb3079842f +flake8 2014-11-18 12:15:06 +00:00
benoit
b798d1af31 Import flake8.
A modular python code checker wrapping tools such as pyflakes, pep8 and McCabe for complexity checks.

from Bertrand Janin, ok sthen@
2014-11-18 12:10:58 +00:00
brad
76bcdeed08 Eliminate the use of the malloc.h header and/or replace
with stdlib.h.

ok sthen@
2014-11-18 10:17:17 +00:00
benoit
659c92a6dc Update to p5-Date-Simple-3.03.
ok Sam Smith (maintainer)
2014-11-18 09:32:58 +00:00
sthen
cebcb8d2a4 update to p5-IO-Tty 1.12 2014-11-17 14:57:40 +00:00
sthen
87a18c7310 update to p5-Coro 6.41 2014-11-17 14:54:57 +00:00
benoit
4d3c16b9a6 +py-mccabe 2014-11-17 14:24:22 +00:00
benoit
ab947a82f5 Import py-mccabe.
It is a complexity checker for Python code using cyclomatic complexity measurement,
also known as McCabe's complexity measure.

from Bertrand Janin, ok sthen@
2014-11-17 14:18:48 +00:00
sthen
25ae53cb56 honour CC/CFLAGS 2014-11-17 13:28:43 +00:00
benoit
d0ec6ac639 Update to p5-Import-Into-1.002004.
from Sergey Bronnikov (maintainer)
2014-11-16 22:31:28 +00:00
benoit
6887d61e89 Update to p5-IO-CaptureOutput-1.1103.
ok pascal@ (maintainer)
2014-11-16 12:57:35 +00:00
benoit
4d320d5d44 Update to p5-TAP-Harness-Archive-0.15.
ok pascal@ (maintainer)
2014-11-16 12:41:48 +00:00
sthen
ac9823c1db update to pear-Cache 1.5.6 2014-11-15 23:32:57 +00:00
benoit
a7c64a777c Update to p5-Class-Throwable-0.11.
Take maintainership, ok ajacoutot@
2014-11-15 17:10:04 +00:00
benoit
4867f49aff Update to p5-Variable-Magic-0.55.
Take maintainership, ok ajacoutot@
2014-11-15 17:03:25 +00:00
benoit
c22ac87b7d Update to p5-PerlIO-via-dynamic-0.14.
Take maintainership, ok ajacoutot@
2014-11-15 16:52:38 +00:00
benoit
db4dbe5611 EPOCH necessary, problem found by naddy and tweaks by sthen@ 2014-11-15 15:06:42 +00:00
benoit
e197e0cafc Update to libdshconfig-0.20.13.
ok ajacoutot@
2014-11-15 12:25:50 +00:00
rpe
c48e534dba Update devel/src to 0.8
OK aja@ landry@
2014-11-15 11:39:55 +00:00
kirby
fe0d0227dc add bzip2 support for boost-iostreams.
needed for future releases of games/wesnoth.
ok brad@ (maintainer)
2014-11-15 08:17:56 +00:00
brad
12e94b4391 r221709
Totally forget deallocated SDNodes in SDDbgInfo.

What would happen before that commit is that the SDDbgValues associated with
a deallocated SDNode would be marked Invalidated, but SDDbgInfo would keep
a map entry keyed by the SDNode pointer pointing to this list of invalidated
SDDbgNodes. As the memory gets reused, the list might get wrongly associated
with another new SDNode. As the SDDbgValues are cloned when they are transfered,
this can lead to an exponential number of SDDbgValues being produced during
DAGCombine like in http://llvm.org/bugs/show_bug.cgi?id=20893

Note that the previous behavior wasn't really buggy as the invalidation made
sure that the SDDbgValues won't be used. This commit can be considered a
memory optimization and as such is really hard to validate in a unit-test.
2014-11-15 03:26:40 +00:00
rpe
ec41613d57 add devel/src 2014-11-14 22:29:26 +00:00
rpe
bebcd4dff0 Import devel/src
OK sthen@

SRC (Simple Revision Control) is RCS, reloaded.

It remains determinedly file-oriented and doesn't even track the
committer of a change (because that's always you), but incorporates
the design and user-interface lessons of modern systems.  It features
sequential revision numbers, lockless operation, embedded command
help, and a command set that will seem familiar to users of Subversion,
Mercurial, and Git.
2014-11-14 22:25:03 +00:00
benoit
0a11800f0d Update to py-pyro-3.16.
ok ajacoutot@
2014-11-14 13:56:43 +00:00
benoit
c4b19bc428 Update to p5-Hook-LexWrap-0.25.
ok ajacoutot@
2014-11-14 13:53:12 +00:00
benoit
12ab194e49 Update to p5-Git-Repository-1.312.
Take maintainership, ok ajacoutot@
2014-11-14 13:40:30 +00:00
benoit
a2a8996486 Update to p5-Guard-1.022.
ok ajacoutot@
2014-11-14 13:37:36 +00:00
benoit
df2c95082b Update to py-country 1.10. 2014-11-14 11:27:49 +00:00
benoit
100c98734d Update to p5-Carp-Assert-More-1.14.
ok ajacoutot@
2014-11-14 09:17:10 +00:00
benoit
831d390624 Update to p5-Carp-Assert-0.21.
ok ajacoutot@
2014-11-14 09:13:31 +00:00
benoit
1f3c2749f1 Update to p5-Acme-Damn-0.06.
ok ajacoutot@
2014-11-14 09:04:52 +00:00
benoit
9a6502aa6a Update to Test-Cmd-1.06.
Take maintainership, ok ajacoutot@
2014-11-14 09:01:20 +00:00