-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build Bazel debian source package using Bazel
-- Change-Id: I8c0b6adf08a4ca64ad41e0454cb30842c133fa22 Reviewed-on: https://bazel-review.googlesource.com/#/c/4161 MOS_MIGRATED_REVID=128465441
- Loading branch information
1 parent
ad81cff
commit a50635d
Showing
7 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# pylint: disable=g-bad-file-header | ||
# Copyright 2015 The Bazel Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
"""This tool convert Bazel's changelog file to debian changelog format.""" | ||
|
||
from datetime import datetime | ||
import sys | ||
|
||
|
||
def main(input_file, output_file): | ||
changelog_out = open(output_file, "w") | ||
time_stamp = None | ||
with open(input_file, "r") as changelog_in: | ||
for line in changelog_in: | ||
line = line.strip() | ||
|
||
if line.startswith("```") or line.startswith("Baseline"): | ||
continue | ||
|
||
if line.startswith("## Release"): | ||
if time_stamp: | ||
changelog_out.write( | ||
"\n -- The Bazel Authors <[email protected]> %s\n\n" % | ||
time_stamp) | ||
parts = line.split(" ") | ||
version = parts[2] | ||
time_stamp = datetime.strptime( | ||
parts[3], "(%Y-%m-%d)").strftime("%a, %d %b %Y %H:%M:%S +0100") | ||
changelog_out.write("bazel (%s) unstable; urgency=low\n" % version) | ||
|
||
elif line.startswith("+") or line.startswith("-"): | ||
parts = line.split(" ") | ||
line = "*" + line[1:] | ||
changelog_out.write(" %s\n" % line) | ||
|
||
elif line.endswith(":"): | ||
changelog_out.write("\n %s\n" % line) | ||
|
||
elif line: | ||
changelog_out.write(" %s\n" % line) | ||
|
||
if time_stamp: | ||
changelog_out.write( | ||
"\n -- The Bazel Authors <[email protected]> %s\n\n" % | ||
time_stamp) | ||
|
||
|
||
if __name__ == "__main__": | ||
main(sys.argv[1], sys.argv[2]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Source: bazel | ||
Section: contrib/devel | ||
Priority: optional | ||
Maintainer: The Bazel Authors <[email protected]> | ||
Build-Depends: dpkg-dev, devscripts | ||
Standards-Version: 3.9.6 | ||
|
||
Package: bazel | ||
Section: contrib/devel | ||
Priority: optional | ||
Architecture: amd64 | ||
Depends: java8-jdk | java8-sdk, pkg-config, zip, g++, zlib1g-dev, | ||
unzip, bash-completion | ||
Conflicts: openjdk-9-jdk | ||
Description: Bazel is a tool that automates software builds and tests. | ||
Supported build tasks include running compilers and linkers to produce | ||
executable programs and libraries, and assembling deployable packages | ||
for Android, iOS and other target environments. Bazel is similar to | ||
other tools like Make, Ant, Gradle, Buck, Pants and Maven. | ||
Homepage: http://bazel.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: bazel | ||
Source: https://github.com/bazelbuild/bazel | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
Bazel bundled with software with the following license: | ||
|
||
License: 3-clause BSD | ||
License: 3-clause revised BSD | ||
License: Apache License 2.0 | ||
License: BSD license | ||
License: BSD-style license | ||
License: Eclipse Distribution License 1.0 | ||
License: Eclipse Public License | ||
License: Eclipse Public License Version 1.0 | ||
License: GNU GPL v2 with Classpath exception | ||
License: GNU GPL v2 with Classpath exception (plus other licenses, see third_party/java/jdk/langtools/LICENSE file). | ||
License: GNU GPL v2 with Classpath exception, portions MIT | ||
License: MIT | ||
License: MIT license | ||
License: New BSD License | ||
License: Public Domain | ||
|
||
# Please refer to README.md under third_party/ directory to see which license is used by specific part of code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_strip: | ||
|
||
override_dh_auto_build: | ||
./compile.sh | ||
|
||
override_dh_auto_clean: | ||
dh_auto_clean | ||
rm -f bazel-* | ||
rm -f output | ||
|
||
override_dh_install: | ||
install -D -m 0755 output/bazel $$(pwd)/debian/bazel/usr/bin/bazel |