diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index faf0c0d9..f0938d1e 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -197,10 +197,12 @@ update_pkg_sets() { CII=$(mktemp --tmpdir=$TEMPDIR pkg-sets-XXXXXXXXX -u) git clone https://github.com/linuxfoundation/cii-census.git $CII csvtool -t ',' col 1 $CII/results.csv | grep -v "project_name" > $TMPFILE + MISSES="" # convert binary packages into source packages for i in $(cat $TMPFILE) ; do - chdist --data-dir=$CHPATH apt-cache $DISTNAME show $i >> ${TMPFILE2} || echo $i + chdist --data-dir=$CHPATH apt-cache $DISTNAME show $i >> ${TMPFILE2} || MISSES="$i $MISSES" done + echo "The following unknown packages have been ignored: $MISSES" mv ${TMPFILE2} $TMPFILE convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[9]}.pkgset |