summaryrefslogtreecommitdiff
path: root/devel (follow)
Commit message (Collapse)AuthorAgeFilesLines
* devel/cirrus-cli: Update version 0.104.0=>0.105.0Muhammad Moinur Rahman2023-09-282-6/+6
| | | | | Changelog: https://github.com/cirruslabs/cirrus-cli/releases/tag/v0.105.0
* devel/basu: unbreak build with LLD 17Dimitry Andric2023-09-281-0/+14
| | | | | | | | | ld: error: version script assignment of 'global' to symbol 'sd_bus_attach_event' failed: symbol not defined ld: error: version script assignment of 'global' to symbol 'sd_bus_detach_event' failed: symbol not defined ld: error: version script assignment of 'global' to symbol 'sd_bus_get_event' failed: symbol not defined PR: 274148 Reported by: antoine (via bug 273753 exp-run)
* devel/freebsd-gcc12: fix build with libc++ 17Dimitry Andric2023-09-281-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When building relatively recent gcc ports (with C++ in them) against libc++ 17, you get errors similar to: In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/cp/module.cc:208: In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/system.h:239: In file included from /usr/include/c++/v1/vector:321: In file included from /usr/include/c++/v1/__format/formatter_bool.h:20: In file included from /usr/include/c++/v1/__format/formatter_integral.h:32: In file included from /usr/include/c++/v1/locale:202: /usr/include/c++/v1/__locale:546:5: error: '__abi_tag__' attribute only applies to structs, variables, functions, and namespaces 546 | _LIBCPP_INLINE_VISIBILITY | ^ /usr/include/c++/v1/__config:813:37: note: expanded from macro '_LIBCPP_INLINE_VISIBILITY' 813 | # define _LIBCPP_INLINE_VISIBILITY _LIBCPP_HIDE_FROM_ABI | ^ /usr/include/c++/v1/__config:792:26: note: expanded from macro '_LIBCPP_HIDE_FROM_ABI' 792 | __attribute__((__abi_tag__(_LIBCPP_TOSTRING(_LIBCPP_VERSIONED_IDENTIFIER)))) | ^ In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/cp/module.cc:208: In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/system.h:239: In file included from /usr/include/c++/v1/vector:321: In file included from /usr/include/c++/v1/__format/formatter_bool.h:20: In file included from /usr/include/c++/v1/__format/formatter_integral.h:32: In file included from /usr/include/c++/v1/locale:202: /usr/include/c++/v1/__locale:547:37: error: expected ';' at end of declaration list 547 | char_type toupper(char_type __c) const | ^ /usr/include/c++/v1/__locale:553:48: error: too many arguments provided to function-like macro invocation 553 | const char_type* toupper(char_type* __low, const char_type* __high) const | ^ /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/../include/safe-ctype.h:146:9: note: macro 'toupper' defined here 146 | #define toupper(c) do_not_use_toupper_with_safe_ctype | ^ This is because gcc/system.h includes safe-ctype.h which redefines ctype macros such as toupper, tolower, etc to "poison" them. However, it should only include the safe-ctype.h header *after* any C++ headers, such as <list>, <map>, <string>, etc, otherwise these might transitively include internal ctype headers (such as with libc++ 17), causing the above conflicts. This commit moves the safe-ctype.h inclusion to later in gcc/system.h, which solves this issue, and makes it possible to build against libc++ 17. PR: 274037 Approved by: jhb (maintainer) MFH: 2023Q3
* devel/freebsd-gcc9: fix build with libc++ 17Dimitry Andric2023-09-281-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When building relatively recent gcc ports (with C++ in them) against libc++ 17, you get errors similar to: In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/cp/module.cc:208: In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/system.h:239: In file included from /usr/include/c++/v1/vector:321: In file included from /usr/include/c++/v1/__format/formatter_bool.h:20: In file included from /usr/include/c++/v1/__format/formatter_integral.h:32: In file included from /usr/include/c++/v1/locale:202: /usr/include/c++/v1/__locale:546:5: error: '__abi_tag__' attribute only applies to structs, variables, functions, and namespaces 546 | _LIBCPP_INLINE_VISIBILITY | ^ /usr/include/c++/v1/__config:813:37: note: expanded from macro '_LIBCPP_INLINE_VISIBILITY' 813 | # define _LIBCPP_INLINE_VISIBILITY _LIBCPP_HIDE_FROM_ABI | ^ /usr/include/c++/v1/__config:792:26: note: expanded from macro '_LIBCPP_HIDE_FROM_ABI' 792 | __attribute__((__abi_tag__(_LIBCPP_TOSTRING(_LIBCPP_VERSIONED_IDENTIFIER)))) | ^ In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/cp/module.cc:208: In file included from /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/system.h:239: In file included from /usr/include/c++/v1/vector:321: In file included from /usr/include/c++/v1/__format/formatter_bool.h:20: In file included from /usr/include/c++/v1/__format/formatter_integral.h:32: In file included from /usr/include/c++/v1/locale:202: /usr/include/c++/v1/__locale:547:37: error: expected ';' at end of declaration list 547 | char_type toupper(char_type __c) const | ^ /usr/include/c++/v1/__locale:553:48: error: too many arguments provided to function-like macro invocation 553 | const char_type* toupper(char_type* __low, const char_type* __high) const | ^ /wrkdirs/usr/ports/lang/gcc12/work/gcc-12.2.0/gcc/../include/safe-ctype.h:146:9: note: macro 'toupper' defined here 146 | #define toupper(c) do_not_use_toupper_with_safe_ctype | ^ This is because gcc/system.h includes safe-ctype.h which redefines ctype macros such as toupper, tolower, etc to "poison" them. However, it should only include the safe-ctype.h header *after* any C++ headers, such as <list>, <map>, <string>, etc, otherwise these might transitively include internal ctype headers (such as with libc++ 17), causing the above conflicts. This commit moves the safe-ctype.h inclusion to later in gcc/system.h, which solves this issue, and makes it possible to build against libc++ 17. PR: 274037 Approved by: jhb (maintainer) MFH: 2023Q3
* devel/sonarqube-community: update pluginsAlexander Leidinger2023-09-282-10/+10
|
* Add devel/py-pyaml-env: Provides yaml file parsing with environment variable ↵Jesús Daniel Colmenares Oviedo2023-09-284-0/+29
| | | | | | | | | | | | resolution pyaml-env is a very small library that parses a yaml configuration file and it resolves the environment variables, so that no secrets are kept in text. WWW: https://github.com/mkaranasou/pyaml_env PR: 274127
* devel/cmake-doc: Update pkg-plistJason E. Hale2023-09-272-0/+661
| | | | Apparently, we haven't been packaging new files since version 3.16.
* devel/py-types-requests: update 2.31.0.5 → 2.31.0.6Dmitry Marakasov2023-09-282-4/+4
|
* devel/libarea: fix build after 659620f1586eChristoph Moench-Tegeder2023-09-271-0/+2
| | | | | | | | In file included from /wrkdirs/usr/ports/devel/libarea/work/libarea-2752cd9/PythonStuff.cpp:24: /usr/local/include/boost/progress.hpp:23:3: error: This header is deprecated and will be removed. (You can define BOOST_TIMER_ENABLE_DEPRECATED to suppress this error.) # error This header is deprecated and will be removed. (You can define BOOST_TIMER_ENABLE_DEPRECATED to suppress this error.) etc.
* devel/shiboken2: allow with Python 3.10 (+)Dima Panov2023-09-271-1/+1
| | | | Shiboken2 have backported Python 3.10 support from PySide6 since 5.15.8 release
* devel/liborcus: update to 0.18.1 releaseDima Panov2023-09-273-15/+21
|
* devel/mdds: update to 2.1.1 releaseDima Panov2023-09-273-24/+20
|
* devel/boost*: bump all consumers after 1.83.0Dima Panov2023-09-2720-14/+20
|
* devel/cpp-netlib: fix build after Boost-1.83.0 updateDima Panov2023-09-272-1/+20
|
* devel/boost*: update Boost to 1.83.0 release (+)Dima Panov2023-09-2717-230/+222
| | | | Release Notes: https://www.boost.org/users/history/version_1_83_0.html
* devel/blueprint-compiler: fix runtime on big-endianPiotr Kubaj2023-09-273-0/+52
| | | | Upstream commits https://gitlab.gnome.org/jwestman/blueprint-compiler/-/commit/0c0219551026ec9aec5487891e07d1ced3a31112 and https://gitlab.gnome.org/jwestman/blueprint-compiler/-/commit/057c767fbb595bb31d025c76547045273948aab1.
* devel/py-Levenshtein: Update to 0.22.0Dan Langille2023-09-272-5/+5
| | | | | | | re: https://github.com/maxbachmann/Levenshtein/tags While here, update home page to reflect upstream package rename re e6a46adb6f005ab6ab2cdfe9fb69d726a6b0999e
* devel/rubygem-mustache0: Remove expired portMuhammad Moinur Rahman2023-09-274-42/+0
| | | | 2023-09-27 devel/rubygem-mustache0: Use devel/mustache
* devel/aws-c-common: Update to 0.9.4Nuno Teixeira2023-09-272-4/+4
| | | | ChangeLog: https://github.com/awslabs/aws-c-common/releases/tag/v0.9.4
* devel/py-immutabledict: Update to 3.0.0Li-Wen Hsu2023-09-272-4/+4
|
* devel/jenkins: Update to 2.425Li-Wen Hsu2023-09-272-4/+4
| | | | Sponsored by: The FreeBSD Foundation
* devel/cppcheck: update 2.10.3 → 2.12.1Dmitry Marakasov2023-09-264-7/+21
|
* devel/bennugd-core: fix patchDmitry Marakasov2023-09-261-2/+2
|
* devel/py-hypothesmith: update 0.2.3 → 0.3.0Dmitry Marakasov2023-09-262-5/+4
|
* devel/ktextaddons: Update to 1.5.2Jason E. Hale2023-09-263-4/+10
|
* devel/py-sip: Update to 6.7.11Jason E. Hale2023-09-263-8/+7
| | | | devel/py-qt5-sip: Update to 12.12.2
* devel/sdl12-compat: update to 1.2.68Jan Beich2023-09-262-4/+4
| | | | | Changes: https://github.com/libsdl-org/sdl12-compat/releases/tag/release-1.2.68 Reported by: GitHub (watch releases)
* devel/cligen: update to 6.3.0R. Christian McDonald2023-09-262-4/+4
| | | | | | | | ChangeLog: https://github.com/clicon/cligen/releases/tag/6.3.0 PR: 274084 Reported by: rcm@rcm.sh Approved by: dave@dogwood.com (maintainer)
* devel/mill: Update to 0.11.4Jens Grassel2023-09-262-4/+4
| | | | | | | ChangeLog: https://mill-build.com/mill/Changelog.html PR: 274080 Reported by: freebsd-ports@jan0sch.de
* devel/freebsd-git-devtools: Update to 20230925 snapshotJoseph Mingrone2023-09-262-10/+9
| | | | | | | | | This update pulls in src commit 61f8df6a13, which updates mfc-candidates to search by committer and not both author and committer. https://cgit.freebsd.org/src/commit/tools/tools/git/mfc-candidates.sh?id=61f8df6a13a357e1d45c22a2016b87491f10de87 Sponsored by: The FreeBSD Foundation
* devel/fatal: Update 2023.09.18.00 → 2023.09.25.00Yuri Victorovich2023-09-252-4/+4
|
* devel/fbthrift: Update 2023.09.18.00 → 2023.09.25.00Yuri Victorovich2023-09-252-4/+4
|
* devel/folly: Update 2023.09.18.00 → 2023.09.25.00Yuri Victorovich2023-09-252-4/+4
|
* devel/py-types-jsonschema: update to 4.19.0.3Matthew Seaman2023-09-262-4/+4
| | | | | Changes: https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/jsonschema.md Reported by: portscout, repology
* devel/bennugd-core: fix build on 14.xDmitry Marakasov2023-09-251-0/+10
|
* devel/py-types-PyYAML: update 6.0.12.11 → 6.0.12.12Dmitry Marakasov2023-09-252-4/+4
|
* devel/py-types-psycopg2: update 2.9.21.13 → 2.9.21.14Dmitry Marakasov2023-09-252-4/+4
|
* devel/py-types-Pillow: update 10.0.0.2 → 10.0.0.3Dmitry Marakasov2023-09-252-4/+4
|
* devel/py-types-protobuf: update 4.24.0.1 → 4.24.0.2Dmitry Marakasov2023-09-252-4/+4
|
* devel/py-types-requests: update 2.31.0.2 → 2.31.0.5Dmitry Marakasov2023-09-252-4/+4
|
* Qt5: Update to 5.15.10Jason E. Hale2023-09-2536-105/+111
| | | | | | | | | | Update devel/qt5-script* and www/qt5-webengine to 5.15.15-lts Update devel/pyside2* and devel/shiboken2 to 5.15.10 Release note: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/5.15.10/release-note.md PR: 273934 Exp-run by: antoine
* devel/malloy: Update to 0.7.0Joel Bodenmann2023-09-253-8/+10
| | | | | | | | Changelog: https://github.com/Tectu/malloy/releases/tag/0.7.0 PR: 273884 Approved by: zirias (mentor) Differential Revision: https://reviews.freebsd.org/D41974
* devel/jenkins-lts: Update to 2.414.2Li-Wen Hsu2023-09-252-4/+4
| | | | | | MFH: 2023Q3 Security: 402fccd0-5b6d-11ee-9898-00e081b7aa2d Sponsored by: The FreeBSD Foundation
* devel/jenkins: Update to 2.424Li-Wen Hsu2023-09-252-4/+4
| | | | | | MFH: 2023Q3 Security: 402fccd0-5b6d-11ee-9898-00e081b7aa2d Sponsored by: The FreeBSD Foundation
* devel/libffi: fix build with lld 17Dimitry Andric2023-09-241-0/+23
| | | | | | | | | | | | | | | | | | | | As reported in bug 273753#c12, devel/libffi fails to link with lld 17, at least on i386: libtool: link: cc -shared -fPIC -DPIC src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o src/.libs/closures.o src/.libs/tramp.o src/x86/.libs/ffi.o src/x86/.libs/sysv.o -O2 -fstack-protector-strong -Wl,--version-script -Wl,libffi.map -fstack-protector-strong -Wl,-soname -Wl,libffi.so.8 -o .libs/libffi.so.8.1.2 ld: error: version script assignment of 'LIBFFI_BASE_8.0' to symbol 'ffi_java_raw_call' failed: symbol not defined ld: error: version script assignment of 'LIBFFI_CLOSURE_8.0' to symbol 'ffi_prep_java_raw_closure' failed: symbol not defined ld: error: version script assignment of 'LIBFFI_CLOSURE_8.0' to symbol 'ffi_prep_java_raw_closure_loc' failed: symbol not defined cc: error: linker command failed with exit code 1 (use -v to see invocation) This is because the symbols it complains about are not implemented on i386, due to the FFI_NATIVE_RAW_API define being nonzero. Fix it by adding more #if statements to libffi.map.in. PR: 274056 Approved by: kbowling (maintainer) MFH: 2023Q3
* devel/goredo: update 1.30.0 → 1.31.0Yuri Victorovich2023-09-242-5/+4
| | | | Reported by: portscout
* devel/universal-ctags: Update to p6.0.20230917.0Derek Schrock2023-09-242-4/+4
| | | | | | Changelog: https://github.com/universal-ctags/ctags/compare/p6.0.20230723.0...p6.0.20230917.0 PR: 274058
* devel/goreleaser: update to 1.21.0Robert Clausecker2023-09-242-7/+6
| | | | Changelog: https://github.com/goreleaser/goreleaser/releases/tag/v1.21.0
* devel/py-pyhcl: Update to 0.4.5Alessandro Sagratini2023-09-242-4/+4
| | | | | | Changelog: https://github.com/virtuald/pyhcl/releases/tag/0.4.5 PR: 274018
* devel/json-glib: update to 1.8.0Olivier Duchateau2023-09-243-9/+10
| | | | | Changes: https://gitlab.gnome.org/GNOME/json-glib/-/tags/1.8.0-actual PR: 273905