Retire project

This project is not used by any other one we are not going
to do it in the future.

Change-Id: Ib5d515402764d5c804ef714bbae42733d3a95c45
This commit is contained in:
Ivan Kolodyazhny 2019-04-08 13:28:51 +03:00
parent d9b95b7ca2
commit 217ec2eeb3
11 changed files with 8 additions and 4714 deletions

4
.gitignore vendored
View File

@ -1,4 +0,0 @@
.eggs
XStatic_angular_ui_router.egg-info
build
dist

View File

@ -1,4 +0,0 @@
[gerrit]
host=review.opendev.org
port=29418
project=openstack/xstatic-angular-ui-router.git

View File

@ -1,6 +0,0 @@
include README.txt
recursive-include xstatic *
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.orig
global-exclude *.rej

View File

@ -1,14 +1,10 @@
This project is no longer maintained.
XStatic-angular-ui-router
-------------------------
The contents of this repository are still available in the Git
source code management system. To see the contents of this
repository before it reached its end of life, please check out the
previous commit with "git checkout HEAD^1".
angular-ui-router 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`.
For any further questions, please email
openstack-discuss@lists.openstack.org or join #openstack-horizon on
Freenode.

View File

@ -1,20 +0,0 @@
[metadata]
name = XStatic-angular-ui-router
description = angular-ui-router 0.3.1 (XStatic packaging standard)
description-file = README.rst
maintainer = Richard Jones
maintainer-email = r1chardj0n3s@gmail.com
home-page = https://github.com/angular-ui/ui-router
keywords = angular ui-router xstatic
license = (same as angular-ui-router)
zip_safe = False
namespace_packages =
xstatic
xstatic.pkg
[files]
packages =
xstatic
[bdist_wheel]
universal = True

View File

@ -1,25 +0,0 @@
from setuptools import setup, find_packages
from xstatic.pkg import angular_ui_router as xs
# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
long_description = open('README.txt').read()
setup(
name=xs.PACKAGE_NAME,
version=xs.PACKAGE_VERSION,
description=xs.DESCRIPTION,
long_description=long_description,
classifiers=xs.CLASSIFIERS,
keywords=xs.KEYWORDS,
maintainer=xs.MAINTAINER,
maintainer_email=xs.MAINTAINER_EMAIL,
license=xs.LICENSE,
url=xs.HOMEPAGE,
platforms=xs.PLATFORMS,
packages=find_packages(),
namespace_packages=['xstatic', 'xstatic.pkg'],
include_package_data=True,
zip_safe=False,
install_requires=[],
)

View File

@ -1 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)

View File

@ -1 +0,0 @@
__import__('pkg_resources').declare_namespace(__name__)

View File

@ -1,57 +0,0 @@
"""
XStatic resource package
See package 'XStatic' for documentation and basic tools.
"""
# official name, upper/lowercase allowed, no spaces
DISPLAY_NAME = 'angular-ui-router'
# name used for PyPi
PACKAGE_NAME = 'XStatic-%s' % DISPLAY_NAME
NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar')
# please use a all-lowercase valid python
# package name
VERSION = '0.3.1' # version of the packaged files, please use the upstream
# version number
BUILD = '4' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi
DESCRIPTION = "%s %s (XStatic packaging standard)" % (DISPLAY_NAME, VERSION)
PLATFORMS = 'any'
CLASSIFIERS = []
KEYWORDS = 'angular ui-router xstatic'
# XStatic-* package maintainer:
MAINTAINER = 'Richard Jones'
MAINTAINER_EMAIL = 'r1chardj0n3s@gmail.com'
# this refers to the project homepage of the stuff we packaged:
HOMEPAGE = 'https://github.com/angular-ui/ui-router'
# this refers to all files:
LICENSE = '(same as %s)' % DISPLAY_NAME
from os.path import join, dirname
BASE_DIR = join(dirname(__file__), 'data')
# linux package maintainers just can point to their file locations like this:
#BASE_DIR = '/usr/share/javascript/' + NAME
# location of the Javascript file that's the entry point for this package, if
# one exists, relative to BASE_DIR
MAIN=u'angular-ui-router.js'
LOCATIONS = {
# CDN locations (if no public CDN exists, use an empty dict)
# if value is a string, it is a base location, just append relative
# path/filename. if value is a dict, do another lookup using the
# relative path/filename you want.
# your relative path/filenames should usually be without version
# information, because either the base dir/url is exactly for this
# version or the mapping will care for accessing this version.
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long