From e28ea0740a7b4eb2ef4c1bd3079d77a40c6072b8 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sun, 30 Oct 2011 20:03:33 +0100 Subject: Get rid of the symlink by moving the commands to gbp/scripts/ --- setup.py | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index bd3ab45..767278c 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/python -# Copyright (C) 2006,2007 Guido Guenther +# Copyright (C) 2006-2011 Guido Guenther # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,9 +21,16 @@ from distutils.core import setup setup(name = "git_build_package", author = 'Guido Guenther', author_email = 'agx@sigxcpu.org', - scripts = [ 'git-buildpackage', 'git-import-dsc', 'git-import-orig', 'git-dch', 'git-import-dscs', - 'gbp-pq', 'gbp-pull', 'gbp-clone', 'git-pbuilder', 'gbp-create-remote-repo'], - packages = [ 'gbp' ], - data_files = [("/etc/git-buildpackage/", ["gbp.conf" ]),], + scripts = [ 'bin/git-buildpackage', + 'bin/git-import-dsc', + 'bin/git-import-orig', + 'bin/git-dch', + 'bin/git-import-dscs', + 'bin/gbp-pq', + 'bin/gbp-pull', + 'bin/gbp-clone', + 'bin/gbp-create-remote-repo', + 'bin/git-pbuilder'], + packages = [ 'gbp', 'gbp.scripts' ], + data_files = [("/etc/git-buildpackage/", ["gbp.conf"]),], ) - -- cgit v1.2.3