1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
Commit Graph

459066 Commits

Author SHA1 Message Date
Emanuel Haupt
519c0268d6 - Update to 4.0
- Pacify portlint by separating NO_ARCH from USE* block
2018-11-02 07:49:09 +00:00
Koichiro Iwao
b996dd7ebf Remove extra character in include path
Approved by:	mentors (implicit)
2018-11-02 06:50:10 +00:00
Koichiro Iwao
02adcf9461 security/softether: cleanup Makefile
I'm working on update security/softether-devel. However, this port and
-devel port were created and maintained by other people. So there's no
consistency between these ports.  I'm going to renew -devel port this
port based. Before updating -devel, cleanup existing Makefile issues
on this port:

* add LICENSE_FILE
* add ONLY_FOR_ARCHS_REASON
* avoid useless use of +=
* do patch in post-patch, not post-extract
* do everything in do-install
* remove MAKE_JOBS_UNSAFE as it actually build now
* simplify DOT2UNIX_FILES
* use sysrc rather than editing rc.conf in pkg-message
* use tab after =

Approved by:	mentors (implicit)
2018-11-02 06:31:22 +00:00
Jason E. Hale
ffc5764f81 audio/kid3-[kf5|qt5]: Fix build on powerpc64
PR:		232893
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
Sponsored by:	IntegiCloud
2018-11-02 06:21:54 +00:00
Cy Schubert
39a40012ba Update to the latest MIT krb5 commit on github. This includes commits
preparing for the upcoming krb5 1.17 and preparation for krb5 1.18
development.
2018-11-02 05:55:06 +00:00
Cy Schubert
70e1995444 Update to the latest cfengine and cfengine-masterfiles commits on github. 2018-11-02 05:55:00 +00:00
Cy Schubert
ca6dafa282 Update to the latest ast/ksh93 github commit. From their commit log:
Coverity Out-of-bounds read

	This Coverity Scan issue appears to be a false positive.
	This change is a reformulation of the code that attempts
	to both clarify the behavior and suppress the false positive
	error.

	Coverity CID#316729
2018-11-02 05:54:53 +00:00
Jan Beich
a64ce8063c emulators/ppsspp: update to 1.7.1
Changes:	http://ppsspp.org/#news
Changes:	https://github.com/hrydgard/ppsspp/compare/v1.7...v1.7.1
2018-11-02 03:06:30 +00:00
Steve Wills
2b0645e64c mail/davmail: update to 4.9.0
PR:		231803
Submitted by:	John Hein <z7dr6ut7gs@snkmail.com>
Approved by:	maintainer timeout (john.c.prather@gmail.com, >1 month)
2018-11-02 02:17:19 +00:00
Jan Beich
330f78c890 net-p2p/py-libtorrent-rasterbar: unbreak with boost 1.69
bindings/python/src/error_code.cpp:119:10: error: no matching member function for call to 'def'
        .def("message", &error_category::message)
        ~^~~
/usr/local/include/boost/python/class.hpp:229:11: note: candidate template ignored: couldn't infer template argument 'F'
    self& def(char const* name, F f)
          ^
/usr/local/include/boost/python/class.hpp:219:11: note: candidate function template not viable: requires single argument 'visitor', but 2 arguments were provided
    self& def(def_visitor<Derived> const& visitor)
          ^
/usr/local/include/boost/python/class.hpp:238:11: note: candidate function template not viable: requires 3 arguments, but 2 were provided
    self& def(char const* name, A1 a1, A2 const& a2)
          ^
/usr/local/include/boost/python/class.hpp:245:11: note: candidate function template not viable: requires 4 arguments, but 2 were provided
    self& def(char const* name, Fn fn, A1 const& a1, A2 const& a2)
          ^
/usr/local/include/boost/python/class.hpp:261:11: note: candidate function template not viable: requires 5 arguments, but 2 were provided
    self& def(char const* name, Fn fn, A1 const& a1, A2 const& a2, A3 const& a3)
          ^
bindings/python/src/error_code.cpp:127:10: error: no matching member function for call to 'def'
        .def("message", &error_code::message)
        ~^~~
/usr/local/include/boost/python/class.hpp:229:11: note: candidate template ignored: couldn't infer template argument 'F'
    self& def(char const* name, F f)
          ^
/usr/local/include/boost/python/class.hpp:219:11: note: candidate function template not viable: requires single argument 'visitor', but 2 arguments were provided
    self& def(def_visitor<Derived> const& visitor)
          ^
