From ed8bc028f797604a9418d2c3d2edec19033064ce Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Fri, 28 Oct 2016 19:50:32 +0200 Subject: gnu: Add emacs-org-trello. * gnu/packages/emacs.scm (emacs-org-trello): New variable. --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5131628178..7c147845fd 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2086,6 +2086,32 @@ number.") @code{org-mode} to be rendered as UTF-8 characters.") (license license:gpl3+))) +(define-public emacs-org-trello + (package + (name "emacs-org-trello") + (version "0.7.9") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/org-trello/org-trello/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-deferred" ,emacs-deferred) + ("emacs-request" ,emacs-request) + ("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s))) + (home-page "https://org-trello.github.io") + (synopsis "Emacs minor mode for interacting with Trello") + (description "This package provides an Emacs minor mode to extend +@code{org-mode} with Trello abilities. Trello is an online project +organizer.") + (license license:gpl3+))) + (define-public emacs-zenburn-theme (package (name "emacs-zenburn-theme") -- cgit 1.4.1 From 900fb8d005e47d1b344cb9c448f1c3c785d94a0a Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 28 Oct 2016 13:55:29 -0400 Subject: gnu: python-twobitreader: Disable the test suite. The tests were silently skipped with Python 3.4. With Python 3.5, this caused the build of python-twobitreader to fail. * gnu/packages/bioinformatics.scm (python-twobitreader, python2-twobitreader)[arguments]: Disable the tests. --- gnu/packages/bioinformatics.scm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4e9397e14e..0b6e14df89 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1435,6 +1435,11 @@ also includes an interface for tabix.") "0y408fp6psqzwxpcpqn0wp7fr41dwz8d54wpj6j261fj5q8vs169")))) (properties `((python2-variant . ,(delay python2-twobitreader)))) (build-system python-build-system) + (arguments + '(;; Tests are not distributed in the PyPi release. + ;; TODO Try building from the Git repo or asking the upstream maintainer + ;; to distribute the tests on PyPi. + #:tests? #f)) (native-inputs `(("python-sphinx" ,python-sphinx))) (home-page "https://github.com/benjschiller/twobitreader") -- cgit 1.4.1 From 044ac8d2947ffe3775ab8bb70b264bfb2a1310ce Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Fri, 28 Oct 2016 13:56:47 -0400 Subject: gnu: python-twobitreader: Update to 3.1.4. * gnu/packages/bioinformatics.scm (python-twobitreader, python2-twobitreader): Update to 3.1.4. --- gnu/packages/bioinformatics.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 0b6e14df89..4750cb97bf 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1426,13 +1426,13 @@ also includes an interface for tabix.") (define-public python-twobitreader (package (name "python-twobitreader") - (version "3.1.2") + (version "3.1.4") (source (origin (method url-fetch) (uri (pypi-uri "twobitreader" version)) (sha256 (base32 - "0y408fp6psqzwxpcpqn0wp7fr41dwz8d54wpj6j261fj5q8vs169")))) + "1q8wnj2kga9nz1lwc4w7qv52smfm536hp6mc8w6s53lhyj0mpi22")))) (properties `((python2-variant . ,(delay python2-twobitreader)))) (build-system python-build-system) (arguments -- cgit 1.4.1