]> git.saurik.com Git - apt.git/commitdiff
enable the split out of LongDescriptions per default in the testcases
authorDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 25 Jan 2011 11:39:42 +0000 (12:39 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 25 Jan 2011 11:39:42 +0000 (12:39 +0100)
test/integration/framework
test/integration/run-tests

index 5b83e7519e33ab719dfea627f34f9fd7263b8037..b956676702e96081a48cc97f96f999d7cb6c63c7 100644 (file)
@@ -221,7 +221,7 @@ buildsimplenativepackage() {
        fi
        local BUILDDIR=incoming/${NAME}-${VERSION}
 
-       msgninfo "Build package ${NAME} in ${VERSIOM} for ${RELEASE} in ${DISTSECTION}… "
+       msgninfo "Build package ${NAME} in ${VERSION} for ${RELEASE} in ${DISTSECTION}… "
        mkdir -p $BUILDDIR/debian/source
        echo "* most suckless software product ever" > ${BUILDDIR}/FEATURES
        echo "#!/bin/sh
@@ -319,6 +319,8 @@ Default {
        Packages::Compress ". gzip bzip2 lzma";
        Sources::Compress ". gzip bzip2 lzma";
        Contents::Compress ". gzip bzip2 lzma";
+       Translation::Compress ". gzip bzip2 lzma";
+       LongDescription "false";
 };
 TreeDefault {
        Directory "pool/";
@@ -433,6 +435,9 @@ generatereleasefiles() {
        msgninfo "\tGenerate Release files… "
        local DATE="${1:-now}"
        if [ -e aptarchive/dists ]; then
+               for dir in $(find ./aptarchive/dists -mindepth 3 -maxdepth 3 -type d -name 'i18n'); do
+                       aptftparchive -qq release $dir -o APT::FTPArchive::Release::Patterns::='Translation-*' > $dir/Index
+               done
                for dir in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
                        local CODENAME="$(echo "$dir" | cut -d'/' -f 4)"
                        aptftparchive -qq release $dir -o APT::FTPArchive::Release::Suite="${CODENAME}" -o APT::FTPArchive::Release::Codename="${CODENAME}" | sed -e '/0 Release$/ d' > $dir/Release # remove the self reference
index 5644f0a05ddfeb8198111341a7c5a31d85e89818..7314e6b6113a120d8d2b820539c18cab4838d875 100755 (executable)
@@ -5,7 +5,7 @@ DIR=$(readlink -f $(dirname $0))
 if [ "$1" = "-q" ]; then
        export MSGLEVEL=2
 elif [ "$1" = "-v" ]; then
-       export MSGLEVEL=5
+       export MSGLEVEL=4
 fi
 for testcase in $(run-parts --list $DIR | grep '/test-'); do
        if [ "$1" = "-q" ]; then