non port: lang/rust/Makefile |
Number of commits found: 314 (showing only 100 on this page) |
Thursday, 3 Jul 2025
|
08:45 Mikael Urankar (mikael)
lang/rust: Update to 1.88.0
Announce: https://blog.rust-lang.org/2025/06/26/Rust-1.88.0/
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.88.0
PR: 287766
Tested by: mikael,pkubaj
096f167 |
Thursday, 5 Jun 2025
|
07:51 Mikael Urankar (mikael)
lang/rust: Update to 1.87.0
Announce: https://blog.rust-lang.org/2025/05/15/Rust-1.87.0/
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.87.0
PR: 286829
Tested by: mikael,pkubaj,Herbert J. Skuhra
2add7bc |
Tuesday, 8 Apr 2025
|
23:22 Charlie Li (vishwin)
lang/rust: remove max LLVM version restriction for PORT_LLVM
LLVM 20 now supported
2924b2c |
08:41 Mikael Urankar (mikael)
lang/rust: Update to 1.86.0
Announce: https://blog.rust-lang.org/2025/04/03/Rust-1.86.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.86.0
Put back rustdoc in _RUST_TOOLS, rustdoc is an integral part of cargo
and has no connection with DOCS.
PR: 285381,285840
Tested by: mikael,pkubaj
11e425b |
Thursday, 27 Mar 2025
|
07:45 Charlie Li (vishwin)
lang/rust: limit PORT_LLVM max to 19
LLVM 20 support currently only exists in trunk.
10b9f3f |
Friday, 21 Mar 2025
|
08:39 Mikael Urankar (mikael)
lang/rust: Update to 1.85.1
While here:
- remove rustdoc from _RUST_TOOLS, it has to be added only when
DOCS option is enabled
- add DOCS to OPTIONS_DEFAULT [1]
- building docs on armv7 is fixed
PR: 285381 [1]
d617602 |
Thursday, 13 Mar 2025
|
07:26 Mikael Urankar (mikael)
lang/rust: do not build the documentation on armv7
A bug [1] prevents documentation from being compiled on this
platform, disable it until it's fixed in a release branch.
[1] https://github.com/rust-lang/rust/pull/137632
Reported by: mmel
3a627a5 |
Friday, 7 Mar 2025
|
17:44 Michael Osipov (michaelo)
lang/rust: Make OpenSSL use the system default truststore in Cargo
Cargo uses curl-rust and git2-rs (which uses curl-rest as well).
Unfortunately, git2-rs calls openssl_probe::init_ssl_cert_env_vars()
unconditionally which breaks the process environment by setting an invalid
value for SSL_CERT_DIR and then the system default truststore is circumvented,
resulting in certificate validation errors even if certctl(8) manages
everything nicely.
Upstream issues:
* https://github.com/alexcrichton/openssl-probe/issues/37
* https://github.com/rust-lang/git2-rs/pull/1130
Reviewed by: jrm (mentor), mikael (rust)
MFH: 2025Q1
Differential Revision: https://reviews.freebsd.org/D49120
0780826 |
Monday, 24 Feb 2025
|
07:55 Mikael Urankar (mikael)
lang/rust: Update to 1.85.0
Announce: https://blog.rust-lang.org/2025/02/20/Rust-1.85.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.85.0
PR: 284884
Tested by: mikael,pkubaj
0bd1fd4 |
Thursday, 30 Jan 2025
|
02:06 Jan Beich (jbeich)
lang/rust182: remove port after 182ff2d0ad1b
917563d |
Monday, 20 Jan 2025
|
11:04 Mikael Urankar (mikael)
lang/rust: lang/rust: Update to 1.84.0
Announce: https://blog.rust-lang.org/2025/01/09/Rust-1.84.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.84.0
PR: 283962
Tested by: mikael,pkubaj
5c453256 |
Sunday, 1 Dec 2024
|
09:23 Mikael Urankar (mikael)
lang/rust: Update to 1.83.0
Announce: https://blog.rust-lang.org/2024/11/28/Rust-1.83.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.83.0
PR: 283000
Tested by: mikael,pkubaj,vishwin
9474c17 |
00:52 Jan Beich (jbeich)
lang/rust: fork 1.82 into a pinned port
A temporary workaround for games/veloren-weekly.
PR: 283039
c3e06e3 |
Saturday, 9 Nov 2024
|
22:45 Alan Somers (asomers)
lang/rust: enable SSE2 by default on i386
Upstream Rust always requires SSE2 for x86. But back in 2017[^1][^2] we
patched lang/rust to disable SSE2 for i386. At the time, it was
reported that some people were still using non-SSE2 capable hardware.
More recently, LLVM bugs have been discovered[^3][^4] that can result in
rounding bugs and reduced accuracy when using f64 on non-SSE hardware.
In weird cases, they can even cause wilder unpredictable behavior, like
segfaults.
Revert our change for the sake of Pentium 4 (and later) users. But add
an SSE2 option. Disabling it will allow the port to be used on Pentium
3 and older CPUs.
[^1]:
https://github.com/freebsd/freebsd-ports/commit/d65b2886b1b3b2135f0b8982de4d9754517acf61
[^2]: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223415
[^3]: https://github.com/rust-lang/rust/issues/114479
[^4]: https://github.com/llvm/llvm-project/issues/44218
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D47227
b039f2e |
Friday, 8 Nov 2024
|
15:09 Charlie Li (vishwin)
lang/rust: remove max LLVM version restriction for PORT_LLVM
98cb899 |
08:24 Mikael Urankar (mikael)
lang/rust: Update to 1.82.0
Announce: https://blog.rust-lang.org/2024/10/17/Rust-1.82.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.82.0
PR: 282516
Tested by: mikael,pkubaj
29120ed |
Friday, 18 Oct 2024
|
03:18 Charlie Li (vishwin)
lang/rust: limit PORT_LLVM max to 18
LLVM 19 support only starts in Rust 1.82; this restriction will be
removed once the update is committed.
2501f52 |
Thursday, 3 Oct 2024
|
13:05 Mikael Urankar (mikael)
lang/rust-nightly: Update to 1.83.0
9e25c68 |
Wednesday, 2 Oct 2024
|
19:38 Yuri Victorovich (yuri)
devel/RStudio: Revert "feat(create-turbo): apply official-starter transform"
This reverts commit 52c0456dd5ec259ac94ee401db79c7ad3569f914.
I have no idea what lead to this commit into devel/RStudio and
lang/rust-nightly to be made.
da2f3f6 |
19:12 Yuri Victorovich (yuri) Author: Turbobot
feat(create-turbo): apply official-starter transform
52c0456 |
Tuesday, 10 Sep 2024
|
10:54 Mikael Urankar (mikael)
lang/rust: Update to 1.81.0
Announce: https://blog.rust-lang.org/2024/09/05/Rust-1.81.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.81.0
PR: 281300
Tested by: mikael,pkubaj,Herbert J. Skuhra
26df8c6 |
Monday, 26 Aug 2024
|
08:07 Mikael Urankar (mikael)
lang/rust: Update to 1.80.1
Announce: https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html
https://blog.rust-lang.org/2024/08/08/Rust-1.80.1.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.80.0
PR: 280490,246993
Tested by: mikael,pkubaj
bc4fedc |
Tuesday, 2 Jul 2024
|
06:44 Piotr Kubaj (pkubaj)
lang/rust: enable rls on powerpc
Builds fine on 13.3-RELEASE and newer.
923194c |
Sunday, 23 Jun 2024
|
14:45 Mikael Urankar (mikael)
lang/rust: reintroduce EXTRA_PATCHES for specific ARCH
It was dropped in 988dc662364d9ab3d7cea82c642068a27b0c1254 but it's
still needed.
Reported by: mandree,mmel
0f41de8 |
Tuesday, 18 Jun 2024
|
12:56 Charlie Li (vishwin)
lang/rust: bump PORT_LLVM minimum version to 17
Source:
https://github.com/rust-lang/rust/commit/1ac0239bd23e06330d7d8ba7fc40584bb13a460d
dbc2286 |
10:59 Mikael Urankar (mikael)
lang/rust: Update to 1.79.0
Announce: https://blog.rust-lang.org/2024/06/13/Rust-1.79.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.79.0
PR: 279707
Tested by: pkubaj,mikael
f709c74 |
Monday, 13 May 2024
|
11:04 Mikael Urankar (mikael)
lang/rust-nightly: Update to 2024-05-07
dcf699a |
11:03 Mikael Urankar (mikael) Author: Dan McGregor
lang/rust: remap debuginfo
Prior to this update, when the rust compiler generates warnings
or errors that refer to source code for the standard library, its
messaging use the build time path, rather than the installed path.
It's probably more useful for most users of rust to not have to
mentally rename files to find the files in question.
PR: 278133
Differential Revision: https://reviews.freebsd.org/D44547
2a1d35b |
11:03 Mikael Urankar (mikael)
lang/rust: Update to 1.78.0
While here, disable RUST_BACKTRACE on ppc64le only
Announce: https://blog.rust-lang.org/2024/05/02/Rust-1.78.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.78.0
PR: 278834
Tested by: pkubaj,mikael
7e86fe1 |
Saturday, 27 Apr 2024
|
14:14 Piotr Kubaj (pkubaj)
lang/rust: enable RUST_BACKTRACE on powerpc since it seems it works now
54f7b9d |
14:14 Piotr Kubaj (pkubaj)
lang/rust: drop bfd on powerpc
0331296 |
Thursday, 11 Apr 2024
|
09:16 Max Brazhnikov (makc)
*/*: convert to cmake:indirect
Convert bunch of ports to USES=cmake:indirect
43d9a13 |
Saturday, 23 Mar 2024
|
09:41 Mikael Urankar (mikael)
lang/rust: Update to 1.77.0
Announce: https://blog.rust-lang.org/2024/03/21/Rust-1.77.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.77.0
PR: 277786
Tested by: mikael
73941e6 |
Monday, 19 Feb 2024
|
14:10 Charlie Li (vishwin)
lang/rust: bump PORT_LLVM minimum version to 16
Source:
https://github.com/rust-lang/rust/commit/7de6d04bc8033644c09fd1273b6fb3164d04fab3
d2fc4ce |
11:59 Mikael Urankar (mikael)
lang/rust: Update to 1.76.0
Announce: https://blog.rust-lang.org/2024/02/08/Rust-1.76.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.76.0
PR: 276920
Tested by: mikael,pkubaj
2252f9d |
Tuesday, 9 Jan 2024
|
14:22 Mikael Urankar (mikael)
lang/rust: Fix REINPLACE_CMD with PORT_LLVM option on
PR: 276033
Reported by: Ale <discipline@tiscali.it>
f5538d2 |
12:13 Mikael Urankar (mikael)
lang/rust: Update to 1.75.0
Announce: https://blog.rust-lang.org/
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.75.0
PR: 276033
Tested by: mikael,pkubaj
ba388fc |
Sunday, 31 Dec 2023
|
00:37 Muhammad Moinur Rahman (bofh)
*/*: Sunset 12.4-RELEASE/12-STABLE from ports tree
- Remove all references to defunct ARCH arm
- Remove all references to defunct ARCH sparc64
- Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64
ARCH
- Remove sysutils/afbinit requires defunct sparc64 ARCH
- Remove all references to bktr driver
- Remove all references to defunct FreeBSD_12
- Remove all references to OSVERSION/OSREL corresponding to 12
- Remove conditionals in Mk/Uses/cabal.mk
- Remove sparc reference from Mk/Uses/qt-dist.mk
- Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64
- Remove BROKEN_FreeBSD_12* from:
- Remove OpenSSL patches from:
- Remove conditional flags for OSVERSION >= 1300000 to fixed flags.
Also move conditional flags for non sparc64/arm ARCH to fixed flags.
Reviewed by: brooks, jbeich, rene, salvadore
Differential Revision: https://reviews.freebsd.org/D42068
bbab7f5 |
Friday, 8 Dec 2023
|
15:02 Mikael Urankar (mikael)
lang/rust: Update to 1.74.1
Announce: https://blog.rust-lang.org/2023/12/07/Rust-1.74.0.html
https://blog.rust-lang.org/2023/11/16/Rust-1.74.1.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.74.0
https://github.com/rust-lang/rust/releases/tag/1.74.1
PR: 275243
Tested by: mikael,pkubaj
c926bbf |
Tuesday, 24 Oct 2023
|
10:21 Mikael Urankar (mikael)
lang/rust: Update to 1.73.0
Announce: https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.73.0
PR: 274499
Tested by: mikael,pkubaj
13de47f |
Monday, 9 Oct 2023
|
15:34 Charlie Li (vishwin)
lang/rust: fix typo uncaught from previous commit
Use ${LLVM_VERSION} provided from USES=llvm for consistency
60fafb9 |
15:30 Charlie Li (vishwin)
lang/rust: resurrect PORT_LLVM as a non-default OPTION
Rust uses LLVM for code generation [0] and bundles their own copy
of a release that they fully support in relation to the rest of
rustc. This however adds to an already intensive build process. For
the benefit of those building from source, resurrect the PORT_LLVM
option, allowing to link with an existing devel/llvm port of the
user's choosing within Rust compatibility ranges. This remains unset
by default.
PORT_LLVM was removed during an era when Rust tracked LLVM trunk,
during the LLVM 7.0 development cycle. Starting with LLVM 8.0, Rust
tracks LLVM releases with upstream cherry-picks, similar to our
base system LLVM process. [1] Additionally, instead of making changes
directly in their bundled LLVM, llvm-wrapper takes care of anything
needed in that area. [2] Issues stemming from this option have since
been resolved or overcome.
[0] https://rustc-dev-guide.rust-lang.org/backend/codegen.html
[1] https://rustc-dev-guide.rust-lang.org/backend/updating-llvm.html
[2]
https://github.com/rust-lang/rust/tree/master/compiler/rustc_llvm/llvm-wrapper
Co-authored-by: Evgeniy Khramtsov <2khramtsov_gmail.com>
Approved by: tobik (rust)
Differential Revision: https://reviews.freebsd.org/D32654
098de5b |
Friday, 8 Sep 2023
|
09:05 Mikael Urankar (mikael)
lang/rust: Update to 1.72.0
Announce: https://blog.rust-lang.org/2023/08/24/Rust-1.72.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.72.0
PR: 244316
Tested by: mikael,pkubaj
fa87481 |
Monday, 17 Jul 2023
|
15:57 Mikael Urankar (mikael)
lang/rust: Update to 1.71.0
Announce: https://blog.rust-lang.org/2023/07/13/Rust-1.71.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.71.0
PR: 272449
Tested by: mikael,pkubaj,vishwin
e3d08df |
Sunday, 16 Jul 2023
|
10:58 Piotr Kubaj (pkubaj)
lang/rust: add LTO option
bf0af79 |
Tuesday, 27 Jun 2023
|
19:34 Rene Ladan (rene)
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>
3d9a815 |
Tuesday, 20 Jun 2023
|
10:29 Mikael Urankar (mikael)
lang/rust: Documentation installation fix.
Add the missing _COMPONENTS for the documentation.
Differential Revision: https://reviews.freebsd.org/D40510
1fbe8fe |
10:29 Mikael Urankar (mikael)
lang/rust: Garbage collect shebangfix
These issues were fixed a year ago.
Differential Revision: https://reviews.freebsd.org/D40508
c073e72 |
Friday, 9 Jun 2023
|
11:38 Mikael Urankar (mikael)
lang/rust: Update to 1.70.0
Announce: https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.70.0
PR: 271797
Tested by: mikael,pkubaj
6b97895 |
Tuesday, 2 May 2023
|
11:45 Mikael Urankar (mikael) Author: Vladyslav Movchan
lang/rust: Add rust-analyzer-proc-macro-srv back to the package
This binary is required for proc macro expansion in rust-analyzer
PR: 271179
69b4156 |
Monday, 24 Apr 2023
|
17:50 Mikael Urankar (mikael)
lang/rust: always build rustdoc
Due to a regression in rust [1], rustdoc is not built anymore but
is required by some ports.
Force the build of rustdoc.
[1]
https://github.com/rust-lang/rust/commit/11e002a001348e7ea035c0cb2665be806e2a832e
PR: 271036
624bde4 |
09:43 Piotr Kubaj (pkubaj)
lang/rust: drop binutils dependency on powerpc
It's not used anymore.
fe87003 |
Sunday, 23 Apr 2023
|
13:13 Mikael Urankar (mikael)
lang/rust: Update to 1.69.0
Announce: https://blog.rust-lang.org/2023/04/20/Rust-1.69.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.69.0
PR: 270953
Tested by: mikael,pkubaj
8cc5eb3 |
Thursday, 30 Mar 2023
|
23:59 Muhammad Moinur Rahman (bofh)
*/*: Sunset 12.3-RELEASE from ports tree
- Mk/bsd.port.mk: mark FreeBSD 12.3 as unsupported.
- Mk/Uses/cabal.mk: Remove the text-2 workaround for 12.3-RELEASE
- biology/wfa2-lib: remove obsolete patch
- databases/mongodb60: remove IGNORE for EOL FreeBSD 12.3
- devel/concurrencpp: remove workaround for EOL FreeBSD 12.3
- devel/electron22: remove IGNORE for EOL FreeBSD 12.3
- devel/malloy: this should build fine on 12.4-RELEASE
- devel/qcoro: remove BROKEN for EOL FreeBSD 12.3
- devel/root: remove workaround for EOL FreeBSD 12.3
- editors/imhex: remove IGNORE for EOL FreeBSD 12.3
- emulators/ppsspp: remove workaround for EOL FreeBSD 12.3
- emulators/rpcs3: remove workaround for EOL FreeBSD 12.3
- emulators/yuzu: remove workaround for EOL 12.3-RELEASE
- games/aquaria: remove support for EOL FreeBSD 12.3
- games/punchy: remove workaround for EOL FreeBSD 12.3
- graphics/cxxplot: remove support for EOL FreeBSD 12.3
- lang/gcc11*: bump a __FreeBSD_version in libphobos to 1204000
- lang/rust: untangle OSVERSION logic a bit
- misc/mbuffer: remove workaround for EOL FreeBSD 12.3 for aarch64
- sysutils/libdisplay-info: remove workaround for EOL FreeBSD 12.3
- www/*chromium: remove IGNORE for EOL FreeBSD 12.3
- x11/hyprpaper: remove workaround for expired FreeBSD 12.3
- x11-wm/labwc: remove workaround for EOL FreeBSD 12.3
- x11-wm/kwinft: remove workaround for EOL FreeBSD 12.3
- www/iridium: remove IGNORE for EOL FreeBSD 12.3
Differential Revision: https://reviews.freebsd.org/D38664
5693229 |
Wednesday, 29 Mar 2023
|
04:44 Piotr Kubaj (pkubaj)
lang/rust: update to 1.68.2
Changelog: https://github.com/rust-lang/rust/releases/tag/1.68.2
a33aed5 |
Tuesday, 28 Mar 2023
|
04:22 Piotr Kubaj (pkubaj)
lang/rust: update to 1.68.1
Changelog: https://github.com/rust-lang/rust/releases/tag/1.68.1
7859c40 |
Thursday, 16 Mar 2023
|
11:11 Mikael Urankar (mikael)
lang/rust: Update to 1.68.0
Announce: https://blog.rust-lang.org/2023/03/09/Rust-1.68.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.68.0
PR: 270080
Tested by: mikael,pkubaj
a22be89 |
Monday, 13 Feb 2023
|
09:38 Mikael Urankar (mikael)
lang/rust: Update to 1.67.1
Announce: https://blog.rust-lang.org/2023/01/26/Rust-1.67.0.html
https://blog.rust-lang.org/2023/02/09/Rust-1.67.1.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.67.0
https://github.com/rust-lang/rust/releases/tag/1.67.1
PR: 269336
Reviewed by: pkubaj
Tested by: mikael,pkubaj
be2a720c |
Thursday, 26 Jan 2023
|
12:23 Piotr Kubaj (pkubaj)
lang/rust: remove support for armv6 and powerpc64 elfv1
Support for both has been removed from lang/rust-bootstrap.
988dc66 |
Wednesday, 11 Jan 2023
|
16:59 Mikael Urankar (mikael)
lang/rust: Update to 1.66.1
Announce: https://blog.rust-lang.org/2023/01/10/Rust-1.66.1.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.66.1
f97d4f5 |
Tuesday, 20 Dec 2022
|
17:36 Mikael Urankar (mikael)
lang/rust: Update to 1.66.0
Announce: https://blog.rust-lang.org/2022/12/15/Rust-1.66.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.66.0
PR: 268415
Exp-run by: antoine
Tested by: mikael,pkubaj
0f9b08f |
Saturday, 26 Nov 2022
|
00:09 Piotr Kubaj (pkubaj)
lang/rust: don't link to libatomic on armv7
Reported by: mikael
d5e92a6 |
Thursday, 24 Nov 2022
|
18:17 Piotr Kubaj (pkubaj)
lang/rust: fix build on armv7 the same way as for powerpc
f0ee4a8 |
Friday, 18 Nov 2022
|
06:56 Piotr Kubaj (pkubaj)
lang/rust: allow using the default gcc on powerpc instead of forcing gcc12
b09414d |
Thursday, 17 Nov 2022
|
07:06 Mikael Urankar (mikael)
lang/rust: Update to 1.65.0
Announce: https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.65.0
PR: 267622
Reviewed by: tokib, pkubaj
Tested by: mikael, pkubaj
af39fba |
Sunday, 30 Oct 2022
|
12:07 Mikael Urankar (mikael)
lang/rust: Update to 1.64.0
Announce: https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.64.0
PR: 267173
264a6c5 |
Friday, 9 Sep 2022
|
20:32 Daniel Engberg (diizzy)
*/*: Update path set in BUILD_DEPENDS for CMake
Commit b23ea4e2d2f51b53d8915fe9fd7b4efbdd575e38 changed its location to
devel/cmake-core
Approved by: portmgr (blanket)
e942e56 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
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)
b7f0544 |
Thursday, 25 Aug 2022
|
14:49 Baptiste Daroussin (bapt)
rust: bring back update to 1.63
Revert back the revert of the update of rust and related commits
This revert was drive by beside validation by portmgr via exp-run
and not respectful of the etiquette we have between committers
This reverts commit 8ecb1f8141144c1603eb4026122d2e60eeaccd64.
This reverts commit 04d257baa182926cff158f32cf459e560426add0.
This reverts commit 2757c63bd0e6d01f9f0657fe03bb3a7b49adcae2.
This reverts commit 75f4713de5e3fbd1c6a0cb572e08121814a4072e.
This reverts commit e88e592111c86fdd1c0ac8717dbef9342e15e27c.
This reverts commit 783c056d7d681d66e2c5c59251c275d65274028e.
With hat: portmgr
b9b250f |
10:49 Piotr Kubaj (pkubaj)
Revert "lang/rust: Update to 1.63.0"
This reverts commit f36cc819accadae1fefc14c203e5fbe9c74e1492.
I asked for an exp-run for powerpc and powerpc64 on a recently provided
cluster machine but got no reply.
PR: 265915
8ecb1f8 |
08:50 Mikael Urankar (mikael)
lang/rust: Update to 1.63.0
Announce: https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.63.0
Tested by: mikael, pkubaj
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D36247
f36cc81 |
Friday, 22 Jul 2022
|
06:37 Mikael Urankar (mikael)
lang/rust: Update to 1.62.1
Announce: https://blog.rust-lang.org/2022/07/19/Rust-1.62.1.html
ChangeLog: https://github.com/rust-lang/rust/releases/tag/1.62.1
f1fb151 |
Wednesday, 20 Jul 2022
|
14:22 Tobias C. Berner (tcberner)
lang: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alex Dupre <ale@FreeBSD.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Alonso Cardenas Marquez <acm@FreeBSD.org>
* Andreas Klemm <andreas@klemm.gtn.com>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrey Zakhvatov
* Anton Berezin <tobez@FreeBSD.org>
* Anton Berezin <tobez@tobez.org>
* Anton Shterenlikht
* Ashish SHUKLA <ashish@FreeBSD.org>
* Bob Eager <bob@eager.cx>
* Bruce M Simpson
* Bruce M. Simpson
* Christoph Mallon <christoph.mallon@gmx.de>
* Christopher Elkins <chrise@scardini.com>
* Christopher Key <cjk32@cam.ac.uk>
* Chuck Robey <chuckr@FreeBSD.org>
* Cyrille Lefevre <clefevre@citeweb.net>
* Dan Rench <citric@cubicone.tmetic.com>
* Danilo Egea Gondolfo <danilogondolfo@gmail.com>
* Dario Freni <saturnero@gufi.org>
* David Kalliecharan <dave@dal.ca>
* David Naylor <dbn@FreeBSD.org>
* David Naylor <dbn@dragon.local>
* David O'Brien (obrien@NUXI.com)
* David O'Brien (obrien@NUXI.org)
* David O'Brien <obrien@NUXI.org>
* David O'Brien <obrien@cs.ucdavis.edu>
* Dereckson <dereckson@gmail.com>
* Devon H. O'Dell <devon.odell@gmail.com>
* Dmitry Sivachenko <demon@FreeBSD.org>
* Don Croyle <croyle@gelemna.org>
* Douglas Anestad <yotta@dougdidit.com>
* Edwin Groothuis (edwin@mavetju.org)
* Edwin Groothuis <edwin@mavetju.org>
* Eugene Ossintsev
* Frank Fischer
* Frank Gruender <elwood@mc5sys.in-berlin.de>
* Frederic Cambus
* Gea-Suan Lin <gslin@gslin.org>
* Gerald Pfeifer <gerald@FreeBSD.org>
* Giuseppe Pilichi aka Jacula Modyun <jacula@gmail.com>
* GreenDog <fiziologus@gmail.com>
* Gustau Perez i Querol <gustau.perez@gmail.com>
* Guy Antony Halse <guy@rucus.ru.za.za>
* Herve Quiroz <hq@FreeBSD.org>
* Hye-Shik Chang
* Hye-Shik Chang <perky@fallin.lv>
* Hye-Shik Chang <perky@python.or.kr>
* Iblis Lin <iblis@hs.ntnu.edu.tw>
* James Bailie <jimmy@mammothcheese.ca>
* James FitzGibbon <jfitz@FreeBSD.org>
* Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
* Jean-Yves Lefort <jylefort@FreeBSD.org>
* Jeff Brown <jabrown@caida.org>
* Jeremy Norris <ishmael27@home.com>
* Jing-Tang Keith Jang <keith@FreeBSD.org>
* John Hein <jhein@symmetricom.com>
* John Marino <marino@FreeBSD.org>
* John Merryweather Cooper
* John Merryweather Cooper <coop9211@uidaho.edu>
* John Merryweather Cooper et al
* Joseph Koshy <jkoshy@FreeBSD.org>
* Josh Elsasser <jre@vineyard.net>
* Josh Gilliam <josh@quick.net>
* Julian H. Stacey <jhs@FreeBSD.org>
* Julian Stecklina
* Jyun-Yan You <jyyou@cs.nctu.edu.tw>
* Katsuji ISHIKAWA <katsuji.ishikawa@gmail.com>
* Kimura Fuyuki <fuyuki@hadaly.org>
* Kimura Fuyuki <fuyuki@mj.0038.net>
* Kimura Fuyuki <fuyuki@nigredo.org>
* Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
* Kubilay Kocak <koobs@FreeBSD.org>
* Lars Thegler <lth@FreeBSD.org>
* Lev Walkin <vlm@lionet.info>
* Li-Wen Hsu <lwhsu@FreeBSD.org>
* Mahdi Mokhtari <mokhi64@gmail.com>
* Marcin Cieslak <saper@SYSTEM.PL>
* Martin Matuska <mm@FreeBSD.org>
* Matthew Hunt <mph@FreeBSD.org>
* Michael Butschky <butsch@computi.erols.com>
* Michael Johnson <ahze@FreeBSD.org>
* Mitsuru YOSHIDA <mitsuru@riken.jp>
* Muhammad Moinur Rahman <5u623l20@gmail.com>
* Neal Nelson <ports@nicandneal.net>
* Nicola Vitale <nivit@FreeBSD.org>
* Nils M Holm <nmh@t3x.org>
* Oliver Braun <obraun@informatik.unibw-muenchen.de>
* Oliver Breuninger <ob@seicom.NET>
* Patrick Li <pat@databits.net>
* Pawel Worach <pawel.worach@gmail.com>
* Pedro F. Giffuni <giffunip@asme.org>
* Pedro Giffuni
* Pedro Giffuni <giffunip@asme.org>
* Pete French <pete@twisted.org.uk>
* Peter Schuller <peter.schuller@infidyne.com>
* Peter van Heusden <pvh@egenetics.com>
* Phillip Neumann <pneumann@gmail.com>
* Piotr Kubaj <pkubaj@anongoth.pl>
* Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Pontus Stenetorp <ninjin@kth.se>
* Ralf S. Engelschall <rse@engelschall.com>
* Rick van der Zwet <rick@wzoeterwoude.net>
* Rob Zinkov
* Roland Jesse <roland.jesse@gmx.net>
* Romain Tartiere <romain@blogreen.org>
* Ryan Steinmetz <zi@FreeBSD.org>
* Sahil Tandon <sahil@tandon.net>
* Sergei Kolobov <sergei@kolobov.com>
* Sergey A. Osokin <osa@FreeBSD.org>
* Sergey Skvortsov <skv@protey.ru>
* Simon Marlow <simonmar@microsoft.com>
* Simun Mikecin <numisemis@yahoo.com>
* Stanislav Sedov <ssedov@mbsd.msk.ru>
* Stephen Weeks <sweeks@sweeks.com>
* Steven G. Kargl
* Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Sylvio Cesar <sylvio@FreeBSD.org>
* Thomas Gellekum <tg@FreeBSD.org>
* Timothy Beyer <beyert@cs.ucr.edu>
* Timothy Bourke <timbob@bigpond.com>
* Tom Judge <tj@FreeBSD.org>
* Veniamin Gvozdikov <vg@FreeBSD.org>
* Vitaly Magerya <vmagerya@gmail.com>
* Wen Heping <wenheping@gmail.com>
* Wen Heping <wenhping@gmail.com>
* Wes Peters <wes@softweyr.com>
* Ying-Chieh Liao <ijliao@FreeBSD.org>
* Yukihiro Nakai <Nakai@technologist.com>
* Yukihiro Nakai <nakai@FreeBSD.org>
* Zach Garner <zach@neurosoft.org>
* aaron@FreeBSD.org
* andrewb@cs.cmu.edu
* arved
* chinsan
* chuckr
* dd
* erik@smluc.org
* gahr
* gahr@FreeBSD.org
* gpalmer
* hsu
* ijliao
* jasone
* jkh
* jkoshy
* jmacd
* jmacd@FreeBSD.org
* jmz
* js@jeannot.org
* jseger@FreeBSD.org
* kappa@FreeBSD.org.ua
* kbyanc
* msmith@gsoft.com.au
* mutoh@openedu.org
* netchild@FreeBSD.org
* patrick
* pst
* rene@FreeBSD.org
* ruslan@shevchenko.kiev.ua
* stas
* tobez
With hat: portmgr
f98ae56 |
Monday, 18 Jul 2022
|
12:21 Mikael Urankar (mikael)
lang/rust: don't overwrite RUST_BOOTSTRAP_VERSION
It was unintentionally overwritten with the update.sh script
This fixes building rust-nightly
84ef385 |
Saturday, 2 Jul 2022
|
13:47 Mikael Urankar (mikael)
lang/rust: Update to 1.62.0
Announce: https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html
ChangeLog: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1610-2022-06-30
Tested by: mikael, pkubaj
Differential Revision: https://reviews.freebsd.org/D35675
558a5e4 |
Tuesday, 31 May 2022
|
13:06 Mikael Urankar (mikael)
lang/rust: Update to 1.61.0
Announce: https://blog.rust-lang.org/2022/05/19/Rust-1.61.0.html
ChangeLog: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1610-2022-05-19
Reviewed by: pkubaj
Differential Revision: https://reviews.freebsd.org/D35335
aa578f2 |
Tuesday, 3 May 2022
|
10:28 Tobias Kortkamp (tobik)
lang/rust-nightly: Update to 1.62.0.20220502
https://github.com/rust-lang/rust/compare/f4a7ce997a1d7546d2b737f8b87d36907bcea2ad...bed05e996e37e44b1a3980b84754af621fd3c4ce
cb6d9d1 |
Sunday, 1 May 2022
|
16:39 Mikael Urankar (mikael)
lang/rust: Update to 1.60.0
- Switch to using "x.py dist" instead of "x.py build" in the do-build phase as
we are missing the rustc-dev component on nightly
- Revert part of [1] as it causes cross build problem with
lang/rust-bootstrap@powerpc
- Mark devel/racer as deprecated: it's hard to maintain due to recurrent build
problem
and it's not actively maintained. Upstream advises to use
devel/rust-analyzer instead.
[1]
https://github.com/rust-lang/rust/commit/07dae5a97b64100f5abd511f1e2d5a6263a54006
Announce: https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html
ChangeLog: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1600-2022-04-07
Reviewed by: tobik
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D34823
e57dfbf |
Tuesday, 29 Mar 2022
|
06:14 Piotr Kubaj (pkubaj)
lang/rust: switch back to base LLVM on powerpc
Base LLVM in 13.1 now can build Rust.
7686fc0 |
Wednesday, 23 Mar 2022
|
16:55 Piotr Kubaj (pkubaj)
lang/rust: fix build on powerpc on FreeBSD 13.1 and newer
1. When building with RUST_BACKTRACE=1, cargo segfaults:
pre-installed rustc not detected: [Errno 2] No such file or directory: 'rustc'
falling back to auto-detect
warning: sqlite3 not available in python, skipping build directory lock
please file an issue on rust-lang/rust
this is not a problem for non-concurrent x.py invocations
Building rustbuild
running: /wrkdirs/usr/ports/lang/rust/work/bootstrap/bin/cargo build
--manifest-path
/wrkdirs/usr/ports/lang/rust/work/rustc-1.59.0-src/src/bootstrap/Cargo.toml
--verbose --verbose --frozen
Traceback (most recent call last):
File "x.py", line 27, in <module>
bootstrap.main()
File
"/wrkdirs/usr/ports/lang/rust/work/rustc-1.59.0-src/src/bootstrap/bootstrap.py",
line 1313, in main
bootstrap(help_triggered)
File
"/wrkdirs/usr/ports/lang/rust/work/rustc-1.59.0-src/src/bootstrap/bootstrap.py",
line 1284, in bootstrap
build.build_bootstrap()
File
"/wrkdirs/usr/ports/lang/rust/work/rustc-1.59.0-src/src/bootstrap/bootstrap.py",
line 1031, in build_bootstrap
run(args, env=env, verbose=self.verbose)
File
"/wrkdirs/usr/ports/lang/rust/work/rustc-1.59.0-src/src/bootstrap/bootstrap.py",
line 182, in run
raise RuntimeError(err)
RuntimeError: failed to run:
/wrkdirs/usr/ports/lang/rust/work/bootstrap/bin/cargo build --manifest-path
/wrkdirs/usr/ports/lang/rust/work/rustc-1.59.0-src/src/bootstrap/Cargo.toml
--verbose --verbose --frozen
From dmesg:
pid 27701 (cargo), jid 198, uid 0: exited on signal 11
2. Builds with the base LLVM 13 fail:
ld: error: CallSiteSplitting.cpp:(function
llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> >
>::operator=(llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> > >&&):
.text._ZN4llvm15SmallVectorImplINSt3__14pairIPNS_10BasicBlockENS_11SmallVectorINS2_IPNS_8ICmpInstEjEELj2EEEEEEaSEOSB_+0xB0):
relocation R_PPC_PLTREL24 out of range: -33582208 is not in [-33554432,
33554431]
ld: error: CallSiteSplitting.cpp:(function
llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> >
>::operator=(llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> > >&&):
.text._ZN4llvm15SmallVectorImplINSt3__14pairIPNS_10BasicBlockENS_11SmallVectorINS2_IPNS_8ICmpInstEjEELj2EEEEEEaSEOSB_+0xC8):
relocation R_PPC_PLTREL24 out of range: -33582232 is not in [-33554432,
33554431]
ld: error: CallSiteSplitting.cpp:(function
llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> >
>::operator=(llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> > >&&):
.text._ZN4llvm15SmallVectorImplINSt3__14pairIPNS_10BasicBlockENS_11SmallVectorINS2_IPNS_8ICmpInstEjEELj2EEEEEEaSEOSB_+0x1A0):
relocation R_PPC_PLTREL24 out of range: -33582448 is not in [-33554432,
33554431]
ld: error: CallSiteSplitting.cpp:(function
llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> >
>::operator=(llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> > >&&):
.text._ZN4llvm15SmallVectorImplINSt3__14pairIPNS_10BasicBlockENS_11SmallVectorINS2_IPNS_8ICmpInstEjEELj2EEEEEEaSEOSB_+0x2B8):
relocation R_PPC_PLTREL24 out of range: -33582728 is not in [-33554432,
33554431]
ld: error: CallSiteSplitting.cpp:(function
llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> >
>::operator=(llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> > >&&):
.text._ZN4llvm15SmallVectorImplINSt3__14pairIPNS_10BasicBlockENS_11SmallVectorINS2_IPNS_8ICmpInstEjEELj2EEEEEEaSEOSB_+0x2FC):
relocation R_PPC_PLTREL24 out of range: -33582796 is not in [-33554432,
33554431]
ld: error: CallSiteSplitting.cpp:(function
llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> >
>::operator=(llvm::SmallVectorImpl<std::__1::pair<llvm::BasicBlock*,
llvm::SmallVector<std::__1::pair<llvm::ICmpInst*, unsigned int>, 2u> > >&&):
.text._ZN4llvm15SmallVectorImplINSt3__14pairIPNS_10BasicBlockENS_11SmallVectorINS2_IPNS_8ICmpInstEjEELj2EEEEEEaSEOSB_+0x348):
relocation R_PPC_PLTREL24 out of range: -33582872 is not in [-33554432,
33554431]
ld: error: CallSiteSplitting.cpp:(function _GLOBAL__sub_I_CallSiteSplitting.cpp:
.text._GLOBAL__sub_I_CallSiteSplitting.cpp+0x80): relocation R_PPC_PLTREL24 out
of range: -33583000 is not in [-33554432, 33554431]
ld: error: CallSiteSplitting.cpp:(function _GLOBAL__sub_I_CallSiteSplitting.cpp:
.text._GLOBAL__sub_I_CallSiteSplitting.cpp+0xB0): relocation R_PPC_PLTREL24 out
of range: -33583208 is not in [-33554432, 33554431]
ld: error: ConstantHoisting.cpp:(function
llvm::initializeConstantHoistingLegacyPassPass(llvm::PassRegistry&):
.text._ZN4llvm40initializeConstantHoistingLegacyPassPassERNS_12PassRegistryE+0x94):
relocation R_PPC_PLTREL24 out of range: -33583360 is not in [-33554432,
33554431]
ld: error: ConstantHoisting.cpp:(function
initializeConstantHoistingLegacyPassPassOnce(llvm::PassRegistry&):
.text._ZL44initializeConstantHoistingLegacyPassPassOnceRN4llvm12PassRegistryE+0x50):
relocation R_PPC_PLTREL24 out of range: -33583396 is not in [-33554432,
33554431]
ld: error: ConstantHoisting.cpp:(function llvm::createConstantHoistingPass():
.text._ZN4llvm26createConstantHoistingPassEv+0x3C): relocation R_PPC_PLTREL24
out of range: -33583584 is not in [-33554432, 33554431]
ld: error: ConstantHoisting.cpp:(function llvm::createConstantHoistingPass():
.text._ZN4llvm26createConstantHoistingPassEv+0x78): relocation R_PPC_PLTREL24
out of range: -33583548 is not in [-33554432, 33554431]
ld: error: ConstantHoisting.cpp:(function llvm::createConstantHoistingPass():
.text._ZN4llvm26createConstantHoistingPassEv+0x98): relocation R_PPC_PLTREL24
out of range: -33583580 is not in [-33554432, 33554431]
ld: error: ConstantHoisting.cpp:(function llvm::createConstantHoistingPass():
.text._ZN4llvm26createConstantHoistingPassEv+0x118): relocation R_PPC_PLTREL24
out of range: -33583852 is not in [-33554432, 33554431]
ld: error: ConstantHoisting.cpp:(function
llvm::ConstantHoistingPass::findConstantInsertionPoint(llvm::consthoist::ConstantInfo
const&) const:
.text._ZNK4llvm20ConstantHoistingPass26findConstantInsertionPointERKNS_10consthoist12ConstantInfoE+0x240):
relocation R_PPC_PLTREL24 out of range: -33584892 is not in [-33554432,
33554431]
ld: error: ConstantHoisting.cpp:(function
llvm::ConstantHoistingPass::findConstantInsertionPoint(llvm::consthoist::ConstantInfo
const&) const:
.text._ZNK4llvm20ConstantHoistingPass26findConstantInsertionPointERKNS_10consthoist12ConstantInfoE+0x270):
relocation R_PPC_PLTREL24 out of range: -33584924 is not in [-33554432,
33554431]
ld: error: ConstantHoisting.cpp:(function
llvm::ConstantHoistingPass::findConstantInsertionPoint(llvm::consthoist::ConstantInfo
const&) const:
.text._ZNK4llvm20ConstantHoistingPass26findConstantInsertionPointERKNS_10consthoist12ConstantInfoE+0x294):
relocation R_PPC_PLTREL24 out of range: -33584944 is not in [-33554432,
33554431]
ld: error: ConstantHoisting.cpp:(function
llvm::ConstantHoistingPass::findConstantInsertionPoint(llvm::consthoist::ConstantInfo
const&) const:
.text._ZNK4llvm20ConstantHoistingPass26findConstantInsertionPointERKNS_10consthoist12ConstantInfoE+0x90C):
relocation R_PPC_PLTREL24 out of range: -33586536 is not in [-33554432,
33554431]
Use LLVM 12 to build.
c6547a4 |
Tuesday, 15 Mar 2022
|
09:51 Mikael Urankar (mikael)
lang/rust: Update to 1.59.0
Changes: https://blog.rust-lang.org/FIXME/Rust-1.59.0.html
PR: 262449
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D34471
53e4457 |
Thursday, 3 Feb 2022
|
14:02 Tobias Kortkamp (tobik)
lang/rust: Update to 1.58.1
https://blog.rust-lang.org/2022/01/20/Rust-1.58.1.html
PR: 261449
Security: ee26f513-826e-11ec-8be6-d4c9ef517024
bd3a927 |
Monday, 17 Jan 2022
|
11:56 Tobias Kortkamp (tobik)
lang/rust: Update to 1.58.0
Changes: https://blog.rust-lang.org/2022/01/13/Rust-1.58.0.html
PR: 261150
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D33864
1835888 |
Thursday, 23 Dec 2021
|
10:10 Tobias Kortkamp (tobik)
lang/rust: Add riscv64 (riscv64gc-unknown-freebsd) support
A kernel with COMPAT_FREEBSD11 is required for now like on all
other FreeBSD archs. FreeBSD11 never had riscv64 support, so
GENERIC does not have it and a kernel rebuild is required. The
same issue existed on powerpc64le.
The riscv64gc-unknown-freebsd target was upstreamed and will
be part of Rust 1.59.0 (2021-02-24).
Reviewed by: jrtc27, pkubaj
Differential Revision: https://reviews.freebsd.org/D32881
96eec29 |
Sunday, 5 Dec 2021
|
12:35 Tobias Kortkamp (tobik)
lang/rust: Update to 1.57.0
- Unbreak build with LibreSSL 3.4.x [0]
- Disable backtrace's libunwind backend on armv* since it or
libunwind in base seem to be buggy and cause rustc to crash when
building some consumers [1]
- Follow rust-nightly in d5f09dc31fcfdb77b69c86b9093bf67ec67653d9
and reenable hardlinks in the build
Changes: https://blog.rust-lang.org/2021/12/02/Rust-1.57.0.html
PR: 259738 [0]
PR: 259799 [1]
PR: 260140
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D33190
With hat: rust
237b36f |
Thursday, 25 Nov 2021
|
20:01 Tobias Kortkamp (tobik)
lang/rust*: Move the build artifacts out of source
Move the build artifacts out of source to decrease likelihood
of ccache misses because of changed build directory prefix
(rustc-1.55.0-src/ vs. rustc-1.56.0-src/) per PR 246245.
c4816e4 |
Wednesday, 24 Nov 2021
|
09:05 Tobias Kortkamp (tobik)
lang/rust: stable/13 has the kern.proc.pathname fixes too
864a4c2 |
Sunday, 31 Oct 2021
|
18:20 Tobias Kortkamp (tobik)
lang/rust-nightly: Update to 1.58.0.20211030
Make the no-hardlinks-patches conditional and move them to
files/no-hardlinks.
Newer kernels should return sane kern.proc.pathname values for
hardlinks which will hopefully help avoid the intermittent "can't
find crate for `std`" build failures we had on the package
builders.
Thanks to kib@ for fixing kernel behavior. Now let's see if it
makes a difference for lang/rust-nightly.
Changes: https://github.com/rust-lang/rust/compare/25ec8273855fde2d72ae877b397e054de5300e10...e249ce6b2345587d6e11052779c86adbad626dff
PR: 248184
d5f09dc |
Monday, 25 Oct 2021
|
08:46 Tobias Kortkamp (tobik)
lang/rust: Update to 1.56.0
- Drop codegen-units=1 again as it seems to negatively impact build
time for some people [1]
Changes: https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html
PR: 256099 [1]
PR: 259251
Reviewed by: jbeich, mikael, pkubaj
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D32553
124261f |
Friday, 8 Oct 2021
|
11:22 Bernhard Froehlich (decke)
lang/rust: Add CPE information
Approved by: portmgr (blanket)
1bcf990 |
Wednesday, 6 Oct 2021
|
12:01 Tobias Kortkamp (tobik)
lang/rust-nightly: Update to 1.57.0.20211005
Changes: https://github.com/rust-lang/rust/compare/f586d79d183d144e0cbf519e29247f36670e2076...25ec8273855fde2d72ae877b397e054de5300e10
15d6116 |
Friday, 1 Oct 2021
|
00:14 Jan Beich (jbeich)
lang/rust: unbreak on armv6 after 620968a43a5f
error: linking with `/wrkdirs/usr/ports/lang/rust/work/cc-wrapper` failed: exit
status: 127
Pointy hat to: jbeich
852b05a |
Thursday, 30 Sep 2021
|
21:23 Rene Ladan (rene)
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
620968a |
Sunday, 19 Sep 2021
|
09:03 Tobias Kortkamp (tobik)
lang/rust: Update to 1.55.0
- Set codegen-units=1 [1]
- Add hack to skip cargo update on git sources as a step towards solving [2]
- Fix 'capacity overflow' panics on armv* [3]
Changes: https://blog.rust-lang.org/2021-09-09/Rust-1.55.0.html
PR: 258337
PR: 256099 [1]
PR: 256581 [2]
PR: 257419 [3]
Reviewed by: mikael, pkubaj
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D31872
With hat: rust
6f1fefb |
Monday, 6 Sep 2021
|
20:04 Mikael Urankar (mikael)
lang/rust: don't overwrite hwcap with the return value of elf_aux_info(3)
Reported by: jbeich
473a0e3 |
19:28 Tobias Kortkamp (tobik)
lang/rust*: Mk/Uses/cargo.mk: Move TMPDIR to WRKDIR
rustc stashes intermediary files in TMPDIR (default /tmp) which
might cause issues for users that for some reason space limit their
/tmp. WRKDIR should have plenty of space.
Other ports that use rustc might be affected too, but set it only
in USES=cargo and lang/rust* ports for now.
PR: 258126
With hat: rust
b1670e2 |
13:53 Mikael Urankar (mikael)
lang/rust: Fix for missing getauxval function on FreeBSD
Use FreeBSD's elf_aux_info for detecting ARM HW features
PR: 258198
Tested by: Bob Prohaska <fbsd@www.zefox.net>
74c66d5 |
Saturday, 28 Aug 2021
|
13:38 Mikael Urankar (mikael) Author: pouet
lang/rust: Update to 1.54.0
- Update lang/rust to 1.54.0
- Update devel/racer to 2.1.48
- Fix various consumers
Changes: https://blog.rust-lang.org/2021/07/29/Rust-1.54.0.html
Reviewed by: tobik, pkubaj
Differential Revision: https://reviews.freebsd.org/D31617
With hat: rust
55dbdde |
Sunday, 27 Jun 2021
|
05:39 Tobias Kortkamp (tobik)
lang/rust: Update to 1.53.0
Changes: https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html
PR: 256653
Reviewed by: mikael, pkubaj
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D30790
With hat: rust
f897ded |
Monday, 14 Jun 2021
|
20:51 Tobias Kortkamp (tobik)
lang/rust-nightly: Try to reduce memory usage/pressure
Try to reduce memory usage/pressure by only using one code generation
unit.
"This flag [codegen-units] controls how many code generation units
the crate is split into. It takes an integer greater than 0.
When a crate is split into multiple codegen units, LLVM is able to
process them in parallel. Increasing parallelism may speed up
compile times, but may also produce slower code. Setting this to
1 may improve the performance of generated code, but may be slower
to compile."
https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
PR: 256099
Suggested by: Daniel Engberg
294f0c5 |
Number of commits found: 314 (showing only 100 on this page) |