This is an automated email from the ASF dual-hosted git repository.

drdub pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-uimacpp.git

commit 606cc25438f72fdbf3691ef5f36a15b2b9661df9
Author: Pablo Duboue <[email protected]>
AuthorDate: Tue Jul 11 09:47:33 2023 -0400

    removed windows files
---
 docs/builddocs.cmd             | 47 -------------------------------
 examples/runall.cmd            | 57 -------------------------------------
 scriptators/perl/winmake.cmd   | 48 -------------------------------
 scriptators/python/winmake.cmd | 47 -------------------------------
 scriptators/tcl/winmake.cmd    | 46 ------------------------------
 src/winmake.cmd                | 64 ------------------------------------------
 6 files changed, 309 deletions(-)

diff --git a/docs/builddocs.cmd b/docs/builddocs.cmd
deleted file mode 100644
index 32162bf..0000000
--- a/docs/builddocs.cmd
+++ /dev/null
@@ -1,47 +0,0 @@
-@ECHO OFF
-
-REM   Licensed to the Apache Software Foundation (ASF) under one
-REM   or more contributor license agreements.  See the NOTICE file
-REM   distributed with this work for additional information
-REM   regarding copyright ownership.  The ASF licenses this file
-REM   to you under the Apache License, Version 2.0 (the
-REM   "License"); you may not use this file except in compliance
-REM   with the License.  You may obtain a copy of the License at
-REM
-REM    http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing,
-REM   software distributed under the License is distributed on an
-REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-REM   KIND, either express or implied.  See the License for the
-REM   specific language governing permissions and limitations
-REM   under the License.
-
-@REM  Builds the UIMACPP doxygen docs.
-@REM   Requires Doxygen 1.3.6 and Graphviz 1.8.10 installed and 
-@REM  PATH environment variable must include
-@REM   doxygen\bin;graphviz\bin;graphviz\bin\tools
-@REM  This script must be run from the uimacpp\docs subdirectory
-
-@if "%~1"=="" goto build
-@if "%~1"=="clean" goto clean
-@if "%~1"=="rebuild" goto rebuild
-
-:build
-       @echo building uimacpp docs in ..\docs
-       nmake -f uimacppdocs.mak build CP=copy DEL=DEL RD="RM /s /q" 
MDFILES=html\*.md5  MAPFILES=html\*.map DOTFILES=html\*.dot HTMLDIR=.\html\
-       goto TheEnd
-
-:rebuild
-       @echo rebuilding uimacpp docs in ..\docs
-       nmake -f uimacppdocs.mak rebuild CP=copy DEL=DEL RD="RM /s /q" 
MDFILES=html\*.md5  MAPFILES=html\*.map DOTFILES=html\*.dot HTMLDIR=.\html\
-       goto TheEnd
-
-:clean
-       @echo cleaning uimacpp docs in ..\docs
-       nmake -f uimacppdocs.mak clean RD="RM /s /q" HTMLDIR=.\html\
-       goto TheEnd
-
-:TheEnd
-       @echo done 
-
diff --git a/examples/runall.cmd b/examples/runall.cmd
deleted file mode 100644
index 7dbc95f..0000000
--- a/examples/runall.cmd
+++ /dev/null
@@ -1,57 +0,0 @@
-@echo off
-
-REM   Licensed to the Apache Software Foundation (ASF) under one
-REM   or more contributor license agreements.  See the NOTICE file
-REM   distributed with this work for additional information
-REM   regarding copyright ownership.  The ASF licenses this file
-REM   to you under the Apache License, Version 2.0 (the
-REM   "License"); you may not use this file except in compliance
-REM   with the License.  You may obtain a copy of the License at
-REM
-REM    http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing,
-REM   software distributed under the License is distributed on an
-REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-REM   KIND, either express or implied.  See the License for the
-REM   specific language governing permissions and limitations
-REM   under the License.
-
-@echo on
-
-@setlocal
-@set runae=runAECpp
-@set exampapp=ExampleApplication
-@set sofaexampapp=SofaExampleApplication
-@if "%~1" == "debug" (
-  @set runae=runAECppD
-  @set exampapp=ExampleApplicationD
-  @set sofaexampapp=SofaExampleApplicationD
-)
-%runae% descriptors/DaveDetector.xml data/example.txt
-@if not errorlevel 0 goto error
-%runae% descriptors/DaveDetector.xml -xmi data/tcas.xmi
-@if not errorlevel 0 goto error
-%runae% descriptors/DaveDetector.xml -xmi data/sofa.xmi -s EnglishDocument
-@if not errorlevel 0 goto error
-%runae% -xmi descriptors/SofaExampleAnnotator.xml data/sofa.xmi
-@if not errorlevel 0 goto error
-set UIMACPP_STREAMHANDLERS=file:SofaStreamHandlerFile
-%runae% -xmi descriptors/SofaDataAnnotator.xml data/sofa.xmi
-@if not errorlevel 0 goto error
-%runae% -xmi descriptors/SofaDataAnnotator.xml data/filetcas.xmi
-@if not errorlevel 0 goto error
-%runae% -xmi descriptors/SimpleTextSegmenter.xml data/docforsegmenter.xmi
-@if not errorlevel 0 goto error
-%runae% -xmi descriptors/XCasWriterCasConsumer.xml data/tcas.xmi
-@if not errorlevel 0 goto error
-%runae% -xmi descriptors/XCasWriterCasConsumer.xml data/sofa.xmi
-@if not errorlevel 0 goto error
-%exampapp% descriptors/DaveDetector.xml data
-@if not errorlevel 0 goto error
-%sofaexampapp% descriptors/SofaExampleAnnotator.xml
-@if not errorlevel 0 goto error
-@echo .................
-@echo All examples ran!
-@echo .................
-:error
diff --git a/scriptators/perl/winmake.cmd b/scriptators/perl/winmake.cmd
deleted file mode 100644
index ad2b445..0000000
--- a/scriptators/perl/winmake.cmd
+++ /dev/null
@@ -1,48 +0,0 @@
-@echo off
-
-REM   Licensed to the Apache Software Foundation (ASF) under one
-REM   or more contributor license agreements.  See the NOTICE file
-REM   distributed with this work for additional information
-REM   regarding copyright ownership.  The ASF licenses this file
-REM   to you under the Apache License, Version 2.0 (the
-REM   "License"); you may not use this file except in compliance
-REM   with the License.  You may obtain a copy of the License at
-REM
-REM    http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing,
-REM   software distributed under the License is distributed on an
-REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-REM   KIND, either express or implied.  See the License for the
-REM   specific language governing permissions and limitations
-REM   under the License.
-
-
-if "%UIMACPP_HOME%" == "" goto TafRootNotSet
-if not exist "%UIMACPP_HOME%"\include\uima\cas.hpp goto UimaRootBad
-
-set SWIG_PATH=\swigwin-1.3.29
-if not exist %SWIG_PATH% goto SwigPathNotSet
-
-set PERL5_INCLUDE=\Perl\lib\CORE
-set PERL5_LIB=\Perl\lib\CORE
-set PERL5_LIBDIR=\Perl\lib\CORE
-if not exist %PERL5_LIB% goto PerlNotSet
-
-REM build Perltator
-devenv perltator.vcproj /build release 
-goto TheEnd
-
-:UimaRootBad
-echo UIMACPP_HOME is invalid
-goto TheEnd
-
-:SwigPathNotSet
-echo SWIG_PATH is invalid
-goto TheEnd
-
-:PerlNotSet
-echo Perl environment is invalid
-
-
-:TheEnd
diff --git a/scriptators/python/winmake.cmd b/scriptators/python/winmake.cmd
deleted file mode 100644
index 810cb23..0000000
--- a/scriptators/python/winmake.cmd
+++ /dev/null
@@ -1,47 +0,0 @@
-@echo off
-
-REM   Licensed to the Apache Software Foundation (ASF) under one
-REM   or more contributor license agreements.  See the NOTICE file
-REM   distributed with this work for additional information
-REM   regarding copyright ownership.  The ASF licenses this file
-REM   to you under the Apache License, Version 2.0 (the
-REM   "License"); you may not use this file except in compliance
-REM   with the License.  You may obtain a copy of the License at
-REM
-REM    http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing,
-REM   software distributed under the License is distributed on an
-REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-REM   KIND, either express or implied.  See the License for the
-REM   specific language governing permissions and limitations
-REM   under the License.
-
-if "%UIMACPP_HOME%" == "" goto TafRootNotSet
-if not exist "%UIMACPP_HOME%"\include\uima\cas.hpp goto UimaRootBad
-
-set SWIG_PATH=\swigwin-1.3.29
-if not exist %SWIG_PATH% goto SwigPathNotSet
-
-set PYTHON_INCLUDE=\Python24\include
-set PYTHON_LIB=\Python24\lib
-set PYTHON_LIBDIR=\Python24\libs
-if not exist %PYTHON_LIB% goto PythonNotSet
-
-REM build Pythonnator
-devenv pythonnator.vcproj /build release 
-goto TheEnd
-
-:UimaRootBad
-echo UIMACPP_HOME is invalid
-goto TheEnd
-
-:SwigPathNotSet
-echo SWIG_PATH is invalid
-goto TheEnd
-
-:PythonNotSet
-echo Python environment is invalid
-
-
-:TheEnd
diff --git a/scriptators/tcl/winmake.cmd b/scriptators/tcl/winmake.cmd
deleted file mode 100644
index b37d268..0000000
--- a/scriptators/tcl/winmake.cmd
+++ /dev/null
@@ -1,46 +0,0 @@
-@echo off
-
-REM   Licensed to the Apache Software Foundation (ASF) under one
-REM   or more contributor license agreements.  See the NOTICE file
-REM   distributed with this work for additional information
-REM   regarding copyright ownership.  The ASF licenses this file
-REM   to you under the Apache License, Version 2.0 (the
-REM   "License"); you may not use this file except in compliance
-REM   with the License.  You may obtain a copy of the License at
-REM
-REM    http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing,
-REM   software distributed under the License is distributed on an
-REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-REM   KIND, either express or implied.  See the License for the
-REM   specific language governing permissions and limitations
-REM   under the License.
-
-if "%UIMACPP_HOME%" == "" goto TafRootNotSet
-if not exist "%UIMACPP_HOME%"\include\uima\cas.hpp goto UimaRootBad
-
-set SWIG_PATH=\swigwin-1.3.29
-if not exist %SWIG_PATH% goto SwigPathNotSet
-
-set TCL_INCLUDE=\Tcl\include
-set TCL_LIBDIR=\Tcl\lib
-if not exist %TCL_LIBDIR% goto TclNotSet
-
-REM build Tclnator
-devenv tclator.vcproj /build release 
-goto TheEnd
-
-:UimaRootBad
-echo UIMACPP_HOME is invalid
-goto TheEnd
-
-:SwigPathNotSet
-echo SWIG_PATH is invalid
-goto TheEnd
-
-:TclNotSet
-echo Tcl environments is invalid
-
-
-:TheEnd
diff --git a/src/winmake.cmd b/src/winmake.cmd
deleted file mode 100644
index 800c247..0000000
--- a/src/winmake.cmd
+++ /dev/null
@@ -1,64 +0,0 @@
-@echo off
-
-REM   Licensed to the Apache Software Foundation (ASF) under one
-REM   or more contributor license agreements.  See the NOTICE file
-REM   distributed with this work for additional information
-REM   regarding copyright ownership.  The ASF licenses this file
-REM   to you under the Apache License, Version 2.0 (the
-REM   "License"); you may not use this file except in compliance
-REM   with the License.  You may obtain a copy of the License at
-REM
-REM    http://www.apache.org/licenses/LICENSE-2.0
-REM
-REM   Unless required by applicable law or agreed to in writing,
-REM   software distributed under the License is distributed on an
-REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-REM   KIND, either express or implied.  See the License for the
-REM   specific language governing permissions and limitations
-REM   under the License.
-
-setlocal
-
-REM Unset UIMACPP_HOME to avoid build problems
-set UIMACPP_HOME=
-
-REM need a Java JRE for the JNI interface
-if not exist %JAVA_HOME%\include\jni.h goto nojava
-
-REM Other requied dependencies
-if "%APR_HOME%"==""     goto noapr
-if "%ICU_HOME%"==""     goto noicu
-if "%XERCES_HOME%"==""  goto noxerces
-
-REM Optional dependency
-if "%ACTIVEMQ_HOME%"==""  (
-  echo WARNING: ACTIVEMQ_HOME not set, deployCppService will fail to build.
-)
-
-REM Start project build
-if "%~1" == "" (
- set OPERATION=/build release
-) else (
- set OPERATION=%1 %2 %3 %4 %5
-)
-echo devenv uimacpp.sln %OPERATION%
-devenv uimacpp.sln %OPERATION%
-goto end
-
-:noapr
-echo need APR_HOME to be set
-goto end
-
-:noicu
-echo need ICU_HOME to be set
-goto end
-
-:noxerces
-echo need XERCES_HOME to be set
-goto end
-
-:nojava
-echo JAVA_HOME is not set or does not contain include\jni.h
-
-:end
-endlocal

Reply via email to