You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Branko Čibej <br...@wandisco.com> on 2015/07/06 09:18:58 UTC

1.9.0-rc3 up for testing/signing

The 1.9.0-rc3 release artefacts are now available for testing/signing.

Please get the tarballs from

    https://dist.apache.org/repos/dist/dev/subversion/

and add your signatures there.

Thanks!



Re: 1.9.0-rc3 up for testing/signing

Posted by Stefan Fuhrmann <st...@wandisco.com>.
On Mon, Jul 6, 2015 at 9:18 AM, Branko Čibej <br...@wandisco.com> wrote:

> The 1.9.0-rc3 release artefacts are now available for testing/signing.
>
> Please get the tarballs from
>
>     https://dist.apache.org/repos/dist/dev/subversion/
>
> and add your signatures there.
>

Summary:

  +1 to release

Platform

  Ubuntu 14.04.1 x64, Linux 3.16.0-41-generic SMP

  Standard dependencies:
    APR 1.5.0
    APR-Util 1.5.3
    BDB 5.3.28
    GCC 4.8.2
    httpd 2.4.7, worker MPM
    JUnit 4.11
    libmagic 5.14
    libtool 2.4.2
    OpenJDK-7 7u51
    OpenSSL 1.0.1f
    Perl 5.18.2
    Python 2.7.5
    Ruby 1.9.3
    SQLite 3.8.2
    Swig 2.0.11
    zlib 1.2.8

  Manually installed and in-tree dependencies:
    Serf 1.3.8
    ctypesgen svn-r151

Verified:

  Tarball contents and signatures

  (fsfs, bdb, fsx) x (local, svnserve, serf)
  check-swig-py
  check-swig-pl
  check-swig-rb
  check-javahl
  check-ctypes-python

  ./get-deps.sh

Results:

  All tests passed.

GPG Signatures committed to the dist/dev/subversion repository.

-- Stefan^2.

Re: 1.9.0-rc3 up for testing/signing

Posted by Julian Foad <ju...@btopenworld.com>.
Branko Čibej wrote:
> The 1.9.0-rc3 release artefacts are now available for testing/signing.

SUMMARY:
--------
+1 to release (Unix)

VERIFIED:
---------
SHA1 sums:
26fcfa53e32e3f83724327d3fdb965dc28253260 subversion-1.9.0-rc3.tar.bz2
1c7386c0d32cf9789967d711415ccc28041295a9 subversion-1.9.0-rc3.tar.gz

Comparing the two compressions of each tar package:
Files subversion-1.9.0-rc3.tar(bz2) and subversion-1.9.0-rc3.tar(gz)
are identical

TESTED:
-------
[ fsfs | bdb ] x [ file | svn | http (serf; MPM=worker) ]
swig-rb
swig-py
swig-pl
javahl
cytpes-python

RESULTS:
--------
All tests passed, except:
one JavaHL test failed due to spelling of '...ization' vs '...isation'
in an expected error message.

PLATFORM:
---------
Ubuntu 14.04 (Linux kernel: 3.13.0-55-generic x86_64)

DEPENDENCIES:
-------------
APR: 1.5.1 (Ubuntu package: libapr1 1.5.0-1)
APR-UTIL: 1.5.3
zlib: 1.2.8
OpenSSL: 1.0.1
Apache: 2.4.7
BDB: 5.3.21
sqlite: 3.8.2
Python: 2.7.6 (Ubuntu package: python 2.7.5-5ubuntu3)
Perl: 5.18.2
Ruby: 1.9.3
java: 1.7.0
junit: 4.11
swig: 2.0.11
serf: 1.3.7


- Julian

Re: 1.9.0-rc3 up for testing/signing

Posted by Branko Čibej <br...@wandisco.com>.
On 07.07.2015 17:30, Branko Čibej wrote:
> On 07.07.2015 14:11, Branko Čibej wrote:
>> Issues:
>>
>>   * gen-make.py doesn't recognize the Ruby install
>
> It turns out that we don't properly support Ruby 2.2, at least not on
> Windows. The obvious fix (using 'RbConfig' instead of 'Config' in
> gen-win-dependencies.py) allows me to generate the project files, but
> when building the bindings, I get a number of errors like this from stdio.h:
>
> #error:  Macro definition of snprintf conflicts with Standard Library
> function declaration
>
> I expect this is related to Visual Studio 2015?

r1689729 makes Ruby bindings build on Windows with VS2015.

