Skip to Content.
Sympa Menu

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

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 (142b8d3bb5b00409753d97e519ab0a0ebbeaf5b9)
  • Date: Fri, 25 Aug 2017 18:00:00 +0000

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

ChangeLog | 2 ++
python-pypi/isort/DETAILS | 16 +++++++++-------
python-pypi/isort/HISTORY | 5 +++++
python-pypi/mccabe/DEPENDS | 1 +
python-pypi/mccabe/DETAILS | 17 +++++++++++++++++
python-pypi/mccabe/HISTORY | 2 ++
6 files changed, 36 insertions(+), 7 deletions(-)

New commits:
commit 142b8d3bb5b00409753d97e519ab0a0ebbeaf5b9
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

isort 4.2.15

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

mccabe: new spell, McCabe complexity checker for Python

diff --git a/ChangeLog b/ChangeLog
index d6fe4a9..0409741 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
2017-08-25 Ismael Luceno <ismael AT sourcemage.org>
* python-pypi/python-docx: new spell, Create and update Microsoft
Word .docx files
+ * python-pypi/mccabe: new spell, McCabe complexity checker for
+ Python

2017-08-23 Pavel Vinogradov <public AT sourcemage.org>
* libs/tinyxml1: added old version of tinyxml
diff --git a/python-pypi/isort/DETAILS b/python-pypi/isort/DETAILS
index 4e10e7b..688d151 100755
--- a/python-pypi/isort/DETAILS
+++ b/python-pypi/isort/DETAILS
@@ -1,16 +1,18 @@
SPELL=isort
- VERSION=4.2.5
-
SOURCE_HASH=sha512:ddc8e859bb421e4179315d74896958c8279394d42a75494db5dc22c58422994aa249b63c03645626a021ccf9142941bde51ad400256ab1c6be29da8110375f40
+ VERSION=4.2.15
+
VX=4d/d5/7c8657126a43bcd3b0173e880407f48be4ac91b4957b51303eab744824cf
+
SOURCE_HASH=sha512:d2fe998118c2e6b4f2c0aaa50e7b51cac839f90895091efeba74d5aa015e75b93abc98cededa11c93c0926ee68d6240b7c3a9a3f308f6a4491960f866bafe44a
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- WEB_SITE=http://pypi.python.org/pypi/$SPELL
- SOURCE_URL[0]=https://pypi.python.org/packages/source/i/$SPELL/$SOURCE
+ WEB_SITE=http://pypi.python.org/pypi/isort
+ SOURCE_URL[0]=https://pypi.python.org/packages/$VX/$SOURCE
LICENSE[0]=MIT
ENTERED=2014-01-02
KEYWORDS="python"
SHORT="sort Python imports"
cat << EOF
-isort is a Python utility / library to sort imports alphabetically, and
automatically separated
-into sections. It provides a command line utility, Python library, Vim
plugin, Sublime plugin, and
-Kate plugin to quickly sort all your imports
+isort is a Python utility / library to sort imports alphabetically, and
+automatically separated into sections. It provides a command line utility,
+Python library, Vim plugin, Sublime plugin, and Kate plugin to quickly
+sort all your imports.
EOF
diff --git a/python-pypi/isort/HISTORY b/python-pypi/isort/HISTORY
index f29c536..b15bd03 100644
--- a/python-pypi/isort/HISTORY
+++ b/python-pypi/isort/HISTORY
@@ -1,3 +1,8 @@
+2017-08-25 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[0]
+ fixed long description wrap
+ updated spell to 4.2.15
+
2016-04-24 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 4.2.5

diff --git a/python-pypi/mccabe/DEPENDS b/python-pypi/mccabe/DEPENDS
new file mode 100755
index 0000000..e4ea57a
--- /dev/null
+++ b/python-pypi/mccabe/DEPENDS
@@ -0,0 +1 @@
+depends PYTHON
diff --git a/python-pypi/mccabe/DETAILS b/python-pypi/mccabe/DETAILS
new file mode 100755
index 0000000..8dd9335
--- /dev/null
+++ b/python-pypi/mccabe/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=mccabe
+ VERSION=0.6.1
+
VX=06/18/fa675aa501e11d6d6ca0ae73a101b2f3571a565e0f7d38e062eec18a91ee
+ SOURCE="$SPELL-$VERSION.tar.gz"
+ SOURCE_URL[0]=https://pypi.python.org/packages/$VX/$SOURCE
+
SOURCE_HASH=sha512:d8fc251a29790887c14c5932c5172b4cd578cd37ccf14cb96e80f0b97f27023427ea032d14e1e2a99d72627b055eb285f60db69e679ecd79d90a34b0255703d8
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="https://github.com/pycqa/mccabe";
+ LICENSE[0]="Expat"
+ ENTERED=20170825
+ KEYWORDS=""
+ SHORT="McCabe complexity checker for Python"
+cat << EOF
+Ned’s script to check McCabe complexity.
+
+This module provides a plugin for flake8, the Python code checker.w
+EOF
diff --git a/python-pypi/mccabe/HISTORY b/python-pypi/mccabe/HISTORY
new file mode 100644
index 0000000..4183436
--- /dev/null
+++ b/python-pypi/mccabe/HISTORY
@@ -0,0 +1,2 @@
+2017-08-25 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (142b8d3bb5b00409753d97e519ab0a0ebbeaf5b9), Ismael Luceno, 08/25/2017

Archive powered by MHonArc 2.6.24.

Top of Page