[ARVADOS] updated: 6d3186381b3e6f4735892e4d8198ae4d0ca32cf5

git at public.curoverse.com git at public.curoverse.com
Fri Jul 18 11:05:05 EDT 2014


Summary of changes:
 sdk/python/MANIFEST.in    | 1 +
 sdk/python/setup.py       | 2 +-
 services/fuse/MANIFEST.in | 1 +
 services/fuse/setup.py    | 2 +-
 4 files changed, 4 insertions(+), 2 deletions(-)
 create mode 100644 sdk/python/MANIFEST.in
 create mode 100644 services/fuse/MANIFEST.in

       via  6d3186381b3e6f4735892e4d8198ae4d0ca32cf5 (commit)
      from  a7a6110f549ae87f6397b53c6d0292bb0cc2ce04 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 6d3186381b3e6f4735892e4d8198ae4d0ca32cf5
Author: Brett Smith <brett at curoverse.com>
Date:   Fri Jul 18 11:06:02 2014 -0400

    3252: Include README in Python source manifest.
    
    The real issue with our Python package builds is that this file isn't
    being included, which causes setup.py to fail when it's run from a
    source tarfile.  It *is* being included on my box, but that seems to
    be because of extra information from git, or lingering information in
    my .egg-info directory.  This change should make sure README is
    included when a clean sdist is prepared.
    
    This reverts commit e16c1ecc8097fd586e86fc90206836000b5f5004,
    since that wasn't the real bugfix.  Refs #3252.

diff --git a/sdk/python/MANIFEST.in b/sdk/python/MANIFEST.in
new file mode 100644
index 0000000..9561fb1
--- /dev/null
+++ b/sdk/python/MANIFEST.in
@@ -0,0 +1 @@
+include README.rst
diff --git a/sdk/python/setup.py b/sdk/python/setup.py
index 020ae76..2c51e8f 100644
--- a/sdk/python/setup.py
+++ b/sdk/python/setup.py
@@ -4,7 +4,7 @@ import os
 
 from setuptools import setup, find_packages
 
-README = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.rst')
+README = os.path.join(os.path.dirname(__file__), 'README.rst')
 
 setup(name='arvados-python-client',
       version='0.1',
diff --git a/services/fuse/MANIFEST.in b/services/fuse/MANIFEST.in
new file mode 100644
index 0000000..9561fb1
--- /dev/null
+++ b/services/fuse/MANIFEST.in
@@ -0,0 +1 @@
+include README.rst
diff --git a/services/fuse/setup.py b/services/fuse/setup.py
index 23791ca..d9fe797 100644
--- a/services/fuse/setup.py
+++ b/services/fuse/setup.py
@@ -4,7 +4,7 @@ import os
 
 from setuptools import setup, find_packages
 
-README = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.rst')
+README = os.path.join(os.path.dirname(__file__), 'README.rst')
 
 setup(name='arvados_fuse',
       version='0.1',

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list