Accepting request 1131377 from devel:tools:scm
update to 0.12.0 OBS-URL: https://build.opensuse.org/request/show/1131377 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=2
This commit is contained in:
commit
ea10d7fdde
4
_service
4
_service
@ -4,8 +4,8 @@
|
|||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="revision">v0.11.0</param>
|
<param name="revision">v0.12.0</param>
|
||||||
<param name="changesgenerate">false</param>
|
<param name="changesgenerate">disable</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="tar" mode="buildtime"/>
|
<service name="tar" mode="buildtime"/>
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
[source.crates-io]
|
|
||||||
replace-with = "vendored-sources"
|
|
||||||
|
|
||||||
[source.vendored-sources]
|
|
||||||
directory = "vendor"
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c065d0475c9a0bef79af115d9ba689df80c78e2195bcdebff0fc3f23fddf737c
|
|
||||||
size 4383756
|
|
3
jj-0.12.0.obscpio
Normal file
3
jj-0.12.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7c76727e0ccc825d586b6bd6fb9e94228a15666c3ce3aef00ec5d5cb42725282
|
||||||
|
size 4578828
|
@ -1,4 +1,4 @@
|
|||||||
name: jj
|
name: jj
|
||||||
version: 0.11.0
|
version: 0.12.0
|
||||||
mtime: 1698862124
|
mtime: 1701819916
|
||||||
commit: f00f7527ddce21886fe93e11324c5227f15eeaca
|
commit: 79483d4552d0d0fa7222fbafd9143be593a1e451
|
||||||
|
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 6 12:15:35 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
||||||
|
|
||||||
|
- update to 0.12.0:
|
||||||
|
* Breaking changes
|
||||||
|
- The remote_branches() revset no longer includes branches
|
||||||
|
exported to the Git repository (so called Git-tracking
|
||||||
|
branches.)
|
||||||
|
- jj branch set no longer creates a new branch. Use jj branch
|
||||||
|
create instead.
|
||||||
|
- jj init --git in an existing Git repository now errors and
|
||||||
|
exits rather than creating a second Git store.
|
||||||
|
* New features
|
||||||
|
- jj workspace add can now take multiple --revision arguments,
|
||||||
|
which will create a new workspace with its working-copy
|
||||||
|
commit on top of all the parents, as if you had run
|
||||||
|
jj new r1 r2 r3 ....
|
||||||
|
- You can now set git.abandon-unreachable-commits = false to
|
||||||
|
disable the usual behavior where commits that became
|
||||||
|
unreachable in the Git repo are abandoned (#2504).
|
||||||
|
- jj new gained a --no-edit option to prevent editing the newly
|
||||||
|
created commit. For example, jj new a b --no-edit -m Merge
|
||||||
|
creates a merge commit without affecting the working copy.
|
||||||
|
- jj rebase now takes the flag --skip-empty, which doesn't copy
|
||||||
|
over commits that would become empty after a rebase.
|
||||||
|
- There is a new jj util gc command for cleaning up the
|
||||||
|
repository storage. For now, it simply runs git gc on the
|
||||||
|
backing Git repo (when using the Git backend).
|
||||||
|
* Fixed bugs
|
||||||
|
- Fixed another file conflict resolution issue where jj status
|
||||||
|
would disagree with the actual file content. #2654
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 01 19:12:45 UTC 2023 - kastl@b1-systems.de
|
Wed Nov 01 19:12:45 UTC 2023 - kastl@b1-systems.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package jujutsu
|
# spec file for package jujutsu
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,14 +19,13 @@
|
|||||||
%define binary_name jj
|
%define binary_name jj
|
||||||
|
|
||||||
Name: jujutsu
|
Name: jujutsu
|
||||||
Version: 0.11.0
|
Version: 0.12.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Git-compatible DVCS that is both simple and powerful
|
Summary: Git-compatible DVCS that is both simple and powerful
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/martinvonz/jj
|
URL: https://github.com/martinvonz/jj
|
||||||
Source0: jj-%{version}.tar.gz
|
Source0: jj-%{version}.tar.gz
|
||||||
Source1: vendor.tar.zst
|
Source1: vendor.tar.zst
|
||||||
Source2: cargo_config
|
|
||||||
BuildRequires: cargo >= 1.70
|
BuildRequires: cargo >= 1.70
|
||||||
BuildRequires: cargo-packaging
|
BuildRequires: cargo-packaging
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: openssl-devel
|
||||||
@ -46,7 +45,6 @@ Jujutsu is an experimental version control system. While Git compatibility is st
|
|||||||
%autosetup -p 1 -a 1 -n jj-%{version}
|
%autosetup -p 1 -a 1 -n jj-%{version}
|
||||||
mkdir -p .cargo
|
mkdir -p .cargo
|
||||||
rm -vf .cargo/config.toml
|
rm -vf .cargo/config.toml
|
||||||
cp %{SOURCE2} .cargo/config
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{cargo_build}
|
%{cargo_build}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:e9541f42f61a51a728f56c6b44005201042eed70155cf0c05a7c0373dde162bd
|
oid sha256:77db88717d9385b317e0edee15c97186de8bb80e2b52d73e1ed660a11372b7a9
|
||||||
size 35156555
|
size 48402097
|
||||||
|
Loading…
Reference in New Issue
Block a user