Format Bazel files with buildifier

Change-Id: I934114315d2c7cab917f1011b8e55c52367d429f
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2017-01-20 13:03:03 +09:00 committed by Matthias Sohn
parent 131b09106f
commit dd5e500a57
6 changed files with 123 additions and 113 deletions

26
BUILD
View File

@ -1,19 +1,19 @@
package(default_visibility = ['//visibility:public']) package(default_visibility = ["//visibility:public"])
genrule( genrule(
name = 'all', name = "all",
srcs = [ srcs = [
'//org.eclipse.jgit:jgit', "//org.eclipse.jgit:jgit",
'//org.eclipse.jgit.archive:jgit-archive', "//org.eclipse.jgit.archive:jgit-archive",
'//org.eclipse.jgit.http.server:jgit-servlet', "//org.eclipse.jgit.http.server:jgit-servlet",
'//org.eclipse.jgit.junit:junit', "//org.eclipse.jgit.junit:junit",
], ],
cmd = ' && '.join([ outs = ["all.zip"],
'p=$$PWD', cmd = " && ".join([
't=$$(mktemp -d || mktemp -d -t bazel-tmp)', "p=$$PWD",
'cp $(SRCS) $$t', "t=$$(mktemp -d || mktemp -d -t bazel-tmp)",
'cd $$t', "cp $(SRCS) $$t",
'zip -qr $$p/$@ .', "cd $$t",
"zip -qr $$p/$@ .",
]), ]),
outs = ['all.zip'],
) )

View File

@ -1,97 +1,100 @@
workspace(name="jgit") workspace(name = "jgit")
load("//tools:bazlets.bzl", "load_bazlets") load("//tools:bazlets.bzl", "load_bazlets")
load_bazlets(commit = "3afbeab55ece585dbfc7a980bf7214b24ddbbe86") load_bazlets(commit = "3afbeab55ece585dbfc7a980bf7214b24ddbbe86")
load("@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl",
"maven_jar" load(
"@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl",
"maven_jar",
) )
maven_jar( maven_jar(
name = 'jsch', name = "jsch",
artifact = 'com.jcraft:jsch:0.1.53', artifact = "com.jcraft:jsch:0.1.53",
sha1 = '658b682d5c817b27ae795637dfec047c63d29935', sha1 = "658b682d5c817b27ae795637dfec047c63d29935",
) )
maven_jar( maven_jar(
name = 'javaewah', name = "javaewah",
artifact = 'com.googlecode.javaewah:JavaEWAH:1.1.6', artifact = "com.googlecode.javaewah:JavaEWAH:1.1.6",
sha1 = '94ad16d728b374d65bd897625f3fbb3da223a2b6', sha1 = "94ad16d728b374d65bd897625f3fbb3da223a2b6",
) )
maven_jar( maven_jar(
name = 'httpclient', name = "httpclient",
artifact = 'org.apache.httpcomponents:httpclient:4.3.6', artifact = "org.apache.httpcomponents:httpclient:4.3.6",
sha1 = '4c47155e3e6c9a41a28db36680b828ced53b8af4', sha1 = "4c47155e3e6c9a41a28db36680b828ced53b8af4",
) )
maven_jar( maven_jar(
name = 'httpcore', name = "httpcore",
artifact = 'org.apache.httpcomponents:httpcore:4.3.3', artifact = "org.apache.httpcomponents:httpcore:4.3.3",
sha1 = 'f91b7a4aadc5cf486df6e4634748d7dd7a73f06d', sha1 = "f91b7a4aadc5cf486df6e4634748d7dd7a73f06d",
) )
maven_jar( maven_jar(
name = 'commons_logging', name = "commons_logging",
artifact = 'commons-logging:commons-logging:1.1.3', artifact = "commons-logging:commons-logging:1.1.3",
sha1 = 'f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f', sha1 = "f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f",
) )
maven_jar( maven_jar(
name = 'log_api', name = "log_api",
artifact = 'org.slf4j:slf4j-api:1.7.2', artifact = "org.slf4j:slf4j-api:1.7.2",
sha1 = '0081d61b7f33ebeab314e07de0cc596f8e858d97', sha1 = "0081d61b7f33ebeab314e07de0cc596f8e858d97",
) )
maven_jar( maven_jar(
name = 'slf4j_simple', name = "slf4j_simple",
artifact = 'org.slf4j:slf4j-simple:1.7.2', artifact = "org.slf4j:slf4j-simple:1.7.2",
sha1 = '760055906d7353ba4f7ce1b8908bc6b2e91f39fa', sha1 = "760055906d7353ba4f7ce1b8908bc6b2e91f39fa",
) )
maven_jar( maven_jar(
name = 'servlet_api_3_1', name = "servlet_api_3_1",
artifact = 'javax.servlet:javax.servlet-api:3.1.0', artifact = "javax.servlet:javax.servlet-api:3.1.0",
sha1 = '3cd63d075497751784b2fa84be59432f4905bf7c', sha1 = "3cd63d075497751784b2fa84be59432f4905bf7c",
) )
maven_jar( maven_jar(
name = 'commons_compress', name = "commons_compress",
artifact = 'org.apache.commons:commons-compress:1.6', artifact = "org.apache.commons:commons-compress:1.6",
sha1 = 'c7d9b580aff9e9f1998361f16578e63e5c064699', sha1 = "c7d9b580aff9e9f1998361f16578e63e5c064699",
) )
maven_jar( maven_jar(
name = 'tukaani_xz', name = "tukaani_xz",
artifact = 'org.tukaani:xz:1.3', artifact = "org.tukaani:xz:1.3",
sha1 = '66db21c8484120cb6a51b5b3ea47b6f383942bec', sha1 = "66db21c8484120cb6a51b5b3ea47b6f383942bec",
) )
maven_jar( maven_jar(
name = 'args4j', name = "args4j",
artifact = 'args4j:args4j:2.0.15', artifact = "args4j:args4j:2.0.15",
sha1 = '139441471327b9cc6d56436cb2a31e60eb6ed2ba', sha1 = "139441471327b9cc6d56436cb2a31e60eb6ed2ba",
) )
maven_jar( maven_jar(
name = 'junit', name = "junit",
artifact = 'junit:junit:4.11', artifact = "junit:junit:4.11",
sha1 = '4e031bb61df09069aeb2bffb4019e7a5034a4ee0', sha1 = "4e031bb61df09069aeb2bffb4019e7a5034a4ee0",
) )
maven_jar( maven_jar(
name = 'hamcrest_library', name = "hamcrest_library",
artifact = 'org.hamcrest:hamcrest-library:1.3', artifact = "org.hamcrest:hamcrest-library:1.3",
sha1 = '4785a3c21320980282f9f33d0d1264a69040538f', sha1 = "4785a3c21320980282f9f33d0d1264a69040538f",
) )
maven_jar( maven_jar(
name = 'hamcrest_core', name = "hamcrest_core",
artifact = 'org.hamcrest:hamcrest-core:1.3', artifact = "org.hamcrest:hamcrest-core:1.3",
sha1 = '42a25dc3219429f0e5d060061f71acb49bf010a0', sha1 = "42a25dc3219429f0e5d060061f71acb49bf010a0",
) )
maven_jar( maven_jar(
name = 'gson', name = "gson",
artifact = 'com.google.code.gson:gson:2.2.4', artifact = "com.google.code.gson:gson:2.2.4",
sha1 = 'a60a5e993c98c864010053cb901b7eab25306568', sha1 = "a60a5e993c98c864010053cb901b7eab25306568",
) )

View File

