Hello community,

here is the log from the commit of package rust for openSUSE:Factory checked in 
at 2018-01-26 13:35:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rust (Old)
 and      /work/SRC/openSUSE:Factory/.rust.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rust"

Fri Jan 26 13:35:07 2018 rev:23 rq:568813 version:1.23.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/rust/rust.changes        2018-01-16 
09:36:04.303378800 +0100
+++ /work/SRC/openSUSE:Factory/.rust.new/rust.changes   2018-01-26 
13:35:13.761261308 +0100
@@ -1,0 +2,20 @@
+Tue Jan 23 09:18:27 UTC 2018 - [email protected]
+
+- Format with spec-cleaner
+- Use python3 to run the install/build script as python2 is being
+  phased out
+- State exclusivearch for all of ix86 and then specify we build as
+  i686 which is bit more obvious
+
+-------------------------------------------------------------------
+Mon Jan 22 11:21:42 UTC 2018 - [email protected]
+
+- Update Cargo to v0.24.0
+
+-------------------------------------------------------------------
+Mon Jan 22 07:01:51 UTC 2018 - [email protected]
+
+- Add "Requires: %{name} to derived packages to fix derived
+  packages not being updated with rust (boo#1075883)
+
+-------------------------------------------------------------------

Old:
----
  cargo-0.23.0-aarch64-unknown-linux-gnu.tar.gz
  cargo-0.23.0-arm-unknown-linux-gnueabihf.tar.gz
  cargo-0.23.0-armv7-unknown-linux-gnueabihf.tar.gz
  cargo-0.23.0-i686-unknown-linux-gnu.tar.gz
  cargo-0.23.0-powerpc64-unknown-linux-gnu.tar.gz
  cargo-0.23.0-powerpc64le-unknown-linux-gnu.tar.gz
  cargo-0.23.0-s390x-unknown-linux-gnu.tar.gz
  cargo-0.23.0-x86_64-unknown-linux-gnu.tar.gz

New:
----
  cargo-0.24.0-aarch64-unknown-linux-gnu.tar.gz
  cargo-0.24.0-arm-unknown-linux-gnueabihf.tar.gz
  cargo-0.24.0-armv7-unknown-linux-gnueabihf.tar.gz
  cargo-0.24.0-i686-unknown-linux-gnu.tar.gz
  cargo-0.24.0-powerpc64-unknown-linux-gnu.tar.gz
  cargo-0.24.0-powerpc64le-unknown-linux-gnu.tar.gz
  cargo-0.24.0-s390x-unknown-linux-gnu.tar.gz
  cargo-0.24.0-x86_64-unknown-linux-gnu.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rust.spec ++++++
--- /var/tmp/diff_new_pack.dJWM92/_old  2018-01-26 13:35:18.577036373 +0100
+++ /var/tmp/diff_new_pack.dJWM92/_new  2018-01-26 13:35:18.577036373 +0100
@@ -18,9 +18,7 @@
 
 
 %global prev_rust 1.22.1
-%global cargo_version 0.23.0
-%bcond_with rust_bootstrap
-
+%global cargo_version 0.24.0
 %global rust_arch %{_arch}
 %global abi gnu
 %ifarch armv7hl
@@ -38,20 +36,19 @@
 %global rust_arch powerpc64le
 %endif
 # Must restrict the x86 build to i686 since i586 is currently unsupported
-%ifarch %ix86
+%ifarch %{ix86}
 %global rust_arch i686
 %endif
 %global rust_triple %{rust_arch}-unknown-linux-%{abi}
-
 %global dl_url https://static.rust-lang.org/dist
 %global common_libdir %{_prefix}/lib
 %global rustlibdir %{common_libdir}/rustlib
-
+%bcond_with rust_bootstrap
 Name:           rust
 Version:        1.23.0
 Release:        0
 Summary:        A systems programming language
-License:        MIT or Apache-2.0
+License:        MIT OR Apache-2.0
 Group:          Development/Languages/Other
 Url:            http://www.rust-lang.org
 Source0:        %{dl_url}/rustc-%{version}-src.tar.gz
@@ -69,31 +66,23 @@
 BuildRequires:  ccache
 BuildRequires:  cmake >= 3.4.3
 BuildRequires:  curl
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  llvm-devel
 BuildRequires:  ninja
 BuildRequires:  procps
-BuildRequires:  python
-Recommends:     cargo
+BuildRequires:  python3-base
 Recommends:     %{name}-doc
 Recommends:     %{name}-std
-
-Conflicts:      otherproviders(rust)
+Recommends:     cargo
 Conflicts:      rustc-bootstrap
-
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+Conflicts:      rust
 # Restrict the architectures as building rust relies on being initially
 # bootstrapped before we can build the n+1 release
-ExclusiveArch:  x86_64 %{arm} aarch64 ppc64 ppc64le s390x
-%ifarch %ix86
-ExclusiveArch:  i586 i686
+ExclusiveArch:  x86_64 %{arm} aarch64 ppc64 ppc64le s390x %{ix86}
+%ifarch %{ix86}
 BuildArch:      i686
 %endif
-
-%if 0%{?suse_version}
-BuildRequires:  fdupes
-%endif
-
 %if %{with rust_bootstrap}
 BuildRequires:  rust-std-bootstrap = %{prev_rust}
 BuildRequires:  rustc-bootstrap = %{prev_rust}
@@ -122,7 +111,8 @@
 %package -n rust-std
 Summary:        Standard library for Rust
 Group:          Development/Languages/Other
-Conflicts:      otherproviders(rust-std)
+Requires:       %{name} = %{version}
+Conflicts:      rust-std
 
 %description -n rust-std
 This package includes the standard libraries for building
@@ -131,7 +121,8 @@
 %package -n rust-doc
 Summary:        Rust documentation
 Group:          Development/Languages/Other
-Conflicts:      otherproviders(rust-doc)
+Requires:       %{name} = %{version}
+Conflicts:      rust-doc
 
 %description -n rust-doc
 Documentation for the Rust language.
@@ -139,9 +130,10 @@
 %package -n rust-gdb
 Summary:        Gdb integration for rust binaries
 Group:          Development/Languages/Other
+Requires:       %{name} = %{version}
 Supplements:    packageand(%{name}:gdb)
+Conflicts:      rust-gdb
 Provides:       rustc:%{_bindir}/rust-gdb
-Conflicts:      otherproviders(rust-gdb)
 
 %description -n rust-gdb
 This subpackage provides pretty printers and a wrapper script for
@@ -150,6 +142,7 @@
 %package -n rust-src
 Summary:        Sources for the Rust standard library
 Group:          Development/Languages/Other
+Requires:       %{name} = %{version}
 BuildArch:      noarch
 
 %description -n rust-src
@@ -161,7 +154,7 @@
 %ifarch x86_64
 %setup -q -T -b 100 -n cargo-%{cargo_version}-%{rust_triple}
 %endif
-%ifarch %ix86
+%ifarch %{ix86}
 %setup -q -T -b 101 -n cargo-%{cargo_version}-i686-unknown-linux-%{abi}
 %endif
 %ifarch aarch64
@@ -196,14 +189,17 @@
     -e 's:<docdir>:%{_docdir}/%{name}:g' \
     %{SOURCE1} > config.toml
 
+# use python3
+sed -i -e "1s|#!.*|#!/usr/bin/python3|" x.py
+
 %build
 export CPPFLAGS="%{optflags}" # eliminate complain from RPMlint
-RUST_BACKTRACE=1 ./x.py build --config config.toml
-./x.py doc --config config.toml
+RUST_BACKTRACE=1 python3 ./x.py build --config config.toml
+python3 ./x.py doc --config config.toml
 
 %install
-DESTDIR=%{buildroot} ./x.py install
-DESTDIR=%{buildroot} ./x.py install src
+DESTDIR=%{buildroot} python3 ./x.py install
+DESTDIR=%{buildroot} python3 ./x.py install src
 
 # Remove executable permission from HTML documentation
 # to prevent RPMLINT errors.
@@ -236,15 +232,12 @@
 # Remove the license files from _docdir: make install put duplicates there
 rm 
%{buildroot}%{_docdir}/%{name}/{README.md,COPYRIGHT,LICENSE-APACHE,LICENSE-MIT}
 
-%if 0%{?suse_version}
 %fdupes %{buildroot}%{_prefix}
-%endif
 
 %post   -p /sbin/ldconfig
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root,-)
 %if 0%{?suse_version} == 1315
 %doc COPYRIGHT LICENSE-APACHE LICENSE-MIT
 %doc src/libbacktrace/LICENSE-libbacktrace
