You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2015/08/24 17:26:14 UTC

[1/3] qpid-proton git commit: NO-JIRA: Add trove classifiers for python versions

Repository: qpid-proton
Updated Branches:
  refs/heads/master d9ff0f2dc -> 9ea4ff323


NO-JIRA: Add trove classifiers for python versions

Signed-off-by: Kenneth Giusti <kg...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/99be6462
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/99be6462
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/99be6462

Branch: refs/heads/master
Commit: 99be6462fc02467025fc08968fa2faeedf6bd7d0
Parents: d9ff0f2
Author: Flavio Percoco <fl...@gmail.com>
Authored: Wed Aug 12 09:28:12 2015 +0200
Committer: Ken Giusti <kg...@apache.org>
Committed: Mon Aug 24 10:23:37 2015 -0400

----------------------------------------------------------------------
 proton-c/bindings/python/setup.py | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/99be6462/proton-c/bindings/python/setup.py
----------------------------------------------------------------------
diff --git a/proton-c/bindings/python/setup.py b/proton-c/bindings/python/setup.py
index a845af9..6a4ef31 100755
--- a/proton-c/bindings/python/setup.py
+++ b/proton-c/bindings/python/setup.py
@@ -371,7 +371,14 @@ setup(name='python-qpid-proton',
       license="Apache Software License",
       classifiers=["License :: OSI Approved :: Apache Software License",
                    "Intended Audience :: Developers",
-                   "Programming Language :: Python"],
+                   "Programming Language :: Python",
+                   "Programming Language :: Python :: 2"
+                   "Programming Language :: Python :: 2.6",
+                   "Programming Language :: Python :: 2.7",
+                   "Programming Language :: Python :: 3",
+                   "Programming Language :: Python :: 3.3",
+                   "Programming Language :: Python :: 3.4",
+                   "Programming Language :: Python :: 3.5"],
       cmdclass=cmdclass,
       # Note well: the following extension instance is modified during the
       # installation!  If you make changes below, you may need to update the


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[2/3] qpid-proton git commit: NO-JIRA: Handle 2-digit and 3-digit version numbers

Posted by kg...@apache.org.
NO-JIRA: Handle 2-digit and 3-digit version numbers

Signed-off-by: Kenneth Giusti <kg...@apache.org>


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

Branch: refs/heads/master
Commit: af8c61f69af9bd3bfd1e4856b57cc4c3d4fff5df
Parents: 99be646
Author: Flavio Percoco <fl...@gmail.com>
Authored: Mon Aug 17 22:21:27 2015 +0200
Committer: Ken Giusti <kg...@apache.org>
Committed: Mon Aug 24 10:29:18 2015 -0400

----------------------------------------------------------------------
 proton-c/bindings/python/setuputils/bundle.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/af8c61f6/proton-c/bindings/python/setuputils/bundle.py
----------------------------------------------------------------------
diff --git a/proton-c/bindings/python/setuputils/bundle.py b/proton-c/bindings/python/setuputils/bundle.py
index 13b88e0..29b1cac 100644
--- a/proton-c/bindings/python/setuputils/bundle.py
+++ b/proton-c/bindings/python/setuputils/bundle.py
@@ -36,7 +36,9 @@ min_qpid_proton = (0, 10)
 min_qpid_proton_str = "%i.%i" % min_qpid_proton
 
 bundled_version = (0, 10, 0)
-bundled_version_str = "%i.%i.%i" % bundled_version
+bundled_version_str = ("%i.%i" % bundled_version[:-1]
+                       if bundled_version[-1] == 0 else
+                       "%i.%i.%i" % bundled_version)
 libqpid_proton = "qpid-proton-%s.tar.gz" % bundled_version_str
 libqpid_proton_url = ("http://www.apache.org/dist/qpid/proton/%s/%s" %
                       (bundled_version_str, libqpid_proton))


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[3/3] qpid-proton git commit: NO-JIRA: fix invalid syntax for classifiers

Posted by kg...@apache.org.
NO-JIRA: fix invalid syntax for classifiers


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/9ea4ff32
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/9ea4ff32
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/9ea4ff32

Branch: refs/heads/master
Commit: 9ea4ff3236dfffde39491d685e3c32a8d3b88ddf
Parents: af8c61f
Author: Ken Giusti <kg...@apache.org>
Authored: Mon Aug 24 11:25:39 2015 -0400
Committer: Ken Giusti <kg...@apache.org>
Committed: Mon Aug 24 11:25:39 2015 -0400

----------------------------------------------------------------------
 proton-c/bindings/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/9ea4ff32/proton-c/bindings/python/setup.py
----------------------------------------------------------------------
diff --git a/proton-c/bindings/python/setup.py b/proton-c/bindings/python/setup.py
index 6a4ef31..c42e3c2 100755
--- a/proton-c/bindings/python/setup.py
+++ b/proton-c/bindings/python/setup.py
@@ -372,7 +372,7 @@ setup(name='python-qpid-proton',
       classifiers=["License :: OSI Approved :: Apache Software License",
                    "Intended Audience :: Developers",
                    "Programming Language :: Python",
-                   "Programming Language :: Python :: 2"
+                   "Programming Language :: Python :: 2",
                    "Programming Language :: Python :: 2.6",
                    "Programming Language :: Python :: 2.7",
                    "Programming Language :: Python :: 3",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org