aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-09-21 22:51:48 -0400
committerKyle Meyer <kyle@kyleam.com>2020-09-21 23:33:34 -0400
commitf0f22c9e6b524a45e29e61b9075504e453b6800f (patch)
treee4ac141c1755eafb1e841acf06e563f834ed4e1b
parenteff82988afb26ec7f83ced924f9f4cc2c63275c2 (diff)
downloadguix-packages-f0f22c9e6b524a45e29e61b9075504e453b6800f.tar.gz
grokmirror: Update to 2.0.0
-rw-r--r--km-packages/misc.scm66
1 files changed, 4 insertions, 62 deletions
diff --git a/km-packages/misc.scm b/km-packages/misc.scm
index 2692e56..286eba4 100644
--- a/km-packages/misc.scm
+++ b/km-packages/misc.scm
@@ -78,65 +78,10 @@
(description "todo")
(license license:gpl3)))
-(define-public python-blessed
- (package
- (name "python-blessed")
- (version "1.17.4")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "blessed" version))
- (sha256
- (base32
- "1087vn3b2bspdir68ziwp0w9mflhpfpqzg9dcffrr2i9hff622ij"))
- (modules '((guix build utils)))
- (snippet
- (quote (begin
- (delete-file "blessed/win_terminal.py")
- #t)))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-before 'build 'patch-init
- (lambda _
- ;; FIXME: Look into this failing assertion.
- (substitute* "blessed/terminal.py"
- ((" assert value in \\(0, 4, 8, 16, 256, 1 << 24\\)")
- "")))))))
- (native-inputs
- `(("python-mock" ,python-mock)
- ("python-pytest" ,python-pytest)))
- (propagated-inputs
- `(("python-six" ,python-six)
- ("python-wcwidth" ,python-wcwidth)))
- (home-page "https://github.com/jquast/blessed")
- (synopsis "todo")
- (description "todo")
- (license license:expat)))
-
-(define-public python-enlighten
- (package
- (name "python-enlighten")
- (version "1.5.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "enlighten" version))
- (sha256
- (base32 "1vjmnx8wp52ris4j7r4gj88349gdfxpp7ms5vvwizym11a2r4sw3"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-blessed" ,python-blessed)))
- (home-page "https://github.com/Rockhopper-Technologies/enlighten")
- (synopsis "Enlighten Progress Bar")
- (description "todo")
- (license #f)))
-
(define-public grokmirror
(package
(name "grokmirror")
- (version "1.2.1")
+ (version "2.0.0")
(source
(origin
(method git-fetch)
@@ -146,8 +91,7 @@
(commit (string-append "v" version))))
(file-name (string-append name "-" version "-checkout"))
(sha256
- (base32
- "1kli0dzd8qx1f6dfy4pznnjwbp7gii3cbqvzrnrpcl0b5azsxr8g"))))
+ (base32 "1cs43vf87x8x5k5ncgiwiclc92a1dvxpg2z6lh6psaiip808gylp"))))
(build-system python-build-system)
(arguments
`(#:phases
@@ -161,14 +105,12 @@
(find-files "." "\\.1$")))
#t)))))
(propagated-inputs
- `(("python-anyjson" ,python-anyjson)
- ("python-enlighten" ,python-enlighten)
- ("python-gitpython" ,python-gitpython)))
+ `(("python-requests" ,python-requests)))
(home-page
"https://git.kernel.org/pub/scm/utils/grokmirror/grokmirror.git")
(synopsis "Smartly mirror git repositories that use grokmirror")
(description "todo")
- (license #f)))
+ (license license:gpl3+)))
(define-public b4
(package