- 26 Jan, 2018 40 commits
-
-
sunpoet authored
python-dotenv reads the key,value pair from .env and adds them to environment variable. It is great of managing app settings during development and in production using 12-factor principles. WWW: https://pypi.python.org/pypi/python-dotenv WWW: https://github.com/theskumar/python-dotenv
-
sunpoet authored
- Sort PLIST Reported by: Oliver Schonrock <oliver@schonrocks.com>
-
sunpoet authored
Changes: http://search.cpan.org/dist/String-Print/ChangeLog
-
sunpoet authored
- Fix indent - Take maintainership
-
sunpoet authored
Changes: https://github.com/Unidata/netcdf-c/releases
-
sunpoet authored
- Update pkg-descr - Take maintainership Changes: https://github.com/kward/shflags/releases
-
gblach authored
-
gblach authored
-
jbeich authored
In file included from GameEngine.cpp:23: ../../src/flatzebra/GameEngine.h:412:23: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing] SDL_Rect rect = { x, y, width, height }; ^ ../../src/flatzebra/GameEngine.h:412:23: note: insert an explicit cast to silence this issue SDL_Rect rect = { x, y, width, height }; ^ static_cast<Sint16>( ) ../../src/flatzebra/GameEngine.h:412:26: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing] SDL_Rect rect = { x, y, width, height }; ^ ../../src/flatzebra/GameEngine.h:412:26: note: insert an explicit cast to silence this issue SDL_Rect rect = { x, y, width, height }; ^ static_cast<Sint16>( ) ../../src/flatzebra/GameEngine.h:412:29: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing] SDL_Rect rect = { x, y, width, height }; ^~~~~ ../../src/flatzebra/GameEngine.h:412:29: note: insert an explicit cast to silence this issue SDL_Rect rect = { x, y, width, height }; ^~~~~ static_cast<Uint16>( ) ../../src/flatzebra/GameEngine.h:412:36: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing] SDL_Rect rect = { x, y, width, height }; ^~~~~~ ../../src/flatzebra/GameEngine.h:412:36: note: insert an explicit cast to silence this issue SDL_Rect rect = { x, y, width, height }; ^~~~~~ static_cast<Uint16>( ) Reported by: pkg-fallout (blocks 3 ports)
-
gblach authored
-
jbeich authored
src/SFML/Window/Unix/WindowImplX11.cpp:1278:36: error: reinterpret_cast from 'nullptr_t' to 'void *' is not allowed reinterpret_cast<void*>(NULL)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout (blocks 3 ports) Approved by: portmgr blanket
-
danfe authored
offending -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 definitions - Also remove useless (no-op) `pathfix' from the USES list while here
-
amdmi3 authored
- Make python module installation unconditional, as disabling it no longer brings any profit - Don't install compiled python files, which fixes installation with python3 as default - Switch to USES=localbase - Fix shebangs - Simplify stripping - Fix plist for WITHOUT=QT4 case - Mark BROKEN with X11MON, required libfam is not linked which breaks the installation
-
jbeich authored
libc++ doesn't like "using namespace std" in C++11 Communicator.cxx:139:73: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if (bind(connection_socket, (sockaddr *) &address, sizeof(address)) < 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ Reported by: pkg-fallout Approved by: portmgr blanket
-
jbeich authored
libc++ doesn't like "using namespace std" in C++11 role.cpp:656:62: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if (bind(udpSock,(CMN_SOCKADDR *)&client,sizeof(client)) >= 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ role.cpp:1829:70: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if (bind(tcpSock, (CMN_SOCKADDR *)&serverAddr, sizeof(serverAddr)) < 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ role.cpp:1836:70: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if (bind(udpSock, (CMN_SOCKADDR *)&serverAddr, sizeof(serverAddr)) < 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ serverping.cpp:173:60: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if (bind(udpSock,(CMN_SOCKADDR *)&client,sizeof(client)) < 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ Reported by: pkg-fallout
-
jbeich authored
libc++ doesn't like "using namespace std" in C++11 network.cc:466:59: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if (bind(netsocket,(struct sockaddr *) &sin,sizeof(sin))==-1) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ ~~ Reported by: pkg-fallout Approved by: portmgr blanket
-
madpilot authored
Reported by: Olivier Duchateau <duchateau.olivier@gmail.com>
-
danfe authored
- Use CXXFLAGS for passing options to C++ compiler, not CFLAGS - Wrap overly long lines, utilize options helper target
-
madpilot authored
-
feld authored
Changelog: http://forums.plex.tv/discussion/comment/1602026/#Comment_1602026
-
danfe authored
- Unbreak and undeprecate (chase libsigc++20 update)
-
jbeich authored
loader.cpp:899:12: error: cannot initialize return object of type 'CalCoreKeyframe *' with an rvalue of type 'bool' return false; ^~~~~ loader.cpp:1448:11: error: no viable conversion from returned value of type 'bool' to function return type 'CalCoreSkeletonPtr' (aka 'RefPtr<CalCoreSkeleton>') return false; ^~~~~ ../../src/cal3d/refptr.h:16:9: note: candidate constructor not viable: no known conversion from 'bool' to 'CalCoreSkeleton *' for 1st argument RefPtr(T* ptr = 0) ^ ../../src/cal3d/refptr.h:22:9: note: candidate constructor not viable: no known conversion from 'bool' to 'const RefPtr<CalCoreSkeleton> &' for 1st argument RefPtr(const RefPtr<T>& ptr) ^ Reported by: pkg-fallout (blocks 5 ports) Approved by: portmgr blanket
-
jbeich authored
jsapi.cpp:3988:16: error: cannot initialize return object of type 'JSIdArray *' with an rvalue of type 'bool' return false; ^~~~~ jsarray.cpp:497:1: error: non-constant-expression cannot be narrowed from type 'intptr_t' (aka 'long') to 'uintptr_t' (aka 'unsigned long') in initializer list [-Wc++11-narrowing] JS_DEFINE_CALLINFO_3(extern, BOOL, js_EnsureDenseArrayCapacity, CONTEXT, OBJECT, INT32, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./jsbuiltins.h:350:5: note: expanded from macro 'JS_DEFINE_CALLINFO_3' _JS_DEFINE_CALLINFO(linkage, op, \ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./jsbuiltins.h:294:11: note: expanded from macro '_JS_DEFINE_CALLINFO' { (intptr_t) &name, argtypes, nanojit::ABI_FASTCALL, isPure, storeAccSet _JS_CI_NAME(name) }; \ ^~~~~~~~~~~~~~~~ ./nanojit/RegAlloc.h:189:24: error: non-constant-expression cannot be narrowed from type 'int' to 'nanojit::Register' (aka 'unsigned int') in initializer list [-Wc++11-narrowing] Register r = { (sizeof(RegisterMask) == 4) ? lsbSet32(mask) : lsbSet64(mask) }; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./nanojit/RegAlloc.h:189:24: note: insert an explicit cast to silence this issue Register r = { (sizeof(RegisterMask) == 4) ? lsbSet32(mask) : lsbSet64(mask) }; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ static_cast<Register>( ) Reported by: pkg-fallout (blocks 4 ports) Approved by: portmgr blanket
-
jbeich authored
casyncconn.cpp:585:62: error: invalid operands to binary expression ('__bind<int &, sockaddr *, unsigned long>' and 'int') if(bind(sock, (struct sockaddr *)&mAddrIN, sizeof(mAddrIN)) == -1) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~ creguserinfo.cpp:156:32: error: non-constant-expression cannot be narrowed from type 'char' to 'unsigned char' in initializer list [-Wc++11-narrowing] unsigned char charsalt[2] = {((char*)&str)[0],((char*)&str)[1]}; ^~~~~~~~~~~~~~~~ creguserinfo.cpp:156:32: note: insert an explicit cast to silence this issue unsigned char charsalt[2] = {((char*)&str)[0],((char*)&str)[1]}; ^~~~~~~~~~~~~~~~ static_cast<unsigned char>( ) script_api.cpp:221:10: error: cannot initialize return object of type 'char *' with an rvalue of type 'bool' return false; ^~~~~ script_api.cpp:226:46: error: cannot initialize return object of type 'char *' with an rvalue of type 'bool' if ((!usr) || (usr && !usr->mxConn)) return false; ^~~~~ Reported by: pkg-fallout (blocks 9 ports) Approved by: portmgr blanket
-
jbeich authored
configure:4036: c++ -o conftest -O2 -pipe -O3 -fno-strict-aliasing -fno-omit-frame-pointer -march=native -fstack-protector -fstack-protector conftest.cc >&5 In file included from conftest.cc:32: In file included from /usr/include/c++/v1/stdlib.h:94: /usr/include/stdlib.h:97:1: error: function declared '[[noreturn]]' after its first declaration _Noreturn void exit(int); ^ /usr/include/sys/cdefs.h:280:22: note: expanded from macro '_Noreturn' #define _Noreturn [[noreturn]] ^ conftest.cc:11:6: note: declaration missing '[[noreturn]]' attribute is here void exit (int); ^ [...] configure:4053: error: cannot compute sizeof (char), 77 samples.cpp:80:2: error: constant expression evaluates to 128 which cannot be narrowed to type 'sbyte' (aka 'signed char') [-Wc++11-narrowing] 0x80,0x91,0xa2,0xb3,0xc4,0xd5,0xe6,0xf7, ^~~~ samples.cpp:80:2: note: insert an explicit cast to silence this issue 0x80,0x91,0xa2,0xb3,0xc4,0xd5,0xe6,0xf7, ^~~~ static_cast<sbyte>( ) PR: 224947 Reported by: pkg-fallout (blocks 8 ports) Submitted by: tijl (autoreconf) Approved by: portmgr blanket
-
jbeich authored
src/nvimage/ImageIO.cpp:138:10: error: cannot initialize return object of type 'nv::FloatImage *' with an rvalue of type 'bool' return false; ^~~~~ src/nvimage/ImageIO.cpp:236:12: error: cannot initialize return object of type 'nv::Image *' with an rvalue of type 'bool' return false; ^~~~~ src/nvimage/ImageIO.cpp:257:11: error: cannot initialize return object of type 'nv::Image *' with an rvalue of type 'bool' return false; ^~~~~ src/nvimage/ImageIO.cpp:624:10: error: cannot initialize return object of type 'nv::Image *' with an rvalue of type 'bool' return false; ^~~~~ src/nvimage/ImageIO.cpp:632:10: error: cannot initialize return object of type 'nv::Image *' with an rvalue of type 'bool' return false; ^~~~~ src/nvimage/ImageIO.cpp:639:10: error: cannot initialize return object of type 'nv::Image *' with an rvalue of type 'bool' return false; ^~~~~ Reported by: pkg-fallout (blocks 9 ports) Obtained from: upstream Approved by: portmgr blanket
-
jbeich authored
Changes: https://github.com/cmdrkotori/mpc-qt/compare/0fff34c...78c4816
-
swills authored
Submitted by: Roger Marquis <marquis@roble.com>
-
swills authored
Submitted by: Roger Marquis <marquis@roble.com>
-
-
sunpoet authored
-
sunpoet authored
-
olgeni authored
-
olgeni authored
-
jbeich authored
Changes: https://github.com/Flexget/Flexget/compare/2.11.22...2.12.0
-
gerald authored
PR: 224863 Reported by: jbeich
-
gerald authored
-
brnrd authored
- Adds new option unbound_config PR: 225360 Submitted by: jaap@NLnetLabs.nl Approved by: jaap@NLnetLabs.nl (maintainer)
-
antoine authored
Reported by: pkg-fallout
-
gerald authored
This fixes 99+ bugs and includes code generation options to mitigate Spectre Variant 2 (CVE 2017-5715) for the x86 and powerpc targets (-mindirect-branch=, -mfunction-return=, and -mindirect-branch-register). files/patch-armv7-support and files/patch-freebsd-unwind.h, which I had backported are now included, so remove them.
-