Commit Graph

517907 Commits

Author SHA1 Message Date
Sergey A. Osokin
7aaa52de43 Update PLIST according to the recent change.
Bump PORTREVISION.
2020-08-23 03:58:30 +00:00
Piotr Kubaj
017aff1f83 math/onednn: enable native powerpc64
In version 1.6, upstream added native support for powerpc64, without using generic code. Enable that instead of using generic code.

Also patch platform.cmake not to add -mcpu=native for aarch64.
2020-08-23 00:43:24 +00:00
Jan Beich
25d5bdd101 devel/intel-graphics-compiler: unbreak on -CURRENT
In file included from IGC/GenISAIntrinsics/GenIntrinsics.cpp:28:
In file included from IGC/Compiler/CodeGenPublic.h:44:
In file included from IGC/Compiler/CISACodeGen/helper.h:49:
In file included from IGC/Compiler/MetaDataApi/MetaDataApi.h:31:
In file included from IGC/Compiler/MetaDataApi/MetaDataApiUtils.h:30:
IGC/Compiler/MetaDataApi/MetaDataValue.h:82:20: error: cannot initialize return object of type 'llvm::MDNode *' with an lvalue of type 'llvm::Metadata *'
            return m_pNode;
                   ^~~~~~~
IGC/Compiler/MetaDataApi/MetaDataValue.h:260:23: error: incompatible pointer types assigning to 'llvm::Metadata *' from 'llvm::Value *'
            m_pNode = pNode;
                      ^~~~~
IGC/Compiler/MetaDataApi/MetaDataValue.h:270:18: error: no viable overloaded '='
            m_id = name;
            ~~~~ ^ ~~~~
IGC/Compiler/MetaDataApi/MetaDataValue.h:41:11: note: candidate function (the implicit copy assignment operator) not viable: no known conversion from 'const char *' to 'const IGC::MetaDataValue<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, IGC::MDValueTraits<std::string, void>>' for 1st argument
    class MetaDataValue
          ^
IGC/Compiler/MetaDataApi/MetaDataValue.h:41:11: note: candidate function (the implicit move assignment operator) not viable: no known conversion from 'const char *' to 'IGC::MetaDataValue<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, IGC::MDValueTraits<std::string, void>>' for 1st argument
    class MetaDataValue
          ^
IGC/Compiler/MetaDataApi/MetaDataValue.h:278:18: error: no viable overloaded '='
            m_id = name.c_str();
            ~~~~ ^ ~~~~~~~~~~~~
IGC/Compiler/MetaDataApi/MetaDataValue.h:41:11: note: candidate function (the implicit copy assignment operator) not viable: no known conversion from 'const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::value_type *' (aka 'const char *') to 'const IGC::MetaDataValue<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, IGC::MDValueTraits<std::string, void>>' for 1st argument
    class MetaDataValue
          ^
IGC/Compiler/MetaDataApi/MetaDataValue.h:41:11: note: candidate function (the implicit move assignment operator) not viable: no known conversion from 'const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::value_type *' (aka 'const char *') to 'IGC::MetaDataValue<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, IGC::MDValueTraits<std::string, void>>' for 1st argument
    class MetaDataValue
          ^

Reported by:	pkg-fallout
2020-08-23 00:00:28 +00:00
Jan Beich
b225b10615 x11-toolkits/wlroots: refresh LIBSEAT patches 2020-08-22 23:55:38 +00:00
Piotr Kubaj
b62a8c2e33 net/intel-ixl-kmod: fix runtime on powerpc64
It looks like the fix for powerpc64 wasn't committed to the upstream yet. Take the patch that was committed to head and use it to patch this port (from https://svnweb.freebsd.org/base/head/sys/dev/ixl/ixl_pf_main.c?view=patch&r1=358698&r2=358697&pathrev=358698)

MFH:            2020Q3 (runtime fix)
2020-08-22 23:54:03 +00:00
Alex Kozlov
f05bff089f - Remove dead master sites
- Fix build on 13-CURRENT

