Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ruby-xapian | Distribution: SUSE Linux Enterprise 15 SP6 |
Version: 1.4.17 | Vendor: openSUSE |
Release: bp156.4.49 | Build date: Tue May 21 20:22:27 2024 |
Group: Development/Languages/Ruby | Build host: i04-ch4d |
Size: 2080907 | Source RPM: xapian-bindings-1.4.17-bp156.4.49.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.xapian.org/ | |
Summary: Files needed for developing Ruby scripts which use Xapian |
Xapian is a probabilistic information retrieval library. It offers an adaptable toolkit that allows developers to add advanced indexing and search facilities to applications. This package provides the files needed for developing Ruby scripts which use Xapian.
GPL-2.0-only
* Fri Dec 10 2021 Max Lin <mlin@suse.com> - Remove %python38_version_nodots check * Thu Dec 17 2020 Benjamin Greiner <code@bnavigator.de> - Build bindings for all possible python3 flavors in TW gh#openSUSE/python-rpm-macros#66 - Fix python related rpmlint warnings * Sat Nov 07 2020 Callum Farmer <callumjfarmer13@gmail.com> - Fix build with RPM 4.16: error: bare words are no longer supported, please use "...": no == yes. * Thu Aug 27 2020 Antonio Larrosa <alarrosa@suse.com> - spec-cleaner run * Thu Aug 27 2020 Antonio Larrosa <alarrosa@suse.com> - Update to version 1.4.17: * No user-visible change except for bumping the version to indicate compatibility with Xapian-core 1.4.17. - Update to version 1.4.16: + General: * Remove code to support SVN snapshots since we stopped using SVN more than 5 years ago. * Ignore overloads for logical ops, *, /. These were already ignored for several languages, and aren't actually usefully wrapped for any of the other languages. + CSharp: * Work around mono terminfo parsing bug in more cases. With this, "make", "make check", "make install" and "make uninstall" all work on Ubuntu 18.10. Patch from Dipanshu Garg, fixes https://github.com/xapian/xapian/pull/287 and [#801]. + Lua: * Allow passing a Lua function as a MatchSpy. This was supposed to be supported already, but the typemaps weren't set up. * On platforms where sizeof(long) is 4, SWIG was wrapping Xapian::BAD_VALUENO as a negative constant in Lua, which was then rejected by a check which disallows passing negative values for unsigned C++ types. We now direct SWIG to handle Xapian::valueno as double (which is what numbers in Lua usually actually are) which gives us an unsigned constant, and also eliminates the negative value check. * Correct documentation - get_description() is wrapped as tostring() in Lua, not str() as we previously claimed. * Add test coverage for passing Lua function for a Stopper. + Perl: * Resolve the remaining issues and remove the "experimental" marker: + Add search_xapian_compat() function which sets up aliases in the Search::Xapian namespace to aid writing code which uses either Search::Xapian or this module. + Allow passing Perl sub for simpler Xapian functor classes. This fills in a missing feature compared to Search::Xapian. See #523. + Remove useless PerlStopper class which was an incomplete copy of the apparently non-functional Search::Xapian::PerlStopper. We now support passing a Perl sub for a Stopper object. + Adjust some method names to match Search::Xapian. Iterators now support inc() (and dec() where the C++ class supports operator--) like Search::Xapian, rather than increment() and prev(). Reported by Eric Wong in #523. + Drop undocumented and unexpected extra equals() method. + Provide compatibility with ENQ_ASCENDING, etc constants. SWIG wraps these as $Xapian::Enquire::ASCENDING, which better matches the C++ API, but Search::Xapian wraps this as Search::Xapian::ENQ_ASCENDING, etc so provide those too for compatibility. Reported by Eric Wong in #523. + Drop stringification and int conversion overloads. These seem more confusing than helpful, and overloading stringification works badly with SWIG-generated bindings. + Document remaining known differences from Search::Xapian. * Update recently tested versions in README. * Improve documentation. * Fix t/02pod.t to look for files in right directory. + Ruby: * Don't print iterator sizes to stdout. This was some debugging accidentally left in as part of a change in 1.4.12. Patch from Dan Callaghan. * Wed Apr 29 2020 Dominique Leuenberger <dimstar@opensuse.org> - Update to version 1.4.15: + Perl: Improve comment about App::Prove. + Ruby: Support Ruby 2.7 (boo#1169447). * Wed Jan 15 2020 Antonio Larrosa <alarrosa@suse.com> - Update to 1.4.14: * Python3: + Remove broken replicationtest.py. It's never worked reliably, and because of that was disabled shortly after being added over a decade ago. Unsurprisingly it's bit-rotted at least a bit since. Nobody seems interested in fixing it, so it's time to just get rid of it. - Remove the python2 bindings - Rebase patch: * do-not-use-sphinx.diff - Update to 1.4.13: * General: + Omit SWIG exception handling for destructors. Since C++11, destructors can't throw by default and we don't override that default, so there's no point adding exception handling code for them. + Ensure doccomments.i is distributed. If you unpacked a distribution tarball, configured it and then ran "make dist" python/doccomments.i and python3/doccomments.i would be missing unless you configured the tree with - -enable-maintainer-mode. * PHP: + Check for php-config5.6 and php-config5.5 in configure as these versioned names are used in some packages (such as those from the ondrej/php PPA). * PHP7: + Work around build failure on Illuminos. Fixes https://trac.xapian.org/ticket/793, reported by Amitai Schleier. * Ruby: + smoketest.rb: Use #push not #append on Array to restore compatibility with Ruby < 2.5 (broken by changes in 1.4.12). + Expand tabs in Ruby code since using spaces for indentation seems to be preferred Ruby style. + Remove trailing `;` from Ruby code. - Update to 1.4.12: * Documentation: + Update bindings HACKING document. Reported as out of date by Niwesh Gupta. * CSharp: + Work around mono terminfo parsing bug - older cli-sn fails with e.g. TERM=xterm-256color due to: https://github.com/mono/mono/issues/6752 Encountered on Kubuntu 18.10 and debugged by Tejasvi Tomar. Seems to be fixed in the mono version in Debian buster. * Perl: + Suppress warnings from older Perl headers due to use of constructs which look like C++11 user-defined literals. They're fixed in newer versions so they're just noise in our build. We were working around these in the CI build, so drop that workaround as we want to make the build warning-clean for users too. Reported by daniel93 on #xapian. * Python3: + Fix build for changes in Sphinx 2.0 (which drops support for sphinx.main()). Fixes #778, reported by karolyi. Also reported by Gaurav Arora. + We now throw UnicodeEncodeError for bad Unicode string input. Previously cases such as a lone surrogate would be handled by quietly skipping the bad codepoints when converting to UTF-8 to pass to Xapian. + We no longer use the deprecated old-style Py_UNICODE API, which currently gives deprecation warnings and is slated to be removed in Python 4.0. * Ruby: + Add support for block iteration. All the iterator methods in the Ruby API now accept an optional block. If no block is given an array is returned so existing code will still work. Partly based on a patch in https://github.com/xapian/xapian/pull/232 from Cong Ding. + Add missing wrappers for all the C++ methods returning iterators which weren't wrapped for Ruby. Fixes #777, reported by do. + Suppress warnings from Ruby 2.3 headers due to use of register and constructs which look like C++11 user-defined literals. They're fixed in newer versions so they're just noise in our build. We were working around these in the CI build, so drop that workaround as we want to make the build warning-clean for users too. Reported by daniel93 on #xapian. + smoketest.rb: Don't leave temporary databases behind in /tmp. - Update to 1.4.11: * CSharp: + Make MatchAll and MatchNothing readonly. * Java: + Simplify load-time setup of Query.OP_OR, etc which are provided for compatibility with the original hand-written JNI bindings. * PHP: + We now load the module for "make check" using -d extension=xapian which avoids needing to turn off safe_mode and turn on enable_dl, and matches how the module is usually loaded in production use. * PHP7: + Fix access to already released memory during PHP module shutdown, which often didn't cause visible problems, but could result in segmentation faults, bus errors, etc. + Fix generated code to compile when using a ZTS-enabled build of PHP. + We now load the module for "make check" using -d extension=xapian which avoids needing to turn off safe_mode and turn on enable_dl, and matches how the module is usually loaded in production use. - Update to 1.4.10: * Documentation: + Use https for URLs where supported. * General: + Wrap new DatabaseClosedError and DatabaseNotFoundError exceptions. See #772 and #773. Patches from Vaibhav Kansagara. + Update expected query descriptions in tests for the xapian-core change to produce flatter Query trees. + Workaround Perl 5.28 -i quirk when postprocessing SWIG-generated code. The commands in question are only run when maintainer-mode is enabled. * CSharp: + C++ constant Xapian::BAD_VALUENO is now wrapped without using a getter. This shouldn't affect existing user code. * Java: + C++ constant Xapian::BAD_VALUENO is now wrapped as Java constant Xapian.BAD_VALUENO. The previous Java wrapping as function Xapian.getBAD_VALUENO() is still supported for compatibility with existing code. + Remove redundant std::string initialisation. * Lua: + C++ constant Xapian::BAD_VALUENO is now wrapped as a constant rather than an immutable attribute. This shouldn't affect existing user code. * Perl: + C++ constant Xapian::BAD_VALUENO is now wrapped as Perl constant Xapian::BAD_VALUENO. The previous Perl wrapping as variable $Xapian::BAD_VALUENO is still supported for compatibility with existing code. + Note in the POD documentation that the Error base classes which are abstract in C++ don't have a new method in Perl. * PHP: + C++ constant Xapian::BAD_VALUENO is now wrapped as PHP constant Xapian::BAD_VALUENO. The previous PHP wrapping as function Xapian::BAD_VALUENO_get() is still supported for compatibility with existing code. + Remove code to work around a SWIG bug which was fixed in 2006. * PHP7: + C++ constant Xapian::BAD_VALUENO is now wrapped as PHP constant Xapian::BAD_VALUENO. The previous PHP wrapping as function Xapian::BAD_VALUENO_get() is still supported for compatibility with existing code. + configure: Check for php-config7.3 and php-config7.2 as well as php-config7.1, php-config7.0 and php-config. + Correct references to PHP5 in PHP7 script comments. + Remove some C code which is no longer needed with PHP7. * Ruby: + C++ constant Xapian::BAD_VALUENO is now wrapped as Ruby constant Xapian::BAD_VALUENO. The previous Ruby wrapping as function Xapian::BAD_VALUENO() is still supported for compatibility with existing code. + We now recommend using String#encode instead of the Iconv class, since the latter is no longer included with Ruby. * Tcl: + C++ constant Xapian::BAD_VALUENO is now wrapped as a constant rather than variable which can't be written to. This shouldn't affect existing user code. * Wed Jun 12 2019 Tomáš Chvátal <tchvatal@suse.com> - Always disable the sphinx module as it causes trouble whenever we update Sphinx (like now to 2.0) * Tue Nov 20 2018 Antonio Larrosa <alarrosa@suse.com> - Update to 1.4.9 * PHP7: + Fix to build with upcoming PHP 7.3 release, which changes array_init() to not return a value instead of always returning the constant SUCCESS. We were checking this return value but no longer do. - Update to 1.4.8 * Perl: + Wrap new STEM_SOME_FULL_POS constant. + Add STEM_ALL_Z to qpstem export tag and POD docs. + Fix Perl bindings documentation typos. * Python: + Fix RST formatting warning during build. * Python3: + Fix RST formatting warning during build. * Thu Jul 26 2018 alarrosa@suse.com - Update to 1.4.7 * see http://xapian.org/docs/xapian-bindings-1.4.7/NEWS * Tue Jul 03 2018 alarrosa@suse.com - Update to 1.4.6 * see http://xapian.org/docs/xapian-bindings-1.4.6/NEWS * Thu Dec 14 2017 alarrosa@suse.com - Update to 1.4.5 * see http://xapian.org/docs/xapian-bindings-1.4.5/NEWS * Mon Sep 11 2017 alarrosa@suse.com - Create a new php7-xapian package in Tumbleweed instead of using php5 which will be removed soon (boo#1058105) - Add fix-php7-directory.patch to install xapian.php to the right directory. - Disable creation of php bindings by default due to https://trac.xapian.org/wiki/FAQ/PHP%20Bindings%20Package - To build the php bindings locally, use : * osc build --with=php or download the src.rpm file and use: * rpmbuild --rebuild xapian-bindings-1.4.4-0.src.rpm -D "with_php 1" * Fri Jun 30 2017 alarrosa@suse.com - Update to 1.4.4 * see http://xapian.org/docs/xapian-bindings-1.4.4/NEWS - Rebase do-not-use-sphinx.diff * Fri Jun 30 2017 jengelh@inai.de - Trim filler words from descriptions. - %packages need not be %if guarded (only their %files), so trim that too. * Mon Jun 26 2017 tbechtold@suse.com - add Provides for python2-xapian * Wed Feb 01 2017 alarrosa@suse.com - Update to 1.4.3 * see http://xapian.org/docs/xapian-bindings-1.4.3/NEWS - xapian-bindings 1.4.3 requires Python >= 2.6 - Update to 1.4.2 * see http://xapian.org/docs/xapian-bindings-1.4.2/NEWS - Added BuildRequire python3-Sphinx - Drop automake.patch, which is not needed anymore - Added do-not-use-sphinx.diff to remove the need of python3-Sphinx on distributions that don't have it * Tue Nov 22 2016 bosim@opensuse.org - Python3 support - Added automake patch for building with python3 (github PR 126) * Fri Nov 11 2016 alarrosa@suse.com - Update to 1.4.1 * see http://xapian.org/docs/xapian-bindings-1.4.1/NEWS - Specify in BuildRequires that php >= 5.5 is needed . * Sat Jul 09 2016 tittiatcoke@gmail.com - Update to 1.4.0 * see http://xapian.org/docs/xapian-bindings-1.4.0/NEWS - Drop patch replaced-swig-zend-error-noreturn-flag.patch * Wed Apr 13 2016 tittiatcoke@gmail.com - Update to 1.2.23 * see http://xapian.org/docs/xapian-bindings-1.2.23/NEWS * Tue Jul 21 2015 jengelh@inai.de - Remove unnecessary buildrequire on update-alternatives: there are no scriptlets that make use of it. Drop %clean, it too is unnecessary for OBS. * Thu May 21 2015 tittiatcoke@gmail.com - Update to 1.2.21 * see http://xapian.org/docs/xapian-bindings-1.2.21/NEWS * Thu Apr 02 2015 dmueller@suse.com - make building of csharp bindings optional for architectures that do not provide mono * Thu Mar 12 2015 mpluskal@suse.com - Update to 1.2.20 * See http://xapian.org/docs/xapian-bindings-1.2.20/NEWS * Thu Feb 19 2015 mpluskal@suse.com - Tiny spec file cleanups - Enable tests during build - Add gpg signature * Tue Oct 21 2014 tittiatcoke@gmail.com - Update to version 1.2.19 ? http://xapian.org/docs/xapian-bindings-1.2.19/NEWS
/usr/lib64/ruby/site_ruby/2.5.0/x86_64-linux-gnu/_xapian.so /usr/lib64/ruby/site_ruby/2.5.0/xapian.rb /usr/share/doc/packages/ruby-xapian /usr/share/doc/packages/ruby-xapian/AUTHORS /usr/share/doc/packages/ruby-xapian/ChangeLog /usr/share/doc/packages/ruby-xapian/HACKING /usr/share/doc/packages/ruby-xapian/NEWS /usr/share/doc/packages/ruby-xapian/README /usr/share/doc/packages/ruby-xapian/TODO /usr/share/doc/packages/xapian-bindings /usr/share/doc/packages/xapian-bindings/ruby /usr/share/doc/packages/xapian-bindings/ruby/examples /usr/share/doc/packages/xapian-bindings/ruby/examples/simpleexpand.rb /usr/share/doc/packages/xapian-bindings/ruby/examples/simpleindex.rb /usr/share/doc/packages/xapian-bindings/ruby/examples/simplematchdecider.rb /usr/share/doc/packages/xapian-bindings/ruby/examples/simplesearch.rb /usr/share/doc/packages/xapian-bindings/ruby/index.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Database.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Document.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/ESet.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Enquire.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/ExpandTerm.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/LatLongCoord.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/LatLongCoords.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/MSet.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Match.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/MultiValueKeyMaker /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/MultiValueKeyMaker.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/MultiValueKeyMaker/KeySpec.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Posting.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Query.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/QueryParser.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Term.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/Value.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/Xapian/ValueCountMatchSpy.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/created.rid /usr/share/doc/packages/xapian-bindings/ruby/rdocs/css /usr/share/doc/packages/xapian-bindings/ruby/rdocs/css/fonts.css /usr/share/doc/packages/xapian-bindings/ruby/rdocs/css/rdoc.css /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts/Lato-Light.ttf /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts/Lato-LightItalic.ttf /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts/Lato-Regular.ttf /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts/Lato-RegularItalic.ttf /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts/SourceCodePro-Bold.ttf /usr/share/doc/packages/xapian-bindings/ruby/rdocs/fonts/SourceCodePro-Regular.ttf /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/add.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/arrow_up.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/brick.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/brick_link.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/bug.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/bullet_black.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/bullet_toggle_minus.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/bullet_toggle_plus.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/date.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/delete.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/find.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/loadingAnimation.gif /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/macFFBgHack.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/package.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/page_green.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/page_white_text.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/page_white_width.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/plugin.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/ruby.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/tag_blue.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/tag_green.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/transparent.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/wrench.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/wrench_orange.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/images/zoom.png /usr/share/doc/packages/xapian-bindings/ruby/rdocs/index.html /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/darkfish.js /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/navigation.js /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/navigation.js.gz /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/search.js /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/search_index.js /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/search_index.js.gz /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/searcher.js /usr/share/doc/packages/xapian-bindings/ruby/rdocs/js/searcher.js.gz /usr/share/doc/packages/xapian-bindings/ruby/rdocs/table_of_contents.html /usr/share/licenses/ruby-xapian /usr/share/licenses/ruby-xapian/COPYING
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 20:06:21 2024