diff options
author | jfitz <jfitz@FreeBSD.org> | 1997-06-27 01:54:31 +0000 |
---|---|---|
committer | jfitz <jfitz@FreeBSD.org> | 1997-06-27 01:54:31 +0000 |
commit | 181cbae8b9ec36a51a03feed31ccc00836944b51 (patch) | |
tree | ecf9b9b02978c03f1be96b2ff194101cd83f9f41 /devel/p5-Sort-Versions/pkg-descr | |
parent | cc439bdf9daa4a7b80a7cd74a9ef42130179bbd2 (diff) | |
download | FreeBSD-ports-181cbae8b9ec36a51a03feed31ccc00836944b51.zip FreeBSD-ports-181cbae8b9ec36a51a03feed31ccc00836944b51.tar.gz |
Import of a perl5 module to sort revision numbers
Diffstat (limited to 'devel/p5-Sort-Versions/pkg-descr')
-rw-r--r-- | devel/p5-Sort-Versions/pkg-descr | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/devel/p5-Sort-Versions/pkg-descr b/devel/p5-Sort-Versions/pkg-descr new file mode 100644 index 0000000..5b3d60b --- /dev/null +++ b/devel/p5-Sort-Versions/pkg-descr @@ -0,0 +1,21 @@ + Sort::Versions allows easy sorting of mixed non-numeric + and numeric strings, like the "version numbers" that many + shared library systems and revision control packages use. + This is quite useful if you are trying to deal with shared + libraries. It can also be applied to applications that + intersperse variable-width numeric fields within text. + Other applications can undoubtedly be found. + + For an explanation of the algorithm, it's simplest to look + at these examples: + + 1.1 < 1.2 + 1.1a < 1.2 + 1.1 < 1.1.1 + 1.1 < 1.1a + 1.1.a < 1.1a + 1 < a + a < b + 1 < 2 + 1 < 0002 + 1.5 < 1.06 |