/usr/local/include/boost/python/class.hpp:238:11: note: candidate function template not viable: requires 3 arguments, but 2 were provided
    self& def(char const* name, A1 a1, A2 const& a2)
          ^
/usr/local/include/boost/python/class.hpp:245:11: note: candidate function template not viable: requires 4 arguments, but 2 were provided
    self& def(char const* name, Fn fn, A1 const& a1, A2 const& a2)
          ^
/usr/local/include/boost/python/class.hpp:261:11: note: candidate function template not viable: requires 5 arguments, but 2 were provided
    self& def(char const* name, Fn fn, A1 const& a1, A2 const& a2, A3 const& a3)
          ^

PR:		232525
Obtained from:	upstream (libtorrent 1.1.11)
2018-11-02 02:09:29 +00:00
Mark Linimon
cea7e514f6 Fix build on gcc-based archs.
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:55:53 +00:00
Mark Linimon
6f129cadcb USES=objc:compiler sets the compiler, but then USES=compiler:c++11-lang
overwrites it.  Remove the latter to use the proper compiler. Also use
libstdc++ on GCC architectures to fix build.

While here, pet portlint.

PR:		232386
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:54:07 +00:00
Mark Linimon
5dbe545b9b USES=compiler:c++11-lang is necessary to link against libosg
on GCC-based architectures.

To make it build, also add CXXFLAGS_${ARCH}=-Wno-narrowing.

PR:		232826
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:50:55 +00:00
Mark Linimon
72cfb160c8 -Wno-sign-conversion is not supported by base GCC; remove this flag.
PR:		232106
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:48:33 +00:00
Mark Linimon
f9206ba04d This port needs USES=compiler:c++11-lang to build on GCC architectures.
To build with GCC, it also needs algorithm and sys/limits.h includes.

PR:		232863
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:46:24 +00:00
Mark Linimon
532dfd0b5b Fix build with GCC-based architectures.
PR:		232837
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:39:56 +00:00
Mark Linimon
c88eda778d Fix build with GCC-based architectures.
While here, simplify by adding :ldflags.

PR:		232856
Submitted by:	Piotr Kubaj
2018-11-02 01:38:21 +00:00
Mark Linimon
beca126f7c Fix build with GCC-based architectures.
PR:		232851
Submitted by:	Piotr Kubaj
2018-11-02 01:35:51 +00:00
Mark Linimon
966ab1d25b Fix build with GCC-based architectures.
PR:		232848
Submitted by:	Piotr Kubaj
2018-11-02 01:34:15 +00:00
Steve Wills
68f4f70b1e devel/py-aiortc: update to 0.9.12 2018-11-02 01:33:37 +00:00
Mark Linimon
918b08bd27 Fix build with GCC-based architectures.
PR:		232864
Submitted by:	Piotr Kubaj
Approved by:	portmgr (tier-2 blanket)
2018-11-02 01:31:06 +00:00
Steve Wills
59c211cd15 devel/py-aioice: update to 0.6.10 2018-11-02 01:24:15 +00:00
Steve Wills
7f2cbde6ce devel/p5-Glib2: update 1.328 2018-11-02 01:20:23 +00:00
Steve Wills
2fe478a670 www/minio: update 2018.10.25.01.27.03 2018-11-02 00:24:11 +00:00
Martin Matuska
ca65346552 Update net-im/jabberd to 2.7.0 2018-11-02 00:22:33 +00:00
Steve Wills
a1fd8b72b1 net/py-magic-wormhole: update to 0.11.0 2018-11-02 00:13:54 +00:00
Jimmy Olgeni
08663fd596 Update lang/erlang-runtime20 to version 20.3.8.11. 2018-11-02 00:10:17 +00:00
Steve Wills
2901d32af3 security/vault: update to 0.11.4 2018-11-02 00:07:11 +00:00
Steve Wills
49beb82375 www/mod_auth_pubtkt: update to 0.13
PR:		232894
Submitted by:	mk@neon1.net (maintainer)
2018-11-02 00:01:53 +00:00
Joseph Mingrone
fa5a8998c4 mail/getmail: Update to version 5.7
Upstream changes: http://pyropus.ca/software/getmail/CHANGELOG
2018-11-01 23:32:04 +00:00
Florian Smeets
2910840cf6 Update to 1.5.3
PR:		232897
Submitted by:	stb@lassitu.de (maintainer)
MFH:		2018Q4
Security:	deb4f633-de1d-11e8-a9fb-080027f43a02
2018-11-01 22:02:20 +00:00
Florian Smeets
3b2e1c9e18 Document gitea vulnerability
PR:		232897
Submitted by:	stb@lassitu.de (maintainer)
2018-11-01 22:00:16 +00:00
Florian Smeets
c16d78970a Update to 2.9.11 2018-11-01 21:21:08 +00:00
Matthias Fechner
6e1bd93252 Removed www/rubygem-dropzonejs-rails07 as it is obsolete by www/gitlab-ce 11.4.x upgrade.
Use www/rubygem-dropzonejs-rails instead.

