mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Remove Attic.
This package was superseded by Borg in 2016, and hasn't built successfully for a while. * gnu/packages/backup.scm (attic): Remove variable.
This commit is contained in:
parent
48f77ecbb1
commit
15c4e135a7
1 changed files with 0 additions and 44 deletions
|
@ -696,50 +696,6 @@ (define-public borg
|
||||||
(home-page "https://www.borgbackup.org/")
|
(home-page "https://www.borgbackup.org/")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public attic
|
|
||||||
(package
|
|
||||||
(name "attic")
|
|
||||||
(version "0.16")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "Attic" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0b5skd36r4c0915lwpkqg5hxm49gls9pprs1b7hc40910wlcsl36"))))
|
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments
|
|
||||||
`(;; The tests assume they are run as root:
|
|
||||||
;; https://github.com/jborg/attic/issues/7
|
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-before
|
|
||||||
'build 'set-openssl-prefix
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
(setenv "ATTIC_OPENSSL_PREFIX" (assoc-ref inputs "openssl"))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
|
||||||
`(("acl" ,acl)
|
|
||||||
("openssl" ,openssl)
|
|
||||||
("python-msgpack" ,python-msgpack)
|
|
||||||
|
|
||||||
;; Attic is probably incompatible with llfuse > 0.41.
|
|
||||||
;; These links are to discussions of llfuse compatibility from
|
|
||||||
;; the borg project. Borg is a recent fork of attic, and attic
|
|
||||||
;; has not been updated since the fork, so it's likely that
|
|
||||||
;; llfuse compatibility requirements are still the same.
|
|
||||||
;; https://github.com/borgbackup/borg/issues/642
|
|
||||||
;; https://github.com/borgbackup/borg/issues/643
|
|
||||||
("python-llfuse" ,python-llfuse-0.41)))
|
|
||||||
(synopsis "Deduplicating backup program")
|
|
||||||
(description "Attic is a deduplicating backup program. The main goal of
|
|
||||||
Attic is to provide an efficient and secure way to backup data. The data
|
|
||||||
deduplication technique used makes Attic suitable for daily backups since only
|
|
||||||
changes are stored.")
|
|
||||||
(home-page "https://attic-backup.org/")
|
|
||||||
(license license:bsd-3)
|
|
||||||
(properties `((superseded . ,borg)))))
|
|
||||||
|
|
||||||
(define-public wimlib
|
(define-public wimlib
|
||||||
(package
|
(package
|
||||||
(name "wimlib")
|
(name "wimlib")
|
||||||
|
|
Loading…
Reference in a new issue