[Python-modules-commits] [django-webpack-loader] 05/05: Initial release (Closes: #815072).

Michael Fladischer fladi at moszumanska.debian.org
Thu Feb 18 13:49:16 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository django-webpack-loader.

commit 91564fb559297fb03f6866f92b29f038532a49cb
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Thu Feb 18 13:34:34 2016 +0100

    Initial release (Closes: #815072).
---
 debian/changelog                                   |  5 +++
 debian/compat                                      |  1 +
 debian/control                                     | 45 ++++++++++++++++++++++
 debian/copyright                                   | 31 +++++++++++++++
 ...0001-Don-t-install-LICENSE-as-a-data-file.patch |  4 +-
 debian/rules                                       |  9 +++++
 debian/watch                                       |  3 ++
 7 files changed, 95 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..da14572
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-webpack-loader (0.2.4-1) unstable; urgency=low
+
+  * Initial release (Closes: #815072).
+
+ -- Michael Fladischer <fladi at debian.org>  Thu, 18 Feb 2016 13:34:08 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8ff4674
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,45 @@
+Source: django-webpack-loader
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.7
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-webpack-loader.git
+Vcs-Git: https://anonscm.debian.org/python-modules/packages/django-webpack-loader.git
+Homepage: https://github.com/owais/django-webpack-loader
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.3
+
+Package: python-django-webpack-loader
+Architecture: all
+Depends: python-django (>= 1.6),
+         ${misc:Depends},
+         ${python:Depends}
+Description: Transparently use webpack with Django (Python2 version)
+ Use webpack to generate your static bundles without Django's staticfiles or
+ opaque wrappers.
+ .
+ Django webpack loader consumes the output generated by webpack-bundle-tracker
+ and lets you use the generated bundles in Django.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-django-webpack-loader
+Architecture: all
+Depends: python3-django,
+         ${misc:Depends},
+         ${python3:Depends}
+Description: Transparently use webpack with Django (Python3 version)
+ Use webpack to generate your static bundles without Django's staticfiles or
+ opaque wrappers.
+ .
+ Django webpack loader consumes the output generated by webpack-bundle-tracker
+ and lets you use the generated bundles in Django.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f5130b9
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-webpack-loader
+Upstream-Contact: Owais Lone <hello at owaislone.org>
+Source: https://github.com/owais/django-webpack-loader
+
+Files: *
+Copyright: 2015, Owais Lone <hello at owaislone.org>
+License: Expat
+
+Files: debian/*
+Copyright: 2016, Fladischer Michael <fladi at debian.org>
+License: Expat
+
+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.
diff --git a/debian/patches/0001-Don-t-install-LICENSE-as-a-data-file.patch b/debian/patches/0001-Don-t-install-LICENSE-as-a-data-file.patch
index 4a3294f..50f5f79 100644
--- a/debian/patches/0001-Don-t-install-LICENSE-as-a-data-file.patch
+++ b/debian/patches/0001-Don-t-install-LICENSE-as-a-data-file.patch
@@ -1,8 +1,6 @@
-From edd1fe7b22cd2b067b5e2045bf7a02764c2f92a7 Mon Sep 17 00:00:00 2001
+Subject: Don't install LICENSE as a data file.
 From: Michael Fladischer <FladischerMichael at fladi.at>
 Date: Thu, 18 Feb 2016 12:56:17 +0100
-Subject: Don't install LICENSE as a data file.
-
 ---
  setup.py | 1 -
  1 file changed, 1 deletion(-)
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..affa630
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-webpack-loader
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..2553314
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/django-webpack-loader/django-webpack-loader-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-webpack-loader.git



More information about the Python-modules-commits mailing list