[Python-modules-commits] [tabview] 03/03: Initial packaging.
Yuri D'Elia
wavexx-guest at moszumanska.debian.org
Sun Jul 17 18:35:51 UTC 2016
This is an automated email from the git hooks/post-receive script.
wavexx-guest pushed a commit to branch master
in repository tabview.
commit ee0ad006b63334306e90a6dd810055f4e6b7e787
Author: Yuri D'Elia <wavexx at thregr.org>
Date: Mon Jan 18 12:44:45 2016 +0100
Initial packaging.
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 41 +++++++++++++++++++++++++++++++++++++++++
debian/copyright | 27 +++++++++++++++++++++++++++
debian/docs | 1 +
debian/rules | 18 ++++++++++++++++++
debian/watch | 3 +++
7 files changed, 96 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..95d1483
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+tabview (1.4.2-1) unstable; urgency=low
+
+ * Initial release (Closes: #811294).
+
+ -- Yuri D'Elia <wavexx at thregr.org> Sun, 17 Jul 2016 20:28:43 +0200
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..834836c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,41 @@
+Source: tabview
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Yuri D'Elia <wavexx at thregr.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ python (>= 2.7),
+ python-setuptools,
+ python3,
+ python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/firecat53/tabview/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/tabview.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/tabview.git
+
+Package: python3-tabview
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Provides: tabview
+Description: curses command-line CSV and list (tabular data) viewer
+ tabview is both a minimal, stand-alone curses command-line CSV/tabular-data
+ viewer and a Python module that can be used to view basic Python types
+ directly in an interactive spreadsheet.
+ .
+ The curses interface offers VIM-like keyboard bindings, sorting and full-text
+ incremental search.
+
+Package: python-tabview
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: curses command-line CSV and list (tabular data) viewer
+ tabview is both a minimal, stand-alone curses command-line CSV/tabular-data
+ viewer and a Python module that can be used to view basic Python types
+ directly in an interactive spreadsheet.
+ .
+ The curses interface offers VIM-like keyboard bindings, sorting and full-text
+ incremental search.
+ .
+ This package only contains the python module. For the command-line client
+ refer to the python3-tabview package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..940b655
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: tabview
+Source: https://github.com/firecat53/tabview
+
+Files: *
+Copyright: 2015, Scott Hansen <firecat4153 at gmail.com>
+ 2010, A.M. Kuchling <amk at amk.ca>
+License: MIT
+
+License: MIT
+ 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/docs b/debian/docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a18627d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+export PYBUILD_NAME=tabview
+export PYBUILD_DISABLE=test
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_installchangelogs:
+ dh_installchangelogs CHANGELOG.rst
+
+override_dh_auto_install:
+ dh_auto_install
+ # Only ship binaries in the python3 package
+ rm -rf debian/python-tabview/usr/bin
+ # Remove duplicate README/LICENSE files installed by pybuild
+ rm -rf debian/python*-tabview/usr/share/doc/tabview
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..cce59d9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/tabview/tabview-(.+)\.(?: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/tabview.git
More information about the Python-modules-commits
mailing list