diff -Nru rust-rusty-tags-3.3.0/Cargo.toml rust-rusty-tags-3.4.0/Cargo.toml --- rust-rusty-tags-3.3.0/Cargo.toml 1970-01-01 00:00:00.000000000 +0000 +++ rust-rusty-tags-3.4.0/Cargo.toml 1970-01-01 00:00:00.000000000 +0000 @@ -12,7 +12,7 @@ [package] name = "rusty-tags" -version = "3.3.0" +version = "3.4.0" authors = ["Daniel Trstenjak "] description = "Create ctags/etags for a cargo project and all of its dependencies" readme = "README.md" @@ -49,7 +49,7 @@ version = "1.0.9" [dependencies.tempfile] -version = "2.2.0" +version = "3.0.6" [dependencies.toml] version = "0.4.5" diff -Nru rust-rusty-tags-3.3.0/Cargo.toml.orig rust-rusty-tags-3.4.0/Cargo.toml.orig --- rust-rusty-tags-3.3.0/Cargo.toml.orig 2018-12-19 16:53:50.000000000 +0000 +++ rust-rusty-tags-3.4.0/Cargo.toml.orig 2019-02-11 10:19:25.000000000 +0000 @@ -1,7 +1,7 @@ [package] name = "rusty-tags" -version = "3.3.0" +version = "3.4.0" authors = ["Daniel Trstenjak "] license = "BSD-3-Clause" description = "Create ctags/etags for a cargo project and all of its dependencies" @@ -12,7 +12,7 @@ toml = "0.4.5" clap = "2.32.0" lazy_static = "1.0.0" -tempfile = "2.2.0" +tempfile = "3.0.6" scoped_threadpool = "0.1.8" num_cpus = "1.8.0" serde = "1.0.27" diff -Nru rust-rusty-tags-3.3.0/.cargo_vcs_info.json rust-rusty-tags-3.4.0/.cargo_vcs_info.json --- rust-rusty-tags-3.3.0/.cargo_vcs_info.json 1970-01-01 00:00:00.000000000 +0000 +++ rust-rusty-tags-3.4.0/.cargo_vcs_info.json 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +1,5 @@ { "git": { - "sha1": "6f75146157babeb30b364cda94716040810c6483" + "sha1": "ec62c91d5d8c160259c2b2a11c99c33b10bae220" } } diff -Nru rust-rusty-tags-3.3.0/CHANGELOG rust-rusty-tags-3.4.0/CHANGELOG --- rust-rusty-tags-3.3.0/CHANGELOG 2018-12-19 16:55:52.000000000 +0000 +++ rust-rusty-tags-3.4.0/CHANGELOG 2019-02-11 10:21:33.000000000 +0000 @@ -1,3 +1,9 @@ +3.4.0 +----- +* Fix temporary file creation errors on Windows 10 +* Create tags for crates of kind 'test' +* Increased minimum rustc version to 1.22.0 + 3.3.0 ----- * Add indexing of 'unsafe Trait' for 'excuberant ctags' diff -Nru rust-rusty-tags-3.3.0/debian/changelog rust-rusty-tags-3.4.0/debian/changelog --- rust-rusty-tags-3.3.0/debian/changelog 2019-01-29 08:42:32.000000000 +0000 +++ rust-rusty-tags-3.4.0/debian/changelog 2019-02-11 14:43:49.000000000 +0000 @@ -1,3 +1,10 @@ +rust-rusty-tags (3.4.0-1) unstable; urgency=medium + + * Package rusty-tags 3.4.0 from crates.io using debcargo 2.2.10 + * Fix section for the source package. Closes: #921466 + + -- Robin Krahl Mon, 11 Feb 2019 15:43:49 +0100 + rust-rusty-tags (3.3.0-1) unstable; urgency=medium * Initial release. Closes: #920392 diff -Nru rust-rusty-tags-3.3.0/debian/control rust-rusty-tags-3.4.0/debian/control --- rust-rusty-tags-3.3.0/debian/control 2019-01-29 08:42:32.000000000 +0000 +++ rust-rusty-tags-3.4.0/debian/control 2019-02-11 14:43:49.000000000 +0000 @@ -1,5 +1,5 @@ Source: rust-rusty-tags -Section: FIXME-(source.section) +Section: rust Priority: optional Build-Depends: debhelper (>= 11), dh-cargo (>= 15), @@ -16,7 +16,7 @@ librust-serde-1+default-dev (>= 1.0.27-~~), librust-serde-derive-1+default-dev (>= 1.0.27-~~), librust-serde-json-1+default-dev (>= 1.0.9-~~), - librust-tempfile-3+default-dev | librust-tempfile-2+default-dev (>= 2.2.0-~~), + librust-tempfile-3+default-dev (>= 3.0.5-~~), librust-toml-0.4+default-dev (>= 0.4.5-~~) Maintainer: Debian Rust Maintainers Uploaders: @@ -28,7 +28,6 @@ Package: rusty-tags Architecture: any Multi-Arch: allowed -Section: rust Depends: ${misc:Depends}, ${shlibs:Depends}, diff -Nru rust-rusty-tags-3.3.0/debian/debcargo.toml rust-rusty-tags-3.4.0/debian/debcargo.toml --- rust-rusty-tags-3.3.0/debian/debcargo.toml 2019-01-29 08:42:32.000000000 +0000 +++ rust-rusty-tags-3.4.0/debian/debcargo.toml 2019-02-11 14:43:49.000000000 +0000 @@ -3,8 +3,10 @@ summary = "generate tags for source code navigation for a cargo project" depends = ["exuberant-ctags"] -[packages.bin] +[source] section = "rust" + +[packages.bin] description = """ rusty-tags is a command-line tool that creates tags for source code navigation using ctags for a cargo project, all of its direct and diff -Nru rust-rusty-tags-3.3.0/debian/patches/relax-dep-versions.patch rust-rusty-tags-3.4.0/debian/patches/relax-dep-versions.patch --- rust-rusty-tags-3.3.0/debian/patches/relax-dep-versions.patch 2019-01-29 08:42:32.000000000 +0000 +++ rust-rusty-tags-3.4.0/debian/patches/relax-dep-versions.patch 2019-02-11 14:43:49.000000000 +0000 @@ -15,8 +15,8 @@ version = "1.0.9" [dependencies.tempfile] --version = "2.2.0" -+version = ">= 2.2.0, < 4" +-version = "3.0.6" ++version = ">= 3.0.5, < 4" [dependencies.toml] version = "0.4.5" diff -Nru rust-rusty-tags-3.3.0/src/dependencies.rs rust-rusty-tags-3.4.0/src/dependencies.rs --- rust-rusty-tags-3.3.0/src/dependencies.rs 2018-11-04 16:07:25.000000000 +0000 +++ rust-rusty-tags-3.4.0/src/dependencies.rs 2019-02-11 10:15:23.000000000 +0000 @@ -160,7 +160,7 @@ let kind_str = kind.as_str() .ok_or(format!("Expected 'kind' of type string but found: {}", to_string_pretty(kind)))?; - if kind_str != "bin" && ! kind_str.contains("lib") && kind_str != "proc-macro" { + if kind_str != "bin" && ! kind_str.contains("lib") && kind_str != "proc-macro" && kind_str != "test" { verbose!(config, "Unsupported target kind: {}", kind_str); continue; } diff -Nru rust-rusty-tags-3.3.0/.travis.yml rust-rusty-tags-3.4.0/.travis.yml --- rust-rusty-tags-3.3.0/.travis.yml 2018-11-06 17:52:51.000000000 +0000 +++ rust-rusty-tags-3.4.0/.travis.yml 2019-02-11 10:15:23.000000000 +0000 @@ -3,7 +3,7 @@ - stable - beta - nightly - - 1.20.0 + - 1.22.0 notifications: email: