golang-github-nightlyone-lockfile 0.0~git20170804.6a197d5-1.1 source package in Ubuntu

Changelog

golang-github-nightlyone-lockfile (0.0~git20170804.6a197d5-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Sat, 09 Jan 2021 13:34:47 +0100

Upload details

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

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-nightlyone-lockfile_0.0~git20170804.6a197d5-1.1.dsc 2.4 KiB f00ecfc12c0f12eac7621a6b97d262feef8d299cd5c632549693a3a10d5889dd
golang-github-nightlyone-lockfile_0.0~git20170804.6a197d5.orig.tar.gz 5.8 KiB fd4ca647c0c2ad181f39bae4cdc786e5f0efe74b533aed3a8d6720f6aeaaba49
golang-github-nightlyone-lockfile_0.0~git20170804.6a197d5-1.1.debian.tar.xz 2.1 KiB afd1ebe9970610642cd9d12d370dc5301b9481e602daa4466289a6955d8bd3c8

No changes file available.

Binary packages built by this source

golang-github-nightlyone-lockfile-dev: Golang library to handle locking via pid files

 Package lockfile handles pid file based locking.
 .
 While a sync.Mutex helps against concurrency issues within a single process,
 this package is designed to help against concurrency issues between
 cooperating processes or serializing multiple invocations of the same process.
 You can also combine sync.Mutex with Lockfile in order to serialize an action
 between different goroutines in a single program and also multiple invocations
 of this program.