similar to: Ruby bindings now pass all smoketests

Displaying 20 results from an estimated 500 matches similar to: "Ruby bindings now pass all smoketests"

2006 Apr 19
1
ANN: Alpha Ruby bindings for Xapian now available
Dear Xapian community, We've been looking for a search engine to integrate with our Rails applications. Xapian seems to be the most robust and mature of any open source solution out there. But, there were no Ruby bindings. So... I've started work on Ruby SWIG bindings for Xapian. My work is still alpha-quality; expect bugs and expect API changes before we're done. It's
2006 Apr 20
1
Odd stemmer behavior
I've noticed some strange results from the stemmer in the Ruby port: irb(main):003:0> @stem.stem_word("anybody") => "anybodi" irb(main):004:0> @stem.stem_word("swimmingly") => "swim" irb(main):005:0> @stem.stem_word("fiercely") => "fierc" irb(main):006:0> @stem.stem_word("fraudulently") =>
2008 Apr 30
1
Python bindings smoketest error
Hi all, I'm getting an error in the smoketest. I'm using latest Swig and Python bindings from SVN-HEAD: File "smoketest.py", line 23, in <module> import xapian File "C:\work\xapian\xapian-SVN\xapian-core\win32\Release\Python\xapian.py", line 2099, in <module> ValueRangeProcessor.__call__ = ValueRangeProcessor.__call AttributeError: type
2007 Apr 11
1
Re: [Xapian-commits] 8181: trunk/xapian-bindings/ trunk/xapian-bindings/python/
On Wed, Apr 11, 2007 at 10:31:39AM +0100, richard wrote: > python/smoketest.py: Replace cut-and-pasted test checking code > with functions, to simplify tests. It might be simpler, but mostly because functionality has gone - you've thrown away all my carefully written failure messages! Now if a test fails, the message is very generic and you have to read the code to find out what's
2017 Jan 16
2
Building xapian-bindings
I'm posting this here to help others who might be having the same issue. I maintain xapian-core ruby gem. I was trying to upgrade to 1.4.2 and had some issues. The generated makefile doesn’t work because of the following: docs/rdocs/index.html: docs/xapian.rb rm -rf docs/rdocs $(MKDIR_P) docs cd docs && $(RDOC) --op rdocs `test -f xapian.rb||echo '$(abs_srcdir)/'`xapian.rb
2007 Nov 27
3
Problems with xapian php bindings in osx
Hello, I am attempting to run the smoketest.php file from my devserver and am getting nothing but errors. It looks like it did not install correctly. Yesterday I compiled the source on os x and it appeared to install just fine, but now it is not working at all. I tried to replace the location of the xapian.php file with a hardcoded located and got a different set of errors. Here are
2006 Aug 10
28
On the total nondisclosure of the 8/9/06 security vulnerability
Dear Rails team, The handling of the recent vulnerability in Rails has proven somewhat problematic for us. We have recently adopted Rails as our web platform of choice; previously, we used J2EE. We love Rails. We hate J2EE. We don''t want to go back. It took a lot of effort and convincing to get the management teams of our various projects to sign off on the use of Rails. The
2007 Apr 03
3
More weirdness with PHP bindings
Hi all, There's been a odd bug reported to us by Daniel Menard while working on the PHP bindings: "I then tried to run the dotest target...All tests passed, except the one about get_matching_terms (smoketest.php line 94). I added this line before the exit: for ($i=0; $i<strlen($terms); $i++) echo $c=ord($terms[$i]), ' ', ($c>31?$terms[$i]:''), "\n";
2006 May 10
2
ruby bindings odds and ends
In the Ruby bindings, set_X and get_X are renamed to remove the get/set, so MSet::get_matches_estimated() becomes a read-only property (if I have my terminology right) of the Ruby MSet class called matches_estimated. This matches how a Ruby programmer would expect a class to be designed. I was looking through the getters and setters list. I wonder if a few entries shouldn't be there, (the
2016 Aug 25
3
I need glibc 2.19+ for 32 bit CentOS 6.8 or CentOS7
On 08/24/2016 07:53 PM, Peter wrote: > On 25/08/16 13:21, Kay Schenk wrote: >> To all...yes I meant glibc, not glib. Target environment -- could be any >> version of Linux. This is for Apache OpenOffice. The buildbots we've been >> using are being decommisioned due to EOL. As a developer on that project, I >> need to be able to test and use the builds. We'll be
2006 Mar 03
1
Unable to load dynamic library '/usr/lib/php/extensions/xapian.so'
I thought that I installed all the bindings but seems to me that I am missing xapian.so when I try to run smoketest.php Warning: dl(): Unable to load dynamic library '/usr/lib/php/extensions/xapian.so' - /usr/lib/php/extensions/xapian.so: cannot open shared object file: No such file or directory Can somebody send me the link to the module that I need to install? Thanks, Kevin
2016 Aug 25
2
I need glibc 2.19+ for 32 bit CentOS 6.8 or CentOS7
On 08/25/2016 10:44 AM, Gordon Messmer wrote: > On 08/25/2016 09:49 AM, Kay Schenk wrote: >> I do realize the sane thing to do is to have the builbots -- >> smoketest environments -- match the production environment > > > I think the sane thing to do would be to use buildbots that support LSB: > > http://www.ludism.org/~rwhe/LSB/tutorial/tut.html Great resource!
2005 Mar 20
1
Bindings
Hi - I've been fixing up the bindings to match the latest API. Should be able to commit later today or tomorrow. The smoketest on PHP isn't working any more, apparently because the inmemory backend isn't accessible (I haven't looked in detail - I fixed them for something I was doing). (Also some more magic iterators for the Python bindings.) J --
2005 Jun 24
1
Solaris bindings
There are various other situations where we create symlinks instead of copying, and as some of these are used in libtool I've given up trying to build in the way I was doing. It's a little unfortunate, but as it's probably a bug in the linux NFS server, which isn't the best in the world anyway, let's just ignore everything there for the time being. However ``make
2007 Apr 17
3
Deprecation
Yesterday I updated the deprecation.rst document such that I think it contains all the items which are slated for deprecation (and also contains full details of the upgrade suggestions, as Olly suggested). I've marked several things which have been deprecated for a long period of time (ie, since 0.9.0 or earlier) for removal in 1.0.0, in line with the policy outlined in the document. If
2011 Dec 29
3
Array element is function of its position in the array
I want to create a new array which selects values from an original array based on a function of the indices. That is: I want to create a new matrix Vnew[i,j,k]=Vold[i,j,ks] where ks is a function of the index elements i,j,k. I want to do this WITHOUT a loop. Call the function "ksfunction", and the array dimensions nis,njs,nks. I can do this using a loop as follows: # Loop version:
2015 Sep 29
2
CentOS 6 Xen virt* issues
On Sat, Sep 26, 2015 at 9:29 PM, Pasi K?rkk?inen <pasik at iki.fi> wrote: > On Sat, Sep 26, 2015 at 09:04:23PM +0300, Pasi K?rkk?inen wrote: >> Hello, >> >> I just upgraded some of my el6xen boxes to latest CentOS 6.7, Xen 4.4.3 and dom0 3.18.17 rpms, and noticed these new problems: >> > > And third issue aswell: > > 3) Creating an HVM guest using
2016 Mar 26
2
PHP bindings fail on Ubuntu for xapian-bindings-1.2.21
Hi Olly and co, On an Ubuntu 15.10, following the docs at https://trac.xapian.org/wiki/FAQ/PHP%20Bindings%20Package When running debuild -e PHP_VERSIONS=5 -us -uc I get (sorry for the French): " dpkg-buildpackage -rfakeroot -D -us -uc dpkg-buildpackage: paquet source xapian-bindings dpkg-buildpackage: version source 1.2.21-2.1 dpkg-buildpackage: distribution source unstable
2017 Jan 16
0
Building xapian-bindings
Oh, by the way, just running `make all` works fine too, which is what I am now doing in the gem.. but fixing the makefile would retain the existing working behaviour of `make clean all` which was fine in 1.2.x On 16 January 2017 at 14:21, Samuel Williams <space.ship.traveller at gmail.com> wrote: > I'm posting this here to help others who might be having the same issue. > > I
2003 Aug 14
1
Asterisk SIP calls failing - not a proxy? What of RTP codec transcoding?
I have an Asterisk 0.4.0 install working with two grandstream budgetone 100 phones, gnophone, and kphone. This is a private network segment (172.17.x.x), with the PBX configured on my outbound firewall which has a public address (66.x.x.x). - I can make calls between phones - all extensions are working. - I can make IAX calls to IAXTEL. No problems (apparently gsm only) - I can call SIP phone