Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Barry Drake
On 23/04/12 02:46, Karl Kleinpaste wrote: I wasn't aware, but you'll have to be more specific: What sort of dependency conflicts? What does apt-get complain about? Specifically, the packages offered under 12.04 use libsword8 for BibleTime and libsword9 for Xiphos. If BibleTime is installed

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Barry Drake
On 23/04/12 06:44, Chris Little wrote: I don't observe any problem installing or running BibleTime Xiphos on 12.04. I'm assuming you are not using the packaged binaries from the 12.04 repos since Xiphos was packaged with libsword9? God bless,Barry. -- From Barry Drake (The Revd)

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Dmitrijs Ledkovs
do not mix PPAs with official archive. What do $ apt-cache policy bibletime $ apt-cache policy xiphos $ apt-cache policy libsword-dev Say? On 23 April 2012 09:57, Barry Drake bdr...@crosswire.org wrote: On 23/04/12 02:46, Karl Kleinpaste wrote: I wasn't aware, but you'll have to be more

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Barry Drake
On 23/04/12 12:11, Dmitrijs Ledkovs wrote: do not mix PPAs with official archive. I understand that. What I'm doing is reporting that there is a problem in the packages held in Ubuntu 12.04 repo. I'm asking whoever is responsible for submissions to Ubuntu to get things up to date as soon

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Dmitrijs Ledkovs
On 23 April 2012 12:40, Barry Drake bdr...@crosswire.org wrote: On 23/04/12 12:11, Dmitrijs Ledkovs wrote: do not mix PPAs with official archive. I understand that.  What I'm doing is reporting that there is a problem in the packages held in Ubuntu 12.04 repo.  I'm asking whoever is

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Greg Hellings
Xiphos 3.1.5 requires SWORD SVN. In the Crosswire Ubuntu PPA current SVN of SWORD is named libsword9. BibleTime 2.9.1 cannot be built against SWORD SVN but only against SWORD 1.6.2. In Ubuntu's current release this version of SWORD is named libsword8. There is a branch in BibleTime's git

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Troy A. Griffitts
Not disputing any of this, but I'm curious why BT can't compile against SVN. I don't believe we've intentionally made any API interface changes in a while, and we try our hardest to be backward compatible. If you let me know, I can have a look at what we broke. Troy On 04/23/2012 02:49 PM,

[sword-devel] Threads - in this mailing list (and in general)

