[blockdiag] 01/29: Import Debian patch 1.1.2-1

Andreas Tille tille at debian.org
Tue Jan 10 21:35:56 UTC 2017


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

tille pushed a commit to branch master
in repository blockdiag.

commit 8b9726d5080bd09bc1cacf616c618ce784e62963
Author: Kouhei Maeda <mkouhei at palmtb.net>
Date:   Sun Jan 8 18:29:25 2012 +0900

    Import Debian patch 1.1.2-1
---
 debian/changelog               |  6 ++++
 debian/compat                  |  1 +
 debian/control                 | 16 +++++++++++
 debian/copyright               | 63 ++++++++++++++++++++++++++++++++++++++++++
 debian/docs                    |  2 ++
 debian/manpages                |  1 +
 debian/patches/series          |  1 +
 debian/patches/update_egg-info | 22 +++++++++++++++
 debian/pydist-overrides        |  4 +++
 debian/rules                   | 19 +++++++++++++
 debian/source/format           |  1 +
 debian/watch                   |  2 ++
 12 files changed, 138 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..080cc7d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+blockdiag (1.1.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #626707) 
+  * Update egg-info 
+
+ -- Kouhei Maeda <mkouhei at palmtb.net>  Sun, 08 Jan 2012 18:29:25 +0900
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e70b0ea
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: blockdiag
+Section: python
+Priority: optional
+Maintainer: Kouhei Maeda <mkouhei at palmtb.net>
+Build-Depends: debhelper (>= 7.0.50~), python-all, python-setuptools 
+Standards-Version: 3.9.2
+X-Python-Version: 2.7
+Homepage: http://tk0miya.bitbucket.org/blockdiag/build/html/index.html
+
+Package: python-blockdiag
+Architecture: all
+Provides: ${python:Provides}
+Depends: ${misc:Depends}, ${python:Depends}, python-funcparserlib (>= 0.3.5), python-imaging (>= 1.1.5)
+Description: generate block-diagram image file from spec-text file
+ Generate block-diagram from dot like text with multilingualization for
+ node-label. But this supports utf-8 only.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e94c48f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,63 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: blockdiag
+Source: http://pypi.python.org/pypi/blockdiag/
+
+Files: *
+Copyright: 2010, 2011 Takeshi Komiya <i.tkomiya at gmail.com>
+License: Apache License 2.0
+
+Files: src/blockdiag/diagparser.py
+Copyright: 2008,2009 Andrey Vlasovskikh
+License: The MIT License
+
+Files: bootstrap.py
+Copyright: 2006 Zope Foundation and Contributors
+License: Zope Public License 2.1
+
+Files: debian/*
+Copyright: 2011 Kouhei Maeda <mkouhei at palmtb.net>
+License: Apache License 2.0
+
+License: Apache License 2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
+
+License: The MIT License
+ 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: Zope Public License 2.1
+ This software is subject to the provisions of the Zope Public License,
+ Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+ THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+ WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+ FOR A PARTICULAR PURPOSE.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..5b2f63a
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+src/README.txt
+src/TODO.txt
diff --git a/debian/manpages b/debian/manpages
new file mode 100644
index 0000000..a713490
--- /dev/null
+++ b/debian/manpages
@@ -0,0 +1 @@
+blockdiag.1
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..9e5a465
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+update_egg-info
diff --git a/debian/patches/update_egg-info b/debian/patches/update_egg-info
new file mode 100644
index 0000000..8b12858
--- /dev/null
+++ b/debian/patches/update_egg-info
@@ -0,0 +1,22 @@
+Index: blockdiag-1.1.2/src/blockdiag.egg-info/PKG-INFO
+===================================================================
+--- blockdiag-1.1.2.orig/src/blockdiag.egg-info/PKG-INFO	2012-01-07 10:35:06.453736612 +0900
++++ blockdiag-1.1.2/src/blockdiag.egg-info/PKG-INFO	2012-01-07 10:35:48.332259864 +0900
+@@ -1,4 +1,4 @@
+-Metadata-Version: 1.0
++Metadata-Version: 1.1
+ Name: blockdiag
+ Version: 1.1.2
+ Summary: blockdiag generate block-diagram image file from spec-text file.
+Index: blockdiag-1.1.2/src/blockdiag.egg-info/requires.txt
+===================================================================
+--- blockdiag-1.1.2.orig/src/blockdiag.egg-info/requires.txt	2012-01-07 10:35:06.453736612 +0900
++++ blockdiag-1.1.2/src/blockdiag.egg-info/requires.txt	2012-01-07 10:35:48.332259864 +0900
+@@ -2,7 +2,6 @@
+ funcparserlib
+ webcolors
+ PIL
+-OrderedDict
+ 
+ [rst]
+ docutils
diff --git a/debian/pydist-overrides b/debian/pydist-overrides
new file mode 100644
index 0000000..b136009
--- /dev/null
+++ b/debian/pydist-overrides
@@ -0,0 +1,4 @@
+PIL python-imaging
+funcparserlib python-funcparserlib
+webcolors python-webcolors
+nose python-nose
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b137190
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+#DEB_BUILD_OPTIONS=1
+
+%:
+	dh $@ --with python2
+
+override_dh_python2:
+	dh_python2
+	rm -rf $(CURDIR)/debian/python-blockdiag/usr/share/pyshared/blockdiag/tests/
+	rm -rf $(CURDIR)/debian/python-blockdiag/usr/lib/python2.?/dist-packages/blockdiag/tests/
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..34335a2
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/b/blockdiag/blockdiag-(.*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/blockdiag.git



More information about the debian-science-commits mailing list