17
0

110 Commits

Author SHA256 Message Date
a6c8886d6b Accepting request 1251167 from server:search
OBS-URL: https://build.opensuse.org/request/show/1251167
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=43
2025-03-08 16:52:28 +00:00
60fc482430 - Update to 1.4.27:
General:
  * We now consistently fail at configure time if bindings for a target
    language are explicitly enabled (using e.g. `--with-lua`) but required
    dependencies are not found.  Previously in some cases we would continue
    but effectively ignore the option.
  Portability:
  * We no longer explicitly link bindings with -lstdc++.  This was added in 0.9.3
    in 2005 as a workaround for a linking problem on OpenBSD, but nowadays it
    causes link failures on platforms which use clang+libc++ as the C++ compiler
    which includes OpenBSD so it seems this fix is no longer useful anywhere.
    Fixes #834, reported by David Gessel.
    If this change results in you getting a link failure, please let us know
    about it.  You can probably workaround the failure by specifying an explicit
    link with -lstdc++ like so:
        make LIBS=-lstdc++
    This assumes the C++ compiler you are using uses libstdc++ - if it uses
    libc++ then try:
        make LIBS=-lc++
  Java:
  * Formally declare Java bindings API stable.  This API has been de-facto stable
    for several years and any incompatible changes can now be handled in the
    usual way at the start of a release series.
  * Improve build on FreeBSD and DragonFlyBSD to find the jni_md.h header
    automatically.
  Lua:
  * Overhaul Lua configure probes.  As part of this we now check for the Lua
    interpreter with a versioned name (e.g. lua5.4 and lua54) and handle a DOS
    drive letter on the directories in `package.cpath`.
  PHP:

OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=106
2025-03-07 10:33:39 +00:00
6715619f7c Accepting request 1156100 from server:search
OBS-URL: https://build.opensuse.org/request/show/1156100
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=42
2024-03-07 21:02:24 +00:00
835777741e Accepting request 1151268 from home:dimstar:rpm4.20:x
Prepare for RPM 4.20

OBS-URL: https://build.opensuse.org/request/show/1151268
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=104
2024-03-07 17:36:20 +00:00
5da27a1fad Accepting request 1061300 from server:search
OBS-URL: https://build.opensuse.org/request/show/1061300
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=41
2023-01-28 18:59:51 +00:00
6e7981cd35 Accepting request 1060161 from home:dirkmueller:branches:openSUSE:Factory:Rings:1-MinimalX
- always build all configured python bindings for Tumbleweed+

OBS-URL: https://build.opensuse.org/request/show/1060161
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=102
2023-01-26 16:14:57 +00:00
79a14dcee5 Accepting request 1007288 from server:search
OBS-URL: https://build.opensuse.org/request/show/1007288
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=40
2022-10-03 11:44:25 +00:00
f4f9906e2b Accepting request 1007287 from home:alarrosa:branches:server:search
- update to 1.4.21:
  * Documentation:
    - Consistently say "macOS" not "Mac OS X", "OS X", etc.
  * General:
    - Update to use AX_CXX_COMPILE_STDCXX which is a replacement for
      AX_CXX_COMPILE_STDCXX_11 (which we were using) which also
      supports newer C++ standards versions which will be useful.
      For C++11 the only difference seems to be that the macro now
      checks for attribute support - we use C++11 attributes so
      that seems a good thing.
  * Portability:
    - Drop special handling of MACOSX_DEPLOYMENT_TARGET.  This was
      only relevant for macOS 10.3 and (for powerpc only) 10.4, and
      Apple dropped support for 10.4 in 2009.
  * Java:
    - Document where to install .jar on macOS. Partly addresses #774
- Rebase patch:
  * do-not-use-sphinx.diff
- Add workaround for Leap 15.4 where %python38_version_nodots
  doesn't evaluate properly

OBS-URL: https://build.opensuse.org/request/show/1007287
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=100
2022-09-30 15:32:49 +00:00
22685fed92 Accepting request 993353 from server:search
- Refresh do-not-use-sphinx.diff

