Changeset 37

Show
Ignore:
Timestamp:
16/08/06 21:07:09 (4 years ago)
Author:
andy
Message:

Changes to reflect maintainer handover, also added a man page.

Files:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • README

    r36 r37  
    2424        Because of the way rdiff-backup outputs messages when doing working over 
    2525        a ssh link, the interface freezes when doing an ssh backup.  
    26 Author 
     26 
     27Maintainer 
     28---------- 
     29As of Wed, 16 Aug 2006, the maintainership of pybackpack  
     30has been handed over to Andy Price <andy@andrewprice.me.uk> 
     31 
     32pyBackPack homepage: http://andrewprice.me.uk/projects/pybackpack 
     33 
     34Please send any bug reports/problems to andy@andrewprice.me.uk 
     35 
     36Original Author 
    2737------ 
    28 Dave Arter <davea@sucs.org> 
    29 pyBackPack homepage: http://minus-zero.org/projects/pybackpack 
    30 Development blog (amongst other random crap): http://blog.minus-zero.org/ 
    31  
    32 Please send any bug reports/problems to davea@sucs.org 
     38Dave Arter <davea@sucs.org> http://minus-zero.org 
    3339 
    3440========== 
     
    3642========== 
    3743Backup is obviously an area that needs to be reliable, however I assume 
    38 ABSOLUTELY NO RESPONSIBILITY for the well being of ANY of your data. 
     44ABSOLUTELY NO RESPONSIBILITY for the wellbeing of ANY of your data. 
    3945You use this program ENTIRELY at your own risk. It probably won't lose 
    4046any data, but on the off chance that it does, I'm not taking any 
  • pybackpack.spec

    r36 r37  
    88License: GPL 
    99Group: Applications/Multimedia 
    10 URL: http://minus-zero.org/projects/pybackpack/ 
    11 Source: http://minus-zero.org/projects/pybackpack/pybackpack-%version.tar.gz 
     10URL: http://andrewprice.me.uk/projects/pybackpack/ 
     11Source: http://andrewprice.me.uk/projects/pybackpack/pybackpack-%version.tar.gz 
    1212BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 
    1313BuildRequires: python-devel 
  • setup.py

    r36 r37  
    1515        version=version_string, 
    1616        description="A program to perform backups and restores of user data", 
    17         author="Dave Arter", 
    18         author_email="davea@sucs.org", 
    19         url="http://minus-zero.org/projects/pybackpack", 
     17        author="Andy Price", 
     18        author_email="andy@andrewprice.me.uk", 
     19        url="http://andrewprice.me.uk/projects/pybackpack", 
    2020        packages = ['pybackpack'], 
    2121        package_dir = {'': 'src'}, 
  • src/pybackpack/rdiff_interface.py

    r31 r37  
    278278                Run_rdiff(arglist) 
    279279        except Exception, e: 
    280                 sys.stderr.write("Error: %s\nrdiff-backup version: %s\n%s version: %s\nPlease e-mail the contents of this text box to davea@sucs.org" % (e, rdiff_backup.Main.Globals.version, version.APPNAME, version.VERSION)) 
     280                sys.stderr.write("Error: %s\nrdiff-backup version: %s\n%s version: %s\nPlease e-mail the contents of this text box to andy@andrewprice.me.uk" % (e, rdiff_backup.Main.Globals.version, version.APPNAME, version.VERSION)) 
    281281                raise AssertionError(e) 
    282282        logfile = sys.stdout 
  • src/pybackpack/version.py

    r36 r37  
    22APPNAME = "pyBackPack" # used in dialogues, etc 
    33APPPATH = "pybackpack" # used for accessing files (eg. ~/.pybackpack) 
    4 AUTHORS = ["Dave Arter <davea@sucs.org>", "Logo by Graham Cole <chckens@sucs.org>"] 
    5 COPYRIGHT = "Copyright (c) 2005-2006 Dave Arter" 
     4AUTHORS = ["Andy Price <andy@andrewprice.me.uk>", "Dave Arter <davea@sucs.org>", "Logo by Graham Cole <chckens@sucs.org>"] 
     5COPYRIGHT = "Copyright (c) 2006 Andy Price, 2005-2006 Dave Arter" 
    66ABOUT = "%s is a tool for backing up user data for the GNOME Desktop" % APPNAME