You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by da...@apache.org on 2015/11/30 22:06:09 UTC

[03/98] [abbrv] [partial] incubator-apex-malhar git commit: Removing all web demos

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Makefile
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Makefile b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Makefile
deleted file mode 100644
index af75dca..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Makefile
+++ /dev/null
@@ -1,350 +0,0 @@
-# We borrow heavily from the kernel build setup, though we are simpler since
-# we don't have Kconfig tweaking settings on us.
-
-# The implicit make rules have it looking for RCS files, among other things.
-# We instead explicitly write all the rules we care about.
-# It's even quicker (saves ~200ms) to pass -r on the command line.
-MAKEFLAGS=-r
-
-# The source directory tree.
-srcdir := ..
-abs_srcdir := $(abspath $(srcdir))
-
-# The name of the builddir.
-builddir_name ?= .
-
-# The V=1 flag on command line makes us verbosely print command lines.
-ifdef V
-  quiet=
-else
-  quiet=quiet_
-endif
-
-# Specify BUILDTYPE=Release on the command line for a release build.
-BUILDTYPE ?= Release
-
-# Directory all our build output goes into.
-# Note that this must be two directories beneath src/ for unit tests to pass,
-# as they reach into the src/ directory for data with relative paths.
-builddir ?= $(builddir_name)/$(BUILDTYPE)
-abs_builddir := $(abspath $(builddir))
-depsdir := $(builddir)/.deps
-
-# Object output directory.
-obj := $(builddir)/obj
-abs_obj := $(abspath $(obj))
-
-# We build up a list of every single one of the targets so we can slurp in the
-# generated dependency rule Makefiles in one pass.
-all_deps :=
-
-
-
-CC.target ?= $(CC)
-CFLAGS.target ?= $(CFLAGS)
-CXX.target ?= $(CXX)
-CXXFLAGS.target ?= $(CXXFLAGS)
-LINK.target ?= $(LINK)
-LDFLAGS.target ?= $(LDFLAGS)
-AR.target ?= $(AR)
-
-# C++ apps need to be linked with g++.
-#
-# Note: flock is used to seralize linking. Linking is a memory-intensive
-# process so running parallel links can often lead to thrashing.  To disable
-# the serialization, override LINK via an envrionment variable as follows:
-#
-#   export LINK=g++
-#
-# This will allow make to invoke N linker processes as specified in -jN.
-LINK ?= ./gyp-mac-tool flock $(builddir)/linker.lock $(CXX.target)
-
-# TODO(evan): move all cross-compilation logic to gyp-time so we don't need
-# to replicate this environment fallback in make as well.
-CC.host ?= gcc
-CFLAGS.host ?=
-CXX.host ?= g++
-CXXFLAGS.host ?=
-LINK.host ?= $(CXX.host)
-LDFLAGS.host ?=
-AR.host ?= ar
-
-# Define a dir function that can handle spaces.
-# http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
-# "leading spaces cannot appear in the text of the first argument as written.
-# These characters can be put into the argument value by variable substitution."
-empty :=
-space := $(empty) $(empty)
-
-# http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
-replace_spaces = $(subst $(space),?,$1)
-unreplace_spaces = $(subst ?,$(space),$1)
-dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
-
-# Flags to make gcc output dependency info.  Note that you need to be
-# careful here to use the flags that ccache and distcc can understand.
-# We write to a dep file on the side first and then rename at the end
-# so we can't end up with a broken dep file.
-depfile = $(depsdir)/$(call replace_spaces,$@).d
-DEPFLAGS = -MMD -MF $(depfile).raw
-
-# We have to fixup the deps output in a few ways.
-# (1) the file output should mention the proper .o file.
-# ccache or distcc lose the path to the target, so we convert a rule of
-# the form:
-#   foobar.o: DEP1 DEP2
-# into
-#   path/to/foobar.o: DEP1 DEP2
-# (2) we want missing files not to cause us to fail to build.
-# We want to rewrite
-#   foobar.o: DEP1 DEP2 \
-#               DEP3
-# to
-#   DEP1:
-#   DEP2:
-#   DEP3:
-# so if the files are missing, they're just considered phony rules.
-# We have to do some pretty insane escaping to get those backslashes
-# and dollar signs past make, the shell, and sed at the same time.
-# Doesn't work with spaces, but that's fine: .d files have spaces in
-# their names replaced with other characters.
-define fixup_dep
-# The depfile may not exist if the input file didn't have any #includes.
-touch $(depfile).raw
-# Fixup path as in (1).
-sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
-# Add extra rules as in (2).
-# We remove slashes and replace spaces with new lines;
-# remove blank lines;
-# delete the first line and append a colon to the remaining lines.
-sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
-  grep -v '^$$'                             |\
-  sed -e 1d -e 's|$$|:|'                     \
-    >> $(depfile)
-rm $(depfile).raw
-endef
-
-# Command definitions:
-# - cmd_foo is the actual command to run;
-# - quiet_cmd_foo is the brief-output summary of the command.
-
-quiet_cmd_cc = CC($(TOOLSET)) $@
-cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $<
-
-quiet_cmd_cxx = CXX($(TOOLSET)) $@
-cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
-
-quiet_cmd_objc = CXX($(TOOLSET)) $@
-cmd_objc = $(CC.$(TOOLSET)) $(GYP_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
-
-quiet_cmd_objcxx = CXX($(TOOLSET)) $@
-cmd_objcxx = $(CXX.$(TOOLSET)) $(GYP_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
-
-# Commands for precompiled header files.
-quiet_cmd_pch_c = CXX($(TOOLSET)) $@
-cmd_pch_c = $(CC.$(TOOLSET)) $(GYP_PCH_CFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
-quiet_cmd_pch_cc = CXX($(TOOLSET)) $@
-cmd_pch_cc = $(CC.$(TOOLSET)) $(GYP_PCH_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
-quiet_cmd_pch_m = CXX($(TOOLSET)) $@
-cmd_pch_m = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
-quiet_cmd_pch_mm = CXX($(TOOLSET)) $@
-cmd_pch_mm = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
-
-# gyp-mac-tool is written next to the root Makefile by gyp.
-# Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd
-# already.
-quiet_cmd_mac_tool = MACTOOL $(4) $<
-cmd_mac_tool = ./gyp-mac-tool $(4) $< "$@"
-
-quiet_cmd_mac_package_framework = PACKAGE FRAMEWORK $@
-cmd_mac_package_framework = ./gyp-mac-tool package-framework "$@" $(4)
-
-quiet_cmd_infoplist = INFOPLIST $@
-cmd_infoplist = $(CC.$(TOOLSET)) -E -P -Wno-trigraphs -x c $(INFOPLIST_DEFINES) "$<" -o "$@"
-
-quiet_cmd_touch = TOUCH $@
-cmd_touch = touch $@
-
-quiet_cmd_copy = COPY $@
-# send stderr to /dev/null to ignore messages when linking directories.
-cmd_copy = rm -rf "$@" && cp -af "$<" "$@"
-
-quiet_cmd_alink = LIBTOOL-STATIC $@
-cmd_alink = rm -f $@ && ./gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
-
-quiet_cmd_link = LINK($(TOOLSET)) $@
-cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
-
-quiet_cmd_solink = SOLINK($(TOOLSET)) $@
-cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
-
-quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
-cmd_solink_module = $(LINK.$(TOOLSET)) -bundle $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
-
-
-# Define an escape_quotes function to escape single quotes.
-# This allows us to handle quotes properly as long as we always use
-# use single quotes and escape_quotes.
-escape_quotes = $(subst ','\'',$(1))
-# This comment is here just to include a ' to unconfuse syntax highlighting.
-# Define an escape_vars function to escape '$' variable syntax.
-# This allows us to read/write command lines with shell variables (e.g.
-# $LD_LIBRARY_PATH), without triggering make substitution.
-escape_vars = $(subst $$,$$$$,$(1))
-# Helper that expands to a shell command to echo a string exactly as it is in
-# make. This uses printf instead of echo because printf's behaviour with respect
-# to escape sequences is more portable than echo's across different shells
-# (e.g., dash, bash).
-exact_echo = printf '%s\n' '$(call escape_quotes,$(1))'
-
-# Helper to compare the command we're about to run against the command
-# we logged the last time we ran the command.  Produces an empty
-# string (false) when the commands match.
-# Tricky point: Make has no string-equality test function.
-# The kernel uses the following, but it seems like it would have false
-# positives, where one string reordered its arguments.
-#   arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \
-#                       $(filter-out $(cmd_$@), $(cmd_$(1))))
-# We instead substitute each for the empty string into the other, and
-# say they're equal if both substitutions produce the empty string.
-# .d files contain ? instead of spaces, take that into account.
-command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\
-                       $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
-
-# Helper that is non-empty when a prerequisite changes.
-# Normally make does this implicitly, but we force rules to always run
-# so we can check their command lines.
-#   $? -- new prerequisites
-#   $| -- order-only dependencies
-prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
-
-# Helper that executes all postbuilds until one fails.
-define do_postbuilds
-  @E=0;\
-  for p in $(POSTBUILDS); do\
-    eval $$p;\
-    E=$$?;\
-    if [ $$E -ne 0 ]; then\
-      break;\
-    fi;\
-  done;\
-  if [ $$E -ne 0 ]; then\
-    rm -rf "$@";\
-    exit $$E;\
-  fi
-endef
-
-# do_cmd: run a command via the above cmd_foo names, if necessary.
-# Should always run for a given target to handle command-line changes.
-# Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
-# Third argument, if non-zero, makes it do POSTBUILDS processing.
-# Note: We intentionally do NOT call dirx for depfile, since it contains ? for
-# spaces already and dirx strips the ? characters.
-define do_cmd
-$(if $(or $(command_changed),$(prereq_changed)),
-  @$(call exact_echo,  $($(quiet)cmd_$(1)))
-  @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
-  $(if $(findstring flock,$(word 2,$(cmd_$1))),
-    @$(cmd_$(1))
-    @echo "  $(quiet_cmd_$(1)): Finished",
-    @$(cmd_$(1))
-  )
-  @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
-  @$(if $(2),$(fixup_dep))
-  $(if $(and $(3), $(POSTBUILDS)),
-    $(call do_postbuilds)
-  )
-)
-endef
-
-# Declare the "all" target first so it is the default,
-# even though we don't have the deps yet.
-.PHONY: all
-all:
-
-# make looks for ways to re-generate included makefiles, but in our case, we
-# don't have a direct way. Explicitly telling make that it has nothing to do
-# for them makes it go faster.
-%.d: ;
-
-# Use FORCE_DO_CMD to force a target to run.  Should be coupled with
-# do_cmd.
-.PHONY: FORCE_DO_CMD
-FORCE_DO_CMD:
-
-TOOLSET := target
-# Suffix rules, putting all outputs into $(obj).
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.m FORCE_DO_CMD
-	@$(call do_cmd,objc,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.mm FORCE_DO_CMD
-	@$(call do_cmd,objcxx,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-$(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-
-# Try building from generated source, too.
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.m FORCE_DO_CMD
-	@$(call do_cmd,objc,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.mm FORCE_DO_CMD
-	@$(call do_cmd,objcxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-$(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-
-$(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.m FORCE_DO_CMD
-	@$(call do_cmd,objc,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.mm FORCE_DO_CMD
-	@$(call do_cmd,objcxx,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-$(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-
-
-ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
-    $(findstring $(join ^,$(prefix)),\
-                 $(join ^,kerberos.target.mk)))),)
-  include kerberos.target.mk
-endif
-
-quiet_cmd_regen_makefile = ACTION Regenerating $@
-cmd_regen_makefile = cd $(srcdir); /usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "--toplevel-dir=." -I/Users/nick/github/malharwebapps/webapps/package/node_modules/mongodb/node_modules/kerberos/build/config.gypi -I/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/Users/nick/.node-gyp/0.10.24/common.gypi "--depth=." "-Goutput_dir=." "--generator-output=build" "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/nick/.node-gyp/0.10.24" "-Dmodule_root_dir=/Users/nick/github/malharwebapps/webapps/package/node_modules/mongodb/node_modules/kerberos" binding.gyp
-Makefile: $(srcdir)/../../../../../../../../.node-gyp/0.10.24/common.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp $(srcdir)/../../../../../../../../../../usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi
-	$(call do_cmd,regen_makefile)
-
-# "all" is a concatenation of the "all" targets from all the included
-# sub-makefiles. This is just here to clarify.
-all:
-
-# Add in dependency-tracking rules.  $(all_deps) is the list of every single
-# target in our tree. Only consider the ones with .d (dependency) info:
-d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
-ifneq ($(d_files),)
-  include $(d_files)
-endif

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d
deleted file mode 100644
index 05a7e3c..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d
+++ /dev/null
@@ -1 +0,0 @@
-cmd_Release/kerberos.node := ./gyp-mac-tool flock ./Release/linker.lock c++ -bundle -Wl,-search_paths_first -mmacosx-version-min=10.5 -arch x86_64 -L./Release  -o Release/kerberos.node Release/obj.target/kerberos/lib/kerberos.o Release/obj.target/kerberos/lib/worker.o Release/obj.target/kerberos/lib/kerberosgss.o Release/obj.target/kerberos/lib/base64.o Release/obj.target/kerberos/lib/kerberos_context.o -undefined dynamic_lookup -lkrb5

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/base64.o.d
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/base64.o.d b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/base64.o.d
deleted file mode 100644
index 2cc67b3..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/base64.o.d
+++ /dev/null
@@ -1,4 +0,0 @@
-cmd_Release/obj.target/kerberos/lib/base64.o := cc '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__MACOSX_CORE__' '-DBUILDING_NODE_EXTENSION' -I/Users/nick/.node-gyp/0.10.24/src -I/Users/nick/.node-gyp/0.10.24/deps/uv/include -I/Users/nick/.node-gyp/0.10.24/deps/v8/include  -Os -gdwarf-2 -mmacosx-version-min=10.5 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/kerberos/lib/base64.o.d.raw  -c -o Release/obj.target/kerberos/lib/base64.o ../lib/base64.c
-Release/obj.target/kerberos/lib/base64.o: ../lib/base64.c ../lib/base64.h
-../lib/base64.c:
-../lib/base64.h:

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos.o.d
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos.o.d b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos.o.d
deleted file mode 100644
index fa66155..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos.o.d
+++ /dev/null
@@ -1,24 +0,0 @@
-cmd_Release/obj.target/kerberos/lib/kerberos.o := c++ '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__MACOSX_CORE__' '-DBUILDING_NODE_EXTENSION' -I/Users/nick/.node-gyp/0.10.24/src -I/Users/nick/.node-gyp/0.10.24/deps/uv/include -I/Users/nick/.node-gyp/0.10.24/deps/v8/include  -Os -gdwarf-2 -mmacosx-version-min=10.5 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -fno-rtti -fno-threadsafe-statics -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/kerberos/lib/kerberos.o.d.raw  -c -o Release/obj.target/kerberos/lib/kerberos.o ../lib/kerberos.cc
-Release/obj.target/kerberos/lib/kerberos.o: ../lib/kerberos.cc \
-  ../lib/kerberos.h /Users/nick/.node-gyp/0.10.24/src/node.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-unix.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/ngx-queue.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-darwin.h \
-  /Users/nick/.node-gyp/0.10.24/deps/v8/include/v8.h \
-  /Users/nick/.node-gyp/0.10.24/deps/v8/include/v8stdint.h \
-  /Users/nick/.node-gyp/0.10.24/src/node_object_wrap.h \
-  ../lib/kerberosgss.h ../lib/worker.h ../lib/kerberos_context.h
-../lib/kerberos.cc:
-../lib/kerberos.h:
-/Users/nick/.node-gyp/0.10.24/src/node.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-unix.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/ngx-queue.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-darwin.h:
-/Users/nick/.node-gyp/0.10.24/deps/v8/include/v8.h:
-/Users/nick/.node-gyp/0.10.24/deps/v8/include/v8stdint.h:
-/Users/nick/.node-gyp/0.10.24/src/node_object_wrap.h:
-../lib/kerberosgss.h:
-../lib/worker.h:
-../lib/kerberos_context.h:

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos_context.o.d
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos_context.o.d b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos_context.o.d
deleted file mode 100644
index f8ae94a..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberos_context.o.d
+++ /dev/null
@@ -1,23 +0,0 @@
-cmd_Release/obj.target/kerberos/lib/kerberos_context.o := c++ '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__MACOSX_CORE__' '-DBUILDING_NODE_EXTENSION' -I/Users/nick/.node-gyp/0.10.24/src -I/Users/nick/.node-gyp/0.10.24/deps/uv/include -I/Users/nick/.node-gyp/0.10.24/deps/v8/include  -Os -gdwarf-2 -mmacosx-version-min=10.5 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -fno-rtti -fno-threadsafe-statics -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/kerberos/lib/kerberos_context.o.d.raw  -c -o Release/obj.target/kerberos/lib/kerberos_context.o ../lib/kerberos_context.cc
-Release/obj.target/kerberos/lib/kerberos_context.o: \
-  ../lib/kerberos_context.cc ../lib/kerberos_context.h \
-  /Users/nick/.node-gyp/0.10.24/src/node.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-unix.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/ngx-queue.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-darwin.h \
-  /Users/nick/.node-gyp/0.10.24/deps/v8/include/v8.h \
-  /Users/nick/.node-gyp/0.10.24/deps/v8/include/v8stdint.h \
-  /Users/nick/.node-gyp/0.10.24/src/node_object_wrap.h \
-  ../lib/kerberosgss.h
-../lib/kerberos_context.cc:
-../lib/kerberos_context.h:
-/Users/nick/.node-gyp/0.10.24/src/node.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-unix.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/ngx-queue.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-darwin.h:
-/Users/nick/.node-gyp/0.10.24/deps/v8/include/v8.h:
-/Users/nick/.node-gyp/0.10.24/deps/v8/include/v8stdint.h:
-/Users/nick/.node-gyp/0.10.24/src/node_object_wrap.h:
-../lib/kerberosgss.h:

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberosgss.o.d
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberosgss.o.d b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberosgss.o.d
deleted file mode 100644
index 5fd91d6..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/kerberosgss.o.d
+++ /dev/null
@@ -1,6 +0,0 @@
-cmd_Release/obj.target/kerberos/lib/kerberosgss.o := cc '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__MACOSX_CORE__' '-DBUILDING_NODE_EXTENSION' -I/Users/nick/.node-gyp/0.10.24/src -I/Users/nick/.node-gyp/0.10.24/deps/uv/include -I/Users/nick/.node-gyp/0.10.24/deps/v8/include  -Os -gdwarf-2 -mmacosx-version-min=10.5 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/kerberos/lib/kerberosgss.o.d.raw  -c -o Release/obj.target/kerberos/lib/kerberosgss.o ../lib/kerberosgss.c
-Release/obj.target/kerberos/lib/kerberosgss.o: ../lib/kerberosgss.c \
-  ../lib/kerberosgss.h ../lib/base64.h
-../lib/kerberosgss.c:
-../lib/kerberosgss.h:
-../lib/base64.h:

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/worker.o.d
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/worker.o.d b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/worker.o.d
deleted file mode 100644
index c4d96fb..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos/lib/worker.o.d
+++ /dev/null
@@ -1,20 +0,0 @@
-cmd_Release/obj.target/kerberos/lib/worker.o := c++ '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__MACOSX_CORE__' '-DBUILDING_NODE_EXTENSION' -I/Users/nick/.node-gyp/0.10.24/src -I/Users/nick/.node-gyp/0.10.24/deps/uv/include -I/Users/nick/.node-gyp/0.10.24/deps/v8/include  -Os -gdwarf-2 -mmacosx-version-min=10.5 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -fno-rtti -fno-threadsafe-statics -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/kerberos/lib/worker.o.d.raw  -c -o Release/obj.target/kerberos/lib/worker.o ../lib/worker.cc
-Release/obj.target/kerberos/lib/worker.o: ../lib/worker.cc \
-  ../lib/worker.h /Users/nick/.node-gyp/0.10.24/src/node.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-unix.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/ngx-queue.h \
-  /Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-darwin.h \
-  /Users/nick/.node-gyp/0.10.24/deps/v8/include/v8.h \
-  /Users/nick/.node-gyp/0.10.24/deps/v8/include/v8stdint.h \
-  /Users/nick/.node-gyp/0.10.24/src/node_object_wrap.h
-../lib/worker.cc:
-../lib/worker.h:
-/Users/nick/.node-gyp/0.10.24/src/node.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-unix.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/ngx-queue.h:
-/Users/nick/.node-gyp/0.10.24/deps/uv/include/uv-private/uv-darwin.h:
-/Users/nick/.node-gyp/0.10.24/deps/v8/include/v8.h:
-/Users/nick/.node-gyp/0.10.24/deps/v8/include/v8stdint.h:
-/Users/nick/.node-gyp/0.10.24/src/node_object_wrap.h:

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node
deleted file mode 100755
index 8f97ba7..0000000
Binary files a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock
deleted file mode 100644
index e69de29..0000000

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/base64.o
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/base64.o b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/base64.o
deleted file mode 100644
index f585f62..0000000
Binary files a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/base64.o and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos.o
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos.o b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos.o
deleted file mode 100644
index 7b5ac0d..0000000
Binary files a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos.o and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos_context.o
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos_context.o b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos_context.o
deleted file mode 100644
index 72f1345..0000000
Binary files a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberos_context.o and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberosgss.o
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberosgss.o b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberosgss.o
deleted file mode 100644
index 5e6fa9c..0000000
Binary files a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/kerberosgss.o and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/worker.o
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/worker.o b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/worker.o
deleted file mode 100644
index 66e3c2e..0000000
Binary files a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos/lib/worker.o and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile
deleted file mode 100644
index d0d9c64..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-# This file is generated by gyp; do not edit.
-
-export builddir_name ?= build/./.
-.PHONY: all
-all:
-	$(MAKE) kerberos

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/config.gypi
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/config.gypi b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/config.gypi
deleted file mode 100644
index 02cd216..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/config.gypi
+++ /dev/null
@@ -1,113 +0,0 @@
-# Do not edit. File was generated by node-gyp's "configure" step
-{
-  "target_defaults": {
-    "cflags": [],
-    "default_configuration": "Release",
-    "defines": [],
-    "include_dirs": [],
-    "libraries": []
-  },
-  "variables": {
-    "clang": 1,
-    "host_arch": "x64",
-    "node_install_npm": "true",
-    "node_prefix": "",
-    "node_shared_cares": "false",
-    "node_shared_http_parser": "false",
-    "node_shared_libuv": "false",
-    "node_shared_openssl": "false",
-    "node_shared_v8": "false",
-    "node_shared_zlib": "false",
-    "node_tag": "",
-    "node_unsafe_optimizations": 0,
-    "node_use_dtrace": "true",
-    "node_use_etw": "false",
-    "node_use_openssl": "true",
-    "node_use_perfctr": "false",
-    "python": "/usr/bin/python",
-    "target_arch": "x64",
-    "v8_enable_gdbjit": 0,
-    "v8_no_strict_aliasing": 1,
-    "v8_use_snapshot": "false",
-    "nodedir": "/Users/nick/.node-gyp/0.10.24",
-    "copy_dev_lib": "true",
-    "standalone_static_library": 1,
-    "save_dev": "",
-    "browser": "",
-    "viewer": "man",
-    "rollback": "true",
-    "usage": "",
-    "globalignorefile": "/usr/local/etc/npmignore",
-    "init_author_url": "",
-    "shell": "/bin/bash",
-    "parseable": "",
-    "shrinkwrap": "true",
-    "email": "",
-    "init_license": "ISC",
-    "cache_max": "null",
-    "init_author_email": "",
-    "sign_git_tag": "",
-    "cert": "",
-    "git_tag_version": "true",
-    "local_address": "",
-    "long": "",
-    "registry": "https://registry.npmjs.org/",
-    "fetch_retries": "2",
-    "npat": "",
-    "key": "",
-    "message": "%s",
-    "versions": "",
-    "globalconfig": "/usr/local/etc/npmrc",
-    "always_auth": "",
-    "cache_lock_retries": "10",
-    "heading": "npm",
-    "fetch_retry_mintimeout": "10000",
-    "proprietary_attribs": "true",
-    "json": "",
-    "description": "true",
-    "engine_strict": "",
-    "https_proxy": "",
-    "init_module": "/Users/nick/.npm-init.js",
-    "userconfig": "/Users/nick/.npmrc",
-    "node_version": "v0.10.24",
-    "user": "",
-    "editor": "vi",
-    "save": "",
-    "tag": "latest",
-    "global": "",
-    "optional": "true",
-    "username": "",
-    "bin_links": "true",
-    "force": "",
-    "searchopts": "",
-    "depth": "null",
-    "rebuild_bundle": "true",
-    "searchsort": "name",
-    "unicode": "true",
-    "fetch_retry_maxtimeout": "60000",
-    "strict_ssl": "true",
-    "dev": "",
-    "fetch_retry_factor": "10",
-    "group": "20",
-    "cache_lock_stale": "60000",
-    "version": "",
-    "cache_min": "10",
-    "cache": "/Users/nick/.npm",
-    "searchexclude": "",
-    "color": "true",
-    "save_optional": "",
-    "ignore_scripts": "",
-    "user_agent": "node/v0.10.24 darwin x64",
-    "cache_lock_wait": "10000",
-    "production": "true",
-    "save_bundle": "",
-    "umask": "18",
-    "git": "git",
-    "init_author_name": "",
-    "onload_script": "",
-    "tmp": "/var/folders/xt/30wz0tn505j5ksg84l_d76jw0000gn/T/",
-    "unsafe_perm": "true",
-    "link": "",
-    "prefix": "/usr/local"
-  }
-}

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/gyp-mac-tool
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/gyp-mac-tool b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/gyp-mac-tool
deleted file mode 100755
index 12edee9..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/gyp-mac-tool
+++ /dev/null
@@ -1,265 +0,0 @@
-#!/usr/bin/env python
-# Generated by gyp. Do not edit.
-# Copyright (c) 2012 Google Inc. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Utility functions to perform Xcode-style build steps.
-
-These functions are executed via gyp-mac-tool when using the Makefile generator.
-"""
-
-import fcntl
-import json
-import os
-import plistlib
-import re
-import shutil
-import string
-import subprocess
-import sys
-
-
-def main(args):
-  executor = MacTool()
-  exit_code = executor.Dispatch(args)
-  if exit_code is not None:
-    sys.exit(exit_code)
-
-
-class MacTool(object):
-  """This class performs all the Mac tooling steps. The methods can either be
-  executed directly, or dispatched from an argument list."""
-
-  def Dispatch(self, args):
-    """Dispatches a string command to a method."""
-    if len(args) < 1:
-      raise Exception("Not enough arguments")
-
-    method = "Exec%s" % self._CommandifyName(args[0])
-    return getattr(self, method)(*args[1:])
-
-  def _CommandifyName(self, name_string):
-    """Transforms a tool name like copy-info-plist to CopyInfoPlist"""
-    return name_string.title().replace('-', '')
-
-  def ExecCopyBundleResource(self, source, dest):
-    """Copies a resource file to the bundle/Resources directory, performing any
-    necessary compilation on each resource."""
-    extension = os.path.splitext(source)[1].lower()
-    if os.path.isdir(source):
-      # Copy tree.
-      # TODO(thakis): This copies file attributes like mtime, while the
-      # single-file branch below doesn't. This should probably be changed to
-      # be consistent with the single-file branch.
-      if os.path.exists(dest):
-        shutil.rmtree(dest)
-      shutil.copytree(source, dest)
-    elif extension == '.xib':
-      return self._CopyXIBFile(source, dest)
-    elif extension == '.storyboard':
-      return self._CopyXIBFile(source, dest)
-    elif extension == '.strings':
-      self._CopyStringsFile(source, dest)
-    else:
-      shutil.copy(source, dest)
-
-  def _CopyXIBFile(self, source, dest):
-    """Compiles a XIB file with ibtool into a binary plist in the bundle."""
-
-    # ibtool sometimes crashes with relative paths. See crbug.com/314728.
-    base = os.path.dirname(os.path.realpath(__file__))
-    if os.path.relpath(source):
-      source = os.path.join(base, source)
-    if os.path.relpath(dest):
-      dest = os.path.join(base, dest)
-
-    args = ['xcrun', 'ibtool', '--errors', '--warnings', '--notices',
-        '--output-format', 'human-readable-text', '--compile', dest, source]
-    ibtool_section_re = re.compile(r'/\*.*\*/')
-    ibtool_re = re.compile(r'.*note:.*is clipping its content')
-    ibtoolout = subprocess.Popen(args, stdout=subprocess.PIPE)
-    current_section_header = None
-    for line in ibtoolout.stdout:
-      if ibtool_section_re.match(line):
-        current_section_header = line
-      elif not ibtool_re.match(line):
-        if current_section_header:
-          sys.stdout.write(current_section_header)
-          current_section_header = None
-        sys.stdout.write(line)
-    return ibtoolout.returncode
-
-  def _CopyStringsFile(self, source, dest):
-    """Copies a .strings file using iconv to reconvert the input into UTF-16."""
-    input_code = self._DetectInputEncoding(source) or "UTF-8"
-
-    # Xcode's CpyCopyStringsFile / builtin-copyStrings seems to call
-    # CFPropertyListCreateFromXMLData() behind the scenes; at least it prints
-    #     CFPropertyListCreateFromXMLData(): Old-style plist parser: missing
-    #     semicolon in dictionary.
-    # on invalid files. Do the same kind of validation.
-    import CoreFoundation
-    s = open(source, 'rb').read()
-    d = CoreFoundation.CFDataCreate(None, s, len(s))
-    _, error = CoreFoundation.CFPropertyListCreateFromXMLData(None, d, 0, None)
-    if error:
-      return
-
-    fp = open(dest, 'wb')
-    fp.write(s.decode(input_code).encode('UTF-16'))
-    fp.close()
-
-  def _DetectInputEncoding(self, file_name):
-    """Reads the first few bytes from file_name and tries to guess the text
-    encoding. Returns None as a guess if it can't detect it."""
-    fp = open(file_name, 'rb')
-    try:
-      header = fp.read(3)
-    except e:
-      fp.close()
-      return None
-    fp.close()
-    if header.startswith("\xFE\xFF"):
-      return "UTF-16"
-    elif header.startswith("\xFF\xFE"):
-      return "UTF-16"
-    elif header.startswith("\xEF\xBB\xBF"):
-      return "UTF-8"
-    else:
-      return None
-
-  def ExecCopyInfoPlist(self, source, dest, *keys):
-    """Copies the |source| Info.plist to the destination directory |dest|."""
-    # Read the source Info.plist into memory.
-    fd = open(source, 'r')
-    lines = fd.read()
-    fd.close()
-
-    # Insert synthesized key/value pairs (e.g. BuildMachineOSBuild).
-    plist = plistlib.readPlistFromString(lines)
-    if keys:
-      plist = dict(plist.items() + json.loads(keys[0]).items())
-    lines = plistlib.writePlistToString(plist)
-
-    # Go through all the environment variables and replace them as variables in
-    # the file.
-    IDENT_RE = re.compile('[/\s]')
-    for key in os.environ:
-      if key.startswith('_'):
-        continue
-      evar = '${%s}' % key
-      evalue = os.environ[key]
-      lines = string.replace(lines, evar, evalue)
-
-      # Xcode supports various suffices on environment variables, which are
-      # all undocumented. :rfc1034identifier is used in the standard project
-      # template these days, and :identifier was used earlier. They are used to
-      # convert non-url characters into things that look like valid urls --
-      # except that the replacement character for :identifier, '_' isn't valid
-      # in a URL either -- oops, hence :rfc1034identifier was born.
-      evar = '${%s:identifier}' % key
-      evalue = IDENT_RE.sub('_', os.environ[key])
-      lines = string.replace(lines, evar, evalue)
-
-      evar = '${%s:rfc1034identifier}' % key
-      evalue = IDENT_RE.sub('-', os.environ[key])
-      lines = string.replace(lines, evar, evalue)
-
-    # Remove any keys with values that haven't been replaced.
-    lines = lines.split('\n')
-    for i in range(len(lines)):
-      if lines[i].strip().startswith("<string>${"):
-        lines[i] = None
-        lines[i - 1] = None
-    lines = '\n'.join(filter(lambda x: x is not None, lines))
-
-    # Write out the file with variables replaced.
-    fd = open(dest, 'w')
-    fd.write(lines)
-    fd.close()
-
-    # Now write out PkgInfo file now that the Info.plist file has been
-    # "compiled".
-    self._WritePkgInfo(dest)
-
-  def _WritePkgInfo(self, info_plist):
-    """This writes the PkgInfo file from the data stored in Info.plist."""
-    plist = plistlib.readPlist(info_plist)
-    if not plist:
-      return
-
-    # Only create PkgInfo for executable types.
-    package_type = plist['CFBundlePackageType']
-    if package_type != 'APPL':
-      return
-
-    # The format of PkgInfo is eight characters, representing the bundle type
-    # and bundle signature, each four characters. If that is missing, four
-    # '?' characters are used instead.
-    signature_code = plist.get('CFBundleSignature', '????')
-    if len(signature_code) != 4:  # Wrong length resets everything, too.
-      signature_code = '?' * 4
-
-    dest = os.path.join(os.path.dirname(info_plist), 'PkgInfo')
-    fp = open(dest, 'w')
-    fp.write('%s%s' % (package_type, signature_code))
-    fp.close()
-
-  def ExecFlock(self, lockfile, *cmd_list):
-    """Emulates the most basic behavior of Linux's flock(1)."""
-    # Rely on exception handling to report errors.
-    fd = os.open(lockfile, os.O_RDONLY|os.O_NOCTTY|os.O_CREAT, 0o666)
-    fcntl.flock(fd, fcntl.LOCK_EX)
-    return subprocess.call(cmd_list)
-
-  def ExecFilterLibtool(self, *cmd_list):
-    """Calls libtool and filters out '/path/to/libtool: file: foo.o has no
-    symbols'."""
-    libtool_re = re.compile(r'^.*libtool: file: .* has no symbols$')
-    libtoolout = subprocess.Popen(cmd_list, stderr=subprocess.PIPE)
-    _, err = libtoolout.communicate()
-    for line in err.splitlines():
-      if not libtool_re.match(line):
-        print >>sys.stderr, line
-    return libtoolout.returncode
-
-  def ExecPackageFramework(self, framework, version):
-    """Takes a path to Something.framework and the Current version of that and
-    sets up all the symlinks."""
-    # Find the name of the binary based on the part before the ".framework".
-    binary = os.path.basename(framework).split('.')[0]
-
-    CURRENT = 'Current'
-    RESOURCES = 'Resources'
-    VERSIONS = 'Versions'
-
-    if not os.path.exists(os.path.join(framework, VERSIONS, version, binary)):
-      # Binary-less frameworks don't seem to contain symlinks (see e.g.
-      # chromium's out/Debug/org.chromium.Chromium.manifest/ bundle).
-      return
-
-    # Move into the framework directory to set the symlinks correctly.
-    pwd = os.getcwd()
-    os.chdir(framework)
-
-    # Set up the Current version.
-    self._Relink(version, os.path.join(VERSIONS, CURRENT))
-
-    # Set up the root symlinks.
-    self._Relink(os.path.join(VERSIONS, CURRENT, binary), binary)
-    self._Relink(os.path.join(VERSIONS, CURRENT, RESOURCES), RESOURCES)
-
-    # Back to where we were before!
-    os.chdir(pwd)
-
-  def _Relink(self, dest, link):
-    """Creates a symlink to |dest| named |link|. If |link| already exists,
-    it is overwritten."""
-    if os.path.lexists(link):
-      os.remove(link)
-    os.symlink(dest, link)
-
-
-if __name__ == '__main__':
-  sys.exit(main(sys.argv[1:]))

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/kerberos.target.mk
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/kerberos.target.mk b/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/kerberos.target.mk
deleted file mode 100644
index 32767a0..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/build/kerberos.target.mk
+++ /dev/null
@@ -1,168 +0,0 @@
-# This file is generated by gyp; do not edit.
-
-TOOLSET := target
-TARGET := kerberos
-DEFS_Debug := \
-	'-D_DARWIN_USE_64_BIT_INODE=1' \
-	'-D_LARGEFILE_SOURCE' \
-	'-D_FILE_OFFSET_BITS=64' \
-	'-D__MACOSX_CORE__' \
-	'-DBUILDING_NODE_EXTENSION' \
-	'-DDEBUG' \
-	'-D_DEBUG'
-
-# Flags passed to all source files.
-CFLAGS_Debug := \
-	-O0 \
-	-gdwarf-2 \
-	-mmacosx-version-min=10.5 \
-	-arch x86_64 \
-	-Wall \
-	-Wendif-labels \
-	-W \
-	-Wno-unused-parameter
-
-# Flags passed to only C files.
-CFLAGS_C_Debug := \
-	-fno-strict-aliasing
-
-# Flags passed to only C++ files.
-CFLAGS_CC_Debug := \
-	-fno-rtti \
-	-fno-threadsafe-statics \
-	-fno-strict-aliasing
-
-# Flags passed to only ObjC files.
-CFLAGS_OBJC_Debug :=
-
-# Flags passed to only ObjC++ files.
-CFLAGS_OBJCC_Debug :=
-
-INCS_Debug := \
-	-I/Users/nick/.node-gyp/0.10.24/src \
-	-I/Users/nick/.node-gyp/0.10.24/deps/uv/include \
-	-I/Users/nick/.node-gyp/0.10.24/deps/v8/include
-
-DEFS_Release := \
-	'-D_DARWIN_USE_64_BIT_INODE=1' \
-	'-D_LARGEFILE_SOURCE' \
-	'-D_FILE_OFFSET_BITS=64' \
-	'-D__MACOSX_CORE__' \
-	'-DBUILDING_NODE_EXTENSION'
-
-# Flags passed to all source files.
-CFLAGS_Release := \
-	-Os \
-	-gdwarf-2 \
-	-mmacosx-version-min=10.5 \
-	-arch x86_64 \
-	-Wall \
-	-Wendif-labels \
-	-W \
-	-Wno-unused-parameter
-
-# Flags passed to only C files.
-CFLAGS_C_Release := \
-	-fno-strict-aliasing
-
-# Flags passed to only C++ files.
-CFLAGS_CC_Release := \
-	-fno-rtti \
-	-fno-threadsafe-statics \
-	-fno-strict-aliasing
-
-# Flags passed to only ObjC files.
-CFLAGS_OBJC_Release :=
-
-# Flags passed to only ObjC++ files.
-CFLAGS_OBJCC_Release :=
-
-INCS_Release := \
-	-I/Users/nick/.node-gyp/0.10.24/src \
-	-I/Users/nick/.node-gyp/0.10.24/deps/uv/include \
-	-I/Users/nick/.node-gyp/0.10.24/deps/v8/include
-
-OBJS := \
-	$(obj).target/$(TARGET)/lib/kerberos.o \
-	$(obj).target/$(TARGET)/lib/worker.o \
-	$(obj).target/$(TARGET)/lib/kerberosgss.o \
-	$(obj).target/$(TARGET)/lib/base64.o \
-	$(obj).target/$(TARGET)/lib/kerberos_context.o
-
-# Add to the list of files we specially track dependencies for.
-all_deps += $(OBJS)
-
-# CFLAGS et al overrides must be target-local.
-# See "Target-specific Variable Values" in the GNU Make manual.
-$(OBJS): TOOLSET := $(TOOLSET)
-$(OBJS): GYP_CFLAGS := $(DEFS_$(BUILDTYPE)) $(INCS_$(BUILDTYPE))  $(CFLAGS_$(BUILDTYPE)) $(CFLAGS_C_$(BUILDTYPE))
-$(OBJS): GYP_CXXFLAGS := $(DEFS_$(BUILDTYPE)) $(INCS_$(BUILDTYPE))  $(CFLAGS_$(BUILDTYPE)) $(CFLAGS_CC_$(BUILDTYPE))
-$(OBJS): GYP_OBJCFLAGS := $(DEFS_$(BUILDTYPE)) $(INCS_$(BUILDTYPE))  $(CFLAGS_$(BUILDTYPE)) $(CFLAGS_C_$(BUILDTYPE)) $(CFLAGS_OBJC_$(BUILDTYPE))
-$(OBJS): GYP_OBJCXXFLAGS := $(DEFS_$(BUILDTYPE)) $(INCS_$(BUILDTYPE))  $(CFLAGS_$(BUILDTYPE)) $(CFLAGS_CC_$(BUILDTYPE)) $(CFLAGS_OBJCC_$(BUILDTYPE))
-
-# Suffix rules, putting all outputs into $(obj).
-
-$(obj).$(TOOLSET)/$(TARGET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-
-$(obj).$(TOOLSET)/$(TARGET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-
-# Try building from generated source, too.
-
-$(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-
-$(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-
-$(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj)/%.cc FORCE_DO_CMD
-	@$(call do_cmd,cxx,1)
-
-$(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj)/%.c FORCE_DO_CMD
-	@$(call do_cmd,cc,1)
-
-# End of this set of suffix rules
-### Rules for final target.
-LDFLAGS_Debug := \
-	-Wl,-search_paths_first \
-	-mmacosx-version-min=10.5 \
-	-arch x86_64 \
-	-L$(builddir)
-
-LIBTOOLFLAGS_Debug := \
-	-Wl,-search_paths_first
-
-LDFLAGS_Release := \
-	-Wl,-search_paths_first \
-	-mmacosx-version-min=10.5 \
-	-arch x86_64 \
-	-L$(builddir)
-
-LIBTOOLFLAGS_Release := \
-	-Wl,-search_paths_first
-
-LIBS := \
-	-undefined dynamic_lookup \
-	-lkrb5
-
-$(builddir)/kerberos.node: GYP_LDFLAGS := $(LDFLAGS_$(BUILDTYPE))
-$(builddir)/kerberos.node: LIBS := $(LIBS)
-$(builddir)/kerberos.node: GYP_LIBTOOLFLAGS := $(LIBTOOLFLAGS_$(BUILDTYPE))
-$(builddir)/kerberos.node: TOOLSET := $(TOOLSET)
-$(builddir)/kerberos.node: $(OBJS) FORCE_DO_CMD
-	$(call do_cmd,solink_module)
-
-all_deps += $(builddir)/kerberos.node
-# Add target alias
-.PHONY: kerberos
-kerberos: $(builddir)/kerberos.node
-
-# Short alias for building this executable.
-.PHONY: kerberos.node
-kerberos.node: $(builddir)/kerberos.node
-
-# Add executable to "all" target.
-.PHONY: all
-all: $(builddir)/kerberos.node
-

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/builderror.log
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/builderror.log b/web/demos/package/node_modules/mongodb/node_modules/kerberos/builderror.log
deleted file mode 100644
index b690a12..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/builderror.log
+++ /dev/null
@@ -1,199 +0,0 @@
-../lib/kerberosgss.c:125:14: warning: 'gss_import_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-  maj_stat = gss_import_name(&min_stat, &name_token, gss_krb5_nt_service_name, &state->server_name);
-             ^
-/usr/include/gssapi/gssapi.h:586:1: note: 'gss_import_name' declared here
-gss_import_name(
-^
-../lib/kerberosgss.c:148:5: warning: 'gss_delete_sec_context' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_delete_sec_context(&min_stat, &state->context, GSS_C_NO_BUFFER);
-    ^
-/usr/include/gssapi/gssapi.h:498:1: note: 'gss_delete_sec_context' declared here
-gss_delete_sec_context(
-^
-../lib/kerberosgss.c:151:5: warning: 'gss_release_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_release_name(&min_stat, &state->server_name);
-    ^
-/usr/include/gssapi/gssapi.h:593:1: note: 'gss_release_name' declared here
-gss_release_name(
-^
-../lib/kerberosgss.c:193:14: warning: 'gss_init_sec_context' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-  maj_stat = gss_init_sec_context(&min_stat,
-             ^
-/usr/include/gssapi/gssapi.h:461:1: note: 'gss_init_sec_context' declared here
-gss_init_sec_context(
-^
-../lib/kerberosgss.c:217:16: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_release_buffer(&min_stat, &output_token);
-               ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:223:16: warning: 'gss_inquire_context' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_inquire_context(&min_stat, state->context, &gssuser, NULL, NULL, NULL,  NULL, NULL, NULL);
-               ^
-/usr/include/gssapi/gssapi.h:618:1: note: 'gss_inquire_context' declared here
-gss_inquire_context(
-^
-../lib/kerberosgss.c:233:16: warning: 'gss_display_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_display_name(&min_stat, gssuser, &name_token, NULL);
-               ^
-/usr/include/gssapi/gssapi.h:578:1: note: 'gss_display_name' declared here
-gss_display_name(
-^
-../lib/kerberosgss.c:237:9: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        gss_release_buffer(&min_stat, &name_token);
-        ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:238:7: warning: 'gss_release_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-      gss_release_name(&min_stat, &gssuser);
-      ^
-/usr/include/gssapi/gssapi.h:593:1: note: 'gss_release_name' declared here
-gss_release_name(
-^
-../lib/kerberosgss.c:247:7: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-      gss_release_buffer(&min_stat, &name_token);
-      ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:248:7: warning: 'gss_release_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-      gss_release_name(&min_stat, &gssuser);
-      ^
-/usr/include/gssapi/gssapi.h:593:1: note: 'gss_release_name' declared here
-gss_release_name(
-^
-../lib/kerberosgss.c:254:5: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_release_buffer(&min_stat, &output_token);
-    ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:289:14: warning: 'gss_unwrap' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-  maj_stat = gss_unwrap(&min_stat,
-             ^
-/usr/include/gssapi/gssapi.h:544:1: note: 'gss_unwrap' declared here
-gss_unwrap(
-^
-../lib/kerberosgss.c:307:16: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_release_buffer(&min_stat, &output_token);
-               ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:311:5: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_release_buffer(&min_stat, &output_token);
-    ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:371:14: warning: 'gss_wrap' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-  maj_stat = gss_wrap(&min_stat,
-             ^
-/usr/include/gssapi/gssapi.h:532:1: note: 'gss_wrap' declared here
-gss_wrap(
-^
-../lib/kerberosgss.c:388:16: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_release_buffer(&min_stat, &output_token);
-               ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:392:5: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_release_buffer(&min_stat, &output_token);
-    ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:427:20: warning: 'gss_import_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        maj_stat = gss_import_name(&min_stat, &name_token, GSS_C_NT_HOSTBASED_SERVICE, &state->server_name);
-                   ^
-/usr/include/gssapi/gssapi.h:586:1: note: 'gss_import_name' declared here
-gss_import_name(
-^
-../lib/kerberosgss.c:437:20: warning: 'gss_acquire_cred' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        maj_stat = gss_acquire_cred(&min_stat, state->server_name, GSS_C_INDEFINITE,
-                   ^
-/usr/include/gssapi/gssapi.h:445:1: note: 'gss_acquire_cred' declared here
-gss_acquire_cred(
-^
-../lib/kerberosgss.c:458:9: warning: 'gss_delete_sec_context' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        gss_delete_sec_context(&min_stat, &state->context, GSS_C_NO_BUFFER);
-        ^
-/usr/include/gssapi/gssapi.h:498:1: note: 'gss_delete_sec_context' declared here
-gss_delete_sec_context(
-^
-../lib/kerberosgss.c:460:9: warning: 'gss_release_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        gss_release_name(&min_stat, &state->server_name);
-        ^
-/usr/include/gssapi/gssapi.h:593:1: note: 'gss_release_name' declared here
-gss_release_name(
-^
-../lib/kerberosgss.c:462:9: warning: 'gss_release_name' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        gss_release_name(&min_stat, &state->client_name);
-        ^
-/usr/include/gssapi/gssapi.h:593:1: note: 'gss_release_name' declared here
-gss_release_name(
-^
-../lib/kerberosgss.c:464:9: warning: 'gss_release_cred' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        gss_release_cred(&min_stat, &state->server_creds);
-        ^
-/usr/include/gssapi/gssapi.h:456:1: note: 'gss_release_cred' declared here
-gss_release_cred(
-^
-../lib/kerberosgss.c:466:9: warning: 'gss_release_cred' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-        gss_release_cred(&min_stat, &state->client_creds);
-        ^
-/usr/include/gssapi/gssapi.h:456:1: note: 'gss_release_cred' declared here
-gss_release_cred(
-^
-../lib/kerberosgss.c:595:16: warning: 'gss_display_status' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_display_status (&min_stat,
-               ^
-/usr/include/gssapi/gssapi.h:554:1: note: 'gss_display_status' declared here
-gss_display_status(
-^
-../lib/kerberosgss.c:605:5: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_release_buffer(&min_stat, &status_string);
-    ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:607:16: warning: 'gss_display_status' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_display_status (&min_stat,
-               ^
-/usr/include/gssapi/gssapi.h:554:1: note: 'gss_display_status' declared here
-gss_display_status(
-^
-../lib/kerberosgss.c:616:7: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-      gss_release_buffer(&min_stat, &status_string);
-      ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:631:16: warning: 'gss_display_status' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_display_status (&min_stat,
-               ^
-/usr/include/gssapi/gssapi.h:554:1: note: 'gss_display_status' declared here
-gss_display_status(
-^
-../lib/kerberosgss.c:641:5: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    gss_release_buffer(&min_stat, &status_string);
-    ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-../lib/kerberosgss.c:643:16: warning: 'gss_display_status' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-    maj_stat = gss_display_status (&min_stat,
-               ^
-/usr/include/gssapi/gssapi.h:554:1: note: 'gss_display_status' declared here
-gss_display_status(
-^
-../lib/kerberosgss.c:651:7: warning: 'gss_release_buffer' is deprecated: use GSS.framework [-Wdeprecated-declarations]
-      gss_release_buffer(&min_stat, &status_string);
-      ^
-/usr/include/gssapi/gssapi.h:598:1: note: 'gss_release_buffer' declared here
-gss_release_buffer(
-^
-33 warnings generated.

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/index.js
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/index.js b/web/demos/package/node_modules/mongodb/node_modules/kerberos/index.js
deleted file mode 100644
index b8c8532..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/index.js
+++ /dev/null
@@ -1,6 +0,0 @@
-// Get the Kerberos library
-module.exports = require('./lib/kerberos');
-// Set up the auth processes
-module.exports['processes'] = {
-  MongoAuthProcess: require('./lib/auth_processes/mongodb').MongoAuthProcess
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/auth_processes/mongodb.js
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/auth_processes/mongodb.js b/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/auth_processes/mongodb.js
deleted file mode 100644
index f1e9231..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/auth_processes/mongodb.js
+++ /dev/null
@@ -1,281 +0,0 @@
-var format = require('util').format;
-
-var MongoAuthProcess = function(host, port, service_name) {  
-  // Check what system we are on
-  if(process.platform == 'win32') {
-    this._processor = new Win32MongoProcessor(host, port, service_name);
-  } else {
-    this._processor = new UnixMongoProcessor(host, port, service_name);
-  }
-}
-
-MongoAuthProcess.prototype.init = function(username, password, callback) {
-  this._processor.init(username, password, callback);
-}
-
-MongoAuthProcess.prototype.transition = function(payload, callback) {
-  this._processor.transition(payload, callback);
-}
-
-/*******************************************************************
- *
- * Win32 SSIP Processor for MongoDB
- *
- *******************************************************************/
-var Win32MongoProcessor = function(host, port, service_name) {
-  this.host = host;
-  this.port = port  
-  // SSIP classes
-  this.ssip = require("../kerberos").SSIP;
-  // Set up first transition
-  this._transition = Win32MongoProcessor.first_transition(this);
-  // Set up service name
-  service_name = service_name || "mongodb";
-  // Set up target
-  this.target = format("%s/%s", service_name, host);
-  // Number of retries
-  this.retries = 10;
-}
-
-Win32MongoProcessor.prototype.init = function(username, password, callback) {
-  var self = this;
-  // Save the values used later
-  this.username = username;
-  this.password = password;
-  // Aquire credentials
-  this.ssip.SecurityCredentials.aquire_kerberos(username, password, function(err, security_credentials) {
-    if(err) return callback(err);
-    // Save credentials
-    self.security_credentials = security_credentials;
-    // Callback with success
-    callback(null);
-  });
-}
-
-Win32MongoProcessor.prototype.transition = function(payload, callback) {
-  if(this._transition == null) return callback(new Error("Transition finished"));
-  this._transition(payload, callback);
-}
-
-Win32MongoProcessor.first_transition = function(self) {
-  return function(payload, callback) {    
-    self.ssip.SecurityContext.initialize(
-      self.security_credentials, 
-      self.target, 
-      payload, function(err, security_context) {   
-        if(err) return callback(err);
-        
-        // If no context try again until we have no more retries
-        if(!security_context.hasContext) {
-          if(self.retries == 0) return callback(new Error("Failed to initialize security context"));
-          // Update the number of retries
-          self.retries = self.retries - 1;
-          // Set next transition
-          return self.transition(payload, callback);
-        }
-
-        // Set next transition
-        self._transition = Win32MongoProcessor.second_transition(self);
-        self.security_context = security_context;
-        // Return the payload
-        callback(null, security_context.payload);
-    });
-  }
-}
-
-Win32MongoProcessor.second_transition = function(self) {
-  return function(payload, callback) {    
-    // Perform a step
-    self.security_context.initialize(self.target, payload, function(err, security_context) {
-      if(err) return callback(err);
-
-      // If no context try again until we have no more retries
-      if(!security_context.hasContext) {
-        if(self.retries == 0) return callback(new Error("Failed to initialize security context"));
-        // Update the number of retries
-        self.retries = self.retries - 1;
-        // Set next transition
-        self._transition = Win32MongoProcessor.first_transition(self);
-        // Retry
-        return self.transition(payload, callback);
-      }
-
-      // Set next transition
-      self._transition = Win32MongoProcessor.third_transition(self);
-      // Return the payload
-      callback(null, security_context.payload);
-    });
-  }  
-}
-
-Win32MongoProcessor.third_transition = function(self) {
-  return function(payload, callback) {   
-    var messageLength = 0;
-    // Get the raw bytes
-    var encryptedBytes = new Buffer(payload, 'base64');
-    var encryptedMessage = new Buffer(messageLength);
-    // Copy first byte
-    encryptedBytes.copy(encryptedMessage, 0, 0, messageLength);
-    // Set up trailer
-    var securityTrailerLength = encryptedBytes.length - messageLength;
-    var securityTrailer = new Buffer(securityTrailerLength);
-    // Copy the bytes
-    encryptedBytes.copy(securityTrailer, 0, messageLength, securityTrailerLength);
-
-    // Types used
-    var SecurityBuffer = self.ssip.SecurityBuffer;
-    var SecurityBufferDescriptor = self.ssip.SecurityBufferDescriptor;
-
-    // Set up security buffers
-    var buffers = [
-        new SecurityBuffer(SecurityBuffer.DATA, encryptedBytes)
-      , new SecurityBuffer(SecurityBuffer.STREAM, securityTrailer)
-    ];
-
-    // Set up the descriptor
-    var descriptor = new SecurityBufferDescriptor(buffers);
-
-    // Decrypt the data
-    self.security_context.decryptMessage(descriptor, function(err, security_context) {
-      if(err) return callback(err);
-
-      var length = 4;
-      if(self.username != null) {
-        length += self.username.length;          
-      }
-
-      var bytesReceivedFromServer = new Buffer(length);
-      bytesReceivedFromServer[0] = 0x01;  // NO_PROTECTION
-      bytesReceivedFromServer[1] = 0x00;  // NO_PROTECTION
-      bytesReceivedFromServer[2] = 0x00;  // NO_PROTECTION
-      bytesReceivedFromServer[3] = 0x00;  // NO_PROTECTION        
-
-      if(self.username != null) {
-        var authorization_id_bytes = new Buffer(self.username, 'utf8');
-        authorization_id_bytes.copy(bytesReceivedFromServer, 4, 0);
-      }
-
-      self.security_context.queryContextAttributes(0x00, function(err, sizes) {
-        if(err) return callback(err);
-
-        var buffers = [
-            new SecurityBuffer(SecurityBuffer.TOKEN, new Buffer(sizes.securityTrailer))
-          , new SecurityBuffer(SecurityBuffer.DATA, bytesReceivedFromServer)
-          , new SecurityBuffer(SecurityBuffer.PADDING, new Buffer(sizes.blockSize))
-        ]
-
-        var descriptor = new SecurityBufferDescriptor(buffers);
-
-        self.security_context.encryptMessage(descriptor, 0x80000001, function(err, security_context) {
-          if(err) return callback(err);
-          callback(null, security_context.payload);
-        });
-      });
-    });
-  }  
-}
-
-/*******************************************************************
- *
- * UNIX MIT Kerberos processor
- *
- *******************************************************************/
-var UnixMongoProcessor = function(host, port, service_name) {
-  this.host = host;
-  this.port = port  
-  // SSIP classes
-  this.Kerberos = require("../kerberos").Kerberos;
-  this.kerberos = new this.Kerberos();
-  service_name = service_name || "mongodb";
-  // Set up first transition
-  this._transition = UnixMongoProcessor.first_transition(this);
-  // Set up target
-  this.target = format("%s@%s", service_name, host);
-  // Number of retries
-  this.retries = 10;
-}
-
-UnixMongoProcessor.prototype.init = function(username, password, callback) {
-  var self = this;
-  this.username = username;
-  this.password = password;
-  // Call client initiate
-  this.kerberos.authGSSClientInit(
-      self.target
-    , this.Kerberos.GSS_C_MUTUAL_FLAG, function(err, context) {
-      self.context = context;
-      // Return the context
-      callback(null, context);
-  });
-}
-
-UnixMongoProcessor.prototype.transition = function(payload, callback) {
-  if(this._transition == null) return callback(new Error("Transition finished"));
-  this._transition(payload, callback);
-}
-
-UnixMongoProcessor.first_transition = function(self) {
-  return function(payload, callback) {    
-    self.kerberos.authGSSClientStep(self.context, '', function(err, result) {
-      if(err) return callback(err);
-      // Set up the next step
-      self._transition = UnixMongoProcessor.second_transition(self);
-      // Return the payload
-      callback(null, self.context.response);
-    })
-  }
-}
-
-UnixMongoProcessor.second_transition = function(self) {
-  return function(payload, callback) {    
-    self.kerberos.authGSSClientStep(self.context, payload, function(err, result) {
-      if(err && self.retries == 0) return callback(err);
-      // Attempt to re-establish a context
-      if(err) {
-        // Adjust the number of retries
-        self.retries = self.retries - 1;
-        // Call same step again
-        return self.transition(payload, callback);
-      }
-      
-      // Set up the next step
-      self._transition = UnixMongoProcessor.third_transition(self);
-      // Return the payload
-      callback(null, self.context.response || '');
-    });
-  }
-}
-
-UnixMongoProcessor.third_transition = function(self) {
-  return function(payload, callback) {    
-    // GSS Client Unwrap
-    self.kerberos.authGSSClientUnwrap(self.context, payload, function(err, result) {
-      if(err) return callback(err, false);
-      
-      // Wrap the response
-      self.kerberos.authGSSClientWrap(self.context, self.context.response, self.username, function(err, result) {
-        if(err) return callback(err, false);
-        // Set up the next step
-        self._transition = UnixMongoProcessor.fourth_transition(self);
-        // Return the payload
-        callback(null, self.context.response);
-      });
-    });
-  }
-}
-
-UnixMongoProcessor.fourth_transition = function(self) {
-  return function(payload, callback) {    
-    // Clean up context
-    self.kerberos.authGSSClientClean(self.context, function(err, result) {
-      if(err) return callback(err, false);
-      // Set the transition to null
-      self._transition = null;
-      // Callback with valid authentication
-      callback(null, true);
-    });
-  }
-}
-
-// Set the process
-exports.MongoAuthProcess = MongoAuthProcess;
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.c
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.c b/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.c
deleted file mode 100644
index 4232106..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.c
+++ /dev/null
@@ -1,120 +0,0 @@
-/**
- * Copyright (c) 2006-2008 Apple Inc. 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.
- **/
-
-#include "base64.h"
-
-#include <stdlib.h>
-#include <string.h>
-
-// base64 tables
-static char basis_64[] =
-    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
-static signed char index_64[128] =
-{
-    -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-    -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-    -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
-    52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
-    -1, 0, 1, 2,  3, 4, 5, 6,  7, 8, 9,10, 11,12,13,14,
-    15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
-    -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
-    41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
-};
-#define CHAR64(c)  (((c) < 0 || (c) > 127) ? -1 : index_64[(c)])
-
-// base64_encode    :    base64 encode
-//
-// value            :    data to encode
-// vlen             :    length of data
-// (result)         :    new char[] - c-str of result
-char *base64_encode(const unsigned char *value, int vlen)
-{
-    char *result = (char *)malloc((vlen * 4) / 3 + 5);
-    char *out = result;
-    while (vlen >= 3)
-    {
-        *out++ = basis_64[value[0] >> 2];
-        *out++ = basis_64[((value[0] << 4) & 0x30) | (value[1] >> 4)];
-        *out++ = basis_64[((value[1] << 2) & 0x3C) | (value[2] >> 6)];
-        *out++ = basis_64[value[2] & 0x3F];
-        value += 3;
-        vlen -= 3;
-    }
-    if (vlen > 0)
-    {
-        *out++ = basis_64[value[0] >> 2];
-        unsigned char oval = (value[0] << 4) & 0x30;
-        if (vlen > 1) oval |= value[1] >> 4;
-        *out++ = basis_64[oval];
-        *out++ = (vlen < 2) ? '=' : basis_64[(value[1] << 2) & 0x3C];
-        *out++ = '=';
-    }
-    *out = '\0';
-
-    return result;
-}
-
-// base64_decode    :    base64 decode
-//
-// value            :    c-str to decode
-// rlen             :    length of decoded result
-// (result)         :    new unsigned char[] - decoded result
-unsigned char *base64_decode(const char *value, int *rlen)
-{
-    *rlen = 0;
-    int c1, c2, c3, c4;
-
-    int vlen = strlen(value);
-    unsigned char *result =(unsigned char *)malloc((vlen * 3) / 4 + 1);
-    unsigned char *out = result;
-
-    while (1)
-    {
-        if (value[0]==0)
-            return result;
-        c1 = value[0];
-        if (CHAR64(c1) == -1)
-            goto base64_decode_error;;
-        c2 = value[1];
-        if (CHAR64(c2) == -1)
-            goto base64_decode_error;;
-        c3 = value[2];
-        if ((c3 != '=') && (CHAR64(c3) == -1))
-            goto base64_decode_error;;
-        c4 = value[3];
-        if ((c4 != '=') && (CHAR64(c4) == -1))
-            goto base64_decode_error;;
-
-        value += 4;
-        *out++ = (CHAR64(c1) << 2) | (CHAR64(c2) >> 4);
-        *rlen += 1;
-        if (c3 != '=')
-        {
-            *out++ = ((CHAR64(c2) << 4) & 0xf0) | (CHAR64(c3) >> 2);
-            *rlen += 1;
-            if (c4 != '=')
-            {
-                *out++ = ((CHAR64(c3) << 6) & 0xc0) | CHAR64(c4);
-                *rlen += 1;
-            }
-        }
-    }
-
-base64_decode_error:
-    *result = 0;
-    *rlen = 0;
-    return result;
-}

http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/e1a45507/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.h
----------------------------------------------------------------------
diff --git a/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.h b/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.h
deleted file mode 100644
index f0e1f06..0000000
--- a/web/demos/package/node_modules/mongodb/node_modules/kerberos/lib/base64.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * Copyright (c) 2006-2008 Apple Inc. 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.
- **/
-
-char *base64_encode(const unsigned char *value, int vlen);
-unsigned char *base64_decode(const char *value, int *rlen);