- update to 1.4.20:
  * Enable -fvisibility-inlines-hidden option if the compiler supports it.
  * Add missing reference tracking. XapianEnquire now keeps a reference to the
    current XapianSorter object (if any).  XapianQueryParser now keeps a
    reference to any set XapianFieldProcessor objects.  Test coverage for keeping
    references to set functor objects is now more comprehensive.
  * smoketest.php: Remove bogus extra null parameters.  PHP ignores these extra
    parameters, but it's more helpful to be testing valid usage.
  * The configure probes for Python3 no longer use the deprecated distutils and
    imp modules (both of which are slated for removal in Python 3.12).  We now
    use sysconfig to get the directory to install the xapian module to, which may
    result in it being installed in a different place (it should still work, but
    if you're packaging the bindings you may need to update the list of files to
    include in the package). (forwarded request 990268 from bnavigator)

OBS-URL: https://build.opensuse.org/request/show/993353
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=39
2022-08-08 06:45:07 +00:00
Stephan Factory Kulow
008d0f7078 Accepting request 990268 from home:bnavigator:branches:server:search
- Refresh do-not-use-sphinx.diff

- update to 1.4.20:
  * Enable -fvisibility-inlines-hidden option if the compiler supports it.
  * Add missing reference tracking. XapianEnquire now keeps a reference to the
    current XapianSorter object (if any).  XapianQueryParser now keeps a
    reference to any set XapianFieldProcessor objects.  Test coverage for keeping
    references to set functor objects is now more comprehensive.
  * smoketest.php: Remove bogus extra null parameters.  PHP ignores these extra
    parameters, but it's more helpful to be testing valid usage.
  * The configure probes for Python3 no longer use the deprecated distutils and
    imp modules (both of which are slated for removal in Python 3.12).  We now
    use sysconfig to get the directory to install the xapian module to, which may
    result in it being installed in a different place (it should still work, but
    if you're packaging the bindings you may need to update the list of files to
    include in the package).

OBS-URL: https://build.opensuse.org/request/show/990268
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=98
2022-08-05 16:10:43 +00:00
a5c0c91b9a Accepting request 949639 from server:search
OBS-URL: https://build.opensuse.org/request/show/949639
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=38
2022-01-29 19:57:31 +00:00
b4edb7785a Accepting request 949598 from home:dirkmueller:Factory
- update to 1.4.19:
  * configure: Add missing AC_ARG_VAR for all programs so that they are
    documented in --help output, and so that autoconf knows they are "precious"
    and preserves them if configure is rerun even when they're specified via an
    environment variable.
  * Replace uses of obsolete autoconf macros, fixing warnings if configure is
    regenerated with a recent release of autoconf.
  * Add missing wrappers for some QueryParser FLAG_* constants.
  * Fix incorrect formatting in the processed POD documentation due to missing
    escaping of `>` in code snippets.
  * Make configure PHP5 version check more robust.  Previously it would have
    incorrectly accepted any (future) PHP version >= 10.0.0.
  * configure: We now reject PHP8 since it isn't currently supported
    by a released version of SWIG.  SWIG 4.1.0 will supports PHP8.
  * configure: Check for php-config7.4 as well as earlier 7.x versions
    and php-config.
  * Fix deprecation warnings with Python >= 3.9.
  * Remove more files/dirs on "make clean".  Reported by Gaurav Arora.
  * Fix build with Ruby 3.0 and clang. Reported by Eduard Panov on macos, where
    clang is the default compiler.
  * Improve markup in Ruby bindings docs.

OBS-URL: https://build.opensuse.org/request/show/949598
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=97
2022-01-28 09:42:26 +00:00
d9a561e5d2 Accepting request 868904 from server:search
OBS-URL: https://build.opensuse.org/request/show/868904
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=37
2021-02-07 14:16:45 +00:00
4d58638940 Accepting request 866174 from home:dirkmueller:branches:server:search
- update to 1.4.18:
  * Support macOS 11.0 - AC_CANONICAL_HOST identifies this as darwin20, which
    wasn't caught by our glob pattern.  Patch from FX Coudert in
    https://github.com/xapian/xapian/pull/319
  * Wrap const std::string* parameters to accept a string or null in C#.  See #204.
  * Wrap const std::string* parameters to accept a String or null in Java.
  * Fix minor documentation typo.

