~ubuntu-branches/ubuntu/saucy/click/saucy-proposed

« back to all changes in this revision

Viewing changes to click/commands/buildsource.py

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-06-27 15:57:25 UTC
  • Revision ID: package-import@ubuntu.com-20130627155725-1kpggp0xots3peir
Tags: 0.1.3
Rename to click, per Mark Shuttleworth.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2013 Canonical Ltd.
 
2
# Author: Colin Watson <cjwatson@ubuntu.com>
 
3
 
 
4
# This program is free software: you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; version 3 of the License.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 
 
16
"""Build a Click source package."""
 
17
 
 
18
from __future__ import print_function
 
19
 
 
20
from optparse import OptionParser
 
21
 
 
22
from click.build import ClickSourceBuilder
 
23
 
 
24
 
 
25
def run(argv):
 
26
    parser = OptionParser("%prog buildsource [options] DIRECTORY")
 
27
    parser.add_option(
 
28
        "-m", "--manifest", metavar="PATH",
 
29
        help="read package manifest from PATH")
 
30
    options, args = parser.parse_args(argv)
 
31
    if len(args) < 1:
 
32
        parser.error("need directory")
 
33
    directory = args[0]
 
34
    builder = ClickSourceBuilder()
 
35
    builder.add_file(directory, "./")
 
36
    path = builder.build(".", manifest_path=options.manifest)
 
37
    print("Successfully built source package in '%s'." % path)
 
38
    return 0