From a44ad09e825fdd59d911afa64e20c9f89ecdc07e Mon Sep 17 00:00:00 2001 From: Bent Bracke Date: Mon, 12 Aug 2024 12:11:47 +0200 Subject: [PATCH] z_compression 20240724.0.0 (#1178) --- .../z_compression-20240724.0.0.toml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 index/z_/z_compression/z_compression-20240724.0.0.toml diff --git a/index/z_/z_compression/z_compression-20240724.0.0.toml b/index/z_/z_compression/z_compression-20240724.0.0.toml new file mode 100644 index 00000000..258e6104 --- /dev/null +++ b/index/z_/z_compression/z_compression-20240724.0.0.toml @@ -0,0 +1,37 @@ +name = "z_compression" +description = "Standalone version of the Zlib Deflate compression algorithm" +version = "20240724.0.0" + +authors = ["Jeffrey R. Carter"] +maintainers = ["Bent Bracke "] +maintainers-logins = ["bracke"] +licenses = "BSD-3-Clause" +website = "https://github.com/bracke/Z_Compression" +tags = ["zlib", "deflate", "compression"] + +long-description = """ +# Z_Compression +Standalone version of the Zlib Deflate compression algorithm, derived from de Montmollin's Zip-Ada + +Z_Compression.Compress applies Deflate to an input stream of bytes, defined by its generic formal subprograms Out_Of_Data and Next, producing an output stream of bytes that are passed to the generic formal procedure Put. The output may be in Zlib or raw Deflate formats. + +ZC_Test is a test/demo program for Z_Compression. Building it should also compile Z_Compression. It is invoked as + +``` +zc_test +``` + +No error checking or handling is done. It compresses the given file into a Zlib format file. The output file name is the input file name with ".zc" appended. +""" + +[build-switches] +"*".style_checks = "No" +"*".ada_version = "Ada12" + +[[depends-on]] # Avoid bug in GNAT 13 +gnat = "<13.0 | >=13.3" + +[origin] +commit = "f116f336e7d0b24f7af2a22f44d1e9e1491159ec" +url = "git+https://github.com/bracke/Z_Compression.git" +