Commit Graph

72 Commits

Author SHA1 Message Date
Dima Panov
55cfbcf56c */*: bump consumers after devel/boost* update
With hat:	office
Sponsored by:	Future Crew, LLC
2024-10-03 13:25:14 +03:00
Dima Panov
95a60ec9e8 security/botan2: update to 2.19.5 release (+)
What's new:

* A reminder that Botan2 reaches end of life at the end of 2024
* CVE-2024-34702: Fix a DoS caused by excessive name constraints. (GH #4187)
* CVE-2024-39312: Fix a name constraint processing error, where if permitted and excluded rules both applied to a certificate, only the permitted rules would be checked. (GH #4187)
* Fix a crash in OCB (GH #3812 #3924)
* During certificate verification, first verify the entire chain of certificates, then perform other validation. (GH #4052 #4045)
* Fix a test failure in compression with certain versions of zlib (GH #4135 #3896)
* Fix some iterator debugging errors in TLS CBC decryption. (GH #4125 #4130)
* Avoid a miscompilation in ARIA when using XCode 14 (GH #3465 #3492 #4053)

Full chamgelog:	https://botan.randombit.net/news.html#version-2-19-5-2024-07-08
2024-08-04 03:16:18 +03:00
Piotr Kubaj
cf87c36466 security/botan2: fix build on powerpc64
In file included from src/lib/block/aes/aes_power8/aes_power8.cpp:15:
/usr/lib/clang/18/include/altivec.h:17365:10: error: '__builtin_altivec_crypto_vcipher' needs target feature power8-vector
 17365 |   return __builtin_altivec_crypto_vcipher(__a, __b);
       |          ^
2024-05-17 00:19:48 +02:00
Dima Panov
fa5cd236f8 security/botan2: update to 2.19.4 release (+)
Cnagelog:	https://botan.randombit.net/news.html#version-2-19-4-2024-02-20

Sponsored by:	Serenity Cybersecurity, LLC
2024-03-18 04:46:13 +03:00
Dima Panov
db616534ff devel/boost: bump consumers after library update 2024-02-13 17:44:22 +03:00
Dima Panov
21d8008e86 devel/boost*: bump all consumers after 1.83.0 2023-09-27 17:36:30 +03:00
Piotr Kubaj
0d9e3c1fa6 security/botan2: force little-endian mode on powerpc64le 2023-08-10 13:21:01 +02:00
Piotr Kubaj
980021a79f security/botan2: enable rng on both BE and LE 2023-08-08 16:58:31 +02:00
Piotr Kubaj
ff0ac8b09e security/botan2: botan2 supports rng on powerpc64le 2023-08-07 21:26:44 +02:00
Rene Ladan
3d9a815d9c all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
2023-06-27 21:34:34 +02:00
Dima Panov
3e45e8e244 */*: bump all direct Boost cunsumers 2023-04-27 21:25:55 +03:00
Dima Panov
e1287d0d12 */*: bump libboost*.so libraries consumert after Boost upgrade 2023-01-16 22:32:07 +03:00
Dima Panov
5616c284b3 security/botan2: update to 2.19.3 security release (+)
A malicious OCSP responder could forge OCSP responses due to a failure
to validate that an embedded certificate was issued by the end-entity
issuing certificate authority.

Security:	CVE-2022-43705
MFH:		2022Q4
2022-11-23 16:32:48 +03:00
Stefan Eßer
fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00
Stefan Eßer
b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00
Baptiste Daroussin
a60b5f495b compiler: use CHOSEN_COMPILER_TYPE instead of COMPILER_TYPE
CHOSEN_COMPILER_TYPE is the only safe variable to let a port know which
typer of compiler has been elected to be used by the framework

PR: 	199098
2022-08-26 09:39:03 +02:00
Dima Panov
4cf39decb3 */*: bump all consumers after recent boost upgrade 2022-08-12 17:46:53 +03:00
Dima Panov
cfc5a397af security/botan2: adjust configure args for openmp option
PR:	265648
2022-08-05 17:31:45 +03:00
Daniel Engberg
21c0bf840c security/botan2: Enable OpenMP support
PR:	265622
2022-08-05 15:41:13 +03:00
Dima Panov
c6fb53f94f security/botan2: update to 2.19.2 release (+)
* Since 2.19.2 Botan has dropped openssl provider, remove corresponding option
* Adopt
2022-06-05 23:52:23 +03:00
Dima Panov
b082b3d13e devel/boost-all: bump all library consumers after boost upgrade
PR:	246106
2022-05-22 23:17:16 +03:00
Ralf van der Enden
126b7de98c security/botan2: Update to 2.19.1 and drop maintainership
- Drop maintainership at the request of the maintainer

