public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: Henning Hollermann <henning.hollermann@stud.uni-goettingen.de>
Cc: linux-media@vger.kernel.org
Subject: Re: Missing package "Proc::ProcessTable" is in debian: libproc-processtable-perl
Date: Sun, 31 Jul 2011 21:46:49 -0300	[thread overview]
Message-ID: <4E35F779.4090100@redhat.com> (raw)
In-Reply-To: <4E35DECA.2090700@stud.uni-goettingen.de>

Hi Henning,

Em 31-07-2011 20:01, Henning Hollermann escreveu:
> I just tried to install the latest media-build-package via git. I got an
> error because of a missing package, but the script could not provide a
> hint about the name of the missing package. One quick search made clear,
> that it was perl's ProcessTable package, which was missing. This is
> named "libproc-processtable-perl" in debian, so you could add this as hint.

There are some functions there that tries to detect the distribution used.
Currently, it parses Fedora, RHEL and Ubuntu. From the above, it seems
that the requirements for Debian are the same as the ones for Ubuntu.


This is the requirements for Ubuntu:

		"lsdiff"		=> "patchutils",
		"Digest::SHA1"		=> "libdigest-sha1-perl",
		"Proc::ProcessTable"	=> "libproc-processtable-perl",

Could you please double check if all of them also applies for Debian?

If so, then probably the enclosed patch will do the job. Could you
please test it as well?

Thanks,
Mauro

-

check_needs.pl: Add detection for Debian


Reported-by: Henning Hollermann <henning.hollermann@stud.uni-goettingen.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

diff --git a/check_needs.pl b/check_needs.pl
index 8060361..1467ee1 100755
--- a/check_needs.pl
+++ b/check_needs.pl
@@ -73,6 +73,10 @@ sub give_hints
 		give_ubuntu_hints;
 		return;
 	}
+	if ($system_release =~ /Debian/) {
+		give_ubuntu_hints;
+		return;
+	}
 
 	# Fall-back to generic hint code
 	foreach my $prog (@missing) {

      reply	other threads:[~2011-08-01  0:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-31 23:01 Missing package "Proc::ProcessTable" is in debian: libproc-processtable-perl Henning Hollermann
2011-08-01  0:46 ` Mauro Carvalho Chehab [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E35F779.4090100@redhat.com \
    --to=mchehab@redhat.com \
    --cc=henning.hollermann@stud.uni-goettingen.de \
    --cc=linux-media@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox