[Python-apps-commits] r11741 - in packages/backupchecker/trunk (11 files)

chaica-guest at users.alioth.debian.org chaica-guest at users.alioth.debian.org
Sun Feb 15 22:50:57 UTC 2015


    Date: Sunday, February 15, 2015 @ 22:50:56
  Author: chaica-guest
Revision: 11741

[svn-inject] Applying Debian modifications (1.1-1) to trunk

Added:
  packages/backupchecker/trunk/debian/
  packages/backupchecker/trunk/debian/changelog
  packages/backupchecker/trunk/debian/compat
  packages/backupchecker/trunk/debian/control
  packages/backupchecker/trunk/debian/copyright
  packages/backupchecker/trunk/debian/install
  packages/backupchecker/trunk/debian/manpages
  packages/backupchecker/trunk/debian/rules
  packages/backupchecker/trunk/debian/source/
  packages/backupchecker/trunk/debian/source/format
  packages/backupchecker/trunk/debian/watch


Property changes on: packages/backupchecker/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/backupchecker/trunk/debian/changelog
===================================================================
--- packages/backupchecker/trunk/debian/changelog	                        (rev 0)
+++ packages/backupchecker/trunk/debian/changelog	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1,5 @@
+backupchecker (1.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #642655)
+
+ -- Carl Chenet <chaica at debian.org>  Fri, 19 Jul 2013 00:36:50 +0100

Added: packages/backupchecker/trunk/debian/compat
===================================================================
--- packages/backupchecker/trunk/debian/compat	                        (rev 0)
+++ packages/backupchecker/trunk/debian/compat	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1 @@
+9

Added: packages/backupchecker/trunk/debian/control
===================================================================
--- packages/backupchecker/trunk/debian/control	                        (rev 0)
+++ packages/backupchecker/trunk/debian/control	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1,19 @@
+Source: backupchecker
+Priority: optional
+Section: python
+Maintainer: Carl Chenet <chaica at debian.org>
+Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python3-all
+X-Python3-Version: >= 3.4
+Standards-Version: 3.9.6.1
+Homepage: https://github.com/backupchecker/backupchecker
+Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/backupchecker/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/backupchecker/trunk/
+
+Package: backupchecker
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: fully automated backup checker
+ Backup Checker parses backups (archives and file tree) to perform
+ several different checks in order to verify your backup integrity
+ and its associated content.

Added: packages/backupchecker/trunk/debian/copyright
===================================================================
--- packages/backupchecker/trunk/debian/copyright	                        (rev 0)
+++ packages/backupchecker/trunk/debian/copyright	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1,36 @@
+This package was debianized by Chenet Carl <chaica at ohmytux.com> on
+Fri, 14 Feb 2015 00:32:58 +0100.
+
+It was downloaded from https://github.com/backupchecker/backupchecker
+
+Upstream Author: 
+
+    Chenet Carl <chaica at backupchecker.com>
+
+Copyright: 
+
+    Copyright © 2015 Carl Chenet <chaica at backupchecker.com>
+
+License:
+
+    This package 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, or
+    any later version.
+ 
+    This package 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 package; 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 can be found in `/usr/share/common-licenses/GPL-3'.
+
+The Debian packaging is © 2015, Chenet Carl <chaica at ohmytux.com> and
+is licensed under the GPL-3 or any later version, see above.
+
+

Added: packages/backupchecker/trunk/debian/install
===================================================================
--- packages/backupchecker/trunk/debian/install	                        (rev 0)
+++ packages/backupchecker/trunk/debian/install	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1,2 @@
+usr/lib/python3*
+usr/bin

Added: packages/backupchecker/trunk/debian/manpages
===================================================================
--- packages/backupchecker/trunk/debian/manpages	                        (rev 0)
+++ packages/backupchecker/trunk/debian/manpages	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1 @@
+man/backupchecker.1

Added: packages/backupchecker/trunk/debian/rules
===================================================================
--- packages/backupchecker/trunk/debian/rules	                        (rev 0)
+++ packages/backupchecker/trunk/debian/rules	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+
+PYTHON3=$(shell py3versions -vr)
+
+%:
+	dh $@ --with python3
+
+override_dh_auto_build:
+	set -ex; for py in $(PYTHON3) ; do \
+		python$$py setup.py build; \
+	done
+
+override_dh_auto_install:
+	set -ex; for py in $(PYTHON3) ; do \
+		python$$py setup.py install --skip-build \
+		                            --root=$(CURDIR)/debian/tmp \
+		                            --install-layout=deb; \
+	done
+
+override_dh_python3:
+	dh_python3 --shebang=/usr/bin/python3
+
+override_dh_auto_clean:
+	rm -rf build
+	rm -rf *.egg-info
+
+


Property changes on: packages/backupchecker/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/backupchecker/trunk/debian/source/format
===================================================================
--- packages/backupchecker/trunk/debian/source/format	                        (rev 0)
+++ packages/backupchecker/trunk/debian/source/format	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/backupchecker/trunk/debian/watch
===================================================================
--- packages/backupchecker/trunk/debian/watch	                        (rev 0)
+++ packages/backupchecker/trunk/debian/watch	2015-02-15 22:50:56 UTC (rev 11741)
@@ -0,0 +1,2 @@
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/backupchecker-$1\.tar\.gz/ \
+  https://github.com/backupchecker/backupchecker/tags .*/v?(\d\S*)\.tar\.gz




More information about the Python-apps-commits mailing list