Reported by:	pkg-fallout
2020-08-22 23:46:47 +00:00
Piotr Kubaj
35014d814d net/intel-ixl-kmod: enable building on powerpc64
ixl has been fixed in head some time ago on powerpc64.

MFH:		2020Q3 (fix build blanket)
2020-08-22 23:15:26 +00:00
Piotr Kubaj
69490264a5 net/appkonference: fix build on powerpc64
MFH:		2020Q3 (fix build blanket)
2020-08-22 23:05:38 +00:00
Niclas Zeising
476d4f7f12 audio/nas: fix build with -fno-common
Pull in a patch from upstream to fix the build of audio/nas with
-fno-common, which is the default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 22:31:11 +00:00
Niclas Zeising
47077d7b9b x11-wm/awesome: Fix build with -fno-common
Pull in a patch from upsream (with some minor tweaks) to fix the build of
x11-wm/awesome with -fno-common, which is the default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 22:29:17 +00:00
Niclas Zeising
93f9cb7fbf x11-toolkits/xform: Fix build with -fno-common
Fix the build of x11-toolkits/xform when built with -fno-common, which is
the default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 22:00:45 +00:00
Niclas Zeising
d6dff4bed5 lang/ocaml: Fix build with llvm 11
Fix the build of lang/ocaml with llvm 11.
There are two issues, first off, te issue with -fno-common, which is default
with llvm 11.  This is fixed by pulling in a modified patch from upstream,
as well as local patches.
Secondly, there's a problem with how asm sections are handled, patch this
locally.  Thanks to dim@ for help with this.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 21:32:36 +00:00
Sergey A. Osokin
727e797e30 Update third-party dynamic_upstream module.
Add third-party dynamic_healthcheck module.

Bump PORTREVISION.
2020-08-22 20:59:22 +00:00
Piotr Kubaj
4158123bdf science/hdf: update to 4.2.15 to fix build on powerpc64
Newest version builds on powerpc64 just fine.

MFH:		2020Q3 (fix build blanket)
2020-08-22 20:43:44 +00:00
Sergey A. Osokin
60d4927157 Update third-party modules to their recent releases:
o) ip2proxy-nginx
o) slact-nchan

Bump PORTREVISION.
2020-08-22 20:20:54 +00:00
Yuri Victorovich
dedbcc59a4 New port: finance/hs-hledger: Accounting software for both power users and folks new to accounting 2020-08-22 19:59:51 +00:00
MANTANI Nobutaka
f342907c4f Fix build error with emacs-devel due to recent removal of make-coding-system
function.
2020-08-22 19:24:57 +00:00
Mikhail Pchelin
2bb374d97e - update from 4.4.0 to 4.5.0 2020-08-22 17:59:08 +00:00
Fernando Apesteguía
94e7535860 science/afni: update to 20.2.14
Reported by:	portscout
2020-08-22 17:32:58 +00:00
Mikhail Pchelin
33f276ab10 - update from 1.1.1 to 1.1.3 2020-08-22 17:18:10 +00:00
Diane Bruce
0dd487a506 Clean up compile and unbreak with clang-11 removing duplicate symbols 2020-08-22 16:45:11 +00:00
Mikael Urankar
3accc8c863 sysutils/go-btfs: update to 1.3.6
Changelog:
  https://github.com/TRON-US/go-btfs/releases/tag/btfs-v1.3.6
2020-08-22 16:45:01 +00:00
Niclas Zeising
a03d0ff2fe x11/menu-cache: Fix build with -fno-common
Fix the build of x11/menu-cache when built with -fno-common, which is the
default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 16:10:47 +00:00
Rene Ladan
35abb7189a multimedia/w_scan2: add working fork of expiring multimedia/w_scan
w_scan2 is a small channel scan tool which generates ATSC, DVB-C,
DVB-S/S2 and DVB-T/T2 channels.conf files.

