From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QmqHt-0001fU-BN for garchives@archives.gentoo.org; Fri, 29 Jul 2011 16:51:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9EFA21C06B; Fri, 29 Jul 2011 16:51:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9B03321C06B for ; Fri, 29 Jul 2011 16:51:10 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0AC381B4012 for ; Fri, 29 Jul 2011 16:51:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 676468003D for ; Fri, 29 Jul 2011 16:51:09 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <0f9753621264048e1d8a58c1c5d453b3f86fce33.zorry@gentoo> Subject: [gentoo-commits] dev/zorry:master commit in: /, gobs/ X-VCS-Repository: dev/zorry X-VCS-Files: gobs/setup.py setup.py X-VCS-Directories: / gobs/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 0f9753621264048e1d8a58c1c5d453b3f86fce33 Date: Fri, 29 Jul 2011 16:51:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: d3f2594900b3867d0ad7d07681184381 commit: 0f9753621264048e1d8a58c1c5d453b3f86fce33 Author: Magnus Granberg gentoo org> AuthorDate: Fri Jul 29 16:50:51 2011 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Fri Jul 29 16:50:51 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D= commit;h=3D0f975362 moved setup.py --- gobs/setup.py | 47 ----------------------------------------------- setup.py | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 47 deletions(-) diff --git a/gobs/setup.py b/gobs/setup.py deleted file mode 100644 index f57f27b..0000000 --- a/gobs/setup.py +++ /dev/null @@ -1,47 +0,0 @@ -## You will need a __init__.py in the gobs/pym/ dir -## This assumes you have gobs/ dir as top level - -import os - -try: - from setuptools import setup -except ImportError: - raise - from ez_setup import use_setuptools - use_setuptools() - from setuptools import setup - - - -version =3D os.path.split(os.path.abspath(__file__))[-2].split('-')[-1] = =20 - -packages =3D ['gobs'] - -package_dir =3D {'gobs':'pym'} - -setup( - name=3D"gobs", - version=3Dversion, - author=3D'Zorry', - author_email=3D'zorry@gentoo.org', - url=3D'http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3D= summary', - description=3D'Zorry Build System', - platforms=3D["any"], - license=3D"BSD", - packages=3Dpackages, - package_dir=3Dpackage_dir, - zip_safe=3DFalse, - classifiers=3D[ - "Development Status :: 5 - Production/Stable", - "Operating System :: OS Independent", - "Intended Audience :: Developers", - "License :: OSI Approved :: BSD License", - "Operating System :: POSIX", - "Topic :: System :: Distributed Computing", - "Topic :: Software Development :: Libraries :: Python Modules", - "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.5", - "Programming Language :: Python :: 2.6", - "Programming Language :: Python :: 2.7", - ], \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4399698 --- /dev/null +++ b/setup.py @@ -0,0 +1,45 @@ +## You will need a __init__.py in the gobs/pym/ dir +## This assumes you have gobs/ dir as top level + +import os + +try: + from setuptools import setup +except ImportError: + raise + from ez_setup import use_setuptools + use_setuptools() + from setuptools import setup + +version =3D os.path.split(os.path.abspath(__file__))[-2].split('-')[-1] = =20 + +packages =3D ['gobs'] + +package_dir =3D {'gobs':'pym'} + +setup( + name=3D"gobs", + version=3Dversion, + author=3D'Zorry', + author_email=3D'zorry@gentoo.org', + url=3D'http://git.overlays.gentoo.org/gitweb/?p=3Ddev/zorry.git;a=3Dsum= mary', + description=3D'Zorry Build System', + platforms=3D["any"], + license=3D"GPL2", + packages=3Dpackages, + package_dir=3Dpackage_dir, + classifiers=3D[ + "Development Status :: 5 - Production/Stable", + "Operating System :: OS Independent", + "Intended Audience :: Developers", + "License :: OSI Approved :: GPL2 License", + "Operating System :: POSIX", + "Topic :: System :: Distributed Computing", + "Topic :: Software Development :: Libraries :: Python Modules", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.5", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + ], +) \ No newline at end of file