all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Pierre Neidhardt <mail@ambrevar.xyz>
To: 35991@debbugs.gnu.org
Subject: [bug#35991] [PATCH 2/9] gnu: Add swap-bytes.
Date: Wed, 29 May 2019 16:07:26 +0200	[thread overview]
Message-ID: <20190529140733.31108-2-mail@ambrevar.xyz> (raw)
In-Reply-To: <20190529140733.31108-1-mail@ambrevar.xyz>

* gnu/packages/lisp.scm (cl-swap-bytes, ecl-swap-bytes, sbcl-swap-bytes): New variables.
---
 gnu/packages/lisp.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 27a868c559..537150dd61 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5350,3 +5350,39 @@ decoding routines for IDNA, the International Domain Names in Applications.")
 
 (define-public ecl-idna
   (sbcl-package->ecl-package sbcl-idna))
+
+(define-public sbcl-swap-bytes
+  (package
+    (name "sbcl-swap-bytes")
+    (build-system asdf-build-system/sbcl)
+    (version "1.1")
+    (home-page "https://github.com/sionescu/swap-bytes")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1qysbv0jngdfkv53y874qjhcxc4qi8ixaqq6j8bzxh5z0931wv55"))))
+    (inputs
+     `(("trivial-features" ,sbcl-trivial-features)))
+    (native-inputs
+     `(("fiveam" ,sbcl-fiveam)))
+    (arguments
+     ;; TODO: Tests fail, why?
+     `(#:tests? #f))
+    (synopsis "Efficient endianness conversion for Common Lisp")
+    (description "This Common Lisp library provides optimized byte-swapping
+primitives.  The library can change endianness of unsigned integers of length
+1/2/4/8.  Very useful in implementing various network protocols and file
+formats.")
+    (license license:expat)))
+
+(define-public cl-swap-bytes
+  (sbcl-package->cl-source-package sbcl-swap-bytes))
+
+(define-public ecl-swap-bytes
+  (sbcl-package->ecl-package sbcl-swap-bytes))
-- 
2.21.0

  reply	other threads:[~2019-05-29 14:08 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-29 13:29 [bug#35991] [PATCH 0/9] Packaging sbcl-iolib (and dbus) Pierre Neidhardt
2019-05-29 13:29 ` [bug#35985] [PATCH 1/9] gnu: Add idna Pierre Neidhardt
2019-05-29 13:29   ` [bug#35984] [PATCH 2/9] gnu: Add swap-bytes Pierre Neidhardt
2019-05-29 13:29   ` [bug#35989] [PATCH 3/9] gnu: Add sbcl-iolib.asdf Pierre Neidhardt
2019-05-29 13:29   ` [bug#35986] [PATCH 4/9] gnu: Add sbcl-iolib.conf Pierre Neidhardt
2019-05-29 13:29   ` [bug#35988] [PATCH 5/9] gnu: Add sbcl-iolib.common-lisp Pierre Neidhardt
2019-05-29 13:29   ` [bug#35987] [PATCH 6/9] gnu: Add sbcl-iolib.base Pierre Neidhardt
2019-05-29 13:29   ` [bug#35983] [PATCH 7/9] gnu: Add sbcl-iolib.grovel Pierre Neidhardt
2019-05-29 13:29   ` [bug#35982] [PATCH 8/9] gnu: Add sbcl-iolib Pierre Neidhardt
2019-05-29 13:29   ` [bug#35990] [PATCH 9/9] gnu: Add sbcl-dbus Pierre Neidhardt
2019-05-29 14:07 ` [bug#35991] [PATCH 1/9] gnu: Add idna Pierre Neidhardt
2019-05-29 14:07   ` Pierre Neidhardt [this message]
2019-05-29 14:07   ` [bug#35991] [PATCH 3/9] gnu: Add sbcl-iolib.asdf Pierre Neidhardt
2019-05-29 14:07   ` [bug#35991] [PATCH 4/9] gnu: Add sbcl-iolib.conf Pierre Neidhardt
2019-05-29 14:07   ` [bug#35991] [PATCH 5/9] gnu: Add sbcl-iolib.common-lisp Pierre Neidhardt
2019-05-29 14:07   ` [bug#35991] [PATCH 6/9] gnu: Add sbcl-iolib.base Pierre Neidhardt
2019-05-29 14:07   ` [bug#35991] [PATCH 7/9] gnu: Add sbcl-iolib.grovel Pierre Neidhardt
2019-05-29 14:07   ` [bug#35991] [PATCH 8/9] gnu: Add sbcl-iolib Pierre Neidhardt
2019-05-29 14:07   ` [bug#35991] [PATCH 9/9] gnu: Add sbcl-dbus Pierre Neidhardt
2019-06-04 12:50 ` [bug#35991] [PATCH 0/9] Packaging sbcl-iolib (and dbus) Katherine Cox-Buday
2019-06-26  8:30   ` Pierre Neidhardt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190529140733.31108-2-mail@ambrevar.xyz \
    --to=mail@ambrevar.xyz \
    --cc=35991@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.