Commit Graph

447493 Commits

Author SHA1 Message Date
Adriaan de Groot
13df7c4056 Make www/qt5-webengine use Clang 6
Build WebEngine with Clang 6, following the example of Chromium and Iridium.

PR:		227683
Submitted by:	jbeich
Reviewed by:	tcberner
Differential Revision:	https://reviews.freebsd.org/D15662
2018-06-04 15:20:29 +00:00
Mikhail Pchelin
b2d4b661ec - update from 7.1.5 to 7.2.0 2018-06-04 15:13:16 +00:00
Danilo Egea Gondolfo
6ad03e6d1c New port: x11-toolkits/p5-Gtk3-SimpleList
A simple interface to Gtk3's complex MVC list widget.

SimpleList is a simple interface to the powerful but
complex Gtk3::TreeView and Gtk3::ListStore combination,
implementing using tied arrays to make thing simple and easy.
2018-06-04 15:12:04 +00:00
Danilo Egea Gondolfo
ad6c38af16 New port: devel/p5-Goo-Canvas2
Perl binding for GooCanvas2 widget using Glib::Object::Introspection

GooCanvas2 is a new canvas widget for use with Gtk3
that uses the Cairo 2d library for drawing. This is a
simple and basic implementation of this wonderful Canvas widget.
2018-06-04 15:09:55 +00:00
Danilo Egea Gondolfo
058a8c1425 - Update to 0.034
Approved by:	maintainer timeout (1 month)
2018-06-04 14:53:18 +00:00
Mathieu Arnold
69f45f5637 Use USE_GITHUB.
Sponsored by:	Absolight
2018-06-04 14:49:04 +00:00
Mathieu Arnold
095c25da0f Fix USE_GITHUB usage.
Sponsored by:	Absolight
2018-06-04 14:46:41 +00:00
Jean-Sébastien Pédron
8cd2b0b310 net/bosh-cli: Update to 4.0.1
Sponsored by:	Pivotal Software, Inc.
2018-06-04 13:54:44 +00:00
Jean-Sébastien Pédron
631b2c5522 net/bosh-bootloader: Update to 6.7.1
Sponsored by:	Pivotal Software, Inc.
2018-06-04 13:54:01 +00:00
Dmitry Marakasov
b76a67aad3 - Update to 20180602 2018-06-04 13:43:38 +00:00
Pietro Cerutti
83120e0c21 lang/seed7: update to 05_20180601
20180601:
- The library tls.s7i has been improved to support the server_name
  extension and to process handshake messages, that extend over several
  tls message records. Additionally TLS version 1.2 is used now.
- The library x509cert.s7i has been improved to accept a validity with
  times in GeneralizedTime data elements (additionally to times in
  UTCTime data elements).
- The library browser.s7i has been improved to support calling Safari
  under Mac OS X.
- Tests for the functions environment(), getenv() and setenv() have
  been added to chkcmd.sd7.
- A test that checks the sorting of an array of strings has been added
  to chkstr.sd7. This checks the compare() function for strings.
- The compiler s7c has been improved to create better code for the
  option -tf (trace functions). Now the trace functions are added after
  the declarations (such that older C compilers will accept this also).
- In chkflt.sd7 tests for NaN have been grouped together.
- In chkovf.sd7 tests for the binomial coefficient have been split into
  groups.
- The program chkccomp.c has been improved to define the macros
  LIMITED_CSTRI_LITERAL_LEN, LIMITED_ARRAY_LITERAL_LEN,
  DECLARE_OS_ENVIRON, USE_GET_ENVIRONMENT, INITIALIZE_OS_ENVIRON,
  DEFINE_WGETENV, DEFINE_WSETENV, os_environ, os_getenv, os_setenv,
  os_putenv, DELETE_PUTENV_STRING, DEFINE_WSTATI64_EXT,
  DEFINE_STRUCT_STATI64_EXT, DEFINE_FSTATI64_EXT, os_lstat, os_stat,
  os_fstat, os_stat_struct, os_fstat_struct, HAS_SELECT and HAS_MMAP.
- In int_rtl.c the macro DECIMAL_DIGITS has been improved to work with
  unsigned numbers.
- In str_rtl.c the function strCmpGeneric() has been changed back to
  the old behaviour. Now strCmpGeneric() and strCompare() have again
  the same behaviour. It has turned out that sorting an array of
  strings worked wrong, when the program was compiled.