OBS-URL: https://build.opensuse.org/request/show/866174
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=95
2021-02-03 10:47:15 +00:00
32adbd2e39 Accepting request 859284 from server:search
OBS-URL: https://build.opensuse.org/request/show/859284
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=36
2020-12-31 08:58:28 +00:00
3dfe471c5f Accepting request 856773 from home:bnavigator:branches:server:search
- Build bindings for all possible python3 flavors in TW
  gh#openSUSE/python-rpm-macros#66 
- Fix python related rpmlint warnings

OBS-URL: https://build.opensuse.org/request/show/856773
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=93
2020-12-29 18:59:37 +00:00
c2a15e8b19 Accepting request 847802 from server:search
OBS-URL: https://build.opensuse.org/request/show/847802
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=35
2020-11-12 21:33:24 +00:00
36f9b34aa9 Accepting request 846839 from home:gmbr3:Active
- Fix build with RPM 4.16: error: bare words are no longer
  supported, please use "...":  no == yes.

OBS-URL: https://build.opensuse.org/request/show/846839
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=91
2020-11-11 13:14:41 +00:00
0a82fdd5cb Accepting request 829960 from server:search
OBS-URL: https://build.opensuse.org/request/show/829960
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=34
2020-09-01 18:06:34 +00:00
c292d9f4d5 Accepting request 829959 from home:alarrosa:branches:server:search
- spec-cleaner run

OBS-URL: https://build.opensuse.org/request/show/829959
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=89
2020-08-27 10:55:34 +00:00
9e0480873c Accepting request 829896 from home:alarrosa:branches:server:search
- 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

OBS-URL: https://build.opensuse.org/request/show/829896
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=88
2020-08-27 10:51:34 +00:00
807548ff3d Accepting request 799126 from server:search
OBS-URL: https://build.opensuse.org/request/show/799126
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=33
2020-05-05 16:53:37 +00:00
7e0512d7fd Accepting request 798997 from home:dimstar:Factory
Update to 1.4.15

OBS-URL: https://build.opensuse.org/request/show/798997
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=86
2020-04-30 07:10:11 +00:00
0b83e5548d Accepting request 766613 from server:search
- 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.

OBS-URL: https://build.opensuse.org/request/show/766613
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=32
2020-04-19 19:35:49 +00:00
3dd3c11319 OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=84 2020-01-23 13:57:25 +00:00
13e224f325 Accepting request 764596 from home:alarrosa:branches:server:search
- 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.

OBS-URL: https://build.opensuse.org/request/show/764596
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=83
2020-01-23 09:15:01 +00:00
34f12db836 Accepting request 709676 from server:search
OBS-URL: https://build.opensuse.org/request/show/709676
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=31
2019-06-13 21:06:25 +00:00
89cb5ec073 Accepting request 709362 from home:scarabeus_iv:branches:server:search
- Always disable the sphinx module as it causes trouble whenever
  we update Sphinx (like now to 2.0)

OBS-URL: https://build.opensuse.org/request/show/709362
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=81
2019-06-13 07:42:23 +00:00
dcd9b4d582 Accepting request 651066 from server:search
OBS-URL: https://build.opensuse.org/request/show/651066
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=30
2018-11-26 09:27:05 +00:00
e517d165ff Accepting request 650356 from home:alarrosa:branches:server:search
- 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.

OBS-URL: https://build.opensuse.org/request/show/650356
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=79
2018-11-22 10:55:54 +00:00
d1f5f2c4b4 Accepting request 644361 from server:search
OBS-URL: https://build.opensuse.org/request/show/644361
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=29
2018-11-08 08:47:11 +00:00
7abec166f6 Accepting request 644317 from home:alarrosa:branches:server:search
- Update to 1.4.7
  * see http://xapian.org/docs/xapian-bindings-1.4.7/NEWS

- Update to 1.4.6
- Update to 1.4.5
- Disable creation of php bindings by default due to
  https://trac.xapian.org/wiki/FAQ/PHP%20Bindings%20Package

OBS-URL: https://build.opensuse.org/request/show/644317
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=77
2018-10-24 15:05:54 +00:00
cd91dd3c31 Accepting request 625433 from server:search
OBS-URL: https://build.opensuse.org/request/show/625433
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=28
2018-07-27 08:57:27 +00:00
b675073ab7 Accepting request 620424 from home:alarrosa:branches:server:search
- Update to 1.4.6 
  * see http://xapian.org/docs/xapian-bindings-1.4.6/NEWS

