Jung-uk Kim
e03ffb78e4
Update to 5.1.14.
2017-01-18 19:09:06 +00:00
Carlos J. Puga Medina
ec526eba4c
dns/dnsdist: unbreak build with clang 4.0
...
ext/json11/json11.cpp:153:24: error: invalid operands to binary expression
('nullptr_t' and 'nullptr_t')
return m_value < static_cast<const Value<tag, T> *>(other)->m_value;
~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ext/json11/json11.cpp:209:5: note: in instantiation of member function
'json11::Value<json11::Json::Type::NUL, nullptr_t>::less' requested here
JsonNull() : Value(nullptr) {}
^
PR: 216069
Reported by: jbeich
Obtained from: upstream
MFH: 2017Q1
2017-01-18 17:58:53 +00:00
Nikolai Lifanov
eeb47ebfaa
fix sysutils/vagrant by relaxing ruby_dep requirement
...
PR: 215905
Submitted by: matthew
Reviewed by: matthew
Approved by: matthew (mentor), joe@thrallingpenguin.com (maintainer)
Differential Revision: https://reviews.freebsd.org/D9232
2017-01-18 17:49:22 +00:00
Xin LI
ddaf098cbc
Downgrade to 0.9.18 due to regressions.
2017-01-18 17:46:54 +00:00
Larry Rosenman
699c937769
Take maintainership of these 2 ports.
...
Approved by: adamw (mentor)
2017-01-18 16:42:57 +00:00
Jan Beich
d1e3affcf1
lang/spidermonkey24: prefer pre-C++11 decltype from libc++
...
libc++ 4.0 started to use it within <string> in a way incompatible
with __typeof__ which broke build but upstream switched to C++11 long
ago to notice -Wmacro-redefined.
PR: 216010
MFH: 2017Q1
2017-01-18 16:33:30 +00:00
Mathieu Arnold
f9762d70f6
Remove a 8.x thing.
...
Sponsored by: Absolight
2017-01-18 16:21:21 +00:00
Dmitry Marakasov
079017c6e9
- Update to 4.16.0
...
PR: 216168
Submitted by: dharrigan@gmail.com (maintainer)
2017-01-18 15:49:56 +00:00
Adam Weinberger
ea950a8d7e
Enable the SCDAEMON option by default.
...
Requested by: Dave Horn
2017-01-18 15:44:28 +00:00
Adam Weinberger
be9dbd44ac
Update to 7.20.
...
- Fixed a bug in Mojo::File where the make_path method would die even if no
error occurred.
- Fixed warnings in Mojo::IOLoop::TLS.
2017-01-18 15:37:39 +00:00
Olivier Cochard
55a8a38561
Update to 0.07.15
...
PR: 216232
Submitted by: luca.pizzamiglio@gmail.com (maintainer)
2017-01-18 15:05:42 +00:00
Steven Kreuzer
15bfb45114
Update to version 0.6.2
2017-01-18 14:54:17 +00:00
Vanilla I. Shu
75b422f0c7
Update to 1.3.0.
2017-01-18 14:23:27 +00:00
Emanuel Haupt
5e81f3b95c
Update to 2.4.19
2017-01-18 14:15:49 +00:00
Jan Beich
7d88f9b820
devel/git-cinnabar: update to 0.4.0
...
No functional changes since 0.4.0.r2.24.
Changes: https://github.com/glandium/git-cinnabar/compare/84b8e6b...0.4.0
MFH: 2017Q1
2017-01-18 14:13:17 +00:00
Sunpoet Po-Chuan Hsieh
326ff2d76d
Update to 2.2.3
...
Changes: https://github.com/puppetlabs/forge-ruby/blob/master/CHANGELOG.md
2017-01-18 14:08:03 +00:00
Sunpoet Po-Chuan Hsieh
8783afb4e3
Update to 1.3.2
...
- Update WWW
Changes: https://github.com/omniauth/omniauth/commits/master
2017-01-18 14:07:58 +00:00
Sunpoet Po-Chuan Hsieh
e8d56c114a
Update to 0.47.1
...
Changes: https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md
2017-01-18 14:07:53 +00:00
Sunpoet Po-Chuan Hsieh
33009dc41b
Update to 0.17.0
...
Changes: https://github.com/zdennis/activerecord-import/blob/master/CHANGELOG.md
2017-01-18 14:07:48 +00:00
Sunpoet Po-Chuan Hsieh
37aa49e099
Update to 1.1.5
...
Changes: http://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html
2017-01-18 14:07:44 +00:00
Sunpoet Po-Chuan Hsieh
0a9aec6242
Update to 1.20170117
...
Changes: http://search.cpan.org/dist/Modern-Perl/Changes
2017-01-18 14:07:39 +00:00
Sunpoet Po-Chuan Hsieh
bf4120a323
Update to 0.113
...
Changes: http://search.cpan.org/dist/Ref-Util/Changes
2017-01-18 14:07:34 +00:00
Sunpoet Po-Chuan Hsieh
fee7df36f3
Update to 0.16
...
Changes: https://gitlab.com/jas/libidn2/blob/master/NEWS
2017-01-18 14:07:29 +00:00
Dmitry Marakasov
f16b2dd75a
- Fix license
...
Approved by: portmgr blanket
2017-01-18 13:44:58 +00:00
Tijl Coosemans
1d624f2502
Update to 2.2.2.
2017-01-18 13:41:02 +00:00
Tijl Coosemans
02f27a83b4
The output of tools like awk, date, sort, tr,... depends on the current
...
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine)
2017-01-18 13:20:31 +00:00
Cy Schubert
bddf1289ef
Update 4.4.0 --> 4.5.0
2017-01-18 13:19:25 +00:00
Renato Botelho
086e9b5804
Remove dependency of DEPRECATED mail/p5-Net-SMTP-SSL from devel/git
...
PR: 214335
Obtained from: git development mailing list
Sponsored by: Rubicon Communications (Netgate)
2017-01-18 12:40:53 +00:00
Vanilla I. Shu
0606141f41
Update to 17.0.1.
2017-01-18 12:02:39 +00:00
Jan Beich
a95cd3710b
devel/qt4-linguist: unbreak with clang 4.0
...
messagemodel.cpp:186:61: error: ordered comparison between pointer and zero ('MessageItem *' and 'int')
if (c->findMessage(m->text(), m->comment()) >= 0)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~
PR: 216051
Submitted by: Adriaan de Groot <groot@kde.org>
Obtained from: upstream (Qt5)
Approved by: kde (tcberner)
MFH: 2017Q1 (changes behavior)
Differential Revision: https://reviews.freebsd.org/D9184
2017-01-18 11:53:56 +00:00
Tijl Coosemans
3341c9b87d
Update kernel-headers to 2.6.32-642.13.1.el6.
...
PR: 216220
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
2017-01-18 11:40:35 +00:00
Tijl Coosemans
e038b00a57
Update to bash 4.1.2-41.el6_8 and db4 4.7.25-20.el6_8.1.
...
Fix check-plist errors.
PR: 216219
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
2017-01-18 11:30:50 +00:00
Jason Unovitch
9f5626e987
dns/powerdns-recursor: update 4.0.3 -> 4.0.4
...
Changes: https://doc.powerdns.com/md/changelog/#powerdns-recursor-404
PR: 216135
Reported by: Dani <i.dani@outlook.com>
Submitted by: ghostonthewire@gmail.com
Approved by: Ralf van der Enden <tremere@cainites.net> (maintainer)
Security: CVE-2016-7068
Security: CVE-2016-7073
Security: CVE-2016-7074
Security: https://vuxml.FreeBSD.org/freebsd/e3200958-dd6c-11e6-ae1b-002590263bf5.html
MFH: 2017Q1
2017-01-18 11:24:40 +00:00
Jason Unovitch
5a64da09ac
dns/powerdns: update 4.0.1 -> 4.0.3
...
- Switch to USES=localbase while here
- Remove LibreSSL patch (see https://github.com/PowerDNS/pdns/pull/4310 )
Changes: https://doc.powerdns.com/md/changelog/#powerdns-authoritative-server-402
https://doc.powerdns.com/md/changelog/#powerdns-authoritative-server-403
PR: 216136
Reported by: Dani <i.dani@outlook.com>
Submitted by: ghostonthewire@gmail.com (original 4.0.2 patch)
Approved by: Ralf van der Enden <tremere@cainites.net> (maintainer)
Security: CVE-2016-2120
Security: CVE-2016-7068
Security: CVE-2016-7072
Security: CVE-2016-7073
Security: CVE-2016-7074
Security: https://vuxml.FreeBSD.org/freebsd/e3200958-dd6c-11e6-ae1b-002590263bf5.html
MFH: 2017Q1
2017-01-18 11:23:10 +00:00
Jason Unovitch
5e0dbaa1b3
Document mulitiple PowerDNS vulnerabilities
...
PR: 216135
PR: 216136
Reported by: Dani <i.dani@outlook.com>
Security: CVE-2016-2120
Security: CVE-2016-7068
Security: CVE-2016-7072
Security: CVE-2016-7073
Security: CVE-2016-7074
Security: https://vuxml.FreeBSD.org/freebsd/e3200958-dd6c-11e6-ae1b-002590263bf5.html
2017-01-18 11:22:47 +00:00
Jan Beich
00ac7e3ae0
x11-toolkits/fltk-devel: unbreak with clang 4.0
...
src/Fl_Tree_Item.cxx:552:38: error: ordered comparison between pointer and zero ('Fl_Tree_Item *' and 'int')
if ( from_parent->deparent(from) < 0 ) // deparent self from current parent
~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~
PR: 216046
Obtained from: upstream (branch-1.3)
Approved by: portmgr blanket
MFH: 2017Q1 (r431752 followup)
2017-01-18 11:21:41 +00:00
Baptiste Daroussin
d0b6a150af
Update to 2.17
...
Sponsored by: Gandi.net
2017-01-18 09:40:49 +00:00
Dmitry Marakasov
84bce18905
- Add LICENSE
...
- Remove bogus HAVE_CONFIGURE
- Don't install license with docs
- Switch to options helpers
2017-01-18 09:01:13 +00:00
Jan Beich
dff3041b1b
www/firefox-i18n: chase required firefox version after r216209
...
PR: 216209
Reported by: O. Hartmann
Pointy hat to: jbeich
2017-01-18 08:05:21 +00:00
Mark Felder
8aa01fc7ae
net/py-matrix-synapse: Update to 0.18.7
...
- Add missing run depends
- Add rc script
- Add example configs
- Add instructions to pkg-message
- Add user for daemon to run as non-root
- Add patch to run with newer nacl
- Take maintainership
Approved by: maintainer (private communications)
Differential Revision: https://reviews.freebsd.org/D9228
2017-01-18 02:20:59 +00:00
Mark Felder
96a2b52c97
devel/py-unpaddedbase64: Update to 1.1.0
...
- Take maintainership
Approved by: maintainer (private communications)
2017-01-18 02:16:54 +00:00
Sofian Brabez
5139548f74
- Update to 1.6
2017-01-18 01:29:14 +00:00
Sofian Brabez
51906167fd
- Update to 0.9.1
2017-01-18 01:12:21 +00:00
Mikhail Teterin
06baa9d968
Add a patch to avoid providing our own implementation of __rtdsc
...
when built with clang version 4 or higher (which has its own).
PR: 216162
2017-01-18 00:31:10 +00:00
Kris Moore
cc2551cbd6
Mark iocage-devel as DEPRECATED, replaced by sysutils/py-iocage
...
PR: 216193
2017-01-17 21:35:51 +00:00
Mikhail Teterin
19c8743f4a
Upgrade from 1.9 to 2.2.
...
Spurred into action by
PR: 216162
2017-01-17 20:43:10 +00:00
Bryan Drewery
d5324e3511
Fix build with NONE_CIPHER.
2017-01-17 19:38:38 +00:00
Tobias C. Berner
8678551766
The change in r431769 requires a PORTREVISION bump.
...
*puts on idiot hat*
Approved by: rakuco (mentor)
MFH: 2017Q1
2017-01-17 18:37:29 +00:00
Dmitry Marakasov
933d8a2b02
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
...
Approved by: portmgr blanket
2017-01-17 18:29:55 +00:00
Tobias C. Berner
6fe68d903a
Add missing LIB_DEPENDS to devel/libuv (stage-qa).
...
Approved by: rakuco (mentor)
MFH: 2017Q1
2017-01-17 18:20:28 +00:00