]> git.deb.at Git - deb/packages.git/commitdiff
Merge print_deps and print_src_deps and move the differences of print_src_deps
authorFrank Lichtenheld <frank@lichtenheld.de>
Mon, 20 Feb 2006 14:43:53 +0000 (14:43 +0000)
committerFrank Lichtenheld <frank@lichtenheld.de>
Mon, 20 Feb 2006 14:43:53 +0000 (14:43 +0000)
to SrcPage->get_dep_field.

lib/Packages/DoShow.pm
lib/Packages/HTML.pm
lib/Packages/SrcPage.pm

index b7dfa31e3264d1c8a8bb6d26d9e4ac8867019450..b1bf7acbadb00939daf7a68561be053b34807822 100644 (file)
@@ -345,12 +345,12 @@ sub do_show {
                    # display dependencies
                    #
                    my $dep_list;
-                   $dep_list = print_src_deps( \%packages, $opts, $pkg,
-                                               $page->get_dep_field('build-depends'),
-                                               'build-depends' );
-                   $dep_list .= print_src_deps( \%packages, $opts, $pkg,
-                                                $page->get_dep_field('build-depends-indep'),
-                                                'build-depends-indep' );
+                   $dep_list = print_deps( \%packages, $opts, $pkg,
+                                           $page->get_dep_field('build-depends'),
+                                           'build-depends' );
+                   $dep_list .= print_deps( \%packages, $opts, $pkg,
+                                            $page->get_dep_field('build-depends-indep'),
+                                            'build-depends-indep' );
 
                    if ( $dep_list ) {
                        $package_page .= "<div id=\"pdeps\">\n";
index 7ec5335ea88696cff64bbeb781d68591fd1906cc..1a68b5f290581d79726293f68b7caedc4d7dd468 100644 (file)
@@ -243,10 +243,12 @@ sub dep_item {
 sub print_deps {
     my ( $packages, $opts, $pkg, $relations, $type) = @_;
     my %dep_type = ('depends' => 'dep', 'recommends' => 'rec', 
-                   'suggests' => 'sug');
+                   'suggests' => 'sug', 'build-depends' => 'adep',
+                   'build-depends-indep' => 'idep' );
     my $res = "<ul class=\"ul$dep_type{$type}\">\n";
     my $first = 1;
     my $suite = $opts->{suite}[0];
+    my $one_archive = @{$opts->{archive}} > 1 ? '': $opts->{archive}[0];
 
 #    use Data::Dumper;
 #    debug( "print_deps called:\n".Dumper( $pkg, $relations, \$type ), 3 );
@@ -272,14 +274,14 @@ sub print_deps {
            my ( $p_name, $pkg_version, $arch_neg,
                 $arch_str, $subsection, $available ) = @$rel_alt;
 
-           if ($arch_str) {
+           if ($arch_str ||= '') {
                if ($arch_neg) {
                    $arch_str = " [".gettext("not")." $arch_str]";
                } else {
                    $arch_str = " [$arch_str]";
                }
            }
-           $pkg_version = "($pkg_version)" if $pkg_version;
+           $pkg_version = "($pkg_version)" if $pkg_version ||= '';
            
            my @results;
            my %entries;
@@ -287,18 +289,21 @@ sub print_deps {
                read_entry_simple( $packages, $p_name, $opts->{h_archives}, $suite);
            my $short_desc = $entry->[-1];
            my $arch = $entry->[2];
+           my $archive = $entry->[0];
            if ( $short_desc ) {
+               my $path = $one_archive eq $archive ? "$suite/$archive" :
+                   $suite;
                if ( $is_old_pkgs ) {
-                   push @res_pkgs, dep_item( "$ROOT/$suite/$p_name",
+                   push @res_pkgs, dep_item( "$ROOT/$path/$p_name",
                                              $p_name, "$pkg_version$arch_str" );
                } elsif ($arch eq 'virtual') {
                    $short_desc = "virtual package";
-                   push @res_pkgs, dep_item( "$ROOT/$suite/$p_name",
+                   push @res_pkgs, dep_item( "$ROOT/$path/$p_name",
                                              $p_name, "$pkg_version$arch_str", $short_desc );
                } else {
                    $entries{$p_name} ||= $entry;
                    $short_desc = encode_entities( $short_desc, "<>&\"" );
-                   push @res_pkgs, dep_item( "$ROOT/$suite/$p_name",
+                   push @res_pkgs, dep_item( "$ROOT/$path/$p_name",
                                              $p_name, "$pkg_version$arch_str", $short_desc );
                }
            } elsif ( $is_old_pkgs ) {
@@ -321,51 +326,6 @@ sub print_deps {
     return $res;
 } # end print_deps
 
-sub print_src_deps {
-    my ( $packages, $opts, $pkg, $relations, $type) = @_;
-    my %dep_type = ('build-depends' => 'adep', 'build-depends-indep' => 'idep' );
-    my $suite = $opts->{suite}[0];
-    my $res = "<ul class=\"ul$dep_type{$type}\">\n";
-    foreach my $dep (@$relations) {
-       my @res_pkgs;
-       $res .= "<li><dl><dt><img class=\"hidecss\" src=\"$ROOT/Pics/$dep_type{$type}.gif\" alt=\"[$dep_type{$type}]\"> ";
-       foreach my $or_dep ( @$dep ) {
-           my $p_name = $or_dep->[0];
-           my $p_version = $or_dep->[1] ? "(".encode_entities( $or_dep->[1] ).
-               " $or_dep->[2]) " : "";
-           my $not = gettext( "not" );
-           my $arch_str = '';
-           if ($or_dep->[3] && @{$or_dep->[3]}) {
-               # as either all or no archs have to be prepended with
-               # exlamation marks, convert the first and delete the others
-               if ($or_dep->[3][0] =~ /^!/) {
-                   $arch_str = "$not ";
-                   foreach (@{$or_dep->[3]}) {
-                       $_ =~ s/^!//go;
-                   }
-               }
-               $arch_str = " [${arch_str}@{$or_dep->[3]}]";
-           }
-           my $short_desc = (read_entry_simple( $packages, $p_name, $opts->{h_archives}, $suite))->[-1];
-           if ( $short_desc ) {
-               $short_desc = encode_entities( $short_desc, "<>&\"" );
-               push @res_pkgs, dep_item( "/$suite/$p_name", $p_name, "$p_version$arch_str", $short_desc );
-           } else {
-               $short_desc = gettext( "Package not available" );
-               push @res_pkgs, dep_item( undef, $p_name, "$p_version$arch_str", $short_desc );
-           }
-       }
-       $res .= "\n".join( "<dt>\n".gettext( "or" )." ", @res_pkgs )."</dl></li>\n";
-    }
-    if (@$relations) {
-        $res .= "\n</ul>";
-    } else {
-        $res = "";
-    }
-       return $res;
-} # end print_src_deps
-
-
 my $ds_begin = '<dl>';
 my $ds_item_desc  = '<dt>';
 my $ds_item = ':</dt><dd>';
index e3e6f575c7820ec1e5d4dccc252359322f9dbef1..b1d83d4cc761dec729765348adebec41c6371ae5 100644 (file)
@@ -111,7 +111,31 @@ sub get_version_string {
 sub get_dep_field {
     my ($self, $dep_field) = @_;
 
-    return $self->{dep_fields}{$dep_field}[1];
+    my @deps;
+    foreach my $dep (@{$self->{dep_fields}{$dep_field}[1]}) {
+       my @or_deps;
+       foreach my $or_dep ( @$dep ) {
+           my $p_name = $or_dep->[0];
+           my $p_version = $or_dep->[1] ? "$or_dep->[1] $or_dep->[2]" : undef;
+           my $arch_neg;
+           my $arch_str = '';
+           if ($or_dep->[3] && @{$or_dep->[3]}) {
+               # as either all or no archs have to be prepended with
+               # exlamation marks, use the first and delete the others
+               if ($or_dep->[3][0] =~ /^!/) {
+                   $arch_neg = 1;
+                   foreach (@{$or_dep->[3]}) {
+                       $_ =~ s/^!//go;
+                   }
+               }
+               $arch_str = join(" ",sort(@{$or_dep->[3]}));
+           }
+
+           push @or_deps, [ $p_name, $p_version, $arch_neg, $arch_str ];
+       }
+       push @deps, [ 0, @or_deps ];
+    }
+    return \@deps;
 }
 
 1;