haskell-atomic-write 0.2.0.7-3 source package in Ubuntu

Changelog

haskell-atomic-write (0.2.0.7-3) unstable; urgency=medium

  * Declare compliance with Debian policy 4.6.1
  * Sourceful upload for GHC 9.0.2

 -- Ilias Tsitsimpis <email address hidden>  Tue, 19 Jul 2022 11:10:03 +0300

Upload details

Uploaded by:
Debian Haskell Group
Uploaded to:
Sid
Original maintainer:
Debian Haskell Group
Architectures:
any all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
haskell-atomic-write_0.2.0.7-3.dsc 2.5 KiB f0b1b80a008852aaaceff21126685e8ec62b11f6aa4d17fe93aeea0eef7104f3
haskell-atomic-write_0.2.0.7.orig.tar.gz 7.0 KiB b5f5c77884bc0332306fab89acf1c8a8582d76eabaa303c91b1c4072621c960d
haskell-atomic-write_0.2.0.7-3.debian.tar.xz 2.3 KiB d37989cc7a7c9c669559c4d75711d187208adf1fff6621a5518511073aa843d0

No changes file available.

Binary packages built by this source

libghc-atomic-write-dev: No summary available for libghc-atomic-write-dev in ubuntu kinetic.

No description available for libghc-atomic-write-dev in ubuntu kinetic.

libghc-atomic-write-doc: No summary available for libghc-atomic-write-doc in ubuntu kinetic.

No description available for libghc-atomic-write-doc in ubuntu kinetic.

libghc-atomic-write-prof: Atomically write to a file; profiling libraries

 Atomically write to a file on POSIX-compliant systems while preserving
 permissions.
 .
 On most Unix systems, `mv` is an atomic operation. This makes it simple to
 write to a file atomically just by using the mv operation. However, this will
 destroy the permissions on the original file. This library does the following
 to preserve permissions while atomically writing to a file:
 .
 * If an original file exists, take those permissions and apply them to the
 temp file before `mv`ing the file into place.
 .
 * If the original file does not exist, create a following with default
 permissions (based on the currently-active umask).
 .
 This way, when the file is `mv`'ed into place, the permissions will be the
 ones held by the original file.
 .
 This library is based on similar implementations found in common libraries in
 Ruby and Python.
 .
 This package provides a library for the Haskell programming language, compiled
 for profiling. See http://www.haskell.org/ for more information on Haskell.