[Pkg-haskell-commits] [package-plan] 02/05: Actually query archive status from experimental
Joachim Breitner
nomeata at moszumanska.debian.org
Tue Dec 30 11:38:02 UTC 2014
This is an automated email from the git hooks/post-receive script.
nomeata pushed a commit to branch ghc-7.8
in repository package-plan.
commit 8b6df0f1d2586ffdc6ee394c204504f87c7d7300
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Tue Dec 23 23:33:27 2014 +0100
Actually query archive status from experimental
---
test-packages.pl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test-packages.pl b/test-packages.pl
index 803f7b7..3f2102e 100755
--- a/test-packages.pl
+++ b/test-packages.pl
@@ -70,7 +70,7 @@ while (<PACKAGES>) {
close PACKAGES;
print "Reading available versions...\n";
-open AVAILABLE, "-|", "grep-aptavail -F GHC-Package . -s GHC-Package -n" or die $!;
+open AVAILABLE, "-|", "apt-cache -t experimental dumpavail | grep-dctrl -F GHC-Package . -s GHC-Package -n" or die $!;
while (<AVAILABLE>) {
chomp;
unless (m/^(.*)-([0-9\.]*)-([a-f0-9]*?)$/) {
@@ -86,7 +86,7 @@ close AVAILABLE;
print "Reading available binary versions...\n";
while ( my ($pkg, $bin) = each %binary ) {
- open VERS, "-|", "grep-aptavail -F Package -s Version -n -X $bin" or die $!;
+ open VERS, "-|", "apt-cache -t experimental dumpavail | grep-dctrl -F Package -s Version -n -X $bin" or die $!;
while (<VERS>) {
chomp;
unless (m/^(?:.*:)?(.*)-(?:.*)$/) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/package-plan.git
More information about the Pkg-haskell-commits
mailing list