Approved by:	mentors (implicit)
2018-11-01 21:15:11 +00:00
Matthias Fechner
98bec0d2bc Removed textproc/rubygem-github-markup16 as it is obsolete by www/gitlab-ce 11.4.x upgrade.
Use textproc/rubygem-github-markup instead.

Approved by:	mentors (implicit)
2018-11-01 21:06:50 +00:00
Matthias Fechner
5fc40999ee Removed devel/rubygem-sidekiq-limit_fetch as it is obsolete by www/gitlab-ce 11.4.x upgrade.
Approved by:	mentors (implicit)
2018-11-01 20:48:03 +00:00
Christoph Moench-Tegeder
4b2deac411 sysutils/vagrant: update to 2.2.0
https://github.com/hashicorp/vagrant/blob/v2.2.0/CHANGELOG.md

PR:		232511
Approved by:	maintainer (joe () thrallingpenguin.com)
2018-11-01 20:44:22 +00:00
Matthias Fechner
d615b67340 Removed devel/rubygem-peek-sidekiq as it is obsolete by www/gitlab-ce 11.4.x upgrade.
Approved by: 	mentors (implicit)
2018-11-01 20:32:17 +00:00
Adam Weinberger
1e01f08280 Update Mojolicious to 8.05 2018-11-01 20:21:28 +00:00
Sergey A. Osokin
0341267b10 Update to recent version 1.2.0, it supports OpenSSL 1.1.1 now. 2018-11-01 20:01:22 +00:00
Niclas Zeising
fd6352d4f3 x11/alacritty: Update to 0.2.1
Changelog: https://github.com/jwilm/alacritty/releases/tag/v0.2.1
2018-11-01 19:59:23 +00:00
Matthias Fechner
40a1536dbe Security update to 11.4.4, for more details see here:
https://about.gitlab.com/2018/11/01/critical-security-release-gitlab-11-dot-4-dot-4-released/

Approved by:	mentors (implicit)
Security:	b51d9e83-de08-11e8-9416-001b217b3468
2018-11-01 19:50:58 +00:00
Matthias Fechner
dbd44e54fe Upgrade to 1.6.5 which includes upstream now the binary rename, so patch removed for it.
Approved by:	mentors (implicit)
2018-11-01 19:47:56 +00:00
Dmitry Marakasov
5c38d1694d - Remove obsolete OSVERSION condition 2018-11-01 19:25:23 +00:00
Dmitry Marakasov
515c409a18 - Remove obsolete OSVERSION condition 2018-11-01 19:25:13 +00:00
Sunpoet Po-Chuan Hsieh
faca8dd00d Document curl vulnerability 2018-11-01 19:20:06 +00:00
Sunpoet Po-Chuan Hsieh
ce79296cab Update to 8.7.20
Changes:	https://typo3.org/article/typo3-v951-lts-and-v8720-lts-released/
PR:		232846
Submitted by:	Helmut Ritter <freebsd-ports@charlieroot.de> (maintainer)
2018-11-01 19:17:56 +00:00
Sunpoet Po-Chuan Hsieh
b5cc3a64c0 Update to 2.2.3
Changes:	https://github.com/flavorjones/loofah/releases
		https://github.com/flavorjones/loofah/blob/master/CHANGELOG.md
Security:	36a2a89e-7ee1-4ea4-ae22-7ca38019c8d0
MFH:		2018Q4
2018-11-01 19:17:45 +00:00
Sunpoet Po-Chuan Hsieh
a81004b660 Fix RUN_DEPENDS
- Bump PORTREVISION for dependency change
2018-11-01 19:17:37 +00:00
Sunpoet Po-Chuan Hsieh
1e7faf8297 Update to 0.14.0
- Fix version requirement of RUN_DEPENDS
- Update WWW

Changes:	https://github.com/nesquena/rabl/releases
		https://github.com/nesquena/rabl/blob/master/CHANGELOG.md
2018-11-01 19:17:28 +00:00