From: Efraim Flashner <efraim@flashner.co.il>
To: 34571@debbugs.gnu.org
Subject: [bug#34571] [PATCH] Add micropython
Date: Tue, 19 Feb 2019 11:22:16 +0200 [thread overview]
Message-ID: <20190219092216.GA32103@macbook41> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 396 bytes --]
I was looking around to see if there was an alternate perl
implementation and I ended up packaging micropython. I have no
preference between it being in python.scm or embedded.scm
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #1.2: 0001-gnu-Add-micropython.patch --]
[-- Type: text/plain, Size: 2808 bytes --]
From fef607e04b951e7a893139f9afd0a0df3a2b8a52 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Tue, 19 Feb 2019 11:20:02 +0200
Subject: [PATCH] gnu: Add micropython.
* gnu/packages/python.scm (micropython): New variable.
---
gnu/packages/python.scm | 46 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 1c4ea720f..e5beac2ec 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -459,3 +459,49 @@ instead of @command{python3}.")))
(define-public python-wrapper (wrap-python3 python))
(define-public python-minimal-wrapper (wrap-python3 python-minimal))
+
+(define-public micropython
+ (package
+ (name "micropython")
+ (version "1.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/micropython/micropython/"
+ "releases/download/v" version
+ "/micropython-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1g1zjip3rkx6bp16qi1bag72wivnbh56fcsl3nffanrx4j5f4z90"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'preprare-build
+ (lambda _
+ (chdir "ports/unix")
+ ;; see: https://github.com/micropython/micropython/pull/4246
+ (substitute* "Makefile"
+ (("-Os") "-Os -ffp-contract=off"))
+ #t))
+ (delete 'configure)) ; no configure
+ #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+ "V=1")
+ #:test-target "test"))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("python" ,python-minimal-wrapper)))
+ (inputs
+ `(("libffi" ,libffi)))
+ (home-page "https://micropython.org/")
+ (synopsis "Python implementation for microcontrollers and constrained systems")
+ (description "MicroPython is a lean and efficient implementation of the
+Python 3 programming language that includes a small subset of the Python
+standard library and is optimised to run on microcontrollers and in constrained
+environments. MicroPython is packed full of advanced features such as an
+interactive prompt, arbitrary precision integers, closures, list comprehension,
+generators, exception handling and more. Still it is compact enough to fit and
+run within just 256k of code space and 16k of RAM. MicroPython aims to be as
+compatible with normal Python as possible to allow you to transfer code with
+ease from the desktop to a microcontroller or embedded system.")
+ (license license:expat)))
--
2.20.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next reply other threads:[~2019-02-19 9:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-19 9:22 Efraim Flashner [this message]
2019-02-19 9:46 ` [bug#34571] [PATCH] Add micropython Danny Milosavljevic
2019-02-19 10:10 ` Efraim Flashner
2019-02-19 10:37 ` Efraim Flashner
2019-02-19 13:02 ` Ricardo Wurmus
2019-02-20 7:10 ` bug#34571: " Efraim Flashner
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
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190219092216.GA32103@macbook41 \
--to=efraim@flashner.co.il \
--cc=34571@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 public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).