Changelog:	https://botan.randombit.net/news.html#version-2-19-1-2022-01-21

PR:		261530
2022-01-29 05:06:48 -05:00
Dmitry Marakasov
fee3247210 security/botan2: add manpages support
Fix hidden dependency on sphinx and introduce optional manpages
support.

PR:		259737
Reported by:	amdmi3
Submitted by:	tremere@cainites.net (maintainer)
2021-12-03 14:39:03 +03:00
Wen Heping
d716d2a9b6 security/botan2: Update to 2.18.2
PR:		259508
Reported by:	tremere@cainites.net(maintainer)
2021-10-29 14:49:33 +08:00
Stefan Eßer
d2b0cb7142 security/botan2: Add CPE information
Approved by:	portmgr (blanket)
2021-10-21 16:27:02 +02:00
Rene Ladan
620968a43a cleanup: drop support for EOL FreeBSD 11.X
Search criteria used:
- 11.4
- OSREL*
- OSVER*
- *_FreeBSD_11

Input from:
- adridg: devel/qca-legacy
- jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds
- sunpoet: security/p5-*OpenSSL*

Reviewed by:	doceng, kde, multimedia, perl, python, ruby, rust
Differential Revision: https://reviews.freebsd.org/D32008
Test Plan: make index
2021-09-30 23:23:30 +02:00
Ralf van der Enden
beac8206c0 security/botan2: update to 2.18.1
Changes: https://botan.randombit.net/news.html#version-2-18-1-2021-05-09

PR:	255778
2021-05-11 09:32:24 -07:00
Kevin Bowling
8d3212f19c security/botan2: update to 2.18.0
Changes https://botan.randombit.net/news.html#version-2-18-0-2021-04-15

PR:		255097
Approved by:	Ralf van der Enden <tremere@cainites.net> (maintainer)
2021-04-15 11:56:15 -07:00
Mathieu Arnold
cf118ccf87 One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
2021-04-07 10:09:01 +02:00
Mathieu Arnold
305f148f48 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
Dima Panov
a8f07a41e4 security/botan2: update to 2.17.3
Changelog: https://botan.randombit.net/news.html#version-2-17-3-2020-12-21

PR:		252441
Submitted by:	fluffy
Approved by:	maintainer
2021-01-05 19:37:52 +00:00
Piotr Kubaj
4122761a7d security/botan2: fix build on powerpc64
aes_power8.cpp needs VSX too apart from crypto:
src/lib/block/aes/aes_power8/aes_power8.cpp:43:49: error: use of undeclared identifier 'vec_vsx_ld'
   return (Altivec64x2)reverse_vec((Altivec8x16)vec_vsx_ld(0, key));;
                                                ^
src/lib/block/aes/aes_power8/aes_power8.cpp:48:36: error: use of undeclared identifier 'vec_vsx_ld'
   return (Altivec64x2)reverse_vec(vec_vsx_ld(0, src));
2020-11-27 13:51:13 +00:00
Mikael Urankar
98812670ff security/botan2: fix build on arm
processor_rng is only implemented on x86 and powerpc64

PR:		251160
Approved by:	Ralf van der Enden (maintainer)
2020-11-16 10:21:25 +00:00
Dmitry Marakasov
c5977c3033 - Update to 2.17.2
- Fix building in presence of older version of botan2 installed in the system by importing upstream patch

PR:		251106
Submitted by:	tremere@cainites.net (maintainer)
Reported by:	amdmi3, acupuncture@cgocable.ca, fastmint@hush.com
2020-11-15 14:07:14 +00:00
Fernando Apesteguía
9897336621 security/botan2: update to 2.17.1
ChangeLog: https://botan.randombit.net/news.html#version-2-17-1-2020-11-07

