Accepting request 1230229 from devel:languages:rust
OBS-URL: https://build.opensuse.org/request/show/1230229 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sccache?expand=0&rev=43
This commit is contained in:
commit
ca497f4e6a
2
_service
2
_service
@ -5,7 +5,7 @@
|
|||||||
<param name="versionformat">@PARENT_TAG@~@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@~@TAG_OFFSET@</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<!-- <param name="revision">v0.3.0</param> -->
|
<!-- <param name="revision">v0.3.0</param> -->
|
||||||
<param name="revision">20241001-suse-maint-v0.8.2</param>
|
<param name="revision">20241210-suse-maint-v0.9.0</param>
|
||||||
<param name="match-tag">*</param>
|
<param name="match-tag">*</param>
|
||||||
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
|
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/Firstyear/sccache.git</param>
|
<param name="url">https://github.com/Firstyear/sccache.git</param>
|
||||||
<param name="changesrevision">37e2df297562863028ef4dbb1ec4230cc6f6ed0d</param></service></servicedata>
|
<param name="changesrevision">ad493c7ea9f8576b11b6994d6fddaf056d501171</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3218eaf6c85903497f39074387c2bb8edd3efff166934c2d8227a3c699c2d105
|
|
||||||
size 292917
|
|
3
sccache-0.9.0~1.tar.zst
Normal file
3
sccache-0.9.0~1.tar.zst
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b729e046e4e22fb348cfbdf14480e49fe42d5f6dcc0cb9a649e4ca2ee32c413e
|
||||||
|
size 316087
|
@ -1,3 +1,51 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 10 05:57:32 UTC 2024 - william.brown@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.9.0~1:
|
||||||
|
* Add experimental concurrent cache support
|
||||||
|
* prepare release 0.9.0 (#2293)
|
||||||
|
* build(deps): bump codecov/codecov-action from 4 to 5 (#2289)
|
||||||
|
* feat: set user agent in webdav requests (#2284)
|
||||||
|
* test CTK 11.1 in CI
|
||||||
|
* add test to ensure -v|--verbose are never dist-compiled
|
||||||
|
* don't generate a dist-compile command for clang-cuda
|
||||||
|
* don't use leading digit in renamed file names
|
||||||
|
* include the output file name in nvcc trace logs
|
||||||
|
* revert adding --gen_module_id_file when --module_id_file_name is present
|
||||||
|
* read NVCC_{PREPEND,APPEND}_FLAGS from the compile environment, not the server environment
|
||||||
|
* add --default-stream arg, fix parsing concatenated form of nvcc -t1
|
||||||
|
* always add --gen_module_id_file if --module_id_file_name is specified
|
||||||
|
* Normalize nvcc subcommand order for CTK <12.0, ensuring the DAG is parsed by inputs/outputs even if the preprocessor, cicc, and ptxas commands are out of order.
|
||||||
|
* hash --gen_module_id_file and --module_id_file_name arguments
|
||||||
|
* add more clang flags
|
||||||
|
* compiler invocations with -v or --verbose must not be dist-compiled, since tools like CMake parse the output and expect to see client paths not dist-server paths
|
||||||
|
* report total compilation count and compile times for uncached and failed compilations
|
||||||
|
* ensure dist_type is reported for failed and uncached compilations
|
||||||
|
* check for more host-compiler nvcc defines to accommodate older nvcc versions
|
||||||
|
* Pass correct argument to rustc -Z ls
|
||||||
|
* Make start_compile_task spawn a tokio task again
|
||||||
|
* ensure SCCACHE_NO_CACHE calls aren't tracked as an uncacheable compilations in the stats
|
||||||
|
* Attempt to fix intermittent config_from_env() test failures by ensuring envvars are reset before unwrapping/asserting
|
||||||
|
* Test nvcc and clang-cuda in workflows/ci.yml
|
||||||
|
* Ensure compatibility with MSVC compatibility on Windows
|
||||||
|
* fix exit_status propagation, handle long nvcc language option (--x)
|
||||||
|
* Detect both nvcc and host compiler version so we can safely revert to caching outer nvcc invocations
|
||||||
|
* Update `Nvcc` compiler to support distributed compilation
|
||||||
|
* Add an `UnhashedFlag` argument type for flags which should not affect the computed hash
|
||||||
|
* Add an `extra_dist_files` field to the `ParsedArguments` struct, so compilers can add additional files to be included for each distributed compilation
|
||||||
|
* Refactor `CompileCommand` into a trait
|
||||||
|
* Ensure `use_preprocessor_cache_mode` considers the current value of the `SCCACHE_DIRECT` envvar.
|
||||||
|
* * Refactor `start_compile_task()` into an async function * Spawn the tokio compilation task in `check_compiler()` instead of in `start_compile_task()` * Map the tokio compilation task into a stream, and return that stream as the response body
|
||||||
|
* refactor: Bump OpenDAL to 0.50 (#2283)
|
||||||
|
* Fix: fix sccache bug for dwo file generate (#2271)
|
||||||
|
* feat: Use profile-generate to replace outdated -Zprofile options (#2282)
|
||||||
|
* chore(docs): bump the github script version used in GHA (#2281)
|
||||||
|
* *: add UDS support (#2206)
|
||||||
|
* Simplify Xcode CI / Docs (#2266)
|
||||||
|
* Fix cache collision between object file and precompiled headers (#2268)
|
||||||
|
* docs: fix formatting in Caching (#2267)
|
||||||
|
* Implement features required by Xcode (#2257)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 01 02:15:01 UTC 2024 - william.brown@suse.com
|
Tue Oct 01 02:15:01 UTC 2024 - william.brown@suse.com
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%define configdir %{_sysconfdir}/%{name}
|
%define configdir %{_sysconfdir}/%{name}
|
||||||
|
|
||||||
Name: sccache
|
Name: sccache
|
||||||
Version: 0.8.2~1
|
Version: 0.9.0~1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A compiler caching tool for Rust, C and C++ with optional cloud storage
|
Summary: A compiler caching tool for Rust, C and C++ with optional cloud storage
|
||||||
License: (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR CC0-1.0) AND ((Apache-2.0 AND BSD-2-Clause) OR MIT) AND (Apache-2.0 OR MIT OR BSD-2-Clause) 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 BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND ISC AND MIT
|
License: (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR CC0-1.0) AND ((Apache-2.0 AND BSD-2-Clause) OR MIT) AND (Apache-2.0 OR MIT OR BSD-2-Clause) 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 BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND ISC AND MIT
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:07913956557a1368ea1a99c52c84ee937dd80cab87f63fe9b1cc5d16dae76928
|
oid sha256:7458f4ae748372080f665218ebcd2a0ee457200c3925348d631b6d2cc74e24e0
|
||||||
size 44034133
|
size 44536279
|
||||||
|
Loading…
x
Reference in New Issue
Block a user