triehash 0.3-3 source package in Ubuntu

Changelog

triehash (0.3-3) unstable; urgency=medium

  * Set Multi-Arch: foreign to make apt cross bd-installable again.
    Thanks to Helmut Grohne for reporting this

 -- Julian Andres Klode <email address hidden>  Sun, 08 Mar 2020 10:56:48 +0100

Upload details

Uploaded by:
Julian Andres Klode
Uploaded to:
Sid
Original maintainer:
Julian Andres Klode
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
triehash_0.3-3.dsc 1.8 KiB bf5c488cbeb5ea6c87b75e502138bd9ad026f6f590ab8269b5f82f653ad70159
triehash_0.3.orig.tar.gz 13.7 KiB 289a0966c02c2008cd263d3913a8e3c84c97b8ded3e08373d63a382c71d2199c
triehash_0.3-3.debian.tar.xz 2.0 KiB d74d8e16b59654d36db165cf729b152f55f50570e78d3694a59b7ca121d5634c

Available diffs

No changes file available.

Binary packages built by this source

triehash: Generates perfect hash functions as native machine code

 TrieHash generates perfect hash functions as C code which then gets
 compiled into optimal machine code as part of the usual program compilation.
 .
 TrieHash works by translating a list of strings to a trie, and then converting
 the trie to a set of recursive switch statements; first switching by length,
 and then switching by bytes.
 .
 TrieHash has various optimizations such as processing multiple bytes at once
 (on GNU C), and shortcuts for reducing the complexity of case-insensitive
 matching (ASCII only). Generated code performs substantially faster than
 gperf, but is larger.
 .
 TrieHash was written for use in APT.