Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 132382 - configure fails when using a subversion ebuild
Summary: configure fails when using a subversion ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Akinori Hattori
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-05-05 13:56 UTC by Avuton Olrich
Modified: 2006-05-16 06:57 UTC (History)
0 users

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


Attachments
Add "" around the directory (subversion.eclass.patch,278 bytes, patch)
2006-05-05 13:59 UTC, Avuton Olrich
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Avuton Olrich 2006-05-05 13:56:46 UTC
When using a 'live' ebuild that emerges from subversion I have noticed alot lately that if the remote server time is not 'in sync' with the emerging machine autoconf will either say something about a time skew or will keep trying to configure until the files catch up with the time. It would be great to just touch all the files after copying to the build directory so to avoid such a thing from happening.

Here's a patch that I've used in my overlay that seems to make this work:

--- /usr/portage/eclass/subversion.eclass       2006-04-30 02:46:07.000000000 -0700
+++ subversion.eclass   2006-05-05 11:44:03.153931776 -0700
@@ -195,6 +195,9 @@
 
        cd "${S}"

+       find ${S} -type f -exec touch {} \;
+
        if [ "${ESVN_PATCHES}" ]; then
                einfo "apply patches -->"
Comment 1 Avuton Olrich 2006-05-05 13:59:32 UTC
Created attachment 86222 [details, diff]
Add "" around the directory
Comment 2 Akinori Hattori gentoo-dev 2006-05-16 06:57:32 UTC
Fixed in CVS. Thank you for reporting!