Port details |
- jujutsu Git-compatible VCS that is both simple and powerful
- 0.23.0_1 devel =2 0.22.0Version of this port present on the latest quarterly branch.
- Maintainer: se@FreeBSD.org
- Port Added: 2024-01-23 13:48:07
- Last Update: 2024-12-01 09:24:18
- Commit Hash: 1d1fd15
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: APACHE20
- WWW:
- https://github.com/martinvonz/jj/blob/main/README.md
- Description:
- Jujutsu is a powerful version control system for software projects.
You use it to get a copy of your code, track changes to the code, and
finally publish those changes for others to see and use.
It is designed from the ground up to be easy to use - whether you're
new or experienced, working on brand new projects alone, or large scale
software projects with large histories and teams.
Jujutsu is unlike most other systems, because internally it abstracts
the user interface and version control algorithms from the storage
systems used to serve your content.
This allows it to serve as a VCS with many possible physical backends,
that may have their own data or networking models - like Mercurial or
Breezy, or hybrid systems like Google's cloud-based design, Piper/CitC.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/devel/jujutsu/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/jujutsu
- pkg install jujutsu
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: jujutsu
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1731096748
SHA256 (rust/crates/addr2line-0.22.0.crate) = 6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678
SIZE (rust/crates/addr2line-0.22.0.crate) = 39156
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- rust>=1.83.0 : lang/rust
- pkgconf>=1.3.0_1 : devel/pkgconf
- Library dependencies:
-
- libgit2.so : devel/libgit2
- libssh2.so : security/libssh2
- libzstd.so : archivers/zstd
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- devel_jujutsu
- USES:
- cargo localbase ssl
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.23.0_1 01 Dec 2024 09:24:18 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.83.0
PR: 283000 |
0.23.0 08 Nov 2024 21:55:05 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.23.0
This version contains a number of fixes and improvements, but also
some breaking changes.
See the release notes at
https://github.com/martinvonz/jj/releases/tag/v0.23.0
for details. |
0.22.0_3 08 Nov 2024 08:24:20 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.82.0
PR: 282516 |
0.22.0_2 23 Oct 2024 07:11:50 |
Matthias Fechner (mfechner) |
devel/libgit2: bump consumers of libgit2 due to update |
0.22.0_1 23 Oct 2024 03:11:24 |
Yuri Victorovich (yuri) |
Mk/Uses/cargo.mk: Remove cross-compilation options for Rust-based ports
Reasons:
* Port build shouldn't use cross-compilation mode
because it buids for the same architecture.
* RUSTFLAGS isn't passed to the build of all or some Rust ports
in the cross-compilation mode.
Essential changes:
* Remove the CARGO_BUILD_TARGET make variable.
* Remove CARGO_BUILD_TARGET and CARGO_TARGET_* from CARGO_ENV.
* Update many ports that used CARGO_BUILD_TARGET.
* Build paths now don't include the architecture triplet part.
Immadiate benefits: (Only the first 15 lines of the commit message are shown above ) |
0.22.0_1 18 Oct 2024 18:56:41 |
Nuno Teixeira (eduardo) |
*/*: Bump consumers of devel/libgit2
libgit2 updated to 1.8.1 |
0.22.0 04 Oct 2024 21:42:35 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.22.0
This version contains a number of fixes and improvements.
See the release notes at
https://github.com/martinvonz/jj/releases
for details. |
0.20.0_2 10 Sep 2024 11:00:34 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.81.0
PR: 281300 |
0.20.0_1 26 Aug 2024 08:08:01 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.80.1
PR: 280490 |
0.20.0 09 Aug 2024 20:24:51 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.20.0
This version contains a number of fixes and improvements.
See the release notes at
https://github.com/martinvonz/jj/releases/tag/v0.20.0
for details. |
0.19.0 04 Aug 2024 12:00:29 |
Piotr Kubaj (pkubaj) |
devel/jujutsu: fix build on big-endian architectures
While functions for converting to LE are suffixed _le, functions for converting
to BE don't have any suffix:
error[E0599]: no method named `put_i16_be` found for struct `Vec<u8>` in the
current scope
-->
/wrkdirs/usr/ports/devel/jujutsu/work/jj-0.19.0/cargo-crates/serde_bser-0.4.0/src/ser/mod.rs:136:22
|
136 | self.scratch.put_i16_be(v);
| ^^^^^^^^^^
|
help: there is a method `put_i16_le` with a similar name
|
136 | self.scratch.put_i16_le(v);
| ~~~~~~~~~~
error[E0599]: no method named `put_i32_be` found for struct `Vec<u8>` in the
current scope |
0.19.0 05 Jul 2024 07:49:13 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.18.0
This version contains a number of fixes and improvements.
See the release notes at
https://github.com/martinvonz/jj/releases/tag/v0.19.0
for details. |
0.18.0_1 18 Jun 2024 10:59:14 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.79.0
PR: 279707 |
0.18.0 07 Jun 2024 10:50:13 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.18.0
This version contains a number of fixes and improvements.
See the release notes at
https://github.com/martinvonz/jj/releases/tag/v0.18.0
for details. |
0.17.1_1 13 May 2024 11:03:24 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.78.0
PR: 278834 |
0.17.1 08 May 2024 10:34:24 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.17.1
Compared to version 0.16.0, this version contains a number of fixes
and improvements.
See the release notes at
https://github.com/martinvonz/jj/releases/tag/v0.17.0
for details.
Version 0.17.1 speeds up "jj status" by no longer scanning through
the entire history to look for ancestors with conflicts. |
0.16.0 06 Apr 2024 10:46:12 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.16.0
In addition to many enhancements the "jj sparse" and "jj log"
commands have been changed.
See the release notes at
https://github.com/martinvonz/jj/releases/tag/v0.16.0
for a complete list of changes. |
0.15.1_1 23 Mar 2024 09:41:46 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.77.0
PR: 277786 |
0.15.1 09 Mar 2024 20:05:07 |
Stefan Eßer (se) |
devel/jujutsu: update to version 0.15.1
For the list of changes and new features see:
https://github.com/martinvonz/jj/releases/tag/v0.15.0
There is no functional change between 0.15.0 and 0.15.1. |
0.14.0_1 19 Feb 2024 11:59:23 |
Mikael Urankar (mikael) |
lang/rust: Bump revisions after 1.76.0
PR: 276920 |
0.14.0 08 Feb 2024 09:32:26 |
Stefan Eßer (se) |
devel/jujutsu: upgrade to version 0.14.0 |
0.13.0_1 24 Jan 2024 15:32:02 |
Stefan Eßer (se) |
devel/jujutsu: fix install on other targets than amd64
This software uses a virtual manifest in its Cargo.toml, and it seems
that there is no generic way to deal with such Cargo.toml files,
unless building with direct access to the GitHub repository during the
install phase.
I'd appreciate any hint regarding a better way to install this program
to the stage directory than the hacked do-install target I use. |
0.13.0 24 Jan 2024 11:42:24 |
Stefan Eßer (se) |
devel/jujutsu: fix build |
0.13.0 23 Jan 2024 13:47:04 |
Stefan Eßer (se) |
devel/jujutsu: Add new port
Jujutsu is a version control system that abstracts the user interface
from and version control algorithms from the storage systems used to
serve your content.
This allows it to serve as a VCS with many possible physical backends,
that may have their own data or networking models—like Mercurial or
Breezy, or hybrid systems like Google's cloud-based design, Piper/CitC.
This version of jujutsu supports Git repositories and its native
storage backend. |