r1689721 makes detection of Ruby on Windows equivalent to the way
swig.m4 does this on Unix, and makes gen-win.py properly detect Ruby 2.2+.

We should probably backport these changes to 1.9.x, but neither are
release blockers.

-- Brane

RE: 1.9.0-rc3 up for testing/signing

Posted by Bert Huijben <be...@qqmail.nl>.

> -----Original Message-----
> From: Branko Čibej [mailto:brane@wandisco.com]
> Sent: dinsdag 7 juli 2015 17:30
> To: Subversion Development
> Subject: Re: 1.9.0-rc3 up for testing/signing
> 
> On 07.07.2015 14:11, Branko Čibej wrote:
> > Issues:
> >
> >   * gen-make.py doesn't recognize the Ruby install
> 
> 
> It turns out that we don't properly support Ruby 2.2, at least not on
> Windows. The obvious fix (using 'RbConfig' instead of 'Config' in
> gen-win-dependencies.py) allows me to generate the project files, but
> when building the bindings, I get a number of errors like this from stdio.h:
> 
> #error:  Macro definition of snprintf conflicts with Standard Library
> function declaration
> 
> I expect this is related to Visual Studio 2015?

snprintf wasn't implemented before VS 2015, so that is the most likely cause. (There was a quite similar function available, but the return value didn't confirm to the spec)

	Bert
> 
> -- Brane


Re: 1.9.0-rc3 up for testing/signing

Posted by Branko Čibej <br...@wandisco.com>.
On 07.07.2015 14:11, Branko Čibej wrote:
> Issues:
>
>   * gen-make.py doesn't recognize the Ruby install


It turns out that we don't properly support Ruby 2.2, at least not on
Windows. The obvious fix (using 'RbConfig' instead of 'Config' in
gen-win-dependencies.py) allows me to generate the project files, but
when building the bindings, I get a number of errors like this from stdio.h:

#error:  Macro definition of snprintf conflicts with Standard Library
function declaration

I expect this is related to Visual Studio 2015?

-- Brane

Re: 1.9.0-rc3 up for testing/signing

Posted by Branko Čibej <br...@wandisco.com>.
(Traditionally, the RM does not post test results; but since we're a bit
short on Windows votes, I decided to test and add my +1 for that platform.)

===========================

Summary:

    +1 to release (Windows)

Platform

    Windows 10 Pro Technical Preview x64

    Build tools:
      Microsoft Visual Studio Proffecional 2015 RC (14.0.22823.1 D14REL)
      CMake 3.2.3
      SCons 2.3.4 (patched for MSVC14)

    Source dependencies:
      APR 1.5.2
      APR-Util 1.5.4
      zlib 1.2.8
      httpd 2.4.12 with pcre-8.37
      SQLite 3.8.8.3 (amalgamated)
      Serf 1.3.8
      OpenSSL 1.0.2

    Other dependencies:
      Python 2.7.9
      Perl 5.20.2 (Strawberry Perl)
      ruby 2.2.1p85 (2015-02-26 revision 49769) [x64-mingw32]
      Swig 2.0.12
      Java 1.8.0_45-b14
      JUnit 4.11

Verified:

  Tarball contents and signatures

  (fsfs) x (local, svnserve, serf, serf-v1)
  check-javahl
  check-swig-py
  check-swig-pl

Issues:

  * gen-make.py doesn't recognize the Ruby install

GPG signatures committed to the dist/dev/subversion repository.



Re: 1.9.0-rc3 up for testing/signing

Posted by Johan Corveleyn <jc...@gmail.com>.
On Mon, Jul 6, 2015 at 9:18 AM, Branko Čibej <br...@wandisco.com> wrote:
> The 1.9.0-rc3 release artefacts are now available for testing/signing.
>
> Please get the tarballs from
>
>     https://dist.apache.org/repos/dist/dev/subversion/
>
> and add your signatures there.
>
> Thanks!

Summary
-------
+1 to release

Platform
--------
Windows 7 SP1 (x64)
Microsoft Visual Studio 2013

Verified
--------
Signature and sha1 for subversion-1.9.0-rc3.zip.

Tested
------
[ Release build ] x [ fsfs ] x [ file | svn | http ]

Results
-------
All tests pass.

Dependencies
------------
Httpd 2.4.12
Apr 1.5.1
Apr-Util 1.5.4
OpenSSL 1.0.2
Serf 1.3.8
SQLite 3.8.8.3
ZLib 1.2.8

Signature
---------

