diff options
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 91 |
1 files changed, 61 insertions, 30 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 2d0563fe3d..1e32b2a01f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20142,18 +20142,22 @@ in your Org Agenda, and more.") (define-public emacs-org-vcard (package (name "emacs-org-vcard") - (version "0.2.0") + (version "0.3.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/flexibeast/org-vcard") + (url "https://github.com/pinoaffe/org-vcard") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "14l3xqahqmnfl3sskqcr33xpcsic8dm9cr9wmbv5la3xv14n10k7")))) + (base32 "06w4w3wxsrbv67ssnlpk8sj4jg4qvgc87cyaiin8h9f4az3yivkz")))) (build-system emacs-build-system) - (home-page "https://github.com/flexibeast/org-vcard") + (arguments + (list #:test-command #~(list "ert-runner" "tests" + "-l" "tests/org-vcard-tests.el"))) + (native-inputs (list emacs-ert-runner)) + (home-page "https://github.com/pinoaffe/org-vcard") (synopsis "Org mode support for vCard export and import") (description "This package exports and imports vCard files from within GNU Emacs' Org @@ -30449,33 +30453,36 @@ sections for bookmarks, Projectile projects, Org Agenda and more.") (license license:gpl3+))) (define-public emacs-grid - ;; No tags; use latest commit - (let ((commit "b9f6022539e1082c9117c3de137796a905ccc66d") - (revision "0")) - (package - (name "emacs-grid") - ;; Taken from source code - (version (git-version "0.1-pre" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ichernyshovvv/grid.el") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "075rb6nvazh8jkz5clykn3hrv874mffmdzqlz6iqp127vpx3cpgx")))) - (build-system emacs-build-system) - (arguments - ;; No tests - (list #:tests? #f)) - (synopsis "Library for putting text into boxes and align these boxes") - (description - "This library allows you to put text data into boxes and align them + (package + (name "emacs-grid") + (version "0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ichernyshovvv/grid.el") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1d7y54vn75n2kwfz3maf6rvr756dqp8gqms5xs2rkh7dz10hzyiv")))) + (build-system emacs-build-system) + (arguments + (list + #:test-command + #~(list "emacs" + "--batch" "--no-init-file" "--no-site-file" "--no-splash" + "-L" "test" + "-l" "grid.el" + "-l" "test/test-box.el" + "-l" "test/test-row.el" + "-f" "ert-run-tests-batch-and-exit"))) + (synopsis "Library for putting text into boxes and align these boxes") + (description + "This library allows you to put text data into boxes and align them horizontally, applying margin, padding, borders.") - (home-page "https://github.com/ichernyshovvv/grid.el") - (license license:gpl3+)))) + (home-page "https://github.com/ichernyshovvv/grid.el") + (license license:gpl3+))) (define-public emacs-slime-company (package @@ -30623,6 +30630,30 @@ When @code{gac-automatically-push-p} is non-nil, it also tries to push to the current upstream.") (license license:gpl3+))) +(define-public emacs-ultra-scroll + (package + (name "emacs-ultra-scroll") + (version "0.4.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jdtsmith/ultra-scroll") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0k1xqkxq89mz8dvzbfpks3jnrcmbd0hcz8a0hib1m3ka55hpczqz")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ;no tests + (home-page "https://github.com/jdtsmith/ultra-scroll") + (synopsis "Scroll Emacs like lightning") + (description + "@code{ultra-scroll} is a smooth-scrolling package for Emacs. It +provides highly optimized, pixel-precise smooth-scrolling which can readily +keep up with the very high event rates of modern track-pads and high-precision +wheel mice.") + (license license:gpl3+))) + (define-public emacs-smooth-scroll (package (name "emacs-smooth-scroll") |