Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 405129 - [kde overlay] app-text/kbibtex-9999 modify for build system to pick up svn revision
Summary: [kde overlay] app-text/kbibtex-9999 modify for build system to pick up svn re...
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Gentoo KDE team
URL: https://gna.org/bugs/?19358#comment4
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-02-21 09:46 UTC by Erik Quaeghebeur
Modified: 2012-03-16 08:56 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Erik Quaeghebeur 2012-02-21 09:46:39 UTC
When building app-text/kbibtex-9999 from the kde overlay, the build stops with an error about missing 'version.h'. This seems due to gentoo not including .svn directories. Upstream modified the build system to allow a different way to set the revision and provided a modification to the ebuild. The following should be appended (with corrected indentation, of course):

src_configure() {
if [[ ${PV} = 9999 ]] ; then
SVN_PATH="${ESVN_STORE_DIR}/${ESVN_PROJECT}/${ESVN_REPO_URI##*/}"
export SVN_REV=`svnversion ${SVN_PATH}`
fi

kde4-base_src_configure
}

I tested this, and it works for me.

Reproducible: Always
Comment 1 Thomas Fischer 2012-02-21 12:15:10 UTC
I guess the comparison operator should be
${PV} = *9999*
to cover cases like version 0.4.9999 for the stable branch in SVN (see bug 401585 for details)
Comment 2 Ian Delaney (RETIRED) gentoo-dev 2012-02-21 21:28:49 UTC
testuser@localhost ~/kde/kde/app-text/kbibtex $ ebuild kbibtex-9999.ebuild clean install

-- Installing: /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/image/usr/share/man/man1/kbibtex.1
-- Installing: /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/image/usr/share/mime/packages/bibliography.xml
>>> Completed installing kbibtex-9999 into /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/image/

testuser@localhost ~/kde/kde/app-text/kbibtex $ grep version.h /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/temp/build.log 
Scanning dependencies of target set_version_h_in_builddir
[  1%] Updating /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/work/kbibtex-9999_build/src/version.h...
[  1%] Built target set_version_h_in_builddir
[  1%] Updating /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/work/kbibtex-9999_build/src/version.h...
[  1%] Built target set_version_h_in_builddir

DID NOT REPLICATE

Adding the src_configure() block from the Description, it  does indeed 'work'.

testuser@localhost ~/kde/kde/app-text/kbibtex $ ebuild kbibtex-9999.ebuild clean install

-- Installing: /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/image/usr/share/man/man1/kbibtex.1
-- Installing: /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/image/usr/share/mime/packages/bibliography.xml
>>> Completed installing kbibtex-9999 into /mnt/gen2/TmpDir/portage/app-text/kbibtex-9999/image/

merging into the system is not the focus of this bug.
Both forms make an effective build.

Actually, if [[ ${PV} == *9999* ]] appears preferred
Comment 3 Chris Reffett (RETIRED) gentoo-dev Security 2012-03-11 01:33:12 UTC
I can't replicate the error either. If you still have this issue, please attach build.log.
Comment 4 Johannes Huber (RETIRED) gentoo-dev 2012-03-16 08:56:05 UTC
Thx Chris & Ian. I cant reproduce it by myself. I think this is issue is solved by upstream. So no ebuild changes are needed.