subversion-1.9.0-rc3.zip:
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAABCgAGBQJVopFzAAoJELWc5tYBDIqtKBEP/ROvq3rGnR3DH0gXXNtJVNcz
CQekxmPBSGlKT8Lpn7k/Cp8LQD3rxhVhrFfRpxfZiRLYEPpqIlYeNpn3t9CmfLwx
okDLYXDfceAyLvI0WC5Bqvn6x8PR6NFVcYgMRzJJH+R+cFx+0QcdH0lglsoRBDYd
6VmEMcithxo7+dPbmGs1qH5uUVYNg31wG/zLWUrXiRDtLorAXEDUPYMC0OOM5cQo
sAqVkHyZTA+DI0zp1x+oIbhttkc5B5LsoPwmIEEP8qfBTnl1DL7zkEaQ68So0DdP
Uismecg+MVumgwcpu3MBxHIHUqOGHA4o8w16buzpVZDqv4EZWVDKD6RTKhMPTzMX
vpj0fPyHr0krbdkpA7uUi37zwbcoVi8uqp+SUcQa8zWLUkx14bzNovyVspdo8BPQ
XvWExZahVJBZkzr/L3eWbdkVOioQ8thgbFk9O335/IkvyFpjBIYZKgNRZ+5ZtQR3
oy6+Q6SCmNqgJ3ZMCCOuAcrDcMXBXCVEUA58ETFujg7wzaFQAlktksPqTrvV9nG1
6M48cYdxDbdvyqFw/QB8XVR9t7BDUwMv6hLqvCHF6Rg/H/7rUXrh8PjvajBllZh6
8wbDZm19xOFKpD7tIEH88YZ+E08MkwTRvdcC1fJXwwwv7jGmRKnCFMtuAU1sM3HG
vBTulZna0eqxepI9FT9W
=zVea
-----END PGP SIGNATURE-----


-- 
Johan

Re: 1.9.0-rc3 up for testing/signing

Posted by Philip Martin <ph...@wandisco.com>.
Summary:

  +1 to release

  Tarball libtool inadvertently changed to 2.4.6 from 2.4.3 in rc2, but
  2.4.6 is OK and release.py updated to make 2.4.6 the default for 1.9.

Platform:

  Linux (Debian/jessie) 64-bit

Tested:

  (local, svn, svn/sasl, serf, serf/v1) x (fsfs, fsfs/pack/shard, bdb, fsx)
  swig-pl, swig-py, swig-rb, ctypes-python
  javahl x (fsfs, bdb, fsx)

Results:

  FAIL svnadmin_tests.py 32, 33, 34 and 35 with pack/shard due to testsuite
  bugs.  All other tests PASS.

Local dependencies:

  apache2-dev : 2.4.10-10
  libapr1-dev : 1.5.1-3
  libaprutil1-dev : 1.5.4-1
  libdb5.3-dev : 5.3.28-9
  libsasl2-dev : 2.1.26.dfsg1-13
  libsqlite3-dev : 3.8.7.1-1+deb8u1
  perl : 5.20.2-3+deb8u1
  python2.7-dev : 2.7.9-2
  ruby-dev : 1:2.1.5+deb8u1
  openjdk-7-jdk : 7u79-2.5.5-1~deb8u1
  serf : 1.3.x@2474

subversion-1.9.0-rc3.tar.bz2

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAABCAAGBQJVmukuAAoJEHbXiOHtGlmc0gwIAKjnILEqqoZxgJ/1oS7zsOgX
t3NwAqKKp4QInk+Db8LaX2IG+PWR8f2KjvCGO4O0tRWORdBlcz2RsID7c3nHtiH0
lUubCYqJWDRgEUH7egmesOUcSVZau9vreAUvQigArEpQU/fwQa+pEkLyC+OvkFuP
r9WNGb18fajgx33V+Hy6pP6TmewjSzxwL4t1rUHamQy/ZNTZMyNNntrh1xGLghgo
mzvbCuJcsKsDuQiEbsbcDfBpuzbv5TQjHL+xvn6yYyg2RMX9GicJm5tc8MOXtbCT
bF9onZaoeF0UokmQdmdMw/zxSDkPAoecqtsQmUaIsUH1U8XxhczCAj+jxhV8AyU=
=vtIS
-----END PGP SIGNATURE-----

