golang-github-vividcortex-godaemon 0.0~git20210427.f8c5ec7-1 source package in Ubuntu

Changelog

golang-github-vividcortex-godaemon (0.0~git20210427.f8c5ec7-1) unstable; urgency=medium

  * New upstream version 0.0~git20210427.f8c5ec7
  * debhelper to v13
  * Standards-Version to 4.6.0.0

 -- Eric Dorland <email address hidden>  Thu, 19 Aug 2021 01:12:20 -0400

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

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-vividcortex-godaemon_0.0~git20210427.f8c5ec7-1.dsc 2.4 KiB bfe88857308a60cc235fad361306e8c1875c52a8b7cee948fd0109dcdcba368f
golang-github-vividcortex-godaemon_0.0~git20210427.f8c5ec7.orig.tar.xz 7.9 KiB 2a824f6ce192c289f94be12043e2527ea12a0b48cc6dcbdb01179236e9604370
golang-github-vividcortex-godaemon_0.0~git20210427.f8c5ec7-1.debian.tar.xz 2.4 KiB 8166652edf7c4aff2cdde0db8b276a41ff4cfe42e4c805fa2cff8ee860576888

No changes file available.

Binary packages built by this source

golang-github-vividcortex-godaemon-dev: Daemonize Go applications deviously

 Daemonize Go applications with exec() instead of fork().
 .
 You can't daemonize the usual way in Go. Daemonizing is a Unix concept
 that requires some specific things (http://goo.gl/vTUsVy) you can't do
 easily in Go. But you can still accomplish the same goals if you don't
 mind that your program will start copies of itself several times, as
 opposed to using fork() the way many programmers are accustomed to doing.