1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00

453475 Commits

Author SHA1 Message Date
Tobias Kortkamp
46d328db5c vietnamese/x-unikey: Fix build with Clang 6
data.cpp💯15: error: constant expression evaluates to -72 which cannot be narrowed to type 'unsigned char' [-Wc++11-narrowing]
{{'A','a','<B8>','<B8>','<B5>','<B5>','<B6>','<B6>','<B7>','<B7>','<B9>','<B9>',      // 0: a
                 ^~~~~~

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/vi-x-unikey-1.0.4.log

- While here prevent build from asking an interactive question
  during the install phase
2018-08-25 14:22:46 +00:00
Jason E. Hale
336eab338e Fix build with CRYPTOPP option enabled (missed in r477967)
Bump PORTREVISON due to cryptopp shared library version increase

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I.. -DKVZ_DLL_EXPORTS -isystem /usr/local/include -O2 -pipe -fstack-protector -isystem /usr/local/include -fno-strict-aliasing -isystem /usr/local/include -MT extras/crypto.lo -MD -MP -MF extras/.deps/crypto.Tpo -c extras/crypto.cpp  -fPIC -DPIC -o extras/.libs/crypto.o
extras/crypto.cpp:19:3: error: unknown type name 'byte'; did you mean 'CryptoPP::byte'?
  byte key[CryptoPP::AES::DEFAULT_KEYLENGTH];
  ^~~~
  CryptoPP::byte
/usr/local/include/cryptopp/config.h:237:23: note: 'CryptoPP::byte' declared here
typedef unsigned char byte;
                      ^

Pointy hat:	jhale
Reported by:	fluffy
Obtained from:	upstream commits
2018-08-25 14:20:50 +00:00
Tobias Kortkamp
b363253376 x11-toolkits/gtkmathview: Fix build with Clang 6
View.cc:294:10: error: no viable conversion from returned value of type 'bool' to function return type 'SmartPtr<Element>'
  return false;
         ^~~~~

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/gtkmathview-0.8.0_9.log

cmex10.cc:27:3: error: constant expression evaluates to 4205933842 which cannot be
      narrowed to type 'int' [-Wc++11-narrowing]
  0xfab17512,
  ^~~~~~~~~~

SVG_RenderingContext.cc:67:25: error: invalid suffix on literal; C++11 requires a
      space between literal and identifier [-Wreserved-user-defined-literal]
  metadata("Created by "PACKAGE" version "VERSION);
                        ^
2018-08-25 14:09:34 +00:00
Tobias Kortkamp
1bf5271302 x11-toolkits/v: Fix build with Clang 6
vchkboxc.cxx:43:4: error: constant expression evaluates to 255 which cannot be narrowed to type 'char' [-Wc++11-narrowing]
   0xff, 0x0f, 0x03, 0x0c, 0x05, 0x0a, 0x09, 0x09, 0x91, 0x08, 0x61, 0x08,
   ^~~~
vchkboxc.cxx:43:4: note: insert an explicit cast to silence this issue
   0xff, 0x0f, 0x03, 0x0c, 0x05, 0x0a, 0x09, 0x09, 0x91, 0x08, 0x61, 0x08,
   ^~~~
   static_cast<char>( )

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/v-1.90_6.log
2018-08-25 13:54:30 +00:00
Sunpoet Po-Chuan Hsieh
df53ca146d Update to 0.31.0
Changes:	https://github.com/ruby-grape/grape-swagger/blob/master/CHANGELOG.md
2018-08-25 13:49:48 +00:00
Sunpoet Po-Chuan Hsieh
1fcce506aa Update to 0.5.32.7
Changes:	https://github.com/kayhayen/Nuitka/blob/develop/Changelog.rst
		https://github.com/kayhayen/Nuitka/commits/develop
2018-08-25 13:49:43 +00:00
Sunpoet Po-Chuan Hsieh
856beec754 Update to 1.19
Changes:	https://metacpan.org/changes/distribution/B-Keywords
2018-08-25 13:49:37 +00:00
Sunpoet Po-Chuan Hsieh
d88262519b Update to 0.6.6
Changes:	https://github.com/google/google-auth-library-ruby/blob/master/CHANGELOG.md
2018-08-25 13:49:32 +00:00
Sunpoet Po-Chuan Hsieh
6ac4e2f345 Update to 2.11.115
Changes:	https://github.com/aws/aws-sdk-ruby/releases
2018-08-25 13:49:27 +00:00
Sunpoet Po-Chuan Hsieh
a74176646b Update to 2.11.115
Changes:	https://github.com/aws/aws-sdk-ruby/releases
2018-08-25 13:49:21 +00:00
Sunpoet Po-Chuan Hsieh
cb1ecbc862 Update to 2.11.115
Changes:	https://github.com/aws/aws-sdk-ruby/releases
2018-08-25 13:49:16 +00:00
Sunpoet Po-Chuan Hsieh
4b8897ffbb Update to 0.001069
Changes:	https://metacpan.org/changes/distribution/Test2-Harness
2018-08-25 13:49:10 +00:00
Sunpoet Po-Chuan Hsieh
d87cfe6fcb Update to 4.06
Changes:	https://metacpan.org/changes/distribution/Cpanel-JSON-XS
2018-08-25 13:49:05 +00:00
Tobias Kortkamp
b3beda7f98 x11-wm/jewel: Fix build with Clang 6
windowmanager.cc:1929:24: error: non-constant-expression cannot be narrowed from type 'int' to 'CARD32' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
        CARD32 geometry[] = { xres, yres };
                              ^~~~
windowmanager.cc:1929:24: note: insert an explicit cast to silence this issue
        CARD32 geometry[] = { xres, yres };
                              ^~~~
                              static_cast<CARD32>( )

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/jewel-0.12.41_4.log

- Make sure the build respects CXXFLAGS
2018-08-25 13:48:09 +00:00
Tobias Kortkamp
b1c5f262f7 x11-wm/obpager: Fix build with Clang 6
src/OBPager.cc:937:19: error: non-constant-expression cannot be narrowed from type 'int' to 'char' in initializer list [-Wc++11-narrowing]
        char text[2] = { (mDesktopNum % 9) + '1', '\0' };
                         ^~~~~~~~~~~~~~~~~~~~~~~
src/OBPager.cc:937:19: note: insert an explicit cast to silence this issue
        char text[2] = { (mDesktopNum % 9) + '1', '\0' };
                         ^~~~~~~~~~~~~~~~~~~~~~~
                         static_cast<char>(     )
1 error generated.

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/obpager-1.8.log

- Make sure the build respects CXXFLAGS
2018-08-25 13:42:44 +00:00
Dan Langille
5421a85950 Correct the pkg-list
Sorry about that.
2018-08-25 13:11:27 +00:00
Gerald Pfeifer
fa229932cb Update to the 20180822 snapshot of GCC 6.4.1. 2018-08-25 13:10:03 +00:00
Gerald Pfeifer
6118943094 Update to the 20180823 snapshot of GCC 7.3.1. 2018-08-25 12:35:22 +00:00
Gerald Pfeifer
355e5e5e81 The Staging patchset is now available for Wine 3.14 as well, and
requires some additions to pkg-list and one change where main wine
and Staging go differently about libdinput8.
2018-08-25 12:28:15 +00:00
Gerald Pfeifer
2cab14c326 Update to the 20180824 snapshot of GCC 8.2.1. 2018-08-25 11:59:49 +00:00
Jimmy Olgeni
bceaa1f860 Update devel/elixir-gen_state_machine to version 2.0.3. 2018-08-25 11:29:32 +00:00
Jimmy Olgeni
7f7302de64 Update devel/erlang-gpb to version 4.2.2. 2018-08-25 11:15:22 +00:00
Thomas Zander
ff02b29f46 Update to upstream release 1.0.1, fix build on 11.2
Detailed submitter log:
- Update to 1.0.1
- Switched to Github
  - Has newest sources
- Updated WWW in pkg-desc
  - Current www doesn't exist
- Removed doc depends/build
  - Does not build/install
- Removed doxygen dir
  - Not needed/used

PR:		230833 [1], 230674 [2]
Submitted by:	ndowens@yahoo.com [1]
Reported by:	lantw44@gmail.com [2]
MFH:		2018Q3
2018-08-25 10:16:16 +00:00
Dmitry Marakasov
f8345e011f - Update WWW
- Pet portlint
- Cosmetic fixes

Approved by:	portmgr blanket
2018-08-25 09:38:13 +00:00
Thomas Zander
78c5c28635 Update to upstream version 5.37.1
PR:		230523
Submitted by:	uzsolt@uzsolt.hu (maintainer)
2018-08-25 09:36:43 +00:00
Dmitry Marakasov
49aea8bc04 - Add LICENSE
- Add NO_ARCH

Approved by:	portmgr blanket
2018-08-25 09:08:10 +00:00
Antoine Brodin
7bf240a917 Update to 20180818
Announce:	http://blog.kiddaland.net/2018/08/plaso-20180818-released.html
2018-08-25 08:38:36 +00:00
Antoine Brodin
cbe447eecd - Build python2 and python3 bindings
- Remove DOCS option, the 2 text files do not carry useful information
2018-08-25 08:32:59 +00:00
Antoine Brodin
6bedcc9ef0 Update to 4.6.2 2018-08-25 08:27:04 +00:00
Antoine Brodin
9c1080fd78 Update to 20180712 2018-08-25 08:16:18 +00:00
Antoine Brodin
d1258dbb5a Update to 20180704 2018-08-25 08:13:55 +00:00
Antoine Brodin
9dc7945384 Update to 20180808 2018-08-25 08:10:15 +00:00
Jimmy Olgeni
0610df511d Update lang/erlang-wx to version 19.3.6.10.
Disable DOCS support now that all documentation is handled by
lang/erlang-doc.
2018-08-25 08:03:46 +00:00
Jimmy Olgeni
5e988c5b7d Update lang/erlang-java to version 19.3.6.10.
Disable DOCS support now that all documentation is handled by
lang/erlang-doc.
2018-08-25 08:03:15 +00:00
Jimmy Olgeni
b61f070ade Update lang/erlang to version 19.3.6.10. 2018-08-25 08:02:07 +00:00
Jimmy Olgeni
58b8ed2abf Update lang/erlang-runtime19 to version 19.3.6.10. 2018-08-25 08:01:41 +00:00
Jimmy Olgeni
fe158292c8 Update lang/erlang-runtime20 to version 20.3.8.7. 2018-08-25 08:01:28 +00:00
Jimmy Olgeni
14646ef3c7 Update lang/erlang-runtime21 to version 21.0.6. 2018-08-25 08:01:16 +00:00
Yuri Victorovich
d04d3597e9 science/nwchem: Add forgotten files 2018-08-25 06:36:26 +00:00
Tobias C. Berner
6517ccec6c Update KDE Applications to 18.08
Changelog: https://www.kde.org/announcements/announce-applications-18.08.0.php
2018-08-25 05:15:02 +00:00
Tobias Kortkamp
360169fdfe emulators/fceux: Fix build with Clang 6
src/utils/xstring.cpp:234:5: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned char' in initializer list [-Wc++11-narrowing]
                                n<2 ? '=' : Base64Table[ ((input[1] & 0x0F) << 2) | (input[2] >> 6) ],
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/fceux-2.2.3_4.log
2018-08-25 05:12:35 +00:00
Tobias Kortkamp
3f41789a40 editors/pdfedit: Fix build with Clang 6
/wrkdirs/usr/ports/editors/pdfedit/work/pdfedit-0.4.5/src/kernel/cxref.h:422:18: error: non-constant-expression cannot be narrowed from type 'pdfobjects::IndiRef::ObjNum' (aka 'unsigned int') to 'int' in initializer list [-Wc++11-narrowing]
                ::Ref xpdfRef={ref.num, ref.gen};
                               ^~~~~~~
/wrkdirs/usr/ports/editors/pdfedit/work/pdfedit-0.4.5/src/kernel/cxref.h:422:18: note: insert an explicit cast to silence this issue
                ::Ref xpdfRef={ref.num, ref.gen};
                               ^~~~~~~
                               static_cast<int>( )

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/pdfedit-0.4.5_11.log

PR:		225295
Reported by:	O. Hartmann <ohartmann@walstatt.org>
2018-08-25 05:00:37 +00:00
Tobias Kortkamp
12dd761ab2 editors/manedit: Fix build with Clang 6
In file included from <built-in>:375:
<command line>:4:9: warning: '__cplusplus' macro redefined [-Wmacro-redefined]
#define __cplusplus 1
        ^
<built-in>:371:9: note: previous definition is here
#define __cplusplus 201402L
        ^

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/manedit-1.2.1_3.log
2018-08-25 04:43:25 +00:00
Tobias Kortkamp
3887e2088e cad/qmls: Fix build with Clang 6
cdl.cpp:128:24: error: cast from pointer to smaller type 'char' loses information
          buf[index] = (char)NULL;
                       ^~~~~~~~~~

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/qmls-0.2.log
2018-08-25 04:04:01 +00:00
Tobias Kortkamp
14b8b6f1e8 cad/leocad: Remove the embedded build date and fix build with Clang 6
common/lc_application.cpp:209:23: error: no matching literal operator for call to 'operator""__DATE__' with arguments of types 'const char *' and 'unsigned int', and no matching literal operator template
                                printf("Compiled "__DATE__"\n");
                                                  ^

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/leocad-0.80.3_4.log
2018-08-25 04:00:13 +00:00
Tobias Kortkamp
108257931f biology/protomol: Fix doubled USES overwriting the old value
- Make sure shebangfix is actually used
2018-08-25 03:47:25 +00:00
Tobias Kortkamp
e845f7e24e biology/protomol: Fix build with Clang 6
Report.cpp:208:12: error: invalid operands to binary expression ('std::ostream' (aka 'basic_ostream<char>') and 'const std::__1::ostream' (aka 'const basic_ostream<char>'))
        *myStream << a;
        ~~~~~~~~~ ^  ~
/usr/include/c++/v1/ostream:218:20: note: candidate function not viable: no known conversion from 'const std::__1::ostream' (aka 'const basic_ostream<char>') to 'const void *' for 1st argument; take the address of the argument with &
    basic_ostream& operator<<(const void* __p);
                   ^
... and so on ...

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/protomol-2.0.3_13.log
2018-08-25 03:45:28 +00:00
Tobias Kortkamp
8a0d72f97d biology/primer3: Fix build with Clang 6
thal.c:426:13: error: comparison between pointer and integer ('int' and 'const unsigned char *')
   if ('\0' == oligo_f) {
       ~~~~ ^  ~~~~~~~
thal.c:431:13: error: comparison between pointer and integer ('int' and 'const unsigned char *')
   if ('\0' == oligo_r) {
       ~~~~ ^  ~~~~~~~

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/primer3-2.3.6.log
2018-08-25 03:35:46 +00:00
Tobias Kortkamp
862bfe924c biology/libsbml: Fix build with Clang 6
In file included from /wrkdirs/usr/ports/biology/libsbml/work/libsbml-5.17.0/src/sbml/Model.cpp:41:
In file included from /wrkdirs/usr/ports/biology/libsbml/work/libsbml-5.17.0/src/sbml/SBMLDocument.h:298:
In file included from /wrkdirs/usr/ports/biology/libsbml/work/libsbml-5.17.0/src/sbml/SBMLTransforms.h:48:
In file included from /wrkdirs/usr/ports/biology/libsbml/work/libsbml-5.17.0/src/sbml/FunctionDefinition.h:129:
In file included from /wrkdirs/usr/ports/biology/libsbml/work/libsbml-5.17.0/src/sbml/SBO.h:207:
/usr/include/c++/v1/map:629:15: error: object of type 'std::__1::pair<std::__1::pair<const std::__1::basic_string<char>, int>, FormulaUnitsData *>' cannot be assigned because its copy assignment operator is implicitly deleted
        {__nc = __v.__cc; return *this;}
              ^

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/libsbml-5.17.0.log
2018-08-25 03:31:43 +00:00
Tobias Kortkamp
122915db2a biology/avida: Fix build with Clang 6
avida-core/source/main/cPopulation.cc:2916:20: error: no matching member function for call to 'push_back'
    track_founders.push_back(make_pair(organism->GetBioGroup("genotype")->GetID(), new_genome.AsString()));
    ~~~~~~~~~~~~~~~^~~~~~~~~
/usr/include/c++/v1/vector:688:36: note: candidate function not viable: no known conversion from 'pair<[...], typename __make_pair_return<cString>::type>' to 'const pair<[...], std::__1::basic_string<char>>' for 1st argument
    _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x);
                                   ^
/usr/include/c++/v1/vector:691:36: note: candidate function not viable: no known conversion from 'pair<[...], typename __make_pair_return<cString>::type>' to 'pair<[...], std::__1::basic_string<char>>' for 1st argument
    _LIBCPP_INLINE_VISIBILITY void push_back(value_type&& __x);
                                   ^

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/avida-2.12.4.log

libs/tcmalloc-1.4/src/sysinfo.cc:832:88: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
                          "%08"PRIx64"-%08"PRIx64" %c%c%c%c %08"PRIx64" %02x:%02x %-11"PRId64" %s\n",
                                                                                       ^
2018-08-25 03:22:18 +00:00