]> git.proxmox.com Git - debcargo-conf.git/commitdiff
fixed dependency problems in roff-0.1
authorAlexander Kjäll <alexander.kjall@gmail.com>
Fri, 11 Nov 2022 22:32:41 +0000 (23:32 +0100)
committerAlexander Kjäll <alexander.kjall@gmail.com>
Fri, 11 Nov 2022 22:32:41 +0000 (23:32 +0100)
src/roff-0.1/debian/RFS [new file with mode: 0644]
src/roff-0.1/debian/changelog
src/roff-0.1/debian/patches/relax-deps.patch [new file with mode: 0644]
src/roff-0.1/debian/patches/series

diff --git a/src/roff-0.1/debian/RFS b/src/roff-0.1/debian/RFS
new file mode 100644 (file)
index 0000000..4cb6047
--- /dev/null
@@ -0,0 +1 @@
+fixed dependency problems
index ec73dd65677c97179a1fe9f18738797ebe677857..47c0b8c95cf5ac572f9458603c0153029e4d0232 100644 (file)
@@ -1,5 +1,13 @@
+rust-roff-0.1 (0.1.0-3) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
+
+  * Package roff 0.1.0 from crates.io using debcargo 2.5.0
+  * Updated dependency versions to match what is in debian
+
+ -- Alexander Kjäll <alexander.kjall@gmail.com>  Fri, 11 Nov 2022 23:29:05 +0100
+
 rust-roff-0.1 (0.1.0-2) unstable; urgency=medium
 
+  [ Daniel Kahn Gillmor ]
   * Team upload.
   * Package roff 0.1.0 from crates.io using debcargo 2.5.0
   * Older semver 0.1 needed to keep rust-man in debian
diff --git a/src/roff-0.1/debian/patches/relax-deps.patch b/src/roff-0.1/debian/patches/relax-deps.patch
new file mode 100644 (file)
index 0000000..8ad5afd
--- /dev/null
@@ -0,0 +1,27 @@
+diff --git a/Cargo.toml b/Cargo.toml
+index 9b4d2e9..6b16939 100644
+--- a/Cargo.toml
++++ b/Cargo.toml
+@@ -23,7 +23,7 @@ repository = "https://github.com/killercup/roff-rs"
+ [dependencies]
+ [dev-dependencies.duct]
+-version = "0.10.0"
++version = "0.13"
+ [dev-dependencies.pretty_assertions]
+-version = "0.5.1"
++version = "1"
+diff --git a/tests/demo.rs b/tests/demo.rs
+index 62ef9e2..f2bac35 100644
+--- a/tests/demo.rs
++++ b/tests/demo.rs
+@@ -4,7 +4,7 @@ extern crate duct;
+ fn roff_to_ascii(input: &str) -> String {
+     duct::cmd("troff", &["-a", "-mman"])
+-        .input(input)
++        .stdin_bytes(input)
+         .stdout_capture()
+         .read()
+         .unwrap()
index dcf97cfc98a174fb8a51531175c9400cb05178b4..99ebb6a858c15a6a62227551c716cca7ad1181fd 100644 (file)
@@ -1 +1,2 @@
 fix-copyright.patch
+relax-deps.patch