aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--Rpmdrake/open_db.pm2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 97cafbb4..290132a5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+- rpmdrake
+ o fix a rare crash (mga#12113)
+ o do not treat Backport Testing as backport media (mga#13606)
+
Version 6.10.2 - 27 June 2014, Thierry Vignaud
- revert commit dc9950451a6c83815e2f680f9eaba6da31a18300
diff --git a/Rpmdrake/open_db.pm b/Rpmdrake/open_db.pm
index 1d1ee2ab..f7302ddf 100644
--- a/Rpmdrake/open_db.pm
+++ b/Rpmdrake/open_db.pm
@@ -128,7 +128,7 @@ sub is_it_a_devel_distro() {
sub get_backport_media {
my ($urpm) = @_;
grep { $_->{name} =~ /backport/i &&
- $_->{name} !~ /debug|sources/i } @{$urpm->{media}};
+ $_->{name} !~ /debug|sources|testing/i } @{$urpm->{media}};
}
sub get_inactive_backport_media {