SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for rust-1.16.0-3.1.x86_64.rpm :
Fri Mar 24 13:00:00 2017 Led
- fix BuildRequires

Thu Mar 23 13:00:00 2017 Led
- remove patches:

* rustc-1.16.0-src-disable-nvptx.patch

Thu Mar 16 13:00:00 2017 Led
- 1.16.0
- add patches:

* rustc-1.16.0-src-disable-nvptx.patch

Mon Feb 13 13:00:00 2017 Led
- update BuildRequires

Sun Feb 12 13:00:00 2017 Led
- 1.15.1

Sun Feb 5 13:00:00 2017 Led
- 1.15.0

Sat Dec 24 13:00:00 2016 Led
- fix BuildRequires
- rebuild with system LLVM 3.9
- add patches:

* rustc-1.14.0-fix-mk-docs.patch
- enable compiler_docs

Sat Dec 24 13:00:00 2016 Led
- 1.14.0

Sun Nov 13 13:00:00 2016 Led
- 1.13.0

Sat Nov 12 13:00:00 2016 Led
- 1.12.1

Wed Oct 5 14:00:00 2016 Led
- 1.12.0
- disable compiler-docs
- clean up spec
- remove patches:

* 0003-Disable-embedding-timestamp-information.patch

* rustc-1.10.0-suse.patch

Mon Sep 26 14:00:00 2016 Led
- update BuildRequires

Sat Sep 10 14:00:00 2016 Led
- update BuildRequires
- fix build with rustc same version (1.11.0)

Sat Aug 20 14:00:00 2016 Led
- 1.11.0
- remove patches:

* 0001-Fix-misleading-intentation-errors-on-gcc-6.0.patch

* 0002-Fix-GCC-6-misleading-indentation-error-in-hoedown.patch

Mon Jul 25 14:00:00 2016 Led
- build with system llvm

Sun Jul 24 14:00:00 2016 Led
- add patches:

* rustc-1.10.0-suse.patch
- set libdir to %%_libdir

Sat Jul 23 14:00:00 2016 Led
- disable rpath
- enable compiler-docs
- clean up spec

Mon Jul 18 14:00:00 2016 Led
- 1.10.0
- rename to rust
- clean up spec

Tue Jul 12 14:00:00 2016 mvyskocilAATTopensuse.org
- Rename source package to rustc-190 to avoid unecessary rebuilds
of rustc packages on upgrade

Wed Jul 6 14:00:00 2016 kgronlundAATTsuse.com
- Move stage0 binaries into separate package
- Disable embedding timestamp information
- Add 0003-Disable-embedding-timestamp-information.patch

Tue Jun 28 14:00:00 2016 kgronlundAATTsuse.com
- Rename package to rustc-stable
- Add rpmlintrc
- Make bootstrapping conditional

Mon Jun 27 14:00:00 2016 kgronlundAATTsuse.com
- Fix misleading indentation errors on GCC 6.0
- Remove snap2.sh
- Add 0001-Fix-misleading-intentation-errors-on-gcc-6.0.patch
- Add 0002-Fix-GCC-6-misleading-indentation-error-in-hoedown.patch

Mon May 30 14:00:00 2016 mvyskocilAATTopensuse.org
- Update to version 1.9.0
+ Stabilization of std::panic
+ Deprecation warnings, #[deprecated] attribute
+ Compile time improvements
+ Rolling out use of specialization
+ Library stabilizations
About 80 library functions and methods are now stable in 1.
+ http://blog.rust-lang.org/2016/05/26/Rust-1.9.html

Fri Apr 15 14:00:00 2016 mvyskocilAATTopensuse.org
- Update to version 1.8.0:
+ Various “operator equals” operators, such as += and -=, are now
overloadable via various traits.
+ Empty struct declaration can contain cutly braces
+ New (non default) cargo based build system for rustc
+ About 20 library functions and methods are now stable in 1.8

Fri Mar 4 13:00:00 2016 kgronlundAATTsuse.com
- Update to version 1.7.0:
+ Many stabilized APIs
+ Improved library performance
+ BTreeSet and its iterators, Iter, IntoIter, and Range are covariant over their contained type.
+ LinkedList and its iterators, Iter and IntoIter are covariant over their contained type.
+ str::replace now accepts a Pattern, like other string searching methods.
+ Any is implemented for unsized types.
+ Hash is implemented for Duration.
+ Soundness fixes, may break code. See RFC 1214 for more information.
+ Several bugs in the compiler\'s visibility calculations were fixed.
+ Parsing \".\" as a float results in an error instead of 0.
+ Borrows of closure parameters may not outlive the closure.

Wed Jan 20 13:00:00 2016 iAATTxuzhao.net
- Update to version 1.6.0:
+ Stabilization of libcore and other library functions
+ Crates.io disallows wildcards

