Commit ae06aa47 authored by Thomas Goirand's avatar Thomas Goirand
Browse files

Added intial debian folder.

parent ad6e5733
python-xstatic-jquery.bootstrap.wizard (1.0.0.1-1) unstable; urgency=medium
* Initial release (Closes: #761383).
-- Thomas Goirand <zigo@debian.org> Sat, 06 Sep 2014 17:49:46 +0800
Source: python-xstatic-jquery.bootstrap.wizard
Section: python
Priority: optional
Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
Uploaders: Thomas Goirand <zigo@debian.org>
Build-Depends: debhelper (>= 9),
python-all (>= 2.6.6-3~),
python-setuptools,
python3-all,
python3-setuptools
Build-Conflicts: python-xstatis, python3-xstatic
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-xstatic-jquery.bootstrap.wizard.git
Vcs-Git: git://anonscm.debian.org/openstack/python-xstatic-jquery.bootstrap.wizard.git
Homepage: https://github.com/stackforge/XStatic-JQuery.Bootstrap.Wizard
Package: python-xstatic-jquery.bootstrap.wizard
Architecture: all
Pre-Depends: dpkg (>= 1.15.6~)
Depends: libjs-twitter-bootstrap-wizard,
python-xstatic,
${misc:Depends},
${python:Depends}
Description: JQuery.Bootstrap.Wizard XStatic support - Python 2.x
XStatic is a Python web development tool for handling required static data
files from external projects, such as CSS, images, and JavaScript. It provides
a lightweight infrastructure to manage them via Python modules that your app
can depend on in a portable, virtualenv-friendly way instead of using embedded
copies.
.
This package contains the Python 2.x module XStatic support for
JQuery.Bootstrap.Wizard See the libjs-twitter-bootstrap-wizard package for
more information.
Package: python3-xstatic-jquery.bootstrap.wizard
Architecture: all
Pre-Depends: dpkg (>= 1.15.6~)
Depends: libjs-twitter-bootstrap-wizard,
python3-xstatic,
${misc:Depends},
${python3:Depends}
Description: JQuery.Bootstrap.Wizard XStatic support - Python 3.x
XStatic is a Python web development tool for handling required static data
files from external projects, such as CSS, images, and JavaScript. It provides
a lightweight infrastructure to manage them via Python modules that your app
can depend on in a portable, virtualenv-friendly way instead of using embedded
copies.
.
This package contains the Python 3.x module XStatic support for
JQuery.Bootstrap.Wizard See the libjs-twitter-bootstrap-wizard package for
more information.
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: XStatic-JQuery.Bootstrap.Wizard
Upstream-Contact: Radomir Dopieralski <openstack@sheep.art.pl>
Source: https://github.com/stackforge/XStatic-JQuery.Bootstrap.Wizard
Files: debian/*
Copyright: (c) 2014, Thomas Goirand <zigo@debian.org>
License: Expat or GPL-3
Files: *
Copyright: (c) 2013, Radomir Dopieralski <openstack@sheep.art.pl>
(c) 2013, Vadim Vincent Gabriel <vadimg88@gmail.com>
(c) 2013, Jason Gill (www.gilluminate.com)
License: Expat or GPL-3
Comment:
Original source for jquery-bootstrap-wizard may be found at:
http://github.com/VinceG/twitter-bootstrap-wizard
License: Expat
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
License: GPL-3
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 3 of the License.
.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
St, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU General Public License v3
(GPL) can be found in /usr/share/common-licenses/GPL-3.
[DEFAULT]
upstream-branch = master
debian-branch = debian/unstable
upstream-tag = %(version)s
compression = xz
[git-buildpackage]
export-dir = ../build-area/
Description: Debianize
Use files from libjs-twitter-bootstrap-wizard
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2014-09-15
--- python-xstatic-jquery.bootstrap.wizard-1.0.0.1.orig/xstatic/pkg/jquery_bootstrap_wizard/__init__.py
+++ python-xstatic-jquery.bootstrap.wizard-1.0.0.1/xstatic/pkg/jquery_bootstrap_wizard/__init__.py
@@ -34,9 +34,9 @@ HOMEPAGE = 'http://github.com/VinceG/twi
LICENSE = '(same as %s)' % DISPLAY_NAME
from os.path import join, dirname
-BASE_DIR = join(dirname(__file__), 'data')
+#BASE_DIR = join(dirname(__file__), 'data')
# linux package maintainers just can point to their file locations like this:
-#BASE_DIR = '/usr/share/javascript/jquery_bootstrap_wizard'
+BASE_DIR = '/usr/share/javascript/jquery-bootstrap-wizard'
LOCATIONS = {
# CDN locations (if no public CDN exists, use an empty dict)
#!/usr/bin/make -f
PYTHONS:=$(shell pyversions -vr)
PYTHON3S:=$(shell py3versions -vr)
UPSTREAM_GIT = git://github.com/stackforge/XStatic-JQuery.Bootstrap.Wizard.git
-include /usr/share/openstack-pkg-tools/pkgos.make
%:
dh $@ --buildsystem=python_distutils --with python2,python3
override_dh_install:
set -e && for pyvers in $(PYTHONS); do \
python$$pyvers setup.py install --install-layout=deb \
--root $(CURDIR)/debian/python-xstatic-jquery.bootstrap.wizard; \
done
set -e && for pyvers in $(PYTHON3S); do \
python$$pyvers setup.py install --install-layout=deb \
--root $(CURDIR)/debian/python3-xstatic-jquery.bootstrap.wizard; \
done
rm -rf $(CURDIR)/debian/python*-xstatic-jquery.bootstrap.wizard/usr/lib/python*/dist-packages/xstatic/pkg/jquery_bootstrap_wizard/data
rm -rf $(CURDIR)/debian/python*-xstatic-jquery.bootstrap.wizard/usr/lib/python*/dist-packages/*.pth
override_dh_clean:
dh_clean -O--buildsystem=python_distutils
rm -rf build
# Commands not to run
override_dh_installcatalogs:
override_dh_installemacsen override_dh_installifupdown:
override_dh_installinfo override_dh_installmenu override_dh_installmime:
override_dh_installmodules override_dh_installlogcheck:
override_dh_installpam override_dh_installppp override_dh_installudev override_dh_installwm:
override_dh_installxfonts override_dh_gconf override_dh_icons override_dh_perl override_dh_usrlocal:
override_dh_installcron override_dh_installdebconf:
override_dh_installlogrotate override_dh_installgsettings:
extend-diff-ignore = "^[^/]*[.]egg-info/"
version=3
http://pypi.python.org/packages/source/X/XStatic-JQuery.Bootstrap.Wizard XStatic-JQuery.Bootstrap.Wizard-(.*).tar.gz
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment