Nicholas Campbell <nicholas.j.campbell@xxxxxxxxx> wrote: > Runs through defined "PLUGINS" and creates Javadoc. Assumes src is a subdir. > > Signed-off-by: Nick Campbell <nicholas.j.campbell@xxxxxxxxx> > --- > make_jgit.sh | 10 ++++++++++ > 1 files changed, 10 insertions(+), 0 deletions(-) Thanks. This didn't apply cleanly to tip of tree, so I hand merged it in, but then modified it a bit. This is what I actually applied: --8<-- From: Nicholas Campbell <nicholas.j.campbell@xxxxxxxxx> Subject: [PATCH] Generate javadoc during ./make_jgit.sh Package docs into a zip for distribution. Runs through defined "PLUGINS" and creates Javadoc. Assumes src is a subdir. Signed-off-by: Nick Campbell <nicholas.j.campbell@xxxxxxxxx> [sp: cleaned up docs/ directory after build; removed docs/ from zip] Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .gitignore | 1 + make_jgit.sh | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletions(-) diff --git a/.gitignore b/.gitignore index baf2766..5219cbc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /jgit /jgit.jar /jgit_src.zip +/jgit_docs.zip diff --git a/make_jgit.sh b/make_jgit.sh index baaa3af..9608b70 100755 --- a/make_jgit.sh +++ b/make_jgit.sh @@ -3,6 +3,7 @@ O_CLI=jgit O_JAR=jgit.jar O_SRC=jgit_src.zip +O_DOC=jgit_docs.zip PLUGINS=" org.spearce.jgit @@ -39,6 +40,7 @@ cleanup_bin() { do rm -rf $p/bin2 done + rm -rf docs } die() { @@ -49,7 +51,7 @@ die() { } cleanup_bin -rm -f $O_CLI $O_JAR $O_SRC +rm -f $O_CLI $O_JAR $O_SRC $O_DOC VN=`git describe --abbrev=4 HEAD 2>/dev/null` git update-index -q --refresh @@ -118,4 +120,13 @@ chmod 555 $O_CLI+ && mv $O_CLI+ $O_CLI && echo "Created $O_CLI." || die "Build failed." +echo "Building Javadocs ..." +for p in $PLUGINS; do + javadoc -sourcepath "$p/src/" -d "docs/$p/" \ + `find "$p/src" -name "*.java"` +done + +(cd docs && jar cf "../$O_DOC" .) +echo "Created $O_DOC." + cleanup_bin -- 1.6.4.70.g9c084 -- Shawn. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html