Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 119091 - dev-perl/SVN-Mirror doesn't depend on dev-perl/Data-UUID
Summary: dev-perl/SVN-Mirror doesn't depend on dev-perl/Data-UUID
Status: VERIFIED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Perl team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-15 06:55 UTC by Thomas R. (TRauMa)
Modified: 2006-01-21 10:42 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 Thomas R. (TRauMa) 2006-01-15 06:55:43 UTC
dev-perl/VCP-autrijus doesn't depend on dev-perl/Data-UUID, but requires it, so importing fails, so svk thinks VCP isn't installed.

Solution (just patch VCP-autrijus ebuild):

DEPEND="dev-perl/Text-Diff
                dev-perl/XML-AutoWriter
-               dev-perl/IPC-Run3" 
+               dev-perl/IPC-Run3 
+               dev-perl/Data-UUID"
Comment 1 Michael Cummings (RETIRED) gentoo-dev 2006-01-15 07:01:33 UTC
from the META.yml (ie, looks like there's more missing than data-uuid)

requires:
  Pod::Usage: 0
  Pod::Text: 0
  HTML::Element: 0
  Regexp::Shellish: 0.93
  Text::Diff: 0
  XML::ValidWriter: 0.38
  MIME::Base64: 0
  Digest::MD5: 0
  File::Temp: 0
  IPC::Run3: 0
  Pod::HTML_Elements: 0
  Pod::Select: 0
  XML::Parser: 0
  Pod::Links: 0
Comment 2 Michael Cummings (RETIRED) gentoo-dev 2006-01-15 07:13:24 UTC
oddly enough, while there are missing modules in the dep, i don't see where data-uuid is one of them. i just grep'd through the entire source and uuid doesn't appear once:

( mcummings@zathros )-( 10:13:01 )-( VCP-autrijus-snapshot-0.9-20050110 )-(  518 )
$ grep -ris uuid *
( mcummings@zathros )-( 10:13:08 )-( VCP-autrijus-snapshot-0.9-20050110 )-(  519 )
$
Comment 3 Thomas R. (TRauMa) 2006-01-15 07:30:03 UTC
Sorry, my bad, it's in 
/usr/lib/perl5/vendor_perl/5.8.7/SVN/Mirror/VCP.pm
which means the dep should be in SVN-Mirror. 

That happens if you read the filename, but not the path :/
Comment 4 Michael Cummings (RETIRED) gentoo-dev 2006-01-15 08:57:38 UTC
fixed. submitting bug to ppc and amd64 for keywording of data-uuid
Comment 5 Daniel Westermann-Clark 2006-01-16 09:22:13 UTC
Please make this an optional dependency.  Tests pass without it, and it would more accurately reflect the SVN::Mirror Makefile.PL.

Maybe something like:

--- /usr/portage/dev-perl/SVN-Mirror/SVN-Mirror-0.68-r1.ebuild  2006-01-15 11:57:29.000000000 -0500
+++ SVN-Mirror-0.68-r1.ebuild   2006-01-16 12:20:59.000000000 -0500
@@ -12,17 +12,21 @@
 LICENSE="Artistic"
 #KEYWORDS="~amd64 ~ppc ~sparc ~x86"
 KEYWORDS="~sparc ~x86"
-IUSE=""
+IUSE="vcp"

 DEPEND="${DEPEND}
        >=dev-util/subversion-1.1.3
        >=dev-perl/URI-1.34
        >=dev-perl/TermReadKey-2.21
        >=dev-perl/SVN-Simple-0.26
-       dev-perl/Data-UUID
        dev-perl/Class-Accessor
        dev-perl/TimeDate
-       dev-perl/File-chdir"
+       dev-perl/File-chdir
+       vcp? (
+               dev-perl/Data-UUID
+               dev-perl/VCP-autrijus
+               dev-perl/VCP-Dest-svk
+       )"


 pkg_setup() {
Comment 6 Thomas R. (TRauMa) 2006-01-21 10:42:10 UTC
Thanx.