subversion-1.9.0-rc3.tar.gz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAABCAAGBQJVmukuAAoJEHbXiOHtGlmc0JUIAKuiaAsWbz89C1iHMDwiBN+F
Wl/iCdexhFgkfyykmJOdiq4wnhTHEuK3ti4R2cshgdTAt6PgV8en1f+Ci18PdYUW
lkNxLnf103041zRYq6up5Wv09xf0Fd/nr4lqG9vYthtOP/vPEgM3CQ61RAdO8Zln
CnzEBEcmACwFyv01BBBQhjhmbHOUYdRNFBY/9QLTkimSeM6hoAY7UBjkT2mThDB0
yLjqirCT6UyLc6QYX68QTSYIIixYcqQkuiKhU7Rz5eIiR9WvEQFdT+nTjhSvaW1K
EXu398gUbzLDcPsO35BcuW/QEc9++BtcMJC0dgkpNQSkUNjcobAZtO+LLRETR/Q=
=Faco
-----END PGP SIGNATURE-----

-- 
Philip Martin | Subversion Committer
WANdisco // *Non-Stop Data*

RE: 1.9.0-rc3 up for testing/signing

Posted by Bert Huijben <be...@qqmail.nl>.

> -----Original Message-----
> From: Branko Čibej [mailto:brane@wandisco.com]
> Sent: maandag 6 juli 2015 09:19
> To: Subversion Development
> Subject: 1.9.0-rc3 up for testing/signing
> 
> The 1.9.0-rc3 release artefacts are now available for testing/signing.
> 
> Please get the tarballs from
> 
>     https://dist.apache.org/repos/dist/dev/subversion/
> 
> and add your signatures there.

+1 for release

Ran [fsfs | bdb] x [local | svnserve | http] and SharpSvn, AnkhSVN, etc. testsuits.

Windows 8.1 x64 - Visual Studio 2013 x86

Used dependencies:
apr 1.5.1
apr-util 1.5.4
db 4.4.20
expat 2.1.0
httpd 2.4.12
java-sdk 1.8.0_40
mod_dav 2.4.12
openssl 1.0.2d
sasl 2.1.26
serf 1.3.8
sqlite 3.8.10.1
zlib 1.2.8

	Bert 



RE: 1.9.0-rc3 up for testing/signing

Posted by Johan Corveleyn <jc...@gmail.com>.
I may be able to add my signature later today or tomorrow. Wifi in our
hotel in Italy is quite good ... though the swimming pool looks attractive
too ;-).

Johan
Op 11-jul.-2015 09:03 schreef "Bert Huijben" <be...@qqmail.nl>:

> I should be able to add my +1 later today.
>
> Bert
> ------------------------------
> From: Branko Čibej <br...@wandisco.com>
> Sent: ‎11-‎7-‎2015 04:01
> To: Subversion Development <de...@subversion.apache.org>
> Subject: Re: 1.9.0-rc3 up for testing/signing
>
> On 06.07.2015 09:18, Branko Čibej wrote:
> > The 1.9.0-rc3 release artefacts are now available for testing/signing.
> >
> > Please get the tarballs from
> >
> >     https://dist.apache.org/repos/dist/dev/subversion/
> >
> > and add your signatures there.
>
> Ping?
>
> We're short on Windows signatures again ... we have the 3 +1 for Unix an
> 1 +1 for Windows.
>
> -- Brane
>

RE: 1.9.0-rc3 up for testing/signing

Posted by Bert Huijben <be...@qqmail.nl>.
I should be able to add my +1 later today.

Bert

-----Original Message-----
From: "Branko Čibej" <br...@wandisco.com>
Sent: ‎11-‎7-‎2015 04:01
To: "Subversion Development" <de...@subversion.apache.org>
Subject: Re: 1.9.0-rc3 up for testing/signing

On 06.07.2015 09:18, Branko Čibej wrote:
> The 1.9.0-rc3 release artefacts are now available for testing/signing.
>
> Please get the tarballs from
>
>     https://dist.apache.org/repos/dist/dev/subversion/
>
> and add your signatures there.

Ping?

We're short on Windows signatures again ... we have the 3 +1 for Unix an
1 +1 for Windows.

-- Brane

Re: 1.9.0-rc3 up for testing/signing

Posted by Branko Čibej <br...@wandisco.com>.
On 06.07.2015 09:18, Branko Čibej wrote:
> The 1.9.0-rc3 release artefacts are now available for testing/signing.
>
> Please get the tarballs from
>
>     https://dist.apache.org/repos/dist/dev/subversion/
>
> and add your signatures there.

Ping?

We're short on Windows signatures again ... we have the 3 +1 for Unix an
1 +1 for Windows.

-- Brane