Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (5d420e02676212c39f4597e18c5aa0df4d2d5f1f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (5d420e02676212c39f4597e18c5aa0df4d2d5f1f)
  • Date: Sat, 28 Sep 2019 14:55:51 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 6 ++++++
python-pypi/gmpy2/DEPENDS | 2 ++
python-pypi/gmpy2/DETAILS | 18 ++++++++++++++++++
python-pypi/gmpy2/HISTORY | 2 ++
python-pypi/python-typed-ast/DEPENDS | 1 +
python-pypi/python-typed-ast/DETAILS | 20 ++++++++++++++++++++
python-pypi/python-typed-ast/HISTORY | 2 ++
7 files changed, 51 insertions(+)

New commits:
commit 5d420e02676212c39f4597e18c5aa0df4d2d5f1f
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

python-typed-ast: new spell, ast module that parses type information

commit b32b3e759bde0d5a8462c32953265822d394816e
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

gmpy2: new spell, GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x

diff --git a/ChangeLog b/ChangeLog
index 1bb8b59..ed08e3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-09-27 Ismael Luceno <ismael AT sourcemage.org>
+ * python-pypi/gmpy2: new spell, GMP/MPIR, MPFR, and MPC interface
+ to Python 2.6+ and 3.x
+ * python-pypi/python-typed-ast: new spell, ast module that parses
+ type information
+
2019-09-26 Treeve Jelbert <treeve AT sourcemage.org>
* qt5-cmake/simple-mail: added smtp library for Qt

diff --git a/python-pypi/gmpy2/DEPENDS b/python-pypi/gmpy2/DEPENDS
new file mode 100755
index 0000000..c74f433
--- /dev/null
+++ b/python-pypi/gmpy2/DEPENDS
@@ -0,0 +1,2 @@
+depends PYTHON &&
+depends gmp
diff --git a/python-pypi/gmpy2/DETAILS b/python-pypi/gmpy2/DETAILS
new file mode 100755
index 0000000..3b44651
--- /dev/null
+++ b/python-pypi/gmpy2/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=gmpy2
+ VERSION=2.0.8
+ SOURCE="$SPELL-$VERSION.zip"
+
SOURCE_URL[0]=https://pypi.python.org/packages/90/f4/9a2e384b325b69bc5827b9a6510a8fb4a51698c915c06a3f25a86458892a/$SOURCE
+
SOURCE_HASH=sha512:090f449641f378c73eb166831b1d956c6cee3da83e42fde8741f18aa0fa687e37927fc3b045d4b35e3a3b75570e6b1074150d8bc29d16119ab5c717bcfcf9fb4
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="https://pypi.python.org/pypi/gmpy2";
+ LICENSE[0]="GPLv3+"
+ ENTERED=20190927
+ KEYWORDS=""
+ SHORT="GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x"
+cat << EOF
+gmpy2 is a C-coded Python extension module that supports multiple-precision
+arithmetic. In addition to supporting GMP or MPIR for multiple-precision
+integer and rational arithmetic, gmpy2 adds support for the MPFR (correctly
+rounded real floating-point arithmetic) and MPC (correctly rounded complex
+floating-point arithmetic) libraries.
+EOF
diff --git a/python-pypi/gmpy2/HISTORY b/python-pypi/gmpy2/HISTORY
new file mode 100644
index 0000000..b0b34eb
--- /dev/null
+++ b/python-pypi/gmpy2/HISTORY
@@ -0,0 +1,2 @@
+2019-09-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created
diff --git a/python-pypi/python-typed-ast/DEPENDS
b/python-pypi/python-typed-ast/DEPENDS
new file mode 100755
index 0000000..8c09196
--- /dev/null
+++ b/python-pypi/python-typed-ast/DEPENDS
@@ -0,0 +1 @@
+depends python3
diff --git a/python-pypi/python-typed-ast/DETAILS
b/python-pypi/python-typed-ast/DETAILS
new file mode 100755
index 0000000..4e797da
--- /dev/null
+++ b/python-pypi/python-typed-ast/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=python-typed-ast
+ VERSION=1.4.0
+ SOURCE="typed_ast-${VERSION}.tar.gz"
+
SOURCE_URL[0]=https://files.pythonhosted.org/packages/34/de/d0cfe2ea7ddfd8b2b8374ed2e04eeb08b6ee6e1e84081d151341bba596e5/${SOURCE}
+
SOURCE_HASH=sha512:b74e7fc51cde16439eae7cf41f0bdb95b5998362eccb73cf736f343cdab64daab63bc0f95f05a4911b229761749bdd31ac83423b58f2f3e1e1dadc7e6015bc1c
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SOURCE%.tar.gz}"
+ WEB_SITE="https://github.com/python/typed_ast";
+ LICENSE[0]="Apache-2.0"
+ ENTERED=20190927
+ KEYWORDS=""
+ SHORT="ast module that parses type information"
+cat << EOF
+typed_ast is a Python 3 package that provides a Python 2.7 and Python 3
parser
+similar to the standard ast library. Unlike ast, the parsers in typed_ast
+include PEP 484 type comments and are independent of the version of Python
+under which they are run. The typed_ast parsers produce the standard Python
+AST (plus type comments), and are both fast and correct, as they are based on
+the CPython 2.7 and 3.7 parsers. typed_ast runs on CPython 3.5-3.8 on Linux,
+OS X and Windows.
+EOF
diff --git a/python-pypi/python-typed-ast/HISTORY
b/python-pypi/python-typed-ast/HISTORY
new file mode 100644
index 0000000..b0b34eb
--- /dev/null
+++ b/python-pypi/python-typed-ast/HISTORY
@@ -0,0 +1,2 @@
+2019-09-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (5d420e02676212c39f4597e18c5aa0df4d2d5f1f), Ismael Luceno, 09/28/2019

Archive powered by MHonArc 2.6.24.

Top of Page