Accepting request 1095773 from science
- Update to version 1.11.0: * Add all binaries to Cargo.toml * Build everythin before running tests * Add metadata to Cargo.toml * Exclude some files from package * Only buildnecessary binaries in release workflow * Added a bit more error messages * Fix warning about symlink folder not being on PATH * Absolutize path for link command * chore: Release juliaup version 1.10.0 * Add override documentation to README * Rename `override list` to `override status` * Add override tests * Prevent deletion of channel that is used in override * Format paths nicer on Windows * Use override in launcher * Add basic override management * Add basic override scaffolding * Add docs for JULIAUP_CHANNEL * Go back to simpler error implementation * Add tests for channel selection * Add JULIAUP_CHANNEL env var * Add SOCKS5 support on Linux/Mac * Use more standard syntax * Commit Cargo.lock * Fix formatting * Simplify http get request * Revert test.yml changes * Use reqwest * use optional input * work on better parsers * Reorder args * chore: added back ureq for macos deps * chore: initial reqwest migration * chore: generate new lockfile * chore: replace ureq to reqwest in Cargo.toml * fix: replace atty with is-terminal * Update version db (#606) * add a blame ignore revision file to avoid formatting changes to pollute git blame (#599) * run cargo format on all files (#595) * Update version db (#591) * remove double negative from input * add more cli parameters for automated install * Sleep for 30 seconds before and after purging the Fastly cache * Update juliaup.rs * Fix update to work with removed channels * Use better error messages - Update vendored dependencies. - Restrict to Tier 1 architectures. - Declare disk size to 8GB to avoid "No space left on device". - Automatic update of vendored dependencies. - Use zstd compression for tarballs. OBS-URL: https://build.opensuse.org/request/show/1095773 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/juliaup?expand=0&rev=10
This commit is contained in:
commit
b5377785d1
@ -4,5 +4,8 @@
|
|||||||
<memory>
|
<memory>
|
||||||
<size unit="G">4</size>
|
<size unit="G">4</size>
|
||||||
</memory>
|
</memory>
|
||||||
|
<disk>
|
||||||
|
<size unit="G">8</size>
|
||||||
|
</disk>
|
||||||
</hardware>
|
</hardware>
|
||||||
</constraints>
|
</constraints>
|
||||||
|
6
_service
6
_service
@ -3,7 +3,7 @@
|
|||||||
<param name="url">https://github.com/JuliaLang/juliaup</param>
|
<param name="url">https://github.com/JuliaLang/juliaup</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">0a42faa</param>
|
<param name="revision">ea6a101</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
@ -12,12 +12,12 @@
|
|||||||
<service mode="disabled" name="tar" />
|
<service mode="disabled" name="tar" />
|
||||||
<service mode="disabled" name="recompress">
|
<service mode="disabled" name="recompress">
|
||||||
<param name="file">*.tar</param>
|
<param name="file">*.tar</param>
|
||||||
<param name="compression">xz</param>
|
<param name="compression">zstd</param>
|
||||||
</service>
|
</service>
|
||||||
<service mode="disabled" name="set_version"/>
|
<service mode="disabled" name="set_version"/>
|
||||||
<service name="cargo_vendor" mode="disabled">
|
<service name="cargo_vendor" mode="disabled">
|
||||||
<param name="srcdir">juliaup</param>
|
<param name="srcdir">juliaup</param>
|
||||||
<param name="compression">xz</param>
|
<param name="compression">zst</param>
|
||||||
<param name="update">true</param>
|
<param name="update">true</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="cargo_audit" mode="disabled">
|
<service name="cargo_audit" mode="disabled">
|
||||||
|
3
juliaup-1.11.0.tar.zst
Normal file
3
juliaup-1.11.0.tar.zst
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9e808d0f85383000d32e66c294854911569a602a2c58b2ee7ea3e89987603eba
|
||||||
|
size 110772468
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9ef5437fcad3951e2591c03f476ef8c483465675072d2a205291e3f5fb901ac8
|
|
||||||
size 66824436
|
|
@ -1,3 +1,67 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 28 08:19:48 UTC 2023 - socvirnyl.estela@gmail.com
|
||||||
|
|
||||||
|
- Update to version 1.11.0:
|
||||||
|
* Add all binaries to Cargo.toml
|
||||||
|
* Build everythin before running tests
|
||||||
|
* Add metadata to Cargo.toml
|
||||||
|
* Exclude some files from package
|
||||||
|
* Only buildnecessary binaries in release workflow
|
||||||
|
* Added a bit more error messages
|
||||||
|
* Fix warning about symlink folder not being on PATH
|
||||||
|
* Absolutize path for link command
|
||||||
|
* chore: Release juliaup version 1.10.0
|
||||||
|
* Add override documentation to README
|
||||||
|
* Rename `override list` to `override status`
|
||||||
|
* Add override tests
|
||||||
|
* Prevent deletion of channel that is used in override
|
||||||
|
* Format paths nicer on Windows
|
||||||
|
* Use override in launcher
|
||||||
|
* Add basic override management
|
||||||
|
* Add basic override scaffolding
|
||||||
|
* Add docs for JULIAUP_CHANNEL
|
||||||
|
* Go back to simpler error implementation
|
||||||
|
* Add tests for channel selection
|
||||||
|
* Add JULIAUP_CHANNEL env var
|
||||||
|
* Add SOCKS5 support on Linux/Mac
|
||||||
|
* Use more standard syntax
|
||||||
|
* Commit Cargo.lock
|
||||||
|
* Fix formatting
|
||||||
|
* Simplify http get request
|
||||||
|
* Revert test.yml changes
|
||||||
|
* Use reqwest
|
||||||
|
* use optional input
|
||||||
|
* work on better parsers
|
||||||
|
* Reorder args
|
||||||
|
* chore: added back ureq for macos deps
|
||||||
|
* chore: initial reqwest migration
|
||||||
|
* chore: generate new lockfile
|
||||||
|
* chore: replace ureq to reqwest in Cargo.toml
|
||||||
|
* fix: replace atty with is-terminal
|
||||||
|
* Update version db (#606)
|
||||||
|
* add a blame ignore revision file to avoid formatting changes to pollute git blame (#599)
|
||||||
|
* run cargo format on all files (#595)
|
||||||
|
* Update version db (#591)
|
||||||
|
* remove double negative from input
|
||||||
|
* add more cli parameters for automated install
|
||||||
|
* Sleep for 30 seconds before and after purging the Fastly cache
|
||||||
|
* Update juliaup.rs
|
||||||
|
* Fix update to work with removed channels
|
||||||
|
* Use better error messages
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 1 10:10:34 UTC 2023 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||||
|
|
||||||
|
- Update vendored dependencies.
|
||||||
|
- Restrict to Tier 1 architectures.
|
||||||
|
- Declare disk size to 8GB to avoid "No space left on device".
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 13 00:00:03 UTC 2023 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||||
|
|
||||||
|
- Automatic update of vendored dependencies.
|
||||||
|
- Use zstd compression for tarballs.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 04 00:30:24 UTC 2023 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
Wed Jan 04 00:30:24 UTC 2023 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||||
|
|
||||||
|
10
juliaup.spec
10
juliaup.spec
@ -21,17 +21,19 @@
|
|||||||
%global latest_julia_version 1.8.3
|
%global latest_julia_version 1.8.3
|
||||||
|
|
||||||
Name: juliaup
|
Name: juliaup
|
||||||
Version: 1.8.16
|
Version: 1.11.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Julia installer and version multiplexer
|
Summary: Julia installer and version multiplexer
|
||||||
License: (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR MIT OR Zlib) AND (Apache-2.0 OR MIT OR Zlib) AND (MIT OR Unlicense) AND (Apache-2.0 OR Zlib OR MIT) AND Apache-2.0 AND ISC AND MIT AND MPL-2.0 AND MIT
|
License: (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR MIT OR Zlib) AND (Apache-2.0 OR MIT OR Zlib) AND (MIT OR Unlicense) AND (Apache-2.0 OR Zlib OR MIT) AND Apache-2.0 AND ISC AND MIT AND MPL-2.0 AND MIT
|
||||||
Group: Development/Languages/Other
|
Group: Development/Languages/Other
|
||||||
URL: https://github.com/JuliaLang/juliaup
|
URL: https://github.com/JuliaLang/juliaup
|
||||||
Source0: %{name}-%{version}.tar.xz
|
Source0: %{name}-%{version}.tar.zst
|
||||||
Source1: vendor.tar.xz
|
Source1: vendor.tar.zst
|
||||||
Source2: cargo_config
|
Source2: cargo_config
|
||||||
BuildRequires: cargo-packaging
|
BuildRequires: cargo-packaging
|
||||||
BuildRequires: rust+cargo
|
BuildRequires: rust+cargo
|
||||||
|
BuildRequires: zstd
|
||||||
|
ExclusiveArch: %{rust_tier1_arches}
|
||||||
|
|
||||||
# It doesn't make sense to do this anyway.
|
# It doesn't make sense to do this anyway.
|
||||||
# Provides: julia = %%{latest_julia_version}
|
# Provides: julia = %%{latest_julia_version}
|
||||||
@ -55,7 +57,7 @@ cp %{SOURCE2} .cargo/config
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%{cargo_install} --no-default-features
|
%{cargo_install} --no-default-features
|
||||||
ln -sfv "%{_bindir}/julialauncher" "%{buildroot}/%{_bindir}/julia"
|
# ln -sfv "%%{_bindir}/julialauncher" "%%{buildroot}/%{_bindir}/julia"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0b3704eabb18f207cba9c80d1b75982f2c70ba7b32e189ea5ab5eeb081f929f7
|
|
||||||
size 34606104
|
|
3
vendor.tar.zst
Normal file
3
vendor.tar.zst
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:119e4f9cdaf8adc05080a4768db49972ea0111fa9808417f4ceb75b56c636f65
|
||||||
|
size 47820369
|
Loading…
Reference in New Issue
Block a user