- In pcs_win.c the function prepareCommandLine has been improved and
  the function copyQuotedPart has been added. Now the command line
  created for CreateProcessW() has fewer quoted parameters. Now
  parameters that contain a space or a quotation (") or a control
  character or a character byond ASCII are quoted. All other parameters
  are not quoted.
- Definitions of USE_MMAP, os_environ, os_fstat, DEFINE_WSTATI64_EXT,
  os_lstat, os_stat, os_stat_orig, os_stat_struct, os_fstat_struct,
  DEFINE_WSETENV, os_setenv, os_putenv and USE_DIRENT have been removed
  from the makefiles.
- In several files usages of USE_MMAP have been replaced by usages of
  HAS_MMAP.
- The file read_me.txt has been updated.
- In chkccomp.c the functions checkForLimitedArrayLiteralLength() and
  determineStatFunctions() have been added and the functions
  determineEnvironDefines() and determineBigIntDefines() have been
  improved. Now the test for the GMP library enforces static linking.
- The macros DEFINE_MATHERR_FUNCTION and DEFINE__MATHERR_FUNCTION have
  been improved to define if matherr() or _matherr() should be defined.
- Log functions have been improved in big_gmp.c, big_rtl.c and
  int_rtl.c.

20180513:
- In the manual descriptions of the binomial coefficient and of several
  conversion functions have been improved.
- The bas7.sd7 (basic interpreter) example program has been improved to
  use case statements with strings.
- The operator &:= has been added to the libraries bitsetof.s7i and
  bitset.s7i.
- The function rand() has been added to the library hashsetof.s7i. This
  function returns a random element from a hash set.
- The compiler (s7c) has been improved to generate code that uses
  memcpy or memmove to copy and create arrays of simple value types
  (e.g. array integer). The destruction of arrays of simple value types
  has also been simplified.
- The compiler has been improved to optimize the action SET_RAND.
- The compiler optimizations for the actions SET_DIFF, SET_UNION and
  SET_UNION_ASSIGN has been improved.
- In the compiler (in comp/const.s7i) the actions BLN_ICONV1,
  BLN_ICONV3, CHR_ICONV3 and SET_RAND have been added to the list of
  special actions. The compiler implements functions, which just call
  one of the special actions as inline functions.
- Interpreter and compiler have been improved to support the actions
  HSH_RAND_KEY and SET_INTERSECT_ASSIGN.
- Tests for the functions card() and rand() for the type set of string
  have been added to chkset.sd7.
- Tests for intersection assignments ( &:= ) have been added to
  chkset.sd7.
- In s7c.sd7 the code to call C compiler and linker has been
  refactored.
- The compiler has been improved (in comp/prc_act.s7i) to use the
  function hshIdxDefault0() instead of hshIdxWithDefault() for case
  statements with hashsets.
- The code generation of the compiler has been improved to trigger the
  signal SIGFPE with a call of triggerSigfpe().
- The compiler has been improved to insert diagnostic line information
  (e.g.: #line 64 "logfile.s7i") into code for the actions ARR_CPY,
  BLN_AND, BLN_OR, ITF_CPY, PRC_IF, PRC_IF_ELSIF, PRC_IF_NOOP
- The compiler has been improved to insert diagnostic line information
  for inlined functions.
- The configuration values in cc_conf.s7i have been improved.
  SWITCH_WORKS_FOR_INT64TYPE, CC_OPT_OPTIMIZE_1, CC_OPT_OPTIMIZE_2 and
  CC_OPT_OPTIMIZE_3 have been added. SYSTEM_DB_LIBS has been renamed
  to ADDITIONAL_SYSTEM_LIBS. HAS_SIGACTION, SIGNAL_RESETS_HANDLER and
  DO_SIGFPE_WITH_DIV_BY_ZERO have been removed.
- The program chkccomp.c has been improved. Now it determines the name
  of the NULL device (/dev/null or NUL:), the system socket library
  (unix sockets or winsocket), the method to read directories, the
  bigInteger implementation used (big_rtl.c or big_gmp.c) and the
  support for switch statements with 64-bit values.
- Documentation comments have been added or improved in bigint.s7i,
  integer.s7i, bitsetof.s7i, bitset.s7i, hashsetof.s7i, cc_conf.s7i,
  fil_rtl.c, dir_drv.h, cmd_rtl.c, set_rtl.c, str_rtl.c and striutl.c.
- In set_rtl.c the function setIntersect() has been improved to create
  a smaller intersection result, if possible.
- In set_rtl.c the function setIntersectAssign has been added.
- In setlib.c the function set_intersect_assign has been added.
- In hsh_rtl.c the functions get_helem_elem, get_hash_elem, hshRand
  and hshIdxDefault0 have been added.
- In hshlib.c the functions get_helem_elem, get_hash_elem and
  hsh_rand_key have been added.
- In gkb_x11.c and gkb_win.c the function find_window() has been
  improved to use hshIdxDefault0() instead of hshIdxWithDefault().
- In big_gmp.c the function bigDivRem has been improved to initialize
  the remainder.
- In str_rtl.c and strlib.c the function strelem_memcmp has been
  renamed to memcmp_strelem.
- In str_rtl.c the function strCmpGeneric has been changed to avoid
  calls of memcmp_strelem(), when the string sizes differ. This
  differs from the behaviour of strCompare, but the difference is not
  important, because strCmpGeneric() is only used for string
  comparisons of hash keys (in compiled programs).
- In striutl.c the function conv_to_cstri has been rewritten to return
  the C string, when the function succeeds, and to work without the
  parameter err_info.
- In striutl.c the function stri_to_bstriw has been rewritten to use
  an err_info parameter.
- In striutl.c the functions with loop unrolling inspired by Duff's
  device have been rewritten.
- In striutl.c the loops in conv_to_cstri, stri_to_cstri and
  conv_to_os_stri have been optimized.
- The macro castIntTypeForSwitch has been introduced to support C
  compilers, that do not support switch statements with 64-bit values.
- Definitions of NULL_DEVICE, USE_GETADDRINFO, USE_WINSOCK and
  BIGINT_LIB_DEFINE have been removed from the makefiles.

20180401:
- The new library logfile.s7i has been added. It defines the interface
  logFile. A logFile works like a normal file unless the log file
  has the value STD_NULL. When a logFile has the value STD_NULL string
  expressions written to the logFile are not evaluated. This reduces
  the overhead, when logging is turned off.
- The bas7.sd7 (basic interpreter) example program has been improved.
  The logging is now done via the new logFile type. This improves the
  performance, when no logging is done. Several DATA statements in one
  line are processed correctly now. Support for IF GOSUB and DISPLAY
  statements and for the function COMMAND$ has been added.
- Tests of nested bigInteger for loops have been added to chkbig.sd7.
- A test with the assignment of a hash variable to itself have been
  added to chkhsh.sd7.
- Tests of the replace function have been added to chkstr.sd7.
- In striutl.c the functions conv_from_os_stri, cstri8_to_stri and
  cstri8_buf_to_stri have been improved. Now they call realloc()
  only, when the size has changed. This improves the performance of
  conv_from_os_stri by 32% (measured with gcc and valgrind, when
  reading a directory).
- In str_rtl.c the function strUtf8ToStri has been improved to call
  realloc() only, when the size has changed.
- In cmd_rtl.c the functions add_stri_to_array and
  complete_stri_array have been renamed to addStriToRtlArray and
  completeRtlStriArray respectively. The renamed functions have also
  been improved to work with a simpler parameter list. Together with
  the improvement of conv_from_os_stri this improves the performance
  of cmdLs by 14% (measured with gcc and valgrind, when reading a
  directory).
- In cmdlib.c the function cmd_ls has been rewritten to be based on
  cmdLs. The functions cmp_mem and read_dir have been removed.
- In cmdlib.c the main loop in the function toArrayType has been
  optimized for performance.
- In str_rtl.c the function add_stri_to_array has been renamed to
  addCopiedStriToRtlArray and the function completeRtlStriArray has
  been introduced. The code of addCopiedStriToRtlArray has also been
  improved to work with a simpler parameter list.
- In strlib.c the function add_stri_to_array has been renamed to
  addCopiedStriToArray and the functions freeStriArray and
  completeStriArray have been introduced. The code of
  addCopiedStriToArray has also been improved to work with a simpler
  parameter list.
- The compiler has been improved to optimize the action HSH_CONTAINS,
  when the hash table is constant and contains one element.
- In the compiler (in comp/const.s7i) the actions BLN_ORD, CHR_ICONV1,
  CHR_ORD and INT_ODD have been added to the list of special actions.
  The compiler implements functions, which just call one of the
  special actions as inline functions. This allows optimizations for
  the boolean and char random number generator.
- The compiler (s7c) has been improved (in comp/destr.s7i) to define
  interface destructors, which take all possible implementation
  types into account. Additionally a switch statement is used instead
  of an if-then-else chain. Double entries are also avoided now.
- The function strChRepl has been added to str_rtl.c.
- The compiler has been improved to use strChRepl instead of strRepl,
  to optimize split operations.
- Unnecessary function parameters have been removed in several
  include files of the compiler.
- In flt_rtl.c the function doubleToCharBuffer has been improved to
  determine the integer value of the exponent without calling
  strtol().
- The function freeRtlStriArray has been added to arr_rtl.c.
- Several #define flags in pol_sel.c have been improved.
- The macro CSTRI_LITERAL_TO_STRI has been defined in striutl.h and
  used in analyze.c, arr_rtl.c, cmd_rtl.c, cmd_unx.c, infile.c,
  pcs_unx.c and pcs_win.c.
- Calls of logError have been added to functions in cmd_rtl.c,
  con_inf.c, prclib.c, soc_rtl.c, tim_dos.c, tim_rtl.c, tim_unx.c and
  tim_win.c.
- Documentation comments have been added or improved in cmdlib.c,
  int_rtl.c and tim_rtl.c.
2018-06-04 13:41:59 +00:00
Pietro Cerutti
43646435f4 x11-fm/filerunner: release maintainership 2018-06-04 13:34:20 +00:00
Pietro Cerutti
efbbae0bb1 roundcube-markasjunk2: update to 1.11.2
Changes: https://github.com/johndoh/roundcube-markasjunk2/blob/1.11.2/CHANGELOG
2018-06-04 13:29:00 +00:00
Mathieu Arnold
9f882387b0 Update to latest commit.
Sponsored by:	Absolight
2018-06-04 12:07:48 +00:00
Mathieu Arnold
b5209e9d52 Update to v5.28.0-RC1-17-g94fc6237e5.
Sponsored by:	Absolight
2018-06-04 12:07:39 +00:00
Danilo Egea Gondolfo
08586693fb - Update to 6.4.0 2018-06-04 11:50:12 +00:00
Tobias C. Berner
05fc2b2912 graphics/qt5-wayland: fix plist
the two Qml files are only installed in debug builds.

PR:		228564
Reported by:	tobik
2018-06-04 11:39:27 +00:00
Gleb Popov
4e3824f6cf lang/ghc: Turn off DTrace support as it breaks building with BOOT option when installed ghc also came from ports.
PR:		228727
Reported by:	raichoo <raichoo@googlemail.com>
Approved by:	tcberner (mentor)
2018-06-04 11:03:01 +00:00
Bernhard Froehlich
94772f1e62 www/radicale: Various fixes including startscript
- Fix startscript after FLAVOURing
- Add missing py-passlib dependency (required for authentication)
- Pet portlint and move USES above USE_*

PR:		228313
Submitted by:	myself
Approved by:	Sunpoet Po-Chuan Hsieh (maintainer timeout)
MFH:		2018Q2
2018-06-04 09:43:46 +00:00
Dmitry Marakasov
c22867f2da - Switch to USES=tar
- Simplify installation
- Update WWW
2018-06-04 09:34:24 +00:00
Adriaan de Groot
fad0be02f8 dns/kf5-kdnssd: Fix build error when compiled with MDNSRESPONDER option
KDE ports build with -DQT_NO_CAST_FROM_BYTEARRAY, so the implicit cast
from QByteArray to const char * is not available. Make the necessary
conversion explicit.

This is being upstreamed as well (but would only land in 5.48 or later).

PR:		228735
Submitted by:	ashish
Reported by:	ashish
Reviewed by:	tcberner
2018-06-04 09:34:03 +00:00
TAKATSU Tomonari
85243fb80e - Update to 1.3-1 2018-06-04 08:46:46 +00:00
Dmitry Marakasov
ab8c4cfaa8 - Fix LICENSE
- Switch to new test framework

Approved by:	portmgr blanket
2018-06-04 08:34:26 +00:00
Jimmy Olgeni
fd89a7223f Update devel/erlang-gproc to version 0.8.0. 2018-06-04 08:00:44 +00:00
TAKATSU Tomonari
3dd5831577 - Update to 0.2.1 2018-06-04 07:18:31 +00:00
Olivier Cochard
4a7eb59f34 Due to stability problems with FRR 4.0, reintroduce previous FRR 3.0.3.
Merge watchfrr RC script from frr4 that was improved and update frr4's
conflicts port list.

Sponsored by:	Orange
2018-06-04 05:12:03 +00:00
Martin Wilke
59a89375f0 - Complete the update to 2.0.20180504
Reported by:	Andrjez Tobola
Sponsored by:	iXsystems Inc.
2018-06-04 04:55:48 +00:00
Yuri Victorovich
155478310e New port: databases/cayley: Open-source graph database 2018-06-04 02:29:20 +00:00
Adam Weinberger
59834076e1 Update Mojolicious to 7.83 2018-06-03 23:48:43 +00:00
Don Lewis
85899a4a5c Unbreak qfsm build with clang 6.0 by fixing two instances of:
error: cannot initialize return object of type 'Project *' with an
  rvalue of type 'bool'

Pet portlint.
2018-06-03 23:41:53 +00:00
Don Lewis
8b056a72f7 Unbreak build with clang 6.0 by fixing
error: constant expression evaluates to -1 which cannot be narrowed to
  type 'unsigned int' [-Wc++11-narrowing]

Add LICENSE info.
2018-06-03 23:20:14 +00:00
Greg Lewis
5c008c532a . Update to 5.2.3. 2018-06-03 23:07:07 +00:00
Sergey A. Osokin
0e196114d3 Upgrade to recent unstable version 5.0-rc1.
Switch to new test framework.

ChangeLog:	https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES
2018-06-03 20:12:32 +00:00
Tobias C. Berner
78f4c1b37a Update graphics/skanlite to 2.1.0.1 2018-06-03 20:09:04 +00:00
Tobias C. Berner
954b333fe3 emulators/wine: fix desktop file on amd64
Reviewed by:	gerald
Approved by:	dbn
Differential Revision:	https://reviews.freebsd.org/D15489
2018-06-03 20:03:49 +00:00
Kurt Jaeger
6481e033ea math/givaro: really update WWW 2018-06-03 20:03:47 +00:00
Kurt Jaeger
4451fc07ff math/givaro: update 3.8.0 -> 4.0.4, take maintainer, update WWW
Relnotes:	https://github.com/linbox-team/givaro/blob/master/ChangeLog
2018-06-03 20:03:06 +00:00
Emanuel Haupt
df9d9023d1 Update to 1.8.1 2018-06-03 19:54:01 +00:00
Carlos J. Puga Medina
20c5cfc6de - Update pkg-descr 2018-06-03 19:52:59 +00:00
Carlos J. Puga Medina
d199021f6f devel/darts: unbreak build
checking size of char... configure: error: cannot compute sizeof (char), 77
See `config.log' for more details.
===>  Script "configure" failed unexpectedly.

- Add USES=autoreconf
- Add TIMESTAMP
- Pet portlint, use PLIST_FILES instead of pkg-plist
- Bump PORTREVISION

Reported by:	pkg-fallout
2018-06-03 19:41:28 +00:00
Bradley T. Hughes
1a7ad3933a devel/awscli: Update 1.15.25 -> 1.15.31
Sponsored by:	Miles AS
2018-06-03 19:25:10 +00:00
Bradley T. Hughes
bef6e5e99d devel/py-botocore: Update 1.10.25 -> 1.10.31
Sponsored by:	Miles AS
2018-06-03 19:24:42 +00:00
Jochen Neumeister
9b22fe8be4 sysutils/rundeck: Update to 2.11.3
PR:		228725
Submitted by:	Volodymyr Kostyrko <arcade@b1t.name> (maintainer)
2018-06-03 19:23:21 +00:00
Yuri Victorovich
e41e1cce54 audio/beatslash-lv2: Update 1.0.2 -> 1.0.5
Reported by:	portscout
2018-06-03 19:22:37 +00:00
Carlos J. Puga Medina
f60589c9bf - Update to latest commit
- Set DISTVERSION instead of PORTVERSION
- Bump PORTEPOCH
2018-06-03 19:22:09 +00:00
Jochen Neumeister
c03bc25634 databases/py-Pyrseas: Update to 0.8.0
PR:		228724
Submitted by:	Volodymyr Kostyrko <arcade@b1t.name> (maintainer)
2018-06-03 19:20:28 +00:00
Yuri Victorovich
42f9416eb0 devel/git-town: Update 7.1.1 -> 7.2.0
Also update WWW: http -> https

Reported by:	portscout
2018-06-03 19:12:23 +00:00
Sunpoet Po-Chuan Hsieh
a84999a1b0 Add CARES option
PR:		228712
Submtited by:	<yorik.sar@gmail.com>
2018-06-03 18:17:29 +00:00
Sunpoet Po-Chuan Hsieh
ed557fde7b Update to 0.23.0
- Add ALCHEMY12 option
- While I'm here:
  - Use >= instead of > for some *_DEPENDS
  - Update WWW

Changes:	https://github.com/pandas-dev/pandas/releases
		https://pandas.pydata.org/pandas-docs/version/0.23.0/whatsnew.html
PR:		228545
Submitted by:	John W. O'Brien <john@saltant.com> (maintainer)
2018-06-03 18:17:23 +00:00
Sunpoet Po-Chuan Hsieh
7f48822aeb Update to 3.11.0
Changes:	https://github.com/capistrano/capistrano/releases
2018-06-03 18:17:18 +00:00