Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases/apache-solr Add apache-solr, rev 8.5.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/12c23920b7d2
branches: trunk
changeset: 434014:12c23920b7d2
user: jym <jym%pkgsrc.org@localhost>
date: Tue Jun 09 22:20:01 2020 +0000
description:
Add apache-solr, rev 8.5.1.
Apache Solr is an open source enterprise search server based on the Apache
Lucene Java search library, with XML/HTTP and JSON APIs, hit highlighting,
faceted search, caching, replication, and a web administration interface.
diffstat:
databases/apache-solr/DESCR | 3 +
databases/apache-solr/Makefile | 101 ++
databases/apache-solr/PLIST | 1072 ++++++++++++++++++++++++++
databases/apache-solr/distinfo | 7 +
databases/apache-solr/files/solr.in.sh | 4 +
databases/apache-solr/files/solr.sh | 77 +
databases/apache-solr/patches/patch-solr-bin | 39 +
7 files changed, 1303 insertions(+), 0 deletions(-)
diffs (truncated from 1331 to 300 lines):
diff -r da5950c992a7 -r 12c23920b7d2 databases/apache-solr/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/apache-solr/DESCR Tue Jun 09 22:20:01 2020 +0000
@@ -0,0 +1,3 @@
+Apache Solr is an open source enterprise search server based on the Apache
+Lucene Java search library, with XML/HTTP and JSON APIs, hit highlighting,
+faceted search, caching, replication, and a web administration interface.
diff -r da5950c992a7 -r 12c23920b7d2 databases/apache-solr/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/apache-solr/Makefile Tue Jun 09 22:20:01 2020 +0000
@@ -0,0 +1,101 @@
+# $NetBSD: Makefile,v 1.1 2020/06/09 22:20:01 jym Exp $
+
+DISTNAME= solr-${SOLR_VER}
+PKGNAME= apache-solr-${SOLR_VER}
+SOLR_VER= 8.5.1
+CATEGORIES= databases textproc
+MASTER_SITES= ${MASTER_SITE_APACHE:=lucene/solr/${SOLR_VER}/}
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= jym%NetBSD.org@localhost
+HOMEPAGE= https://lucene.apache.org/solr/
+COMMENT= High performance search server built using Lucene Java
+LICENSE= apache-2.0
+
+NO_BUILD= yes
+USE_LANGUAGES= # none
+USE_JAVA= run
+USE_JAVA2= 8
+USE_TOOLS+= bash:run pax
+
+# Used by solr launch script to test for presence of the listening socket
+DEPENDS+= lsof-[0-9]*:../../sysutils/lsof
+
+REPLACE_INTERPRETER+= bash
+REPLACE.bash.old= /usr/bin/env bash
+REPLACE.bash.new= ${TOOLS_PATH.bash}
+REPLACE_FILES.bash= bin/solr server/scripts/cloud-scripts/*.sh
+
+.include "../../mk/bsd.prefs.mk"
+
+EGDIR= ${PREFIX}/share/examples/solr
+DOCDIR= ${PREFIX}/share/doc/solr
+SOLR_DIR?= ${PREFIX}/solr
+SOLR_LOGDIR?= ${VARBASE}/log/solr
+SOLR_PIDDIR?= ${VARBASE}/run/solr
+SOLR_EXAMPLE?= ${EGDIR}/example
+
+BUILD_DEFS+= SOLR_USER SOLR_GROUP SOLR_HOME SOLR_PORT
+BUILD_DEFS+= SOLR_LOGDIR SOLR_PIDDIR VARBASE
+
+CONF_FILES+= ${EGDIR}/solr.in.sh ${PKG_SYSCONFDIR}/solr.in.sh
+CONF_FILES+= ${EGDIR}/solr.xml ${PKG_SYSCONFDIR}/solr.xml
+
+DOCS= CHANGES.txt LICENSE.txt NOTICE.txt README.txt
+PAXDIRS= contrib dist server
+
+RCD_SCRIPTS= solr
+# Solr binding port
+SOLR_PORT?= 8983
+SOLR_USER?= solr
+SOLR_GROUP?= ${SOLR_USER}
+SOLR_HOME?= ${SOLR_DIR}
+
+PKG_SYSCONFSUBDIR= solr
+PKG_USERS= ${SOLR_USER}:${SOLR_GROUP}
+PKG_GROUPS= ${SOLR_GROUP}
+PKG_HOME.solr= ${SOLR_HOME}
+PKG_USERS_VARS+= SOLR_USER
+PKG_GROUPS_VARS+= SOLR_GROUP
+
+SUBST_CLASSES+= paths
+SUBST_STAGE.paths= pre-configure
+SUBST_FILES.paths= solr.in.sh bin/solr
+SUBST_VARS.paths+= PKG_SYSCONFDIR PREFIX SOLR_HOME SOLR_PORT
+SUBST_VARS.paths+= SOLR_EXAMPLE SOLR_LOGDIR SOLR_PIDDIR
+
+FILES_SUBST+= JAVA_HOME=${PKG_JAVA_HOME:Q} \
+ SOLR_LOGDIR=${SOLR_LOGDIR:Q} SOLR_HOME=${SOLR_HOME:Q} \
+ SOLR_PIDDIR=${SOLR_PIDDIR:Q} SOLR_PORT=${SOLR_PORT:Q} \
+ SOLR_USER=${SOLR_USER} SOLR_GROUP=${SOLR_GROUP}
+
+OWN_DIRS_PERMS+= ${SOLR_HOME} ${SOLR_USER} ${SOLR_GROUP} 0700
+OWN_DIRS_PERMS+= ${SOLR_LOGDIR} ${SOLR_USER} ${SOLR_GROUP} 0700
+OWN_DIRS_PERMS+= ${SOLR_PIDDIR} ${SOLR_USER} ${SOLR_GROUP} 0700
+
+INSTALLATION_DIRS= bin ${DOCDIR} ${EGDIR} ${SOLR_DIR}
+
+pre-patch:
+ ${CP} ${FILESDIR}/solr.in.sh ${WRKSRC}/solr.in.sh
+
+do-install:
+.for f in ${DOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${DOCDIR}
+.endfor
+.for d in ${PAXDIRS}
+ ${INSTALL_DATA_DIR} ${DESTDIR}${SOLR_DIR}/${d}
+ cd ${WRKSRC}/${d} && pax -rwpam . ${DESTDIR}${SOLR_DIR}/${d}
+.endfor
+ ${INSTALL_DATA} ${WRKSRC}/solr.in.sh ${DESTDIR}${EGDIR}/solr.in.sh
+ ${INSTALL_DATA} ${WRKSRC}/server/solr/solr.xml \
+ ${DESTDIR}${EGDIR}/solr.xml
+ ${INSTALL_DATA_DIR} ${DESTDIR}${SOLR_EXAMPLE}
+ cd ${WRKSRC}/example && pax -rwpam . ${DESTDIR}${SOLR_EXAMPLE}
+ ${CHOWN} -R ${SOLR_USER}:${SOLR_GROUP} ${DESTDIR}${SOLR_EXAMPLE}
+
+ ${INSTALL_DATA_DIR} ${DESTDIR}${SOLR_DIR}/bin
+ ${INSTALL_SCRIPT} ${WRKSRC}/bin/solr ${DESTDIR}${SOLR_DIR}/bin/solr
+ ${LN} -s ${DESTDIR}${SOLR_DIR}/bin/solr ${DESTDIR}${PREFIX}/bin/solr
+
+.include "../../mk/java-vm.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r da5950c992a7 -r 12c23920b7d2 databases/apache-solr/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/apache-solr/PLIST Tue Jun 09 22:20:01 2020 +0000
@@ -0,0 +1,1072 @@
+@comment $NetBSD: PLIST,v 1.1 2020/06/09 22:20:01 jym Exp $
+bin/solr
+share/doc/solr/CHANGES.txt
+share/doc/solr/LICENSE.txt
+share/doc/solr/NOTICE.txt
+share/doc/solr/README.txt
+share/examples/solr/example/README.txt
+share/examples/solr/example/example-DIH/README.txt
+share/examples/solr/example/example-DIH/hsqldb/ex.script
+share/examples/solr/example/example-DIH/solr/atom/conf/atom-data-config.xml
+share/examples/solr/example/example-DIH/solr/atom/conf/lang/stopwords_en.txt
+share/examples/solr/example/example-DIH/solr/atom/conf/managed-schema
+share/examples/solr/example/example-DIH/solr/atom/conf/protwords.txt
+share/examples/solr/example/example-DIH/solr/atom/conf/solrconfig.xml
+share/examples/solr/example/example-DIH/solr/atom/conf/synonyms.txt
+share/examples/solr/example/example-DIH/solr/atom/conf/url_types.txt
+share/examples/solr/example/example-DIH/solr/atom/core.properties
+share/examples/solr/example/example-DIH/solr/db/conf/clustering/carrot2/kmeans-attributes.xml
+share/examples/solr/example/example-DIH/solr/db/conf/clustering/carrot2/lingo-attributes.xml
+share/examples/solr/example/example-DIH/solr/db/conf/clustering/carrot2/stc-attributes.xml
+share/examples/solr/example/example-DIH/solr/db/conf/currency.xml
+share/examples/solr/example/example-DIH/solr/db/conf/db-data-config.xml
+share/examples/solr/example/example-DIH/solr/db/conf/elevate.xml
+share/examples/solr/example/example-DIH/solr/db/conf/lang/contractions_ca.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/contractions_fr.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/contractions_ga.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/contractions_it.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/hyphenations_ga.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stemdict_nl.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stoptags_ja.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ar.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_bg.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ca.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ckb.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_cz.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_da.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_de.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_el.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_en.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_es.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_eu.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_fa.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_fi.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_fr.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ga.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_gl.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_hi.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_hu.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_hy.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_id.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_it.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ja.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_lv.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_nl.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_no.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_pt.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ro.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_ru.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_sv.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_th.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/stopwords_tr.txt
+share/examples/solr/example/example-DIH/solr/db/conf/lang/userdict_ja.txt
+share/examples/solr/example/example-DIH/solr/db/conf/managed-schema
+share/examples/solr/example/example-DIH/solr/db/conf/mapping-FoldToASCII.txt
+share/examples/solr/example/example-DIH/solr/db/conf/mapping-ISOLatin1Accent.txt
+share/examples/solr/example/example-DIH/solr/db/conf/protwords.txt
+share/examples/solr/example/example-DIH/solr/db/conf/solrconfig.xml
+share/examples/solr/example/example-DIH/solr/db/conf/spellings.txt
+share/examples/solr/example/example-DIH/solr/db/conf/stopwords.txt
+share/examples/solr/example/example-DIH/solr/db/conf/synonyms.txt
+share/examples/solr/example/example-DIH/solr/db/conf/update-script.js
+share/examples/solr/example/example-DIH/solr/db/conf/xslt/example.xsl
+share/examples/solr/example/example-DIH/solr/db/conf/xslt/example_atom.xsl
+share/examples/solr/example/example-DIH/solr/db/conf/xslt/example_rss.xsl
+share/examples/solr/example/example-DIH/solr/db/conf/xslt/luke.xsl
+share/examples/solr/example/example-DIH/solr/db/conf/xslt/updateXml.xsl
+share/examples/solr/example/example-DIH/solr/db/core.properties
+share/examples/solr/example/example-DIH/solr/db/lib/derby-10.9.1.0.jar
+share/examples/solr/example/example-DIH/solr/db/lib/hsqldb-2.4.0.jar
+share/examples/solr/example/example-DIH/solr/mail/conf/clustering/carrot2/kmeans-attributes.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/clustering/carrot2/lingo-attributes.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/clustering/carrot2/stc-attributes.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/currency.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/elevate.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/contractions_ca.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/contractions_fr.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/contractions_ga.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/contractions_it.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/hyphenations_ga.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stemdict_nl.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stoptags_ja.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ar.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_bg.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ca.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ckb.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_cz.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_da.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_de.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_el.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_en.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_es.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_eu.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_fa.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_fi.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_fr.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ga.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_gl.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_hi.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_hu.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_hy.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_id.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_it.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ja.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_lv.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_nl.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_no.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_pt.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ro.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_ru.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_sv.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_th.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/stopwords_tr.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/lang/userdict_ja.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/mail-data-config.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/managed-schema
+share/examples/solr/example/example-DIH/solr/mail/conf/mapping-FoldToASCII.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/mapping-ISOLatin1Accent.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/protwords.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/solrconfig.xml
+share/examples/solr/example/example-DIH/solr/mail/conf/spellings.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/stopwords.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/synonyms.txt
+share/examples/solr/example/example-DIH/solr/mail/conf/update-script.js
+share/examples/solr/example/example-DIH/solr/mail/conf/xslt/example.xsl
+share/examples/solr/example/example-DIH/solr/mail/conf/xslt/example_atom.xsl
+share/examples/solr/example/example-DIH/solr/mail/conf/xslt/example_rss.xsl
+share/examples/solr/example/example-DIH/solr/mail/conf/xslt/luke.xsl
+share/examples/solr/example/example-DIH/solr/mail/conf/xslt/updateXml.xsl
+share/examples/solr/example/example-DIH/solr/mail/core.properties
+share/examples/solr/example/example-DIH/solr/solr.xml
+share/examples/solr/example/example-DIH/solr/solr/conf/clustering/carrot2/kmeans-attributes.xml
+share/examples/solr/example/example-DIH/solr/solr/conf/clustering/carrot2/lingo-attributes.xml
+share/examples/solr/example/example-DIH/solr/solr/conf/clustering/carrot2/stc-attributes.xml
+share/examples/solr/example/example-DIH/solr/solr/conf/currency.xml
+share/examples/solr/example/example-DIH/solr/solr/conf/elevate.xml
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/contractions_ca.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/contractions_fr.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/contractions_ga.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/contractions_it.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/hyphenations_ga.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stemdict_nl.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stoptags_ja.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ar.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_bg.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ca.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ckb.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_cz.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_da.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_de.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_el.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_en.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_es.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_eu.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_fa.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_fi.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_fr.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ga.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_gl.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_hi.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_hu.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_hy.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_id.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_it.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ja.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_lv.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_nl.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_no.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_pt.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ro.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_ru.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_sv.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_th.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/stopwords_tr.txt
+share/examples/solr/example/example-DIH/solr/solr/conf/lang/userdict_ja.txt
Home |
Main Index |
Thread Index |
Old Index