~ubuntu-branches/ubuntu/vivid/debmake/vivid-proposed

« back to all changes in this revision

Viewing changes to debmake/origtar.py

  • Committer: Package Import Robot
  • Author(s): Osamu Aoki
  • Date: 2014-02-09 00:57:12 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20140209005712-ji64c4tpqjsu1uml
Tags: 4.0.8-1
* Update dependency huristics and --with.  python2 is set 
  only for compat < 9.
* Improve upstream tarball handling to make -a to work with 
  foo-1.0.orig.tar.gz
* Perl module build improvements such as -d to cope with
  Foo-1.0.tar.gz and Foo-1.0/ .  Also, move the parent 
  directory to package-version/ in the lower case.
* Udate manpage to document examples, character limitations,
  etc. with bullet list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
            command = 'ln -sf ' + tarball + ' ' + origtargz
45
45
            print('I: {}'.format(command), file=sys.stderr)
46
46
            if subprocess.call(command, shell=True) != 0:
47
 
                print('E: failed to create hardlink.', file=sys.stderr)
 
47
                print('E: failed to create symlink.', file=sys.stderr)
48
48
                exit(1)
 
49
    elif os.path.isfile(origtargz):
 
50
        print('I: Use existing "{}" as upstream tarball'.format(origtargz), file=sys.stderr)
49
51
    else:
50
52
        print('E: missing "{}".'.format(tarball), file=sys.stderr)
51
53
        exit(1)