aboutsummaryrefslogtreecommitdiff
path: root/graphics/svgbob
Commit message (Collapse)AuthorAgeFilesLines
* lang/rust: Update to 1.37.0Tobias Kortkamp2019-08-151-0/+1
| | | | | | | | | | | | | | | - Force rebuild all consumers to catch regressions early Thanks to Mikaƫl Urankar for providing updated bootstraps for aarch64, armv6, armv7, powerpc64. Changes: https://blog.rust-lang.org/2019/08/15/Rust-1.37.0.html Tested by: jbeich, tobik, greg@unrelenting.technology (aarch64) With hat: rust Differential Revision: https://reviews.freebsd.org/D21247 Notes: svn path=/head/; revision=508994
* graphics/svgbob: Disable #![deny(warnings)] via RUSTFLAGSTobias Kortkamp2019-08-142-41/+3
| | | | | | | | | - Drop useless patch Submitted by: jbeich Notes: svn path=/head/; revision=508907
* graphics/svgbob: Unbreak with Rust 1.37.0Tobias Kortkamp2019-08-131-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | error: trait objects without an explicit `dyn` are deprecated --> src/main.rs:163:47 | 163 | fn build(args: &ArgMatches) -> Result<(), Box<Error>> { | ^^^^^ help: use `dyn`: `dyn Error` | note: lint level defined here --> src/main.rs:1:9 | 1 | #![deny(warnings)] | ^^^^^^^^ = note: #[deny(bare_trait_objects)] implied by #[deny(warnings)] error: trait objects without an explicit `dyn` are deprecated --> src/main.rs:224:68 | 224 | fn convert_file(input: PathBuf, output: PathBuf) -> Result<(), Box<Error>> { | ^^^^^ help: use `dyn`: `dyn Error` error: aborting due to 2 previous errors Remove #![deny(warnings)] (basically the equivalent to -Werror in C/C++) to fix the build with Rust 1.37.0 or greater. Notes: svn path=/head/; revision=508839
* New port: graphics/svgbobTobias Kortkamp2019-07-184-0/+165
Convert ASCII diagrams to SVG. These can be - Basic shapes - Quick logo scribbles - Sequence Diagrams - Statistical charts - Flow charts - Block diagrams - Mindmaps - Circuit diagrams WWW: https://github.com/ivanceras/svgbob Notes: svn path=/head/; revision=506853