Discussion:
svn: E170013: Unable to connect to a repository at URL
Martin Gansser
2018-12-07 09:53:00 UTC
Permalink
Hi,

If I want to build glmixer on the rpmfusion build server I get the following error[1]:

-- Generating ChangeLog from SVN (please be patient...)
svn: E170013: Unable to connect to a repository at URL 'svn://svn.code.sf.net/p/glmixer/Source/trunk'
svn: E670002: Unknown hostname 'svn.code.sf.net'
-:3: parser error : Premature end of data in tag log line 2
^
unable to parse -
-- Configuring done


[1] http://koji.rpmfusion.org/kojifiles/work/tasks/9468/279468/build.log
[2] https://martinkg.fedorapeople.org/Packages/glmixer/glmixer.spec
[3] https://martinkg.fedorapeople.org/Packages/glmixer/GLMixer-1.7.1833-Source.tar.gz
[4] https://martinkg.fedorapeople.org/Packages/glmixer/glmixer-glew-sys.patch

Is there any solution ?
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/***@lists.fedoraproj
Dan Horák
2018-12-07 10:34:19 UTC
Permalink
On Fri, 07 Dec 2018 09:53:00 -0000
Post by Martin Gansser
Hi,
the real error seems to be missing BR: chrpath (see the end of the
build.log)
Post by Martin Gansser
-- Generating ChangeLog from SVN (please be patient...)
svn: E170013: Unable to connect to a repository at URL
'svn://svn.code.sf.net/p/glmixer/Source/trunk' svn: E670002: Unknown
hostname 'svn.code.sf.net' -:3: parser error : Premature end of data
in tag log line 2 ^
unable to parse -
-- Configuring done
this would have to be patched out as the builders don't have network
available


Dan
Post by Martin Gansser
[1]
http://koji.rpmfusion.org/kojifiles/work/tasks/9468/279468/build.log
[2] https://martinkg.fedorapeople.org/Packages/glmixer/glmixer.spec
[3]
https://martinkg.fedorapeople.org/Packages/glmixer/GLMixer-1.7.1833-Source.tar.gz
[4]
https://martinkg.fedorapeople.org/Packages/glmixer/glmixer-glew-sys.patch
Is there any solution ?
_______________________________________________
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedor
Martin Gansser
2018-12-07 10:48:25 UTC
Permalink
ok thanks, with the new rpm spec file it works.
...
[2] https://martinkg.fedorapeople.org/Packages/glmixer/glmixer.spec
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/***@lists.fedoraproje
Martin Gansser
2018-12-08 10:00:34 UTC
Permalink
Post by Dan Horák
On Fri, 07 Dec 2018 09:53:00 -0000
this would have to be patched out as the builders don't have network
available
Dan
can you give me a hint, how to patching this out ?
this is the relevant part in CMakeLists.txt
....
# Use SVN to read repository version
IF(EXISTS "${CMAKE_SOURCE_DIR}/.svn")
FIND_PACKAGE(Subversion)
IF(Subversion_FOUND)
IF( MINGW )
msys_to_cmake_path(${CMAKE_SOURCE_DIR} CMAKE_SOURCE_DIR_MINGW )
Subversion_WC_INFO( ${CMAKE_SOURCE_DIR_MINGW} GLMIXER)
ELSE (MINGW)
Subversion_WC_INFO( ${CMAKE_SOURCE_DIR} GLMIXER)
ENDIF (MINGW)
MESSAGE("Current subversion revision is ${GLMIXER_WC_REVISION}")
ENDIF(Subversion_FOUND)
ENDIF()
...

Martin
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives
Leigh Scott
2018-12-08 11:25:21 UTC
Permalink
Try adding this to %prep

rm -rf .svn
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archi
Martin Gansser
2018-12-08 14:39:38 UTC
Permalink
Post by Leigh Scott
Try adding this to %prep
rm -rf .svn
Thanks that works.

Martin
_______________________________________________
devel mailing list -- ***@lists.fedoraproject.org
To unsubscribe send an email to devel-***@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/***@list
Loading...