Re: Building subversion runs svnversion, which fails

2019-11-19 Thread Daniel Shahaf
Nathan Hartman wrote on Tue, 19 Nov 2019 18:25 +00:00: > On Tue, Nov 19, 2019 at 12:04 PM Daniel Shahaf > wrote: > > The concept of having the binary know the `svnversion` info of the > > working copy it was built from does make sense, however. We could make > > gen-make.py add

Re: Building subversion runs svnversion, which fails

2019-11-19 Thread Nathan Hartman
On Tue, Nov 19, 2019 at 12:04 PM Daniel Shahaf wrote: > Nathan Hartman wrote on Tue, 19 Nov 2019 04:53 +00:00: > > Moving this from users@ to dev@... > > [Aside: when doing this, it's a good to post a short response on users@ > saying the conversation continues on dev@, for anyone who wants to >

Re: Building subversion runs svnversion, which fails

2019-11-19 Thread Daniel Shahaf
Nathan Hartman wrote on Tue, 19 Nov 2019 04:53 +00:00: > Moving this from users@ to dev@... [Aside: when doing this, it's a good to post a short response on users@ saying the conversation continues on dev@, for anyone who wants to follow along but isn't subscribed to both lists.] > On a somewhat

Re: Building subversion runs svnversion, which fails

2019-11-18 Thread Nathan Hartman
Moving this from users@ to dev@... Ryan Schmidt wrote: > The subversion build evidently runs the just-built svnversion at > some point. This crashes, because the libraries it's linked with > haven't been installed yet, and I guess it's not setting > DYLD_LIBRARY_PATH to the path where the built

Re: Building Subversion on Debian stretch with serf support

2018-02-28 Thread Paul Hammant
> I'll have an updated Debian package uploaded to experimental in the next few days. Which will be great, Philip. I look forward to it :) And thanks for the `apt-get build-dep subversion` tip off.

Re: Building Subversion on Debian stretch with serf support

2018-02-28 Thread James McCoy
On Wed, Feb 28, 2018 at 11:15:07AM +, Philip Martin wrote: > Paul Hammant writes: > > > Or is there an option to hand `apt-get` that really lassos in the serf > > binary for the same of making Subversion with client support for http(s) > > checkouts. > > Typically Debian

Re: Building Subversion on Debian stretch with serf support

2018-02-28 Thread Philip Martin
Paul Hammant writes: > Or is there an option to hand `apt-get` that really lassos in the serf > binary for the same of making Subversion with client support for http(s) > checkouts. Typically Debian installs libraries that can be used at runtime but not at build-time and to

Re: Building Subversion on the Mac

2018-02-24 Thread Branko Čibej
On 24.02.2018 13:22, Paul Hammant wrote: > The homebrew install does a source compile rather than pluck of a > binary and compare to a SHA256 ? Depends. By default, it'll get a binary, if it's available (that binary is of course built from source using Homebrew's formulae). If a binary isn't

Re: Building Subversion on the Mac

2018-02-24 Thread Paul Hammant
The homebrew install does a source compile rather than pluck of a binary and compare to a SHA256 ? -Paul

Re: Building Subversion on the Mac

2018-02-24 Thread Branko Čibej
On 24.02.2018 12:42, Paul Hammant wrote: > This seems to work for me, based on your advice: > > ./configure --with-apr=/usr/local/opt/apr > --with-apr-util=/usr/local/opt/apr-util > --with-apxs=/usr/local/opt/apache2/bin/apxs > > I'm thinking those are solid Homebrew paths for most people. Yes,

Re: Building Subversion on the Mac

2018-02-24 Thread Paul Hammant
This seems to work for me, based on your advice: ./configure --with-apr=/usr/local/opt/apr --with-apr-util=/usr/local/opt/apr-util --with-apxs=/usr/local/opt/apache2/bin/apxs I'm thinking those are solid Homebrew paths for most people.

Re: Building Subversion on the Mac

2018-02-24 Thread Branko Čibej
On 24.02.2018 11:18, Paul Hammant wrote: > Based on Brane's email from yesterday, I did a build for Subversion on > the Mac, with Homebrew and XCode installed already. > > brew install apr apr-util httpd serf zlib berkeley-db swig lz4 utf8proc >   > # These two were necessary for me, for some

Building Subversion on the Mac

2018-02-24 Thread Paul Hammant
Based on Brane's email from yesterday, I did a build for Subversion on the Mac, with Homebrew and XCode installed already. brew install apr apr-util httpd serf zlib berkeley-db swig lz4 utf8proc # These two were necessary for me, for some reason # Although handing flags to ./configure was an

Re: Building Subversion on the Mac

2017-11-03 Thread Robert Schwalbe
I sent you my build script for the Mac, that uses Homebrew, a while ago. Why are you still having problems? You're right, you did. I'll take another look, Brane. Meanwhile I wrote: <https://github.com/subsyncit/subsyncit/wiki/Building-Subversion-on-the-Mac>https://github.com/sub

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
> > I sent you my build script for the Mac, that uses Homebrew, a while ago. > Why are you still having problems? > > You're right, you did. I'll take another look, Brane. Meanwhile I wrote: https://github.com/subsyncit/subsyncit/wiki/Building-Subversion-on-the-Mac

Re: Building Subversion on the Mac

2017-10-28 Thread Branko Čibej
On 28.10.2017 14:02, Paul Hammant wrote: > OK, so I can get so far ... > > svn co http://svn.apache.org/repos/asf/subversion/trunk subversion > cd subversion > brew install libtool apr > cp > /usr/local/Cellar/libtool/2.4.6_1/share/libtool/build-aux/config.sub > build/ >

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
Yup, that builds through to completion, now. Thanks Troy.

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
Yup, glibtool is needed on the Mac (brew install libtool makes /usr/local/bin/glibtool). That and a corresponding shim source: #!/bin/sh /usr/local/bin/glibtool "$@"

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
Thank you, that allows configure to complete w/o error. Next up, libtool $ make /bin/sh "/scm/oss/subversion/libtool" --tag=CC --silent --mode=compile gcc -std=c90 -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10 -Werror=unknown-warning-option -g -O2 -g -O2 -I./subversion/include

Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
OK, so I can get so far ... svn co http://svn.apache.org/repos/asf/subversion/trunk subversion cd subversion brew install libtool apr cp /usr/local/Cellar/libtool/2.4.6_1/share/libtool/build-aux/config.sub build/ autoconf ./configure --build=x86_64 --prefix=/usr/local --with-openssl --with-ssl

Re: Building Subversion.

2017-09-14 Thread Paul Hammant
> > > > If yes, do you have the homebrew installables you needed handy? > > #LemmeKnowPls > > "brew install subversion"? > > I've done't that already, but I'm switching hats from 'user' to 'developer' of subversion. The brew installables I was thinking of were the development pre-requisites for

Re: Building Subversion.

2017-09-14 Thread Branko Čibej
On 14.09.2017 15:05, Branko Čibej wrote: > On 14.09.2017 13:36, Paul Hammant wrote: >> The tests made for https://github.com/apache/subversion/pull/5 didn't >> even require me to have Svn on my system. That's because I'm asserting >> against a series of expected shell operations, because that's

Re: Building Subversion.

2017-09-14 Thread Stefan Sperling
On Thu, Sep 14, 2017 at 08:29:25AM -0400, Paul Hammant wrote: > The needs of the book are different to the needs of the Svn project. And > the needs of the project are far more important than one of a few Svn books. I don't understand this reasoning. The book doesn't receive the attention it

Re: Building Subversion.

2017-09-14 Thread Branko Čibej
svn-viewspec > > Has anyone built Subversion on a Mac? All the time. > If yes, do you have the homebrew installables you needed handy? > #LemmeKnowPls "brew install subversion"? > Observations: > > 1. README and INSTALL don't have a TLDR "building subversion&qu

Re: Building Subversion.

2017-09-14 Thread Stefan Sperling
On Thu, Sep 14, 2017 at 08:24:35AM -0400, Nathan Hartman wrote: > It's on my > long to-do list to send in some patches and I'm hoping others will > jump in too, particularly to write a chapter on some advanced real > world usage scenarios, like workflow strategies to scale up a > development team

Re: Building Subversion.

2017-09-14 Thread Paul Hammant
The needs of the book are different to the needs of the Svn project. And the needs of the project are far more important than one of a few Svn books. I'm going to stand by what I said. -ph

Re: Building Subversion.

2017-09-14 Thread Nathan Hartman
On Sep 14, 2017, at 7:36 AM, Paul Hammant wrote: > Generally, the Subversion project should depend less on the Redbean book. > http://svnbook.red-bean.com/en/1.8/index.html is about 1.8 and it's marked as > DRAFT. There's no 1.9 or 1.10. While it is great that Msssrs. >

Building Subversion.

2017-09-14 Thread Paul Hammant
have the homebrew installables you needed handy? #LemmeKnowPls Observations: 1. README and INSTALL don't have a TLDR "building subversion" section. 2. .. should be converted to markdown with a .md suffix (industry convention) 3. "IV. QUICKSTART GUIDE - See the final secti

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-25 Thread Julian Foad
On Fri, 2010-10-22, scott mc wrote: We've run into another issue on Haiku, perhaps it's just something I did wrong when configuring it, seems the subversion port on Haiku thinks the system uses ISO-8859-15 encoding: http://ports.haiku-files.org/ticket/422 Haiku's locale kit is still evolving,

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-25 Thread Philip Martin
Julian Foad julian.f...@wandisco.com writes: On Fri, 2010-10-22, scott mc wrote: We've run into another issue on Haiku, perhaps it's just something I did wrong when configuring it, seems the subversion port on Haiku thinks the system uses ISO-8859-15 encoding:

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-22 Thread scott mc
Patch by: Scott McCreary scott...@gmail.com (HaikuPorts) Found by: Chris Roberts cpr...@gmail.com (HaikuPorts) Committed in r1024558.  Thanks! -- Philip Thanks Philip. We've run into another issue on Haiku, perhaps it's just something I did wrong when configuring it, seems the subversion

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-20 Thread Philip Martin
scott mc scott...@gmail.com writes: Here's the updated patch vs. svn r1022152, feel free to add a reviewed by to the message below. Thanks, -scottmc -- This patch makes use of

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-13 Thread Gavin Beau Baumanis
Ping. This submission has received no responses in over a week. Gavin Beau Baumanis On 05/10/2010, at 5:21 AM, scott mc wrote: I've attached the 1.6.12 patch and the 1.7.xx-svn patches. -scottmc Scott McCreary HaikuPorts This time as in-line text:

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-13 Thread Philip Martin
Gavin Beau Baumanis gav...@thespidernet.com writes: --- subversion-1.7.xx-svn/subversion/libsvn_subr/config_impl.h (revision 1002735) +++ subversion-1.7.xx-svn/subversion/libsvn_subr/config_impl.h (working copy) @@ -114,8 +114,11 @@ or svn_config_get_user_config_path()

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-13 Thread scott mc
Here's the updated patch vs. svn r1022152, feel free to add a reviewed by to the message below. Thanks, -scottmc -- This patch makes use of find_directory() on Haiku to locate the proper

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-04 Thread scott mc
Philip, On Thu, Sep 30, 2010 at 9:53 AM, Philip Martin philip.mar...@wandisco.com wrote: scott mc scott...@gmail.com writes: On Wed, Sep 29, 2010 at 5:45 PM, Philip Martin philip.mar...@wandisco.com wrote: Please write a log message: -

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-10-04 Thread scott mc
I've attached the 1.6.12 patch and the 1.7.xx-svn patches. -scottmc Scott McCreary HaikuPorts This time as in-line text: ---1.6.12.patch diff -urN subversion-1.6.12/subversion/libsvn_subr/config_file.c subversion-1.6.12-haiku/subversion/libsvn_subr/config_file.c ---

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-09-30 Thread Philip Martin
scott mc scott...@gmail.com writes: On Wed, Sep 29, 2010 at 5:45 PM, Philip Martin philip.mar...@wandisco.com wrote: Please write a log message: - This patch makes use of find_directory() on Haiku to locate the proper directories to use. Currently B_USER_SETTINGS_DIRECTORY points

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-09-29 Thread Stefan Sperling
On Wed, Sep 29, 2010 at 07:37:27AM -0700, scott mc wrote: Here is the patch we use for building subversion on Haiku. -scottmc Scott McCreary HaikuPorts Unfortunately this mailing list appears to be silently dropping attachments in some cases. Can you try again with a .txt extension? Also

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-09-29 Thread scott mc
Unfortunately this mailing list appears to be silently dropping attachments in some cases. Can you try again with a .txt extension? Also, would it be possible for you to send a patch that's relative to Subversion's trunk code, rather than 1.6.12? Thanks, Stefan Sure. Here it is vs.

Re: [PATCH] for building subversion 1.6.12 for haiku

2010-09-29 Thread scott mc
On Wed, Sep 29, 2010 at 5:45 PM, Philip Martin philip.mar...@wandisco.com wrote: Please write a log message: - This patch makes use of find_directory() on Haiku to locate the proper directories to use. Currently B_USER_SETTINGS_DIRECTORY points to /boot/home/config/settings, so this

Re: java error, core dumped, when building subversion-1.6.11

2010-05-08 Thread Stefan Sperling
On Fri, May 07, 2010 at 10:57:05PM -0700, rupert.thurner wrote: hi, when i try to build subversion-1.6.11 on solaris 9 the below error occurs. how could one track that down? /usr/jdk1.6.0_07/bin/javah -force -d subversion/bindings/javahl/ include -classpath

java error, core dumped, when building subversion-1.6.11

2010-05-07 Thread rupert.thurner
hi, when i try to build subversion-1.6.11 on solaris 9 the below error occurs. how could one track that down? /usr/jdk1.6.0_07/bin/javah -force -d subversion/bindings/javahl/ include -classpath subversion/bindings/javahl/classes: org.tigris.subversion.javahl.PropertyData