debian: Update package description

The Rust website now has different synopsis text.

The previous description caused this lintian warning:
description-synopsis-starts-with-article

I think the new one will trigger description-starts-with-package-name,
but in this case it seems like a reasonable thing to override.

Signed-off-by: Jordan Justen <jljusten@gmail.com>
This commit is contained in:
Jordan Justen 2015-01-06 00:32:15 -08:00
parent e78d8d05e5
commit b44366f483

17
debian/control vendored
View File

@ -15,15 +15,10 @@ Vcs-Browser: http://git.debian.org/?p=collab-maint/rust.git;a=summary
Package: rust Package: rust
Architecture: amd64 i386 Architecture: amd64 i386
Depends: ${shlibs:Depends}, ${misc:Depends} Depends: ${shlibs:Depends}, ${misc:Depends}
Description: a safe, concurrent, practical language Description: Rust systems programming language
Rust is a curly-brace, block-structured expression language. Rust is a systems programming language that runs blazingly fast,
It visually resembles the C language family, but differs significantly prevents almost all crashes, and eliminates data races.
in syntactic and semantic details. Its design is oriented toward
concerns of "programming in the large", that is, of creating and
maintaining boundaries - both abstract and operational - that
preserve large-system integrity, availability and concurrency.
. .
It supports a mixture of imperative procedural, concurrent actor, Features: zero-cost abstractions; move semantics; guaranteed memory
object-oriented and pure functional styles. Rust also supports safety; threads without data races; trait-based generics; pattern
generic programming and metaprogramming, in both static and matching; type inference; minimal runtime; efficient C bindings
dynamic styles.