FreeBSD Bugzilla – Attachment 181806 Details for
Bug 218654
textproc/apache-solr do not use lsof in startup script
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for apache-solr 6.5.0
apache-solr-6.5.0-no-lsof.diff (text/plain), 2.44 KB, created by
Wiktor Niesiobedzki
on 2017-04-15 09:17:50 UTC
(
hide
)
Description:
patch for apache-solr 6.5.0
Filename:
MIME Type:
Creator:
Wiktor Niesiobedzki
Created:
2017-04-15 09:17:50 UTC
Size:
2.44 KB
patch
obsolete
>Index: textproc/apache-solr/Makefile >=================================================================== >--- textproc/apache-solr/Makefile (revision 438578) >+++ textproc/apache-solr/Makefile (working copy) >@@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= apache-solr >-PORTVERSION= 6.4.0 >+PORTVERSION= 6.5.0 > CATEGORIES= textproc java > MASTER_SITES= APACHE/lucene/solr/${PORTVERSION} > DISTNAME= solr-${PORTVERSION} >@@ -14,8 +14,7 @@ > > CONFLICTS_INSTALL= apache-solr3-* apache-solr-4* apache-solr-5* > >-RUN_DEPENDS= bash:shells/bash \ >- lsof:sysutils/lsof >+RUN_DEPENDS= bash:shells/bash > > USES= cpe tar:tgz > USE_JAVA= yes >Index: textproc/apache-solr/files/patch-bin_solr >=================================================================== >--- textproc/apache-solr/files/patch-bin_solr (nonexistent) >+++ textproc/apache-solr/files/patch-bin_solr (working copy) >@@ -0,0 +1,31 @@ >+--- bin/solr.orig 2017-04-15 09:06:51 UTC >++++ bin/solr >+@@ -1757,13 +1757,12 @@ function launch_solr() { >+ 1>"$SOLR_LOGS_DIR/solr-$SOLR_PORT-console.log" 2>&1 & echo $! > "$SOLR_PID_DIR/solr-$SOLR_PORT.pid" >+ >+ # no lsof on cygwin though >+- if hash lsof 2>/dev/null ; then # hash returns true if lsof is on the path >+ echo -n "Waiting up to $SOLR_STOP_WAIT seconds to see Solr running on port $SOLR_PORT" >+ # Launch in a subshell to show the spinner >+ (loops=0 >+ while true >+ do >+- running=`lsof -PniTCP:$SOLR_PORT -sTCP:LISTEN` >++ running=`sockstat -ls -P tcp -p $SOLR_PORT | grep LISTEN` >+ if [ -z "$running" ]; then >+ slept=$((loops * 2)) >+ if [ $slept -lt $SOLR_STOP_WAIT ]; then >+@@ -1781,13 +1780,6 @@ function launch_solr() { >+ fi >+ done) & >+ spinner $! >+- else >+- echo -e "NOTE: Please install lsof as this script needs it to determine if Solr is listening on port $SOLR_PORT." >+- sleep 10 >+- SOLR_PID=`ps auxww | grep start\.jar | grep -w "\-Djetty\.port=$SOLR_PORT" | grep -v grep | awk '{print $2}' | sort -r` >+- echo -e "\nStarted Solr server on port $SOLR_PORT (pid=$SOLR_PID). Happy searching!\n" >+- return; >+- fi >+ fi >+ } >+ > >Property changes on: textproc/apache-solr/files/patch-bin_solr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 218654
:
181781
| 181806 |
181808