- Add workaround to fix build when CC/CXX have "clang" in them [1]
- Respect AR to fix build with external toolchains [2]
- Force rebuild all consumers to catch regressions early
Changes: https://blog.rust-lang.org/2020/04/23/Rust-1.43.0.html
PR: 238556 [1], 245583 [2]
Reported by: Matthias Apitz <guru@unixarea.de> [1], Greg V <greg@unrelenting.technology> [2]
Tested by: mikael, pkubaj, tobik
With hat: rust
Differential Revision: https://reviews.freebsd.org/D24521
Upstream bug #6681 causes fish to run _very_ slowly inside of large
Subversion repositories. The bug will be fixed in release 3.1.1. But it's
worthwhile to cherry-pick the fix since all FreeBSD developers use large
Subversion repositories.
https://github.com/fish-shell/fish-shell/issues/6681
ChangeLog: https://legacy.cs.indiana.edu/~kinzler/vshnu/vshnu.html
Accumulated changes:
* Add f and F flags to &run
* Add $dotdotdot; Add lazy command evaluation
* Fix &df to always refresh and &diskspace align bug
* Add $getch for initial command key input
* Add %nobag for actions on unassigned bag keys
* Add $disksgvfs for user gvfs mounts in disks list
* Use Getopt::Std; Add -f command line option
* Add -[cCkK] command line options
* Uppercase $vname and $version variables
* Add 2 flag to &run
* Use x option to suppress file coloring as executable
* Fix compatibility for Term::ANSIColor > 3.02
PR: 245376
Submitted by: cpeticus@gmail.com
- Force rebuild all consumers to fix potential miscompilations with
1.41.0
- Enable SOURCES by default. The sources are indexed by RLS and
required for it to function properly, so they should be available
by default. This also makes sure we test the option properly.
- Remove implied --config=config.toml from x.py args
- Switch to the upstreamed backtrace crate patches like rust-nightly
- Enable WASM by default [0]
- Strip libraries (D23650) [1]
- Simplify plist generation (D23735) [2]
Changes: https://blog.rust-lang.org/2020/02/27/Rust-1.41.1.html
Submitted by: mikael [0,1,2]
With hat: rust
Differential Revision: https://reviews.freebsd.org/D23835
add groff as a runtime MANPAGES_USES. fish uses it to format partial man
pages in response to syntax errors.
PR: 243480
Reported by: Igor Gali <i.galic@brainsware.org>
The update sat in my git tree for a couple of weeks before merging the
branch. I updated the commit date without regenerating distfile.
Pointy hat to: cy
ksh93u+ and v-. See github commit 0be82553e98be77238577bc0eaafda0f1cf807fe.
To learn how and why our att/ast upstream made this decision see
https://github.com/att/ast/issues/1464 and
https://github.com/att/ast/issues/1466.
The next steps will be to update shells/ksh93-devel to att/ast master.
shells/ksh93 will likely be based on att/ast master at
0be82553e98be77238577bc0eaafda0f1cf807fe or some future tag or branch.
- Force rebuild all consumers to catch regressions early
- Switch to cross-compiled (from amd64) bootstraps for all
architectures generated with the incoming lang/rust-bootstrap
- Update cargo-c to 0.5.2 to unbreak librav1e build
- Make use of regular MAKE_ENV/TEST_ENV in lang/rust
- Turn on RUST_BACKTRACE in lang/rust and USES=cargo to hopefully
produce more useful failure logs when something panics during
builds
Changes: https://blog.rust-lang.org/2020/01/30/Rust-1.41.0.html
Tested by: mikael, tobik
With hat: rust
Differential Revision: https://reviews.freebsd.org/D23385
Changelog:
* Bump PPrint to 0.5.7, FastParse to 2.2.2, uPickle to 0.9.6, Requests to 0.4.7
* Fix @main method handling in scripts run via --class-based
* Bump OS-Lib, uPickle and Requests-Scala versions, for compatibility with the geny.Writable interface
PR: 242956
Submitted by: Jens Grassel <freebsd-ports@jan0sch.de> (maintainer)
Sponsored by: Netzkommune GmbH
error[E0503]: cannot use `self.key_bindings` because it was mutably borrowed
--> /wrkdirs/usr/ports/shells/ion/work/ion-a8872014dbce730ccd00aaa722397dc394a52bf4-a8872014dbce730ccd00aaa722397dc394a52bf4/cargo-crates/liner-0.4.4/src/context.rs:98:17
|
96 | let ed = try!(Editor::new_with_init_buffer(stdout, prompt, self, buffer));
| ---- borrow of `*self` occurs here
97 | match self.key_bindings {
98 | KeyBindings::Emacs => Self::handle_keys(keymap::Emacs::new(ed), handler),
| ^^^^^^^^^^^^^^^^^^ use of borrowed `*self`
99 | KeyBindings::Vi => Self::handle_keys(keymap::Vi::new(ed), handler),
| -- borrow later used here
error: aborting due to previous error