OBS-URL: https://build.opensuse.org/request/show/620424
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=75
2018-07-26 13:40:11 +00:00
8ee59f6c0c Accepting request 558313 from server:search
OBS-URL: https://build.opensuse.org/request/show/558313
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=27
2017-12-20 09:39:53 +00:00
7bdeabbde0 Accepting request 557122 from home:alarrosa:branches:server:search
- Update to 1.4.5 
  * see http://xapian.org/docs/xapian-bindings-1.4.5/NEWS

OBS-URL: https://build.opensuse.org/request/show/557122
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=73
2017-12-19 07:58:27 +00:00
037d0797f0 Accepting request 523631 from server:search
1

OBS-URL: https://build.opensuse.org/request/show/523631
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=26
2017-09-12 17:57:53 +00:00
c2554ec52d Accepting request 523629 from home:alarrosa:branches:server:search
Added reference to bugzilla issue

OBS-URL: https://build.opensuse.org/request/show/523629
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=71
2017-09-12 09:44:12 +00:00
659d96169c Accepting request 523607 from home:alarrosa:branches:server:search
- Create a new php7-xapian package in Tumbleweed instead of using php5
  which will be removed soon.
- 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"

OBS-URL: https://build.opensuse.org/request/show/523607
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=70
2017-09-12 08:52:32 +00:00
ff42e9b88c Accepting request 507413 from server:search
1

OBS-URL: https://build.opensuse.org/request/show/507413
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=25
2017-07-04 11:42:52 +00:00
3fdc4f992d Accepting request 507410 from home:alarrosa:branches:server:search
- Update to 1.4.4
  * see http://xapian.org/docs/xapian-bindings-1.4.4/NEWS
- Rebase do-not-use-sphinx.diff

- Trim filler words from descriptions.
- %packages need not be %if guarded (only their %files),
  so trim that too.

OBS-URL: https://build.opensuse.org/request/show/507410
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=68
2017-06-30 16:21:13 +00:00
784968c8ae Accepting request 506393 from server:search
1

OBS-URL: https://build.opensuse.org/request/show/506393
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=24
2017-06-28 08:36:39 +00:00
f2032e36b5 Accepting request 506219 from home:tbechtold:branches:server:search
- add Provides for python2-xapian

OBS-URL: https://build.opensuse.org/request/show/506219
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=66
2017-06-27 08:32:54 +00:00
8bfd807272 Accepting request 468645 from server:search
1

OBS-URL: https://build.opensuse.org/request/show/468645
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=23
2017-03-12 19:00:01 +00:00
657fe33cdd Accepting request 466771 from home:alarrosa:branches:server:search
- Added do-not-use-sphinx.diff to remove the need of python3-Sphinx 
  on distributions that don't have it

OBS-URL: https://build.opensuse.org/request/show/466771
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=64
2017-03-03 10:45:37 +00:00
dcd8668291 Accepting request 454069 from home:alarrosa:branches:server:search
- 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

OBS-URL: https://build.opensuse.org/request/show/454069
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=63
2017-02-15 16:39:08 +00:00
cab40cbea3 Accepting request 452818 from home:bosim:branches:server:search
Python3 support

OBS-URL: https://build.opensuse.org/request/show/452818
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=62
2017-01-27 13:39:05 +00:00
aca337375d Accepting request 443786 from server:search
1

OBS-URL: https://build.opensuse.org/request/show/443786
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=22
2016-12-05 15:34:30 +00:00
b61ffcb028 Accepting request 439921 from home:alarrosa:branches:server:search
- 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 .

OBS-URL: https://build.opensuse.org/request/show/439921
OBS-URL: https://build.opensuse.org/package/show/server:search/xapian-bindings?expand=0&rev=60
2016-12-05 10:06:17 +00:00
6f8739b984 Accepting request 407426 from server:search
Update to 1.4.0

OBS-URL: https://build.opensuse.org/request/show/407426
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xapian-bindings?expand=0&rev=21
2016-08-20 10:27:02 +00:00