~ubuntu-branches/ubuntu/vivid/deja-dup/vivid

« back to all changes in this revision

Viewing changes to tests/common/mock/duplicity.bak

  • Committer: Package Import Robot
  • Author(s): Michael Terry
  • Date: 2012-06-05 13:45:39 UTC
  • mfrom: (1.1.43)
  • Revision ID: package-import@ubuntu.com-20120605134539-l35tewhkjfq4qp6e
Tags: 23.2-0ubuntu1
* New upstream release
* debian/control:
  - Add libpeas-dev to Build-Depends
  - Update valac and libglib2.0-dev versions
  - Bump debhelper version to 9
* debian/compat:
  - Bump to 9
* debian/rules:
  - Don't install new .la and .a files from upstream
* debian/patches/allow-resuming-encrypted-backup.patch:
  - Dropped, included upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python3
2
 
# -*- Mode: Python; indent-tabs-mode: nil; tab-width: 2; coding: utf-8 -*-
3
 
#
4
 
# This file is part of Déjà Dup.
5
 
# For copyright information, see AUTHORS.
6
 
#
7
 
# Déjà Dup is free software; you can redistribute it and/or modify
8
 
# it under the terms of the GNU General Public License as published by
9
 
# the Free Software Foundation; either version 3 of the License, or
10
 
# (at your option) any later version.
11
 
#
12
 
# Déjà Dup is distributed in the hope that it will be useful, but
13
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
# General Public License for more details.
16
 
#
17
 
# You should have received a copy of the GNU General Public License
18
 
# along with Déjà Dup.  If not, see <http://www.gnu.org/licenses/>.
19
 
 
20
 
import subprocess, sys
21
 
 
22
 
p = subprocess.Popen (['duplicity.real'] + sys.argv[1:], stdout = subprocess.PIPE, stderr = subprocess.PIPE)
23
 
out, err = p.communicate ()
24
 
fd = open("deja-dup-duplicity.out", "w")
25
 
fd.write (out.decode ())
26
 
fd.close ()
27
 
fd = open("deja-dup-duplicity.err", "w")
28
 
fd.write (err.decode ())
29
 
fd.close ()
30
 
if out:
31
 
  print (out.decode (), end="")
32
 
if err:
33
 
  print (err.decode (), end="", file=sys.stderr)