@@ -265,7 +258,6 @@
 %exclude %{rustlibdir}/src
 
 %files -n rust-std
-%defattr(-,root,root)
 %dir %{rustlibdir}
 %dir %{rustlibdir}/%{rust_triple}
 %dir %{rustlibdir}/%{rust_triple}/lib
@@ -273,23 +265,20 @@
 %{rustlibdir}/%{rust_triple}/lib/*.so
 
 %files -n rust-gdb
-%defattr(-,root,root,-)
 %{_bindir}/rust-gdb
 %dir %{rustlibdir}
-%dir %{rustlibdir}/etc
-%{rustlibdir}/etc/debugger_pretty_printers_common.py
-%{rustlibdir}/etc/gdb_load_rust_pretty_printers.py
-%{rustlibdir}/etc/gdb_rust_pretty_printing.py
-%{rustlibdir}/etc/lldb_rust_formatters.py
+%dir %{rustlibdir}%{_sysconfdir}
+%{rustlibdir}%{_sysconfdir}/debugger_pretty_printers_common.py
+%{rustlibdir}%{_sysconfdir}/gdb_load_rust_pretty_printers.py
+%{rustlibdir}%{_sysconfdir}/gdb_rust_pretty_printing.py
+%{rustlibdir}%{_sysconfdir}/lldb_rust_formatters.py
 
 %files -n rust-doc
-%defattr(-,root,root)
 %dir %{_docdir}/%{name}
 %dir %{_docdir}/%{name}/html
 %doc %{_docdir}/%{name}/html/*
 
 %files -n rust-src
-%defattr(-,root,root)
 %dir %{rustlibdir}
 %{rustlibdir}/src
 

++++++ cargo-0.23.0-aarch64-unknown-linux-gnu.tar.gz -> 
cargo-0.24.0-aarch64-unknown-linux-gnu.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-aarch64-unknown-linux-gnu/README.md 
new/cargo-0.24.0-aarch64-unknown-linux-gnu/README.md
--- old/cargo-0.23.0-aarch64-unknown-linux-gnu/README.md        2017-11-23 
00:20:36.000000000 +0100
+++ new/cargo-0.24.0-aarch64-unknown-linux-gnu/README.md        2018-01-02 
00:19:02.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-aarch64-unknown-linux-gnu/cargo/bin/cargo and 
new/cargo-0.24.0-aarch64-unknown-linux-gnu/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-aarch64-unknown-linux-gnu/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-aarch64-unknown-linux-gnu/cargo/share/doc/cargo/README.md
--- old/cargo-0.23.0-aarch64-unknown-linux-gnu/cargo/share/doc/cargo/README.md  
2017-11-23 00:20:36.000000000 +0100
+++ new/cargo-0.24.0-aarch64-unknown-linux-gnu/cargo/share/doc/cargo/README.md  
2018-01-02 00:19:02.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-aarch64-unknown-linux-gnu/version 
new/cargo-0.24.0-aarch64-unknown-linux-gnu/version
--- old/cargo-0.23.0-aarch64-unknown-linux-gnu/version  2017-11-23 
00:20:36.000000000 +0100
+++ new/cargo-0.24.0-aarch64-unknown-linux-gnu/version  2018-01-02 
00:19:02.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-arm-unknown-linux-gnueabihf.tar.gz -> 
cargo-0.24.0-arm-unknown-linux-gnueabihf.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-arm-unknown-linux-gnueabihf/README.md 
new/cargo-0.24.0-arm-unknown-linux-gnueabihf/README.md
--- old/cargo-0.23.0-arm-unknown-linux-gnueabihf/README.md      2017-11-23 
00:15:04.000000000 +0100
+++ new/cargo-0.24.0-arm-unknown-linux-gnueabihf/README.md      2018-01-02 
00:06:55.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-arm-unknown-linux-gnueabihf/cargo/bin/cargo and 
new/cargo-0.24.0-arm-unknown-linux-gnueabihf/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-arm-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-arm-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md
--- 
old/cargo-0.23.0-arm-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md    
    2017-11-23 00:15:04.000000000 +0100
+++ 
new/cargo-0.24.0-arm-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md    
    2018-01-02 00:06:55.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-arm-unknown-linux-gnueabihf/version 
new/cargo-0.24.0-arm-unknown-linux-gnueabihf/version
--- old/cargo-0.23.0-arm-unknown-linux-gnueabihf/version        2017-11-23 
00:15:04.000000000 +0100
+++ new/cargo-0.24.0-arm-unknown-linux-gnueabihf/version        2018-01-02 
00:06:55.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-armv7-unknown-linux-gnueabihf.tar.gz -> 
cargo-0.24.0-armv7-unknown-linux-gnueabihf.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/README.md 
new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/README.md
--- old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/README.md    2017-11-23 
00:16:49.000000000 +0100
+++ new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/README.md    2018-01-02 
00:14:31.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/cargo/bin/cargo and 
new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md
--- 
old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md  
    2017-11-23 00:16:49.000000000 +0100
+++ 
new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/cargo/share/doc/cargo/README.md  
    2018-01-02 00:14:31.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/version 
new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/version
--- old/cargo-0.23.0-armv7-unknown-linux-gnueabihf/version      2017-11-23 
00:16:49.000000000 +0100
+++ new/cargo-0.24.0-armv7-unknown-linux-gnueabihf/version      2018-01-02 
00:14:31.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-i686-unknown-linux-gnu.tar.gz -> 
cargo-0.24.0-i686-unknown-linux-gnu.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-i686-unknown-linux-gnu/README.md 
new/cargo-0.24.0-i686-unknown-linux-gnu/README.md
--- old/cargo-0.23.0-i686-unknown-linux-gnu/README.md   2017-11-23 
00:48:54.000000000 +0100
+++ new/cargo-0.24.0-i686-unknown-linux-gnu/README.md   2018-01-02 
00:34:04.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-i686-unknown-linux-gnu/cargo/bin/cargo and 
new/cargo-0.24.0-i686-unknown-linux-gnu/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-i686-unknown-linux-gnu/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-i686-unknown-linux-gnu/cargo/share/doc/cargo/README.md
--- old/cargo-0.23.0-i686-unknown-linux-gnu/cargo/share/doc/cargo/README.md     
2017-11-23 00:48:54.000000000 +0100
+++ new/cargo-0.24.0-i686-unknown-linux-gnu/cargo/share/doc/cargo/README.md     
2018-01-02 00:34:04.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-i686-unknown-linux-gnu/version 
new/cargo-0.24.0-i686-unknown-linux-gnu/version
--- old/cargo-0.23.0-i686-unknown-linux-gnu/version     2017-11-23 
00:48:54.000000000 +0100
+++ new/cargo-0.24.0-i686-unknown-linux-gnu/version     2018-01-02 
00:34:04.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-powerpc64-unknown-linux-gnu.tar.gz -> 
cargo-0.24.0-powerpc64-unknown-linux-gnu.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-powerpc64-unknown-linux-gnu/README.md 
new/cargo-0.24.0-powerpc64-unknown-linux-gnu/README.md
--- old/cargo-0.23.0-powerpc64-unknown-linux-gnu/README.md      2017-11-23 
00:22:18.000000000 +0100
+++ new/cargo-0.24.0-powerpc64-unknown-linux-gnu/README.md      2018-01-02 
00:21:24.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-powerpc64-unknown-linux-gnu/cargo/bin/cargo and 
new/cargo-0.24.0-powerpc64-unknown-linux-gnu/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-powerpc64-unknown-linux-gnu/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-powerpc64-unknown-linux-gnu/cargo/share/doc/cargo/README.md
--- 
old/cargo-0.23.0-powerpc64-unknown-linux-gnu/cargo/share/doc/cargo/README.md    
    2017-11-23 00:22:18.000000000 +0100
+++ 
new/cargo-0.24.0-powerpc64-unknown-linux-gnu/cargo/share/doc/cargo/README.md    
    2018-01-02 00:21:24.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-powerpc64-unknown-linux-gnu/version 
new/cargo-0.24.0-powerpc64-unknown-linux-gnu/version
--- old/cargo-0.23.0-powerpc64-unknown-linux-gnu/version        2017-11-23 
00:22:18.000000000 +0100
+++ new/cargo-0.24.0-powerpc64-unknown-linux-gnu/version        2018-01-02 
00:21:24.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-powerpc64le-unknown-linux-gnu.tar.gz -> 
cargo-0.24.0-powerpc64le-unknown-linux-gnu.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/README.md 
new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/README.md
--- old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/README.md    2017-11-23 
00:10:25.000000000 +0100
+++ new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/README.md    2018-01-02 
00:11:58.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/cargo/bin/cargo and 
new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/cargo/share/doc/cargo/README.md
--- 
old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/cargo/share/doc/cargo/README.md  
    2017-11-23 00:10:25.000000000 +0100
+++ 
new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/cargo/share/doc/cargo/README.md  
    2018-01-02 00:11:58.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/version 
new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/version
--- old/cargo-0.23.0-powerpc64le-unknown-linux-gnu/version      2017-11-23 
00:10:25.000000000 +0100
+++ new/cargo-0.24.0-powerpc64le-unknown-linux-gnu/version      2018-01-02 
00:11:58.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-s390x-unknown-linux-gnu.tar.gz -> 
cargo-0.24.0-s390x-unknown-linux-gnu.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-s390x-unknown-linux-gnu/README.md 
new/cargo-0.24.0-s390x-unknown-linux-gnu/README.md
--- old/cargo-0.23.0-s390x-unknown-linux-gnu/README.md  2017-11-23 
00:21:14.000000000 +0100
+++ new/cargo-0.24.0-s390x-unknown-linux-gnu/README.md  2018-01-02 
00:10:49.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-s390x-unknown-linux-gnu/cargo/bin/cargo and 
new/cargo-0.24.0-s390x-unknown-linux-gnu/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-s390x-unknown-linux-gnu/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-s390x-unknown-linux-gnu/cargo/share/doc/cargo/README.md
--- old/cargo-0.23.0-s390x-unknown-linux-gnu/cargo/share/doc/cargo/README.md    
2017-11-23 00:21:14.000000000 +0100
+++ new/cargo-0.24.0-s390x-unknown-linux-gnu/cargo/share/doc/cargo/README.md    
2018-01-02 00:10:49.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-s390x-unknown-linux-gnu/version 
new/cargo-0.24.0-s390x-unknown-linux-gnu/version
--- old/cargo-0.23.0-s390x-unknown-linux-gnu/version    2017-11-23 
00:21:14.000000000 +0100
+++ new/cargo-0.24.0-s390x-unknown-linux-gnu/version    2018-01-02 
00:10:49.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file

++++++ cargo-0.23.0-x86_64-unknown-linux-gnu.tar.gz -> 
cargo-0.24.0-x86_64-unknown-linux-gnu.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-x86_64-unknown-linux-gnu/README.md 
new/cargo-0.24.0-x86_64-unknown-linux-gnu/README.md
--- old/cargo-0.23.0-x86_64-unknown-linux-gnu/README.md 2017-11-23 
00:25:52.000000000 +0100
+++ new/cargo-0.24.0-x86_64-unknown-linux-gnu/README.md 2018-01-02 
00:07:14.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
Binary files old/cargo-0.23.0-x86_64-unknown-linux-gnu/cargo/bin/cargo and 
new/cargo-0.24.0-x86_64-unknown-linux-gnu/cargo/bin/cargo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cargo-0.23.0-x86_64-unknown-linux-gnu/cargo/share/doc/cargo/README.md 
new/cargo-0.24.0-x86_64-unknown-linux-gnu/cargo/share/doc/cargo/README.md
--- old/cargo-0.23.0-x86_64-unknown-linux-gnu/cargo/share/doc/cargo/README.md   
2017-11-23 00:25:52.000000000 +0100
+++ new/cargo-0.24.0-x86_64-unknown-linux-gnu/cargo/share/doc/cargo/README.md   
2018-01-02 00:07:14.000000000 +0100
@@ -1,8 +1,11 @@
+# Cargo
+
 Cargo downloads your Rust project’s dependencies and compiles your project.
 
 Learn more at http://doc.crates.io/
 
 ## Code Status
+
 [![Build 
Status](https://travis-ci.org/rust-lang/cargo.svg?branch=master)](https://travis-ci.org/rust-lang/cargo)
 [![Build 
Status](https://ci.appveyor.com/api/projects/status/github/rust-lang/cargo?branch=master&svg=true)](https://ci.appveyor.com/project/rust-lang-libs/cargo)
 
@@ -58,11 +61,10 @@
 
 [issues]: https://github.com/rust-lang/cargo/issues
 
-
 ## Contributing
 
-See [CONTRIBUTING.md](CONTRIBUTING.md)
-
+See [CONTRIBUTING.md](CONTRIBUTING.md). You may also find the arhitecture
+documentation useful ([ARCHITECTURE.md](ARCHITECTURE.md)).
 
 ## License
 
@@ -80,5 +82,7 @@
 terms of the GNU General Public License, version 2, with a linking exception,
 which can be obtained from the [upstream repository][1].
 
+See LICENSE-THIRD-PARTY for details.
+
 [1]: https://github.com/libgit2/libgit2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cargo-0.23.0-x86_64-unknown-linux-gnu/version 
new/cargo-0.24.0-x86_64-unknown-linux-gnu/version
--- old/cargo-0.23.0-x86_64-unknown-linux-gnu/version   2017-11-23 
00:25:52.000000000 +0100
+++ new/cargo-0.24.0-x86_64-unknown-linux-gnu/version   2018-01-02 
00:07:14.000000000 +0100
@@ -1 +1 @@
-0.23.0 (61fa02415 2017-11-22)
\ No newline at end of file
+0.24.0 (45043115c 2017-12-05)
\ No newline at end of file


Reply via email to