golang-github-knetic-govaluate 3.0.0+git20171022.9aa4983-2 source package in Ubuntu

Changelog

golang-github-knetic-govaluate (3.0.0+git20171022.9aa4983-2) unstable; urgency=medium

  * Add patch to fix builds on 32bit architectures

 -- Mathias Gibbens <email address hidden>  Fri, 25 Nov 2022 14:33:33 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-knetic-govaluate_3.0.0+git20171022.9aa4983-2.dsc 2.4 KiB 410eca88a0e69f7c041bf21f73dd6d58f4340c4e0608d7ef83384ac3dc13fc5a
golang-github-knetic-govaluate_3.0.0+git20171022.9aa4983.orig.tar.gz 43.0 KiB b52e52b2eaae66b0dde682f4bece183abc83e329fe0f5a9ec9eb3c760126a09b
golang-github-knetic-govaluate_3.0.0+git20171022.9aa4983-2.debian.tar.xz 3.3 KiB dd2b3d4f0d9dd7f033db1f3177064ab003fc9562ee97d47914f4445936be2643

No changes file available.

Binary packages built by this source

golang-github-knetic-govaluate-dev: Arbitrary expression evaluation for golang (library)

 Provides support for evaluating arbitrary C-like artithmetic/string
 expressions.
 .
 Sometimes, you can't know ahead-of-time what an expression will look
 like, or you want those expressions to be configurable. Perhaps
 you've got a set of data running through your application, and you
 want to allow your users to specify some validations to run on it
 before committing it to a database. Or maybe you've written a
 monitoring framework which is capable of gathering a bunch of
 metrics, when evaluating a few expressions to see if any metrics
 should be alerted upon, but the conditions for alerting are different
 for each monitor.
 .
 A lot of people wind up writing their own half-baked style of
 evaluation language that fits their needs, but isn't complete. Or they
 wind up baking the expression into the actual executable, even if
 they know it's subject to change. These strategies may work, but they
 take time to implement, time for users to learn, and induce technical
 debt as requirements change. This library is meant to cover all the
 normal C-like expressions, so that you don't have to reinvent one of
 the oldest wheels on a computer.