Skip to content

Commit 246ffe2

Browse files
author
Greg Turnquist
committed
Renamed sub-level build.py as setup-template.py. Removed old build steps from build.py. Updated some copyright headers.
1 parent 5b1059b commit 246ffe2

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22
"""
3-
Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
3+
Copyright 2006-2011 SpringSource (http://springsource.com), All Rights Reserved
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.
@@ -185,7 +185,7 @@ def build(dir, version, s3bucket, filepath):
185185

186186
patterns_to_replace = [("version", version), ("download_url", "http://s3.amazonaws.com/%s/%s-%s.tar.gz" % (s3bucket, s3key, version))]
187187

188-
_substitute(dir + "/build.py", dir + "/setup.py", patterns_to_replace)
188+
_substitute(dir + "/setup-template.py", dir + "/setup.py", patterns_to_replace)
189189

190190
os.chdir(dir)
191191
os.system("%s %s sdist" % (sys.executable, os.path.join(".", "setup.py")))

generate_site.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
###################################################################################
3-
# Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
3+
# Copyright 2006-2011 SpringSource (http://springsource.com), All Rights Reserved
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
File renamed without changes.
File renamed without changes.

test.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
###################################################################################
3-
# Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
3+
# Copyright 2006-2011 SpringSource (http://springsource.com), All Rights Reserved
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

test_and_package.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
###################################################################################
3-
# Copyright 2006-2008 SpringSource (http://springsource.com), All Rights Reserved
3+
# Copyright 2006-2011 SpringSource (http://springsource.com), All Rights Reserved
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)