all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Famulari <leo@famulari.name>
To: guix-devel@gnu.org
Subject: [v3 1/3] gnu: Add python-llfuse.
Date: Tue,  1 Sep 2015 17:33:51 -0400	[thread overview]
Message-ID: <6fb6ac3ca678e112f6be0237c990264b508c72dd.1441143065.git.leo@famulari.name> (raw)
In-Reply-To: <cover.1441143065.git.leo@famulari.name>
In-Reply-To: <cover.1441143065.git.leo@famulari.name>

* gnu/packages/python.scm (python-llfuse, python2-llfuse): New variables.
---
Changes in v3:
  - Fix commit message.

Changes in v2:
  - Move llfuse.scm into python.scm. Rename to python-llfuse, python2-llfuse.
  - Update to new upstream version
  - Correct license field.
  - Make description more generic.

 gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 75f285f..7846c7b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
+;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -33,6 +34,7 @@
                           isc psfl public-domain x11-style))
   #:use-module ((guix licenses) #:select (expat zlib) #:prefix license:)
   #:use-module (gnu packages)
+  #:use-module (gnu packages attr)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages fontutils)
@@ -45,6 +47,7 @@
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
   #:use-module (gnu packages libffi)
+  #:use-module (gnu packages linux)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages networking)
@@ -4652,3 +4655,31 @@ or create documents in LilyPond format.  A command line program ly is also
 provided that can be used to do various manipulations with LilyPond files.")
     (home-page "https://pypi.python.org/pypi/python-ly")
     (license gpl2+)))
+
+(define-public python-llfuse
+  (package
+   (name "python-llfuse")
+   (version "0.41")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append
+                  "https://bitbucket.org/nikratio/python-llfuse/downloads/"
+                  "llfuse-" version ".tar.bz2"))
+            (sha256
+             (base32 "0yzy8ixpmxk00kdq6lx5vvwbs0n6s59qnja5q0js2ahbqyxiz2hb"))))
+   (build-system python-build-system)
+   (inputs `(("fuse" ,fuse)
+             ("attr" ,attr)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("python-setuptools" ,python-setuptools)))
+   (synopsis "Python bindings for FUSE")
+   (description "Python-LLFUSE is a set of Python bindings for the low level
+FUSE API.")
+   (home-page "https://bitbucket.org/nikratio/python-llfuse/")
+   ;; "Python-LLFUSE includes underscore.js, which is MIT (expat) licensed. The
+   ;; rest of the package is licensed LGPL2.0 or later."
+   (license (list license:expat lgpl2.0+))))
+
+(define-public python2-llfuse
+  (package-with-python2 python-llfuse))
-- 
2.4.3

  reply	other threads:[~2015-09-01 21:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-01 21:33 [v3 0/3] Add Attic backup program Leo Famulari
2015-09-01 21:33 ` Leo Famulari [this message]
2015-09-01 21:33 ` [v3 2/3] gnu: Add python-msgpack Leo Famulari
2015-09-01 21:33 ` [v3 3/3] gnu: Add attic Leo Famulari
2015-09-02 18:58 ` [v3 0/3] Add Attic backup program Alex Kost

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=6fb6ac3ca678e112f6be0237c990264b508c72dd.1441143065.git.leo@famulari.name \
    --to=leo@famulari.name \
    --cc=guix-devel@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.