It's based on the old "scan" tool from linuxtv-dvb-apps-1.1.0. The
differences are:
* no initial tuning data needed, because scanning without this data
  is exactly what a scan tool like this should do.
* it detects automatically which DVB/ATSC card to use.
* much more output formats, interfacing to other dtv software.

w_scan2 is a fork of the original w_scan from
https://www.gen2vdr.de/wirbel/w_scan/index2.html

Main changes from w_scan to w_scan2:
* keep duplicate transponders by default because a stronger transponder
  with the same ID might have a higher frequency and be discarded simply
  because it's scanned later. Also don't replace the current transponder
  with an advertised one by default. The latter may have a lower signal
  strength. More details here:
  https://stefantalpalaru.wordpress.com/2016/02/04/scan-all-the-things/
  The old behaviour can be enabled with -d (--delete-duplicate-transponders).
* re-enable VHF band III in Europe

WWW: https://github.com/stefantalpalaru/w_scan2

Suggested by:	hselasky
2020-08-22 16:08:11 +00:00
Tobias C. Berner
740666f50d www/monolith: Update to 2.3.1
Changelog:
 * https://github.com/Y2Z/monolith/releases/v2.3.1

PR:		248648
Submitted by:	Lewis Cook <vulcan@wired.sh>  (maintainer)
2020-08-22 15:46:59 +00:00
Niclas Zeising
3e48408f0e net/libsrtp2: Fix build with -fno-common
Add a patch from upstream that fixes the build of net/libsrtp2 with
-fno-common, which is the default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 15:45:44 +00:00
Alexey Dokuchaev
c3656a797c - Unbreak the build with -fno-common (Clang 11, GCC 10)
- Include upstream bug report for reference and tracking

Reported by:	pkg-fallout
2020-08-22 15:26:00 +00:00
Niclas Zeising
abee5e9572 sysutils/dtc: Fix build with -fno-common
Add a patch from upstream to sysutils/dtc to fix build with -fno-common,
which is the default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 15:24:34 +00:00
Niclas Zeising
c03f82ecb9 irc/scrollz: Fix build with -fno-common
Fix the build of irc/scrolls with built with -fno-common, which is the
default with llvm 11.
Patch from a pull request to scrollz on github.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 14:17:09 +00:00
Niclas Zeising
1daa16d402 cad/iverilog: Use upstream patch for -fno-common
Change to use the patch applied upstream for fixing the build of
cad/iverilog with -fno-common

MFH:		2020Q3 (implicit, -fno-common fix, ok by joenum)
2020-08-22 14:15:34 +00:00
Niclas Zeising
531796cad1 irc/bitchx: Fix build with -fno-common
Fix the build of irc/bitchx with -fno-common, which is the default with llvm
11.
Patches originally from the fedora project.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 13:57:23 +00:00
Niclas Zeising
6d32a82ea2 lang/libobjc2: Add -fcommon to CFLAGS
Fix the build of lang/libobjc2 after the llvm 11 import by adding -fcommon
to CFLAGS.  There are several patches needed to get this to build with
-fno-common, and I'm unsure about some of the changes I needed to make, so
build with -fcommon for now, until upstream can have a look as well.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 13:55:19 +00:00
Dirk Meyer
e70f656807 - fix build with -fno-common 2020-08-22 12:37:27 +00:00
Dirk Meyer
b0d2bf5e54 - fix Can't assign requested address
PR:		248647
Approved by:	 J Harris
2020-08-22 12:36:18 +00:00
Bernard Spil
acf0ce9015 security/nextcloud-end_to_end_encryption: Add new port
* No longer marked pre-production
2020-08-22 12:07:45 +00:00
Matthias Andree
f63e8ec482 net/chrony: security update to 3.5.1
This upstream update essentially contains one Git commit:
https://git.tuxfamily.org/chrony/chrony.git/commit/?h=3.5-stable&id=f00fed20092b6a42283f29c6ee1f58244d74b545

It is to fix a symlink vulnerability when writing the pidfile.

