Hi,
I can confirm the mentioned behaviour.
The attached patch fixes this for me, I hope it is useful.
Kind Regards,
Tobias
--- get-upstream-version.pl.old 2014-06-19 16:28:23.556045397 +0200
+++ get-upstream-version.pl 2014-06-19 16:29:50.776457731 +0200
@@ -46,7 +46,7 @@
my $url = "http://www.adobe.com/";
$page = read_page( $ARGV[0], $url );
die "failed to read $url" if( $page eq "" );
-if( $page !~ m,<a href="([^"]+)">Adobe Flash Player</a>,s )
+if( $page !~ m,<a class="globalnav__sitemap__item__link" href="([^"]+flashplayer[^"]+)">,s )
{
if( -d "/var/cache/flashplugin-nonfree" )
{
@@ -59,7 +59,7 @@
my $link_to_flash = $1;
-if( $link_to_flash =~ m%^http://get\d*\.adobe\.com/flashplayer/\?promoid=[A-Z]+$% )
+if( $link_to_flash =~ m%^https://get\d*\.adobe\.com/flashplayer\?promoid=[A-Z]+$% )
{
$url = $link_to_flash;
}