PR:	251036
Submitted by:	tremere@cainites.net (maintainer)
2020-11-12 08:47:25 +00:00
Mikhail Teterin
5da17b1004 Make prefix-safe by explicitly passing prefix.
Approved by:	maintainer timeout (three weeks+)
2020-10-25 18:31:18 +00:00
Mark Linimon
c6512b0ffb Attempt to fix build on powerpc64le.
Approved by:	portmgr (tier-2 blanket)
2020-09-27 20:32:36 +00:00
Fernando Apesteguía
3c1c493616 security/botan2: update to 2.15.0
ChangeLog: https://botan.randombit.net/news.html#version-2-15-0-2020-07-07

Bumping dependent ports due to library abi version bump.

PR:	248343
Submitted by:	tremere@cainites.net (maintainer)
2020-08-19 05:53:29 +00:00
Dima Panov
f1c9fb6e5a security/botan2: update to 2.14.0 maintenance release
Since 2.14.0 release, ABI version number != shlib minor version number

PR:		245477
Submitted by:	fluffy
Approved by:	maintainer
Relnotes:	https://botan.randombit.net/news.html
2020-04-09 14:51:59 +00:00
Dima Panov
b0599e8d5e security/botan2: update to 2.13.0 release
* Fix a bug introduced in 2.12.0 where TLS::Channel::is_active and TLS::Channel::is_closed
could simultaneously return true. (GH #2174 #2171)
* Use std::shared_ptr instead of boost::shared_ptr in some examples. (GH #2155)
* Add Roughtime client (GH #2143 #1842)
* Add support for XMSS X.509 certificates (GH #2172)
* Add support for X.509 CRLs in FFI layer and Python wrapper (GH #2213)

https://botan.randombit.net/news.html

PR:		243239
Submitted by:	maintainer
Approved by:	maintainer
MFH:		2020Q1
2020-01-10 10:45:10 +00:00
Jan Beich
701aa3bcf8 devel/boost-*: update to 1.72.0
Changes:	http://www.boost.org/users/history/version_1_72_0.html
PR:		241449
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D22136
2019-12-11 17:53:48 +00:00
Dima Panov
5721299f53 - Update botan to 2.12.1 security release
- OPTIONify python dependency

PR:		242194
Submitted by:	fluffy
Approved by:	maintainer
MFH:		2019Q4
2019-11-25 04:20:45 +00:00
Piotr Kubaj
5f11171637 security/botan2: fix build on powerpc64
This port detects architecture based on uname -m and on powerpc64 it prints powerpc, which makes configure script thinks it builds on 32-bit powerpc and causes error because the compiler is configured for 64-bits.

Explicitly configure as ppc64 on powerpc64.

PR:		241375
Approved by:	tremere@cainites.net (maintainer), linimon (mentor)
2019-10-29 23:49:09 +00:00
Dmitri Goutnik
f3f4d1ddfd security/botan2: Update to 2.12.0
Changes:	https://botan.randombit.net/news.html#version-2-12-0-2019-10-07

Also bump PORTREVISION of dependent ports.

PR:		241217
Submitted by:	Ralf van der Enden <tremere@cainites.net> (maintainer)
Approved by:	tz (mentor)
Differential Revision:	https://reviews.freebsd.org/D22000
2019-10-12 22:00:01 +00:00
Dmitri Goutnik
e73360392c security/botan2: Update to 2.11.0
Changes:	https://botan.randombit.net/news.html#version-2-11-0-2019-07-01

PR:		240557
Submitted by:	Ralf van der Enden <tremere@cainites.net> (maintainer)
Approved by:	araujo (mentor)
Differential Revision:	https://reviews.freebsd.org/D21716
2019-09-19 14:44:07 +00:00
Jan Beich
befa71e0f3 devel/boost-*: update to 1.71.0
Changes:	http://www.boost.org/users/history/version_1_71_0.html
PR:		238827
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D20774
2019-08-19 15:35:27 +00:00
Gerald Pfeifer
ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
2019-07-26 20:46:53 +00:00
Jan Beich
9b21a3a084 devel/boost-*: update to 1.70.0
Changes:	http://www.boost.org/users/history/version_1_70_0.html
PR:		235956
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D19303
2019-04-12 06:36:31 +00:00
Antoine Brodin
63f5eeef8a Bump a few PORTREVISIONs after r498529
With hat:	portmgr
2019-04-10 06:18:31 +00:00
Jan Beich
232b8620ca security/botan2: update to 2.10.0
PR:		236450 237019
Submitted by:	Ralf van der Enden (maintainer)
2019-04-08 11:51:32 +00:00