Changelog: https://listengine.tuxfamily.org/chrony.tuxfamily.org/chrony-announce/2020/08/msg00000.html

MFH:		2020Q2 (blanket: upstream has one specific git commit between 3.5 and 3.5.1)
Security:	CVE-2020-14367
Security:	719f06af-e45e-11ea-95a1-c3b8167b8026
2020-08-22 11:03:03 +00:00
Niclas Zeising
3f52214dc4 databases/libmemcached: Fix build with -fno-common
Fix the build of databaes/libmemcached with -fno-common, which is the
default with llvm 11.

MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)
2020-08-22 10:23:59 +00:00
Matthias Andree
54b44bff84 vuln.xml: add chrony < 3.5.1 pidfile symlink vulnerability
Security:	719f06af-e45e-11ea-95a1-c3b8167b8026
Security:	CVE-2020-14367
2020-08-22 10:08:38 +00:00
Bernard Spil
4cb07c8a6e www/nextcloud-forms: Update to 2.0.3 2020-08-22 09:53:14 +00:00
Piotr Kubaj
5810d796de games/sdlpop: fix checksum
Upstream rolled the tarball due to still showing previous version in the menu and updated copyrights year.

Due to package change (displayed version number) bump PORTREVISION.
2020-08-22 09:46:26 +00:00
Niclas Zeising
4fe65bd29a devel/json-glib: Fix build with llvm 11
Fix the build of devel/json-glib with llvm 11.
llvm 11 introduced a new warning relating to how to cast between void * and
enums, which json-glib are stumbling over.

PR:		248736
Submitted by:	dim
MFH:		2020Q3
2020-08-22 09:37:46 +00:00
Dmitry Marakasov
54013fde11 - Silince mkdir
- Update WWW
2020-08-22 09:36:35 +00:00
Gleb Popov
a6cd2901dc sysutils/rtsx-kmod: Update to 1.0g
Submitted by:	Henri Hennebert <hlh@restart.be>
2020-08-22 09:12:58 +00:00
Gerald Pfeifer
6a7ee0ec74 Fix the build with clang 11.
This was fixed upstream as part of a larger commit on May 6th 2017,
and dim@ now encountered the same and fixed the specific issue for
our GCC 7 port.  Newer versions should not exhibit this.

(See the new files/patch-gcc_config_i386_i386.c for more details.)

PR:		248755
Submitted by:	dim
2020-08-22 09:06:01 +00:00
Gleb Popov
7c41340d5d science/py-dlib: Fix plist for non-default python flavors.
Reported by:	pkg-fallout
2020-08-22 08:57:40 +00:00
Max Brazhnikov
49fb3dc79c devel/py-tables:
- Add missing dependencies

PR:		248815
Approved by:	wen (maintainer)
2020-08-22 08:33:34 +00:00
Niclas Zeising
190024440b sysutils/htop: Fix build with -fno-common
Fix the build of sysutils/htop with -fno-common, which is the default in
llvm 11 (and gcc 10)

PR:		248823
Submitted by:	Yasuhiro KIMURA
MFH:		2020Q3 (iplicit, -fno-common fixes, ok by joenum)
2020-08-22 08:25:50 +00:00
Barbara Guida
b12b2f17f2 Update to SVN-r11055 2020-08-22 07:49:21 +00:00
Alexey Dokuchaev
58368430ef Unbreak the build with -fno-common (Clang 11, GCC 10).
Reported by:	pkg-fallout
2020-08-22 07:29:02 +00:00
Loïc Bartoletti
2abcfc8e6b converters/osm2pgrouting: fix build after databases/postgresql-libpqxx update
- Uses c++17 and patch CMakeLists.txt (required by databases/postgresql-libpqxx)
- Replace disconnect to close (libpqxx API change) in src/osm_elements/osm2pgrouting.cpp
- While I'm here remove post-install part and update CMakeLists.

Reported by:	pkg-fallout
2020-08-22 06:50:15 +00:00