Compare commits

...

2 Commits

4 changed files with 575 additions and 876 deletions

1437
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "meli"
version = "0.5.0"
version = "0.5.1"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2018"

View File

@ -30,16 +30,15 @@ fn main() {
use std::process::Command;
let out_dir = env::var("OUT_DIR").unwrap();
let mut out_dir_path = Path::new(&out_dir).to_path_buf();
out_dir_path.push("meli.txt");
// Note that there are a number of downsides to this approach, the comments
// below detail how to improve the portability of these commands.
let output = Command::new("mandoc")
.args(MANDOC_OPTS)
.arg("meli.1")
.output()
.or_else(|_| Command::new("man").arg("-l").arg("meli.1").output())
.unwrap();
out_dir_path.push("meli.txt");
let mut file = File::create(&out_dir_path).unwrap();
file.write_all(&output.stdout).unwrap();
out_dir_path.pop();
@ -49,6 +48,7 @@ fn main() {
.args(MANDOC_OPTS)
.arg("meli.conf.5")
.output()
.or_else(|_| Command::new("man").arg("-l").arg("meli.conf.5").output())
.unwrap();
let mut file = File::create(&out_dir_path).unwrap();
file.write_all(&output.stdout).unwrap();
@ -59,6 +59,7 @@ fn main() {
.args(MANDOC_OPTS)
.arg("meli-themes.5")
.output()
.or_else(|_| Command::new("man").arg("-l").arg("meli-themes.5").output())
.unwrap();
let mut file = File::create(&out_dir_path).unwrap();
file.write_all(&output.stdout).unwrap();

5
debian/changelog vendored
View File

@ -1,3 +1,8 @@
meli (0.5.1-1) buster; urgency=low
* Update to 0.5.1
-- Manos Pitsidianakis <epilys@nessuent.xyz> Wed, 29 Jan 2020 22:24:08 +0200
meli (0.5.0-1) buster; urgency=low
* Update to 0.5.0