From e1d199edf38c03ed390cd362727c12f006566483 Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Fri, 3 Apr 2015 09:18:08 +0200 Subject: [PATCH] Commits changes available on PyPi The release .2 on PyPi already includes changes acted uppon in Horizon. This patch commits those changes to stackforge. It also adds a .gitreview file. Change-Id: Ibc25f66dba97c2121b5d7fe485175d7cd76b6267 --- .gitreview | 4 +++ MANIFEST.in | 2 +- PKG-INFO | 25 ------------------- README.txt | 4 +-- setup.py | 2 +- .../__init__.py | 8 +++--- .../data/lrdragndrop.js} | 0 7 files changed, 12 insertions(+), 33 deletions(-) create mode 100644 .gitreview delete mode 100644 PKG-INFO rename xstatic/pkg/{angular_irdragndrop => angular_lrdragndrop}/__init__.py (90%) rename xstatic/pkg/{angular_irdragndrop/data/irdragndrop.js => angular_lrdragndrop/data/lrdragndrop.js} (100%) diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..17ae1e0 --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=review.openstack.org +port=29418 +project=stackforge/xstatic-angular-lrdragndrop.git diff --git a/MANIFEST.in b/MANIFEST.in index 397d3ca..ca53438 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ include README.txt -recursive-include xstatic/pkg/angular_irdragndrop * +recursive-include xstatic/pkg/angular_lrdragndrop * global-exclude *.pyc global-exclude *.pyo diff --git a/PKG-INFO b/PKG-INFO deleted file mode 100644 index 151a3d7..0000000 --- a/PKG-INFO +++ /dev/null @@ -1,25 +0,0 @@ -Metadata-Version: 1.0 -Name: XStatic-angular-irdragndrop -Version: 1.0.2 -Summary: irdragndrop 1.0.2 (XStatic packaging standard) -Home-page: https://github.com/lorenzofox3/lrDragNDrop -Author: Thai Tran -Author-email: tqtran@us.ibm.com -License: MIT -Description: - XStatic-angular-IrDragNDrop - ------------------- - - IrDragNDrop javascript library packaged for setuptools (easy_install) / pip. - - This package is intended to be used by **any** project that needs these files. - - It intentionally does **not** provide any extra code except some metadata - **nor** has any extra requirements. You MAY use some minimal support code from - the XStatic base package, if you like. - - You can find more info about the xstatic packaging way in the package - `XStatic`. - -Keywords: drag-n-drop angular table irdragndrop xstatic -Platform: any diff --git a/README.txt b/README.txt index 86be7eb..dc05bf6 100644 --- a/README.txt +++ b/README.txt @@ -1,8 +1,8 @@ -XStatic-angular-IrDragNDrop +XStatic-Angular-lrdragndrop ------------------- -IrDragNDrop javascript library packaged for setuptools (easy_install) / pip. +lrDragNDrop javascript library packaged for setuptools (easy_install) / pip. This package is intended to be used by **any** project that needs these files. diff --git a/setup.py b/setup.py index d7ecd21..a0a4057 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ -from xstatic.pkg import angular_smart_table as xs +from xstatic.pkg import angular_lrdragndrop as xs # The README.txt file should be written in reST so that PyPI can use # it to generate your project's PyPI page. diff --git a/xstatic/pkg/angular_irdragndrop/__init__.py b/xstatic/pkg/angular_lrdragndrop/__init__.py similarity index 90% rename from xstatic/pkg/angular_irdragndrop/__init__.py rename to xstatic/pkg/angular_lrdragndrop/__init__.py index 0a1dbb4..93c6b69 100644 --- a/xstatic/pkg/angular_irdragndrop/__init__.py +++ b/xstatic/pkg/angular_lrdragndrop/__init__.py @@ -6,7 +6,7 @@ See package 'XStatic' for documentation and basic tools. """ # official name, upper/lowercase allowed, no spaces -DISPLAY_NAME = 'IrDragNDrop' +DISPLAY_NAME = 'Angular-lrdragndrop' # name used for PyPi PACKAGE_NAME = 'XStatic-%s' % DISPLAY_NAME @@ -17,7 +17,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar') VERSION = '1.0.2' # version of the packaged files, please use the upstream # version number -BUILD = '0' # our package build number, so we can release new builds +BUILD = '2' # our package build number, so we can release new builds # with fixes for xstatic stuff. PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi @@ -25,7 +25,7 @@ DESCRIPTION = "%s %s (XStatic packaging standard)" % (DISPLAY_NAME, VERSION) PLATFORMS = 'any' CLASSIFIERS = [] -KEYWORDS = 'drag-n-drop angular table irdragndrop xstatic' +KEYWORDS = 'drag-n-drop angular table lrdragndrop xstatic' # XStatic-* package maintainer: MAINTAINER = 'Thai Tran' @@ -44,7 +44,7 @@ BASE_DIR = join(dirname(__file__), 'data') # location of the Javascript file that's the entry point for this package, if # one exists, relative to BASE_DIR -MAIN='irdragndrop.js' +MAIN='lrdragndrop.js' LOCATIONS = { # CDN locations (if no public CDN exists, use an empty dict) diff --git a/xstatic/pkg/angular_irdragndrop/data/irdragndrop.js b/xstatic/pkg/angular_lrdragndrop/data/lrdragndrop.js similarity index 100% rename from xstatic/pkg/angular_irdragndrop/data/irdragndrop.js rename to xstatic/pkg/angular_lrdragndrop/data/lrdragndrop.js