Fri Oct 30 13:00:00 2015 mvyskocilAATTopensuse.org
- Update to version 1.4.0:
+ Several changes have been made to fix type soundness and improve the
behavior of associated types. See RFC 1214. Although we have mostly
introduced these changes as warnings this release, to become errors next
release, there are still some scenarios that will see immediate breakage.
+ The str::lines and BufRead::lines iterators treat \\r\
as line breaks in
addition to \
.
+ Loans of \'static lifetime extend to the end of a function.
+ str::parse no longer introduces avoidable rounding error when parsing
floating point numbers. Together with earlier changes to float
formatting/output, \"round trips\" like f.to_string().parse() now preserve
the value of f exactly. Additionally, leading plus signs are now accepted.

Sat Oct 17 14:00:00 2015 mvyskocilAATTopensuse.org
- Split the gdb support to rust-gdb subpackage

Fri Sep 18 14:00:00 2015 mvyskocilAATTopensuse.org
- Update to version 1.3.0:
+ API stabilization, including the new Duration API and
enhancements to Error and Hash/Hasher.
+ The substring matcher now uses a more efficient algorithm.
+ There were improvements to zero filling that speed up
Vec::resize and Read::read_to_end.
+ The implementation of Read::read_to_end has been specialized
for stdin and File, resulting in additional speedups.
+ The PartialEq implementation on slices is now much faster.
- Packaging: renamed source package to rustc to match upstream

Wed Aug 12 14:00:00 2015 mvyskocilAATTopensuse.org
- Update to version 1.2.0:
+ An across-the-board improvement to real-world compiler performance.
Representative crates include hyper (compiles 1.16x faster), html5ever
(1.62x faster), regex (1.32x faster) and rust-encoding (1.35x faster). You
can explore some of this performance data at Nick Cameron’s preliminary
tracking site, using dates 2015-05-15 to 2015-06-25.
+ Parallel codegen is now working, and produces a 33% speedup when
bootstrapping on a 4 core machine. Parallel codegen is particularly useful
for debug builds, since it prevents some optimizations; but it can also be
used with optimizations as an effective -O1 flag. It can be activated
by passing -C codegen-units=N to rustc, where N is the desired number
of threads.

Mon Jul 27 14:00:00 2015 mvyskocilAATTopensuse.org
- Update to version 1.1.0:
+ The std::fs module has been expanded to expand the set of
functionality exposed:

* DirEntry now supports optimizations like file_type and
metadata which don\'t incur a syscall on some platforms.

* A symlink_metadata function has been added.

* The fs::Metadata structure now lowers to its OS counterpart,
providing access to all underlying information.
+ The compiler now contains extended explanations of many errors.
When an error with an explanation occurs the compiler suggests
using the --explain flag to read the explanation. Error
explanations are also available online.
+ Thanks to multiple improvements to type checking, as well as other
work, the time to bootstrap the compiler decreased by 32%.
- drop tar_scm service and use source urls

Fri May 15 14:00:00 2015 kgronlundAATTsuse.com
- Update to version 1.0.0:
+ lint: deny transmuting from immutable to mutable, since it\'s undefined behavior
+ std: update select internals to not use mutable transmuting
+ std: Remove index notation on slice iterators
+ std: Destabilize io::BufStream
+ Make RwLock::try_write try to obtain a write lock
+ std: Remove addition on vectors for now
+ thread: right now you can\'t actually set those printers
+ Fix #24872, XSS in docs not found page.
+ Update AUTHORS.txt and RELEASES.md for 1.0
+ std: Mark `mem::forget` as a safe function
+ core: impl AsRef<[u8]> for str
+ collections: impl AsRef<[u8]> for String
+ collections: change bounds of SliceConcatExt implementations to use Borrow instead of AsRef
+ Fix invalid references due to the automated string substitution
+ dropck: must assume `Box` has a destructor of interest.

Thu May 7 14:00:00 2015 opensuse-packagingAATTopensuse.org
- Rename binary package to rust
- Add build for i586
- Only run fdupes on SUSE builds
- Changed version format
- Update to version 1.0.0~beta4+git.1430848988.f873dc5:
+ Introduce a `FreeRegionMap` data structure. (#22779)
+ Fix #20616
+ std: Fix inheriting standard handles on windows
+ Fix #24895.
+ Fix zero-normalization of the pos of a `MultiByteChar`.
+ lint for mixing `#[repr(C)]` with an impl of `Drop`.
+ Bump prerelease version to .4
+ Add downcasting to std::error::Error

Wed May 6 14:00:00 2015 matwey.kornilovAATTgmail.com
- Format spec file

Wed Apr 29 14:00:00 2015 opensuse-packagingAATTopensuse.org
- Update to version 1.0.0beta3+git.1429985089.5241bf9:
+ Update Windows caveats
+ Utilize if..let for get_mut doc-comment examples
+ Indicate keywords are code-like in Fuse::reset_fuse doc comment
+ doc: improve/fix \'let\' FAQ
+ Fix broken links in the docs
+ Indicate None is code-like in doc comments
+ Fixed typo in hash_map::Entry documentation
+ Remove an unused import on windows

Wed Apr 29 14:00:00 2015 kgronlundAATTsuse.com
- Version 1.0.0-beta3.


 
ICM