diff -Nru lucene++-3.0.6/debian/changelog lucene++-3.0.6/debian/changelog --- lucene++-3.0.6/debian/changelog 2014-08-26 12:49:11.000000000 +0200 +++ lucene++-3.0.6/debian/changelog 2014-09-01 12:28:56.000000000 +0200 @@ -1,10 +1,3 @@ -lucene++ (3.0.6-2) unstable; urgency=medium - - * Update copyright file. - * move doxygen to Build-Depends-Indep. - - -- Gianfranco Costamagna Tue, 26 Aug 2014 11:36:24 +0200 - lucene++ (3.0.6-1) unstable; urgency=low * Initial release (Closes: #750148). diff -Nru lucene++-3.0.6/debian/control lucene++-3.0.6/debian/control --- lucene++-3.0.6/debian/control 2014-08-26 11:36:18.000000000 +0200 +++ lucene++-3.0.6/debian/control 2014-09-01 12:31:42.000000000 +0200 @@ -17,8 +17,6 @@ Standards-Version: 3.9.5 Section: libs Homepage: https://github.com/luceneplusplus/LucenePlusPlus -Vcs-Bzr: https://code.launchpad.net/~ubuntu-unity/lucene++/debian -Vcs-Browser: http://bazaar.launchpad.net/~ubuntu-unity/lucene++/debian/files Package: liblucene++-dev Section: libdevel diff -Nru lucene++-3.0.6/debian/copyright lucene++-3.0.6/debian/copyright --- lucene++-3.0.6/debian/copyright 2014-08-26 13:01:05.000000000 +0200 +++ lucene++-3.0.6/debian/copyright 2014-09-02 11:33:24.000000000 +0200 @@ -10,6 +10,16 @@ Copyright: 1999, 2000, 2002 Aladdin Enterprises License: zlib +Files: src/contrib/analyzers/common/analysis/{ar/ArabicAnalyzer.cpp,fa/PersianAnalyzer.cpp} +Copyright: 2009-2014 Alan Wright +License: Apache-2.0 or LGPL-3+ +Comment: Generated from http://members.unine.ch/jacques.savoy/clef/index.html + The stopword list is BSD-Licensed. + +Files: src/contrib/snowball/libstemmer_c/* +Copyright: 2001-2011, Dr Martin Porter and Richard Boulton +License: BSD + Files: src/core/util/nedmalloc/* Copyright: 2005-2006 Niall Douglas License: BSL-1.0 diff -Nru lucene++-3.0.6/debian/liblucene++-doc.install lucene++-3.0.6/debian/liblucene++-doc.install --- lucene++-3.0.6/debian/liblucene++-doc.install 2014-07-02 17:38:53.000000000 +0200 +++ lucene++-3.0.6/debian/liblucene++-doc.install 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -usr/share/doc/lucene++-3.0.6/* usr/share/doc/liblucene++-doc/html diff -Nru lucene++-3.0.6/debian/patches/disable-snowball.patch lucene++-3.0.6/debian/patches/disable-snowball.patch --- lucene++-3.0.6/debian/patches/disable-snowball.patch 1970-01-01 01:00:00.000000000 +0100 +++ lucene++-3.0.6/debian/patches/disable-snowball.patch 2014-09-02 11:56:54.000000000 +0200 @@ -0,0 +1,36 @@ +Description: Disabling snowball for the moment. + As described in upstream issue #71 snowball is not used, moreover debian has its + specific library. For now is better to disable it, waiting for upstream suggestions. + +--- +Origin: debian +Forwarded: https://github.com/luceneplusplus/LucenePlusPlus/issues/71 +Reviewed-By: Gianfranco Costamagna +Last-Update: <2014-09-02> + +--- lucene++-3.0.6.orig/src/contrib/CMakeLists.txt ++++ lucene++-3.0.6/src/contrib/CMakeLists.txt +@@ -4,10 +4,10 @@ file(GLOB_RECURSE contrib_sources + analyzers/*.cpp + highlighter/*.cpp + memory/*.cpp +- snowball/*.cpp +- snowball/libstemmer_c/libstemmer/libstemmer_utf8.c +- snowball/libstemmer_c/src_c/*.c +- snowball/libstemmer_c/runtime/*.c ++# snowball/*.cpp ++# snowball/libstemmer_c/libstemmer/libstemmer_utf8.c ++# snowball/libstemmer_c/src_c/*.c ++# snowball/libstemmer_c/runtime/*.c + ) + + file(GLOB_RECURSE contrib_headers +@@ -20,7 +20,7 @@ include_directories( + ${lucene++_SOURCE_DIR}/include + ${lucene++-lib_SOURCE_DIR}/include + ${lucene++-contrib_SOURCE_DIR}/include +- ${lucene++-contrib_SOURCE_DIR}/snowball/libstemmer_c/include ++# ${lucene++-contrib_SOURCE_DIR}/snowball/libstemmer_c/include + ${Boost_INCLUDE_DIRS} + ) + diff -Nru lucene++-3.0.6/debian/patches/series lucene++-3.0.6/debian/patches/series --- lucene++-3.0.6/debian/patches/series 2014-08-26 12:05:33.000000000 +0200 +++ lucene++-3.0.6/debian/patches/series 2014-09-02 11:53:57.000000000 +0200 @@ -2,3 +2,4 @@ fix_test_ftbfs.diff fix_installing_headers.diff disabling-tests.patch +disable-snowball.patch diff -Nru lucene++-3.0.6/debian/rules lucene++-3.0.6/debian/rules --- lucene++-3.0.6/debian/rules 2014-07-04 13:16:51.000000000 +0200 +++ lucene++-3.0.6/debian/rules 2014-09-01 12:30:53.000000000 +0200 @@ -1,5 +1,4 @@ #!/usr/bin/make -f -# -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 @@ -8,7 +7,12 @@ dh $@ --with linktree -- --parallel --fail-missing override_dh_auto_configure: - dh_auto_configure -- -DENABLE_DOCS:BOOL=ON -DENABLE_STANDARD_ALLOCATOR:BOOL=ON + dh_auto_configure -- -DENABLE_STANDARD_ALLOCATOR:BOOL=ON -override_dh_auto_build: +override_dh_auto_build-indep: + dh_auto_configure -- -DENABLE_STANDARD_ALLOCATOR:BOOL=ON -DENABLE_DOCS:BOOL=ON dh_auto_build -- doc + +override_dh_install-indep: + dh_install -pliblucene++-doc usr/share/doc/lucene++-3.0.6/* usr/share/doc/liblucene++-doc/html + rm -rf debian/tmp/usr/share/doc/lucene++-3.0.6/