This project is mirrored from https://git.freebsd.org/ports.git.
Pull mirroring updated .
- Jun 04, 2023
-
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
-
Yuri Victorovich authored
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
-
Emanuel Haupt authored
-
Emanuel Haupt authored
-
Thierry Thomas authored
Release notes at <https://github.com/mrdoob/three.js/releases/tag/r153>.
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
Reported by: portscout
-
Yuri Victorovich authored
Reported by: portscout
-
Thierry Thomas authored
Reported by: pkg-fallout
-
Jimmy Olgeni authored
-
Gleb Popov authored
Reported by: portscout!
-
Dimitry Andric authored
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17. Because devel/p8-platform's Makefile does not explicitly set its C++ standard, this leads to an error: /wrkdirs/usr/ports/devel/p8-platform/work/platform-p8-platform-2.1.0.1/src/util/StringUtils.cpp:456:69: error: no member named 'ptr_fun' in the global namespace str.erase(str.begin(), ::find_if(str.begin(), str.end(), ::not1(::ptr_fun(isspace_c)))); ~~^ /wrkdirs/usr/ports/devel/p8-platform/work/platform-p8-platform-2.1.0.1/src/util/StringUtils.cpp:469:58: error: no member named 'ptr_fun' in the global namespace str.erase(::find_if(str.rbegin(), str.rend(), ::not1(::ptr_fun(isspace_c))).base(), str.end()); ~~^ Upstream already fixed this in <https://github.com/Pulse-Eight/platform/commit/a7cd0d5>, via <https://github.com/Pulse-Eight/platform/pull/45>, so apply it. While here, pet portlint. PR: 271710 Approved by: mickael.maillot@gmail.com (maintainer) MFH: 2023Q2
-
Dimitry Andric authored
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17. Because multimedia/vdr's Makefile does not explicitly set its C++ standard, this leads to an error: util.c:269:4: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister] register int i; ^~~~~~~~~ Because the port's own Makefile is rather non-standard it does not respect USE_CXXSTD=, so patch away the 'register' keyword instead. PR: 271707 Approved by: fernape MFH: 2023Q2
-
Dimitry Andric authored
Clang 16 has a new error about incompatible function types, which shows up when building graphics/rubygem-cairo: rb_cairo_surface.c:2354:3: error: incompatible function pointer types passing 'VALUE (int, VALUE *, VALUE)' (aka 'unsigned long (int, unsigned long *, unsigned long)') to parameter of type 'VALUE (*)(VALUE, VALUE)' (aka 'unsigned long (*)(unsigned long, unsigned long)') [-Wincompatible-function-pointer-types] rb_define_method (rb_cCairo_GLSurface, "initialize", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:287:135: note: expanded from macro 'rb_define_method' #define rb_define_method(klass, mid, func, arity) RBIMPL_ANYARGS_DISPATCH_rb_define_method((arity), (func))((klass), (mid), (func), (arity)) ^~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:276:1: note: passing argument to parameter here RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *) ^ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:255:72: note: expanded from macro 'RBIMPL_ANYARGS_DECL' RBIMPL_ANYARGS_ATTRSET(sym) static void sym ## _01(__VA_ARGS__, VALUE(*)(VALUE, VALUE), int); \ ^ rb_cairo_surface.c:2368:3: error: incompatible function pointer types passing 'VALUE (int, VALUE *, VALUE)' (aka 'unsigned long (int, unsigned long *, unsigned long)') to parameter of type 'VALUE (*)(VALUE, VALUE)' (aka 'unsigned long (*)(unsigned long, unsigned long)') [-Wincompatible-function-pointer-types] rb_define_method (rb_cCairo_GLTextureSurface, "initialize", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:287:135: note: expanded from macro 'rb_define_method' #define rb_define_method(klass, mid, func, arity) RBIMPL_ANYARGS_DISPATCH_rb_define_method((arity), (func))((klass), (mid), (func), (arity)) ^~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:276:1: note: passing argument to parameter here RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *) ^ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:255:72: note: expanded from macro 'RBIMPL_ANYARGS_DECL' RBIMPL_ANYARGS_ATTRSET(sym) static void sym ## _01(__VA_ARGS__, VALUE(*)(VALUE, VALUE), int); \ ^ This is because rb_define_method's last argument is the 'arity' of the method, and in case of cr_gl_surface_initialize() and cr_gl_texture_surface_initialize() it should be -1 to indicate a variable number of arguments. PR: 271706 Approved by: portmgr (buildfix blanket) MFH: 2023Q2
-
Dimitry Andric authored
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17. Because audio/espeak-ng's Makefile does not explicitly set its C++ standard, this leads to an error: src/speechPlayer/src/speechWaveGenerator.cpp:197:56: error: reference to 'sample' is ambiguous unsigned int generate(const unsigned int sampleCount, sample* sampleBuf) { ^ src/speechPlayer/src/sample.h:23:3: note: candidate found by name lookup is 'sample' } sample; ^ /usr/include/c++/v1/__algorithm/sample.h:95:17: note: candidate found by name lookup is 'std::sample' _SampleIterator sample(_PopulationIterator __first, ^ This is because speechWaveGenerator.cpp has "using namespace std;" at the top, so "sample" can match both "std::sample" (from <algorithm>) and "struct sample" (from sample.h). Qualify "sample" as "::sample" to work around the problem. PR: 271486 Approved by: maintainer timeout (2 weeks) MFH: 2023Q2
-
Dimitry Andric authored
Clang 16 has a new error about incompatible function types, which shows up when building devel/libgee: hashmap.c:4089:23: error: incompatible function pointer types assigning to 'gboolean (*)(GeeMapIterator *)' (aka 'int (*)(struct _GeeMapIterator *)') from 'gboolean (GeeHashMapNodeIterator *)' (aka 'int (struct _GeeHashMapNodeIterator *)') [-Wincompatible-function-pointer-types] iface->get_read_only = gee_hash_map_map_iterator_real_get_read_only; ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Since the error occurs in vala-generated code, it does not make sense to patch the .c file. Suppress the warning instead. PR: 271485 Approved by: maintainer timeout (2 weeks) MFH: 2023Q2
-
Ruslan Makhmatkhanov authored
-
Mikael Urankar authored
Changes: https://github.com/signalapp/ringrtc/releases/tag/v2.27.0
-
Ruslan Makhmatkhanov authored
-
Gleb Popov authored
Reported by: portscout!
-
Ruslan Makhmatkhanov authored
Add missing build dependencies for www/py-flask-wtf and math/py-autograd
-
Jimmy Olgeni authored
-
Emanuel Haupt authored
-
Jimmy Olgeni authored
-
Jimmy Olgeni authored
-
Gleb Popov authored
Reported by: portscout!
-
Muhammad Moinur Rahman authored
Approved by: portmgr (just-fix-it)
-
Muhammad Moinur Rahman authored
- Pet portclippy Approved by: portmgr (blanket)
-
Muhammad Moinur Rahman authored
- Pet portclippy - Adopt port
-
Muhammad Moinur Rahman authored
- Adopt port
-