2012-04-23 Thread David Haslam
Gentle Reminder: If you wish to discuss a different topic, it's always sensible to start a NEW thread, rather than to reply to an existing thread in the mailing list, even if you change the subject line. Email headers include lines to enable email clients to group messages in threads. So it's

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Greg Hellings
On Mon, Apr 23, 2012 at 8:07 AM, Troy A. Griffitts scr...@crosswire.org wrote: Not disputing any of this, but I'm curious why BT can't compile against SVN.  I don't believe we've intentionally made any API interface changes in a while, and we try our hardest to be backward compatible.  If you

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Troy A. Griffitts
Not disputing the long term desire to not build against deprecated API methods (that's why we deprecate), and I certainly understand the policy to not release Bibletime until it is not using any deprecated methods of the most recent SWORD library, but I can't see how it is useful to cause

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Barry Drake
On 23/04/12 13:49, Greg Hellings wrote: If you want to get more to the bottom of it, try providing Dmitrijs with the information he specified, but it sounds like you are drawing the official Ubuntu package of BibleTime and the PPA package of Xiphos to get the conflict you indicated. You are

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Greg Hellings
From the CMakeLists.txt file: SET(CMAKE_CXX_FLAGS_RELEASE -Wall -O2 -fexceptions) SET(CMAKE_CXX_FLAGS_DEBUG -Wall -Werror -O2 -ggdb -fexceptions) It is the -Werror switch, only enabled in Debug builds, that causes the deprecation warnings to be show stoppers. Last I checked Debian

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Troy A. Griffitts
Awesome. So it is as I suggested. A user who downloads and builds Bibletime, not in debug mode, wouldn't see the error, and they would be able to upgrade their SWORD library without running into the problem? Cooleo. Thanks for the details. On 04/23/2012 04:35 PM, Greg Hellings wrote: From

Re: [sword-devel] Native Client - NaCL and Pepper

2012-04-23 Thread Stephan
Hi, I was able to build sword for NaCl, but there are many things to fix because NaCl doesn't support local filesystem access. I got warnigs about pthread_cancel, because that's not implemented in NaCl. There is also no port for curl, so I think you have to rewrite the InstallMgr to use the

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Dmitrijs Ledkovs
On 23 April 2012 13:49, Greg Hellings greg.helli...@gmail.com wrote: Xiphos 3.1.5 requires SWORD SVN. In the Crosswire Ubuntu PPA current SVN of SWORD is named libsword9. Xiphos 3.1.5 does not require Sword SVN, only recommends it. (I did the build script for xiphos) libsword9 is not svn of

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Dmitrijs Ledkovs
On 23 April 2012 15:14, Barry Drake bdr...@crosswire.org wrote: On 23/04/12 13:49, Greg Hellings wrote: If you want to get more to the bottom of it, try providing Dmitrijs with the information he specified, but it sounds like you are drawing the official Ubuntu package of BibleTime and the

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Dmitrijs Ledkovs
On 23 April 2012 15:35, Greg Hellings greg.helli...@gmail.com wrote: From the CMakeLists.txt file:    SET(CMAKE_CXX_FLAGS_RELEASE -Wall -O2 -fexceptions)    SET(CMAKE_CXX_FLAGS_DEBUG   -Wall -Werror -O2 -ggdb -fexceptions) It is the -Werror switch, only enabled in Debug builds, that causes

Re: [sword-devel] Native Client - NaCL and Pepper

2012-04-23 Thread Greg Hellings
On Mon, Apr 23, 2012 at 9:58 AM, Stephan i...@tetzels.de wrote: Hi, I was able to build sword for NaCl, but there are many things to fix because NaCl doesn't support local filesystem access. I got warnigs about pthread_cancel, because that's not implemented in NaCl. Is your NaCl designed to

Re: [sword-devel] Native Client - NaCL and Pepper

2012-04-23 Thread Troy A. Griffitts
On 04/23/2012 04:58 PM, Stephan wrote: Hi, I was able to build sword for NaCl, but there are many things to fix because NaCl doesn't support local filesystem access. WinCE doesn't support 'normal' filesystem access either. Most File IO is isolated to the FileMgr class and for WinCE, we

Re: [sword-devel] Native Client - NaCL and Pepper

2012-04-23 Thread Greg Hellings
On Mon, Apr 23, 2012 at 11:22 AM, Troy A. Griffitts scr...@crosswire.org wrote: To my knowledge, we don't use pthread_* in our code.  Not sure where this thing is coming from. Only occurrence is in the thread_search example application. --Greg ___

[sword-devel] Suggestions: Red-Letter type Mark Up for Messianic References in OT

2012-04-23 Thread Andrew Thule
I've been playing with the following module: http://crosswire.org/~dmsmith/kjv2006/sword/kjvxml.zip Specifically, I've been looking at how text is 'altered' in appearance by tags such as divineName, foreign, q marker= who=Jesus etc. I like this functionality, because it provides the ability to

Re: [sword-devel] Suggestions: Red-Letter type Mark Up for Messianic References in OT

2012-04-23 Thread Peter von Kaehne
Hi Andrew, There is a document published on OSIS which will give you the low down and nitty gritty of all marking up. It is linked to from the Wiki - I am in a rush and can not dig it out, but it should be obvious enough. What you probably should use for OT quotes and for messianic

Re: [sword-devel] Suggestions: Red-Letter type Mark Up for Messianic References in OT

2012-04-23 Thread Andrew Thule
Thanks Peter .. I have looked over the OSIS document and been overwhelmed by the options. I seems to me to be two related strategies; consistently alter text in a visible way (as the red-letter quote seems to do), or group text into class types (as the foreign or divinename tags seem to do).

[sword-devel] SWORD v1.7 roadmap ?

2012-04-23 Thread David Haslam
This is really for Troy - but posted here to allow others to comment. Would it help to have a wiki page to act as a SWORD v1.7 roadmap ? Two main sections: == Bug fixes == == New features == etc. One of the difficulties in having ideas scattered in a mailing list (or even in an issues

Re: [sword-devel] Suggestions: Red-Letter type Mark Up for Messianic References in OT

2012-04-23 Thread Troy A. Griffitts
On 04/23/2012 06:55 PM, Andrew Thule wrote: I've been playing with the following module: http://crosswire.org/~dmsmith/kjv2006/sword/kjvxml.zip http://crosswire.org/%7Edmsmith/kjv2006/sword/kjvxml.zip Specifically, I've been looking at how text is 'altered' in appearance by tags such as

Re: [sword-devel] SWORD v1.7 roadmap ?

2012-04-23 Thread Troy A. Griffitts
Thanks David, Maybe if I was organized, but we'd use the roadmap features in Jira if we did. Having things in the bug tracker is the best place for this. The tools are there to do what you suggest. I just haven't gotten around to scheduling bugs for releases or updating the current roadmap

Re: [sword-devel] Suggestions: Red-Letter type Mark Up for Messianic References in OT

2012-04-23 Thread Andrew Thule
Yes, thanks very much Troy - it does (get me started). ~Andrew On Mon, Apr 23, 2012 at 3:09 PM, Troy A. Griffitts scr...@crosswire.orgwrote: On 04/23/2012 06:55 PM, Andrew Thule wrote: I've been playing with the following module:

Re: [sword-devel] Suggestions: Red-Letter type Mark Up for Messianic References in OT

2012-04-23 Thread Troy A. Griffitts
I forgot to mention that seg is generic for 'segment' and the type attribute, like other types, allows an 'x-' prefix for your own custom type, so, worst case, you could always mark things as, e.g., seg type=x-encouragingsome encouraging verse text here/seg But typically x- tags won't ever be

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Barry Drake
On 23/04/12 16:17, Dmitrijs Ledkovs wrote: The information Dmitrijs asked me for did give me the information I needed to sort the problem. I'm glad you got sorted it out = Mixing development repositories, can lead to all sort of weird stuff. Yes. Thanks for all the help on this one. I

Re: [sword-devel] Ubuntu 12.04 ....

2012-04-23 Thread Daniel Owens
On 04/23/2012 02:51 PM, Barry Drake wrote: On 23/04/12 16:17, Dmitrijs Ledkovs wrote: The information Dmitrijs asked me for did give me the information I needed to sort the problem. I'm glad you got sorted it out = Mixing development repositories, can lead to all sort of weird stuff.