aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMike FABIAN <mike.fabian@basyskom.de>2010-09-07 14:19:06 +0200
committerMike FABIAN <mike.fabian@basyskom.de>2010-09-08 10:51:11 +0200
commit4178623b9f29fbc3e372753f1210dfbd3f34e8b2 (patch)
treed43929c184bea832bedbb0407ceb6e7b5a2b523e /tools
parent9ca67642ed3561ec3c1d3bfc633a12005eaf4708 (diff)
Changes: messageid-check: add a few more source packages to scan
RevBy: TrustMe
Diffstat (limited to 'tools')
-rwxr-xr-xtools/messageid-check14
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/messageid-check b/tools/messageid-check
index b0a5ca1b..b07896d0 100755
--- a/tools/messageid-check
+++ b/tools/messageid-check
@@ -116,7 +116,7 @@ my @sourcePackagesToDownloadAndScan = (
"calc",
"caldav-plugin",
"calendar",
- "calendar-plugin-facebook",
+# "calendar-plugin-facebook",
"call-history",
"call-ui",
"camera-ui",
@@ -133,6 +133,7 @@ my @sourcePackagesToDownloadAndScan = (
"contacts",
"contacts-application",
"contentmanager",
+ "contextkit-maemo",
"cp-ombservice",
"csd-trace-ui",
"crash-reporter",
@@ -175,6 +176,7 @@ my @sourcePackagesToDownloadAndScan = (
"libresourceqt",
"libsaveas",
"libshare-ui",
+ "libmusicsuitesettings",
"libtimepicker",
"libvideosettings",
"libvsvideowidget",
@@ -186,6 +188,7 @@ my @sourcePackagesToDownloadAndScan = (
"mcompositor",
"mcontrolpanel-telecoilapplet",
"mediaextension-interfaces",
+ "mediaextensioninterfaces-examples",
"media-suite-lib",
"meegocertman-extn",
"meego-im-framework",
@@ -217,14 +220,17 @@ my @sourcePackagesToDownloadAndScan = (
"qmsystem-demo",
"recipients-editor",
"signon-ui",
+ "smartsearch",
"sm-common-utils",
"socialprovider-ovi",
"sync-app",
"syncshare-test-app",
+ "sync-app-nokia",
"sync-ui",
"system-ui",
"systemui-applets",
"systemui-applets-ui-tests",
+ "telepathy-nokiamessaging",
"transfer-ui",
"userguide",
"userguide-ui-tests",
@@ -567,10 +573,11 @@ sub checkListOfSourcePackagesDependingOnLibmeegotouch {
}
}
if ($#missingSourcePackages >= 0) {
- printf STDERR "The following source packages have binary packages depending on libmeegotouch but are not included in the list of packages to download and scan and are not explicitely ignore either:\n";
+ printf STDERR "The following source packages have binary packages depending on libmeegotouch but are not included in the list of packages to download and scan and are not explicitely ignored either:\n";
for my $missingPackage (@missingSourcePackages) {
printf STDERR "missing source package: %s\n", $missingPackage;
}
+ printf STDERR "Before you continue running this script, add the missing packages either to the list of packages to scan or to the list of packages to ignore.";
myExit (1);
}
}
@@ -1131,8 +1138,9 @@ EOF
$package =~ s/\.tar\.gz//g;
$sourcePackagesScannedList .= "<li>$package</li>\n";
}
+ my $numberOfSourcePackagesScanned = $#sourcePackagesScanned + 1;
$htmlOutIdsFromSourcePackagesDetail .= <<"EOF";
- List of source packages scanned:
+ List of source packages scanned (number of packages scanned: $numberOfSourcePackagesScanned):
<ul>
$sourcePackagesScannedList
</ul>