You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/11/21 17:34:02 UTC

[1/4] git commit: Add setup.cfg file with wheel package format metadata.

Updated Branches:
  refs/heads/trunk 479271796 -> 0b50e6c29


Add setup.cfg file with wheel package format metadata.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/0efbe813
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/0efbe813
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/0efbe813

Branch: refs/heads/trunk
Commit: 0efbe813cdbaed651badae65776604f718af8cf6
Parents: 4792717
Author: Tomaz Muraus <to...@apache.org>
Authored: Thu Nov 21 17:22:48 2013 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Thu Nov 21 17:22:48 2013 +0100

----------------------------------------------------------------------
 setup.cfg | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/0efbe813/setup.cfg
----------------------------------------------------------------------
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..5e40900
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,2 @@
+[wheel]
+universal = 1


[2/4] git commit: Switch from distutils to setuptools so we can use new wheel distribution package format.

Posted by to...@apache.org.
Switch from distutils to setuptools so we can use new wheel distribution package
format.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/5d18f3a4
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/5d18f3a4
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/5d18f3a4

Branch: refs/heads/trunk
Commit: 5d18f3a4ba4a379fd69233a49c189f7f9fc8bbce
Parents: 0efbe81
Author: Tomaz Muraus <to...@apache.org>
Authored: Thu Nov 21 17:27:19 2013 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Thu Nov 21 17:27:19 2013 +0100

----------------------------------------------------------------------
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/5d18f3a4/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 3211f52..6a6fab6 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ import os
 import sys
 import doctest
 
-from distutils.core import setup
+from setuptools import setup
 from distutils.core import Command
 from unittest import TextTestRunner, TestLoader
 from glob import glob


[3/4] git commit: Remove Pep8Command, we now use flake8 + tox for this.

Posted by to...@apache.org.
Remove Pep8Command, we now use flake8 + tox for this.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/f51f1cae
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/f51f1cae
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/f51f1cae

Branch: refs/heads/trunk
Commit: f51f1caea9e523de8af81b67b244012b0be411c1
Parents: 5d18f3a
Author: Tomaz Muraus <to...@apache.org>
Authored: Thu Nov 21 17:28:13 2013 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Thu Nov 21 17:28:13 2013 +0100

----------------------------------------------------------------------
 setup.py | 26 --------------------------
 1 file changed, 26 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/f51f1cae/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 6a6fab6..9693de6 100644
--- a/setup.py
+++ b/setup.py
@@ -168,31 +168,6 @@ class TestCommand(Command):
         return not res.wasSuccessful()
 
 
-class Pep8Command(Command):
-    description = "run pep8 script"
-    user_options = []
-
-    def initialize_options(self):
-        pass
-
-    def finalize_options(self):
-        pass
-
-    def run(self):
-        try:
-            import pep8
-            pep8
-        except ImportError:
-            print ('Missing "pep8" library. You can install it using pip: '
-                   'pip install pep8')
-            sys.exit(1)
-
-        cwd = os.getcwd()
-        retcode = call(('pep8 %s/libcloud/' %
-                       (cwd)).split(' '))
-        sys.exit(retcode)
-
-
 class ApiDocsCommand(Command):
     description = "generate API documentation"
     user_options = []
@@ -260,7 +235,6 @@ setup(
     url='http://libcloud.apache.org/',
     cmdclass={
         'test': TestCommand,
-        'pep8': Pep8Command,
         'apidocs': ApiDocsCommand,
         'coverage': CoverageCommand
     },


[4/4] git commit: Update release.sh script to also generate and sign wheel distribution format.

Posted by to...@apache.org.
Update release.sh script to also generate and sign wheel distribution format.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/0b50e6c2
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/0b50e6c2
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/0b50e6c2

Branch: refs/heads/trunk
Commit: 0b50e6c29d48843f03f37c2b42c34984c7e95317
Parents: f51f1ca
Author: Tomaz Muraus <to...@apache.org>
Authored: Thu Nov 21 17:31:23 2013 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Thu Nov 21 17:31:23 2013 +0100

----------------------------------------------------------------------
 dist/release.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/0b50e6c2/dist/release.sh
----------------------------------------------------------------------
diff --git a/dist/release.sh b/dist/release.sh
index d7a036b..7d2aaae 100755
--- a/dist/release.sh
+++ b/dist/release.sh
@@ -32,8 +32,9 @@ fi
 
 cd ..
 
-python setup.py sdist  --formats=bztar,zip,gztar
+python setup.py sdist --formats=bztar,zip,gztar
+python setup.py bdist_wheel
 
 cd dist
 
-./hash-sign.sh -u ${user} *.tar.bz2 *.tar.gz *.zip
+./hash-sign.sh -u ${user} *.tar.bz2 *.tar.gz *.zip *.whl