@ -1,15 +1,16 @@
package(default_visibility = ['//visibility:public']) package(default_visibility = ["//visibility:public"])
java_library( java_library(
name = 'jgit-archive', name = "jgit-archive",
srcs = glob( srcs = glob(
['src/**'], ["src/**"],
exclude = ['src/org/eclipse/jgit/archive/FormatActivator.java'], exclude = ["src/org/eclipse/jgit/archive/FormatActivator.java"],
), ),
resources = glob(['resources/**']), resource_strip_prefix = "org.eclipse.jgit.archive/resources",
resource_strip_prefix = 'org.eclipse.jgit.archive/resources', resources = glob(["resources/**"]),
deps = [ # We want these deps to be provided_deps deps = [
'//org.eclipse.jgit:jgit', # We want these deps to be provided_deps
'@commons_compress//jar', "//org.eclipse.jgit:jgit",
"@commons_compress//jar",
], ],
) )

View File

@ -1,12 +1,13 @@
package(default_visibility = ['//visibility:public']) package(default_visibility = ["//visibility:public"])
java_library( java_library(
name = 'jgit-servlet', name = "jgit-servlet",
srcs = glob(['src/**']), srcs = glob(["src/**"]),
resources = glob(['resources/**']), resource_strip_prefix = "org.eclipse.jgit.http.server/resources",
resource_strip_prefix = 'org.eclipse.jgit.http.server/resources', resources = glob(["resources/**"]),
deps = [ # We want these deps to be provided_deps deps = [
'//org.eclipse.jgit:jgit', # We want these deps to be provided_deps
'@servlet_api_3_1//jar', "//org.eclipse.jgit:jgit",
"@servlet_api_3_1//jar",
], ],
) )

View File

@ -1,12 +1,13 @@
package(default_visibility = ['//visibility:public']) package(default_visibility = ["//visibility:public"])
java_library( java_library(
name = 'junit', name = "junit",
srcs = glob(['src/**']), srcs = glob(["src/**"]),
resources = glob(['resources/**']), resource_strip_prefix = "org.eclipse.jgit.junit/resources",
resource_strip_prefix = 'org.eclipse.jgit.junit/resources', resources = glob(["resources/**"]),
deps = [ # We want these deps to be provided_deps deps = [
'//org.eclipse.jgit:jgit', # We want these deps to be provided_deps
'@junit//jar', "//org.eclipse.jgit:jgit",
"@junit//jar",
], ],
) )

View File

@ -1,29 +1,33 @@
package(default_visibility = ['//visibility:public']) package(default_visibility = ["//visibility:public"])
INSECURE_CIPHER_FACTORY = [ INSECURE_CIPHER_FACTORY = [
'src/org/eclipse/jgit/transport/InsecureCipherFactory.java', "src/org/eclipse/jgit/transport/InsecureCipherFactory.java",
] ]
SRCS = glob(['src/**'], exclude=INSECURE_CIPHER_FACTORY) SRCS = glob(
RESOURCES = glob(['resources/**']) ["src/**"],
exclude = INSECURE_CIPHER_FACTORY,
)
RESOURCES = glob(["resources/**"])
java_library( java_library(
name = 'jgit', name = "jgit",
srcs = SRCS, srcs = SRCS,
resource_strip_prefix = "org.eclipse.jgit/resources",
resources = RESOURCES, resources = RESOURCES,
resource_strip_prefix = 'org.eclipse.jgit/resources',
deps = [ deps = [
':insecure_cipher_factory', ":insecure_cipher_factory",
'@javaewah//jar', "@httpclient//jar",
'@jsch//jar', "@javaewah//jar",
'@httpclient//jar', "@jsch//jar",
'@servlet_api_3_1//jar', "@log_api//jar",
'@log_api//jar', "@servlet_api_3_1//jar",
], ],
) )
java_library( java_library(
name = 'insecure_cipher_factory', name = "insecure_cipher_factory",
srcs = INSECURE_CIPHER_FACTORY, srcs = INSECURE_CIPHER_FACTORY,
javacopts = ['-Xep:InsecureCipherMode:OFF'], javacopts = ["-Xep:InsecureCipherMode:OFF"],
) )