rpm id | test | status | message | |
---|---|---|---|---|
![]() |
CardManager-3-alt1_14jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/CardManager.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
CardManager-3-alt1_14jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
GMT-6.0.0-alt1_3.x86_64 | unsafe-tmp-usage-in-scripts | fail | The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/bin/gmt_shell_functions.sh: $ grep -A5 -B5 /tmp/ /usr/bin/gmt_shell_functions.sh cat <<- EOF > doc.kml |
![]() |
GMT-common-6.0.0-alt1_3.noarch | unsafe-tmp-usage-in-scripts | fail | The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/share/gmt/tools/gmt_prepmex.sh: $ grep -A5 -B5 /tmp/ /usr/share/gmt/tools/gmt_prepmex.sh # First get a reliable absolute path to the bundle's top directory pushd `dirname $0` > /dev/null BUNDLEDIR=`pwd | sed -e sB/Contents/Resources/share/toolsBBg` popd > /dev/null # Set path to the new gmt installation MEXGMT5DIR=/tmp/$$/gmt # Set path to additional subdirectories MEXLIBDIR=$MEXGMT5DIR/lib MEXINCDIR=$MEXGMT5DIR/include MEXSHADIR=$MEXGMT5DIR/share MEXBINDIR=$MEXGMT5DIR/bin -- cp -r etc usr $MEXBINDIR # Now copy the lib files printf "gmt_prepmex.sh: Copy and rename libraries\n" >&2 cd $BUNDLEDIR/Contents/Resources/lib # Find a list of all libs shipped with the OSX bundle, except our own: ls *.dylib | egrep -v 'libgmt.dylib|libpostscriptlight.dylib' > /tmp/l.lis # For each, duplicate into /opt/gmt but add a leading X to each name while read lib; do new=`echo $lib | awk '{printf "libX%s\n", substr($1,4)}'` cp $lib $MEXLIBDIR/$new done < /tmp/l.lis # Copy the supplement shared plugin cp gmt/plugins/supplements.so $MEXLIBDIR/gmt/plugins cd $MEXLIBDIR ls *.dylib > /tmp/l.lis printf "gmt_prepmex.sh: Rebaptize libraries\n" >&2 # For all libs in $MEXLIBDIR, change internal references to contain the leading "X" while read lib; do otool -L $lib | grep executable_path | awk '{print $1}' > /tmp/t.lis let k=1 while read old; do new=`echo $old | awk -F/ '{printf "libX%s\n", substr($NF,4)}'` if [ $k -eq 1 ]; then # Do the id change was=`echo $lib | awk -F/ '{print substr($1,4)}'` install_name_tool -id /opt/gmt/lib/$new $lib else install_name_tool -change $old /opt/gmt/lib/$new $lib fi let k=k+1 done < /tmp/t.lis done < /tmp/l.lis # Set links to the new libs ln -s libXgmt.dylib libgmt.dylib ln -s libXpostscriptlight.dylib libpostscriptlight.dylib ln -s libXgmt.6.dylib libXgmt.dylib ln -s libXpostscriptlight.6.dylib libXpostscriptlight.dylib -- fi fi # Do plugin supplement separately since not called lib* cd gmt/plugins otool -L supplements.so | grep executable_path | awk '{print $1}' > /tmp/t.lis let k=1 while read old; do new=`echo $old | awk -F/ '{printf "libX%s\n", substr($NF,4)}'` install_name_tool -change $old /opt/gmt/lib/$new supplements.so let k=k+1 done < /tmp/t.lis # Do bin dir cd $MEXBINDIR otool -L gmt | grep executable_path | awk '{print $1}' > /tmp/t.lis let k=1 while read old; do new=`echo $old | awk -F/ '{printf "libX%s\n", substr($NF,4)}'` install_name_tool -change $old /opt/gmt/lib/$new gmt let k=k+1 done < /tmp/t.lis chmod -R ugo+r $MEXGMT5DIR printf "gmt_prepmex.sh: Install /opt/gmt\n" >&2 sudo cp -fpR $MEXGMT5DIR /opt rm -rf /tmp/$$ cd $here version=`/opt/gmt/bin/gmt-config --version` # Report cat << EOF >&2 gmt_prepmex.sh: Made updated GMT $version installation in /opt/gmt Found error in /usr/share/gmt/tools/gmt_make_custom_code.sh: $ grep -A5 -B5 /tmp/ /usr/share/gmt/tools/gmt_make_custom_code.sh # Make sure we get both upper- and lower-case versions of the tag U_TAG=`echo $LIB | tr '[a-z]' '[A-Z]'` L_TAG=`echo $LIB | tr '[A-Z]' '[a-z]'` # Look in current dir grep "#define THIS_MODULE_LIB" *.c | awk -F: '{print $1}' | sort > /tmp/tmp.lis rm -f /tmp/NAME.lis /tmp/LIB.lis /tmp/PURPOSE.lis /tmp/KEYS.lis /tmp/all.lis while read program; do grep "#define THIS_MODULE_CLASSIC_NAME" $program | awk '{print $3}' | sed -e 's/"//g' >> /tmp/NAME.lis grep "#define THIS_MODULE_LIB" $program | awk '{print $3}' | sed -e 's/"//g' >> /tmp/LIB.lis grep "#define THIS_MODULE_PURPOSE" $program | sed -e 's/#define THIS_MODULE_PURPOSE//g' | awk '{print $0}' >> /tmp/PURPOSE.lis grep "#define THIS_MODULE_KEYS" $program | sed -e 's/#define THIS_MODULE_KEYS//g' | awk '{print $0}' >> /tmp/KEYS.lis done < /tmp/tmp.lis # Prepend group+name so we can get a list sorted on group name then individual programs paste /tmp/LIB.lis /tmp/NAME.lis | awk '{printf "%s%s|%s\n", $1, $2, $2}' > /tmp/SORT.txt paste /tmp/SORT.txt /tmp/LIB.lis /tmp/PURPOSE.lis /tmp/KEYS.lis | sort -k1 > /tmp/SORTED.txt awk -F"|" '{print $2}' /tmp/SORTED.txt > /tmp/$LIB.txt rm -f /tmp/tmp.lis /tmp/NAME.lis /tmp/LIB.lis /tmp/PURPOSE.lis /tmp/KEYS.lis /tmp/SORTED.txt /tmp/SORT.txt # Extract the extension purpose string from CMakeLists.txt if [ -f CMakeLists.txt ]; then LIB_STRING=`grep LIB_STRING CMakeLists.txt | awk -F= '{print $NF}'` else -- /ALT /bin /boot /dev /etc /home /lib /lib64 /libx32 /media /mnt /opt /proc /root /run /sbin /selinux /srv /sys /tmp /usr /var Declaration modifiers for DLL support (MSC et al) etc/ usr/ #include "declspec.h" /ALT /bin /boot /dev /etc /home /lib /lib64 /libx32 /media /mnt /opt /proc /root /run /sbin /selinux /srv /sys /tmp /usr /var Prototypes of all modules in the GMT ${L_TAG} library etc/ usr/ EOF gawk '{printf "EXTERN_MSC int GMT_%s (void *API, int mode, void *args);\n", $1;}' /tmp/$LIB.txt >> ${FILE_CUSTOM_MODULE_H} cat << EOF >> ${FILE_CUSTOM_MODULE_H} /ALT /bin /boot /dev /etc /home /lib /lib64 /libx32 /media /mnt /opt /proc /root /run /sbin /selinux /srv /sys /tmp /usr /var Pretty print all modules in the GMT ${L_TAG} library and their purposes etc/ usr/ EXTERN_MSC void gmt_${L_TAG}_module_show_all (void *API); /ALT /bin /boot /dev /etc /home /lib /lib64 /libx32 /media /mnt /opt /proc /root /run /sbin /selinux /srv /sys /tmp /usr /var List all modules in the GMT ${L_TAG} library to stdout etc/ usr/ -- gawk ' BEGIN { FS = "\t"; } { printf "\t{\"%s\", \"%s\", %s, %s},\n", $1, $2, $3, $4; }' /tmp/$LIB.txt >> ${FILE_CUSTOM_MODULE_C} cat << EOF >> ${FILE_CUSTOM_MODULE_C} {NULL, NULL, NULL, NULL} /ALT /bin /boot /dev /etc /home /lib /lib64 /libx32 /media /mnt /opt /proc /root /run /sbin /selinux /srv /sys /tmp /usr /var last element == NULL detects end of array etc/ usr/ }; EOF |
![]() |
Mars-4.5-alt3_10jpp8.noarch | altlinux-java-forbidden-requires | fail | The package has JVM-specific Requires: java-1.8.0-openjdk. Those requires are often due to packaging errors and also specifically forbidden by Java Packageing Policy. If you really really need it, write it in more indirect way. |
![]() |
OpenStego-0.7.3-alt1_5jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/openstego.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
OpenStego-0.7.3-alt1_5jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
ThePEG-gui-1.5.0-alt3.3.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/ThePEG.desktop: hint: value "Education;Science;Physics;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
X-multiseat-preinit-0.02-alt1.noarch | init-but-no-native-systemd | info | The package have SysV init script(s) but no native systemd files. |
![]() |
abe-1.1-alt5_33.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
acheck-0.5.4-alt1_0.noarch | altlinux-find-lang-mo | warn | Language specific files in /usr/share/locale should be marked, for example, using %find_lang. See http://www.altlinux.org/FindLangPolicy for details. |
![]() |
adanaxisgpl-1.2.5-alt4_31.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
adobe-mappings-cmap-devel-20171205-alt1_6.noarch | altlinux-policy-rpm-macros-packaging | warn | package contains rpm macro files in /etc/rpm/macros.d/. package name should be rpm-build-* or rpm-macros-* according to http://www.altlinux.org/Drafts/RPMMacrosPackaging |
![]() |
adobe-mappings-pdf-devel-20180407-alt1_4.noarch | altlinux-policy-rpm-macros-packaging | warn | package contains rpm macro files in /etc/rpm/macros.d/. package name should be rpm-build-* or rpm-macros-* according to http://www.altlinux.org/Drafts/RPMMacrosPackaging |
![]() |
alevt-1.6.2-alt2_29.src | requires-ImageMagick | info | Dependency on ImageMagick (compat package) found. It probably should be replaced with more specific dependency like /usr/bin/convert or ImageMagick-tools, or it can be already autodetected by findreq-shell. |
![]() |
alevt-1.6.2-alt2_29.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/alevt.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
alevt-1.6.2-alt2_29.x86_64 | freedesktop-desktop | warn | desktop-file-validate utility exited abnormally with the following message(s): /usr/share/applications/alevt.desktop: error: (will be fatal in the future): value item "Video" in key "Categories" in group "Desktop Entry" requires another category to be present among the following categories: AudioVideo |
![]() |
alevt-1.6.2-alt2_29.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
alienblaster-1.1.0-alt2_21.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
alleyoop-0.9.8-alt1_9.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/alleyoop.desktop: hint: value item "GNOME" in key "Categories" in group "Desktop Entry" can be extended with another category among the following categories: GTK |
![]() |
alltray-0.71b-alt2_14.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/alltray.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
alltray-0.71b-alt2_14.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
altlinux-freedesktop-menu-0.67-alt1.src | beehive-log-non-strict-dependency-i586 | info | altlinux-freedesktop-menu-xfce: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-enlightenment: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-lxde: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-mate: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-gnome3: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-cinnamon: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-kde4: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-generic: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-xfce: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-enlightenment: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-lxde: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-mate: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-gnome3: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-cinnamon: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-kde4: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-generic: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-xfce: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-enlightenment: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-lxde: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-mate: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-gnome3: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-cinnamon: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-kde4: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-generic: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu |
![]() |
altlinux-freedesktop-menu-0.67-alt1.src | beehive-log-non-strict-dependency-x86_64 | info | altlinux-freedesktop-menu-xfce: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-enlightenment: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-lxde: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-mate: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-gnome3: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-cinnamon: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-kde4: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-generic: non-strict dependency on altlinux-freedesktop-menu-nested-menu altlinux-freedesktop-menu-xfce: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-enlightenment: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-lxde: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-mate: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-gnome3: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-cinnamon: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-kde4: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-generic: non-strict dependency on altlinux-freedesktop-menu-shallow-menu altlinux-freedesktop-menu-xfce: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-enlightenment: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-lxde: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-mate: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-gnome3: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-cinnamon: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-kde4: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu altlinux-freedesktop-menu-generic: non-strict dependency on altlinux-freedesktop-menu-mate-like-menu |
![]() |
altlinux-freedesktop-menu-0.67-alt1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/rpm/altlinux-freedesktop-menu.filetrigger |
![]() |
altlinux-freedesktop-menu-0.67-alt1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/rpm/altlinux-freedesktop-menu.filetrigger |
![]() |
altlinux-freedesktop-menu-gnome3-0.67-alt1.noarch | rpm-obsolete-live-package | info | The package obsoletes the package gnome-menus-default-3.36.0-alt1.noarch, but the package gnome-menus-default-3.36.0-alt1.noarch is still alive and in the repository. Ask its maintainer to remove it, or, if it should not be removed, remove the Obsoletes: tag. Do not forget to add explicit conflicts with the other package if nessessary. |
![]() |
altlinux-freedesktop-menu-kde4-0.67-alt1.noarch | rpm-obsolete-live-package | info | The package obsoletes the package kde4-menu-original-0.04-alt1.noarch, but the package kde4-menu-original-0.04-alt1.noarch is still alive and in the repository. Ask its maintainer to remove it, or, if it should not be removed, remove the Obsoletes: tag. Do not forget to add explicit conflicts with the other package if nessessary. |
![]() |
amoebax-0.2.1-alt1_13.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
amtterm-1.6-alt1_5.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/gamt.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
amtterm-1.6-alt1_5.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/gamt.desktop: hint: value "GTK;System;Network;Utility;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu /usr/share/applications/gamt.desktop: hint: value "GTK;System;Network;Utility;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
antlr3-C-3.4-alt1_30jpp8.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
apache-ivy-2.4.0-alt1_16jpp8.noarch | java-pom | warn | /usr/share/maven-poms/ivy.pom: pom is invalid (modelVersion not found). /usr/share/maven-poms/apache-ivy/ivy.pom: pom is invalid (modelVersion not found). |
![]() |
aqsis-1.8.2-alt4_39.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
arpage-0.3.3-alt3_25.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/arpage/AUTHORS /usr/share/doc/arpage/COPYING /usr/share/doc/arpage/ChangeLog /usr/share/doc/arpage/INSTALL /usr/share/doc/arpage/NEWS /usr/share/doc/arpage/README |
![]() |
arpage-0.3.3-alt3_25.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/arpage/AUTHORS /usr/share/doc/arpage/COPYING /usr/share/doc/arpage/ChangeLog /usr/share/doc/arpage/INSTALL /usr/share/doc/arpage/NEWS /usr/share/doc/arpage/README |
![]() |
asl-1.42-alt2_0.38.bld134.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
asoundconf-1.2-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
asoundconf-gtk-1.2-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
aspell-ru-rk-1.1-alt8.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
aterm-1.0.1-alt4.qa2.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/aterm.desktop: warning: value "An rxvt-based terminal emulator for X Window System" for key "Comment" in group "Desktop Entry" looks redundant with value "An rxvt-based terminal emulator for X Window System" of key "GenericName" |
![]() |
autodafe-0.1-alt2_6.x86_64 | rpm-filesystem-conflict-file-file | warn | File /usr/bin/adc conflicts with the package Little-Wire-examples-1.3-alt1.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
autoimports-cross-requires-1.0.0-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
autojump-22.5.3-alt1_1.noarch | file-in-usr-marked-as-conffile | warn | Files below /usr may not be marked as conffiles, since /usr might be mounted read-only and thus, the local system administrator would not have a chance to modify this configuration file. |
![]() |
autojump-fish-22.5.3-alt1_1.noarch | file-in-usr-marked-as-conffile | warn | Files below /usr may not be marked as conffiles, since /usr might be mounted read-only and thus, the local system administrator would not have a chance to modify this configuration file. |
![]() |
autojump-zsh-22.5.3-alt1_1.noarch | file-in-usr-marked-as-conffile | warn | Files below /usr may not be marked as conffiles, since /usr might be mounted read-only and thus, the local system administrator would not have a chance to modify this configuration file. |
![]() |
autorepo-altnode-admin-scripts-0.06-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/autorepo-altnode-admin-setup-build-node |
![]() |
autorepo-altnode-admin-scripts-0.06-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
autorepo-altnode-repocop-0.26-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/repocop-daily |
![]() |
autorepo-altnode-repocop-tasktest-0.26-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/repocop-tasktest-test |
![]() |
autorepo-scripts-0.617-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/autorepo-rm-out-dups /usr/bin/autorepo-ls-bad-ugly /usr/bin/autorepo-check-health /usr/bin/autorepo-merge-repositories /usr/bin/autorepo-relink-srpms /usr/bin/autorepo-check-health-binary /usr/bin/autorepo-mass-build /usr/bin/autorepo-archive /usr/bin/autorepo-genrepo /usr/bin/autorepo-parallel-build /usr/bin/autorepo-merge-good /usr/bin/autorepo-build-sh-functions /usr/bin/autorepo-gb-x-gen-ci |
![]() |
avoision-1.1-alt1_11.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
azureus-5.7.6.0-alt1_9jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
batik-slideshow-1.10-alt1_4jpp8.noarch | rpm-filesystem-conflict-file-file | warn | File /usr/bin/slideshow conflicts with the package racket-7.3-alt2.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
blackbox-0.74-alt1.x86_64 | altlinux-policy-debian-menu-is-deprecated | warn | package contains deprecated /usr/lib/menu/ files. Please, convert to .desktop files |
![]() |
blackbox-0.74-alt1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
blackbox-0.74-alt1.x86_64 | rpm-filesystem-conflict-file-file | warn | Files /usr/share/icons/hicolor/16x16/apps/blackbox.png /usr/share/icons/hicolor/32x32/apps/blackbox.png /usr/share/icons/hicolor/48x48/apps/blackbox.png conflict with the package tatham-puzzles-20180227-alt1.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
blobwars-2.00-alt2.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
boswars-2.7-alt1_22.svn160110.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
bsd-games-2.17-alt2_58.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
bsh-2.0-alt1_16.b6jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/bsh-desktop.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
bsh-2.0-alt1_16.b6jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
btanks-0.9.8083-alt9.src | requires-ImageMagick | info | Dependency on ImageMagick (compat package) found. It probably should be replaced with more specific dependency like /usr/bin/convert or ImageMagick-tools, or it can be already autodetected by findreq-shell. |
![]() |
buoh-0.8.2-alt2_9.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/fedora-buoh.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
cave9-0.4-alt4_17.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
cdogs-sdl-0.7.3-alt1_1.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
coan-6.0.1-alt2_20.x86_64 | uncompressed-manpages | info | Package contains uncompressed manual pages. |
![]() |
color-filesystem-1-alt3.noarch | missing-url | info | Missing Url: in a package. |
![]() |
colordiff-1.0.19-alt1_1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/cdiff |
![]() |
colossus-0.14.0-alt1_13jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
coquillo-2.0.1-alt1_1.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
csmash-0.6.6-alt4_32.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
dict-dalf-0.1-alt2.noarch | missing-url | info | Missing Url: in a package. |
![]() |
dict-jargon-4.3.1-alt3.noarch | invalid-url | warn | Package has invalid Url:. It looks like a protocol part (http:,ftp:,etc.) is missing. |
![]() |
doc-gnu-ru-1.0-alt3.qa1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /doc-gnu-ru-philosophy/gnu-sw-ru.dsc /doc-gnu-ru-philosophy/gnu-sw-ru.tar /doc-gnu-ru-philosophy/gpl.dsc /doc-gnu-ru-philosophy/gpl.tar /doc-gnu-ru-philosophy/linux-and-gnu.dsc /doc-gnu-ru-philosophy/linux-and-gnu.tar /doc-gnu-ru-philosophy/manifesto.dsc /doc-gnu-ru-philosophy/manifesto.tar /doc-gnu-ru-philosophy/right-to-head.dsc /doc-gnu-ru-philosophy/right-to-head.tar /doc-gnu-ru-philosophy/why-not-lgpl.dsc /doc-gnu-ru-philosophy/why-not-lgpl.tar /doc-gnu-ru-philosophy/x.dsc /doc-gnu-ru-philosophy/x.tar |
![]() |
doc-gnu-ru-1.0-alt3.qa1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /doc-gnu-ru-philosophy/gnu-sw-ru.dsc /doc-gnu-ru-philosophy/gnu-sw-ru.tar /doc-gnu-ru-philosophy/gpl.dsc /doc-gnu-ru-philosophy/gpl.tar /doc-gnu-ru-philosophy/linux-and-gnu.dsc /doc-gnu-ru-philosophy/linux-and-gnu.tar /doc-gnu-ru-philosophy/manifesto.dsc /doc-gnu-ru-philosophy/manifesto.tar /doc-gnu-ru-philosophy/right-to-head.dsc /doc-gnu-ru-philosophy/right-to-head.tar /doc-gnu-ru-philosophy/why-not-lgpl.dsc /doc-gnu-ru-philosophy/why-not-lgpl.tar /doc-gnu-ru-philosophy/x.dsc /doc-gnu-ru-philosophy/x.tar |
![]() |
dopewars-1.5.12-alt1_20.1033svn.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
e16-1.0.11-alt4.x86_64 | altlinux-policy-debian-menu-is-deprecated | warn | package contains deprecated /usr/lib/menu/ files. Please, convert to .desktop files |
![]() |
electric-8.09-alt1_18jpp8.noarch | freedesktop-categories | fail | Main Categories consist of those categories that every conforming desktop environment MUST support.(http://standards.freedesktop.org/menu-spec/latest/apa.html). None found in /usr/share/applications/electric.desktop. please, fix. |
![]() |
electric-8.09-alt1_18jpp8.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/electric.desktop: hint: value "Electronics;Engineering;" for key "Categories" in group "Desktop Entry" does not contain a registered main category; application might only show up in a "catch-all" section of the application menu |
![]() |
electric-8.09-alt1_18jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
emacs-base-X11-0.0.1-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
emacs-mode-auctex-11.87-alt3.src | altlinux-policy-tex-rpm-build-texmf | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) packages that install files to /usr/share/texmf should BuildRequires(pre): rpm-build-texmf for the dependency magic to work. |
![]() |
emacs-mode-auctex-doc-11.87-alt3.noarch | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
environment-modules-4.5.3-alt1_1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /etc/profile.d/modules.csh /etc/profile.d/modules.sh /usr/bin/modulecmd |
![]() |
environment-modules-4.5.3-alt1_1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /etc/profile.d/modules.csh /etc/profile.d/modules.sh /usr/bin/modulecmd |
![]() |
environment-modules-4.5.3-alt1_1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
environment-modules-4.5.3-alt1_1.x86_64 | unsafe-tmp-usage-in-scripts | fail | The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/share/Modules/bin/add.modules: $ grep -A5 -B5 /tmp/ /usr/share/Modules/bin/add.modules $3 > $2 } # find if certain of the dot files have load lines already findload() { grep "^[ ]*module[ ]*load" $1 > /tmp/load.$$ } # put common stuff derivatives here $1=.dot_file $2=action $3=shell(csh,sh) $4=skel alternative shdot() { if [ -f $1 ] then /bin/cat <> $1 else /bin/cat >> $1 < $1 <> $1 else /bin/cat >> $1 <> $1 <> $1 && /bin/rm /tmp/$1.$$ elif [ x$2 = xalias ] then /bin/cat <> $1 && /bin/rm /tmp/$1.$$ fi else /bin/echo "Had problems with your $1" fi else /bin/cat < /dev/null } # process files in $HOME cd $HOME if [ -r .bash_profile ]; then |
![]() |
fbg-0.9.1-alt3_13.src | requires-ImageMagick | info | Dependency on ImageMagick (compat package) found. It probably should be replaced with more specific dependency like /usr/bin/convert or ImageMagick-tools, or it can be already autodetected by findreq-shell. |
![]() |
fbg2-0.4-alt3_18.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
fcitx-libpinyin-0.5.3-alt1_5.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
festival-2.5-alt0.4.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /etc/emacs/site-start.d/50festival.el |
![]() |
festival-2.5-alt0.4.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /etc/emacs/site-start.d/50festival.el |
![]() |
fheroes2-0.8.2-alt1.20201004.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
flaw-1.3.2a-alt2_18.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
flaw-1.3.2a-alt2_18.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
fontpackages-1.44-alt6_24.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/compare-repo-font-audit /usr/bin/filter-fontlint /usr/bin/filter-langcover /usr/bin/filter-unicover /usr/bin/fix-font-naming /usr/bin/repo-font-audit /usr/bin/ttfcoverage /usr/share/fontpackages/core-fonts-report /usr/share/fontpackages/font-links-report /usr/share/fontpackages/fonts-report /usr/share/fontpackages/process-fc-query /usr/share/fontpackages/repo-font-audit.mk /usr/share/fontpackages/test-info |
![]() |
fontpackages-1.44-alt6_24.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/compare-repo-font-audit /usr/bin/filter-fontlint /usr/bin/filter-langcover /usr/bin/filter-unicover /usr/bin/fix-font-naming /usr/bin/repo-font-audit /usr/bin/ttfcoverage /usr/share/fontpackages/core-fonts-report /usr/share/fontpackages/font-links-report /usr/share/fontpackages/fonts-report /usr/share/fontpackages/process-fc-query /usr/share/fontpackages/repo-font-audit.mk /usr/share/fontpackages/test-info |
![]() |
fonts-bitmap-iso8859-2-100dpi-1.0-alt2_36.noarch | fonts.alias | fail | FATAL: /tmp/.private/repocop/repocop-run.3HbENBgr/chroot/usr/share/fonts/iso8859-2/100dpi/fonts.alias: not found -biznet-fotinos-bold-i-normal-sans-0-0-100-100-p-0-iso8859-2 for alias -b&h-lucida-bold-i-normal-sans-0-0-100-100-p-0-iso8859-2 not found -biznet-fotinos-bold-r-normal-sans-0-0-100-100-p-0-iso8859-2 for alias -b&h-lucida-bold-r-normal-sans-0-0-100-100-p-0-iso8859-2 not found -biznet-fotinos-medium-i-normal-sans-0-0-100-100-p-0-iso8859-2 for alias -b&h-lucida-medium-i-normal-sans-0-0-100-100-p-0-iso8859-2 not found -biznet-fotinos-medium-r-normal-sans-0-0-100-100-p-0-iso8859-2 for alias -b&h-lucida-medium-r-normal-sans-0-0-100-100-p-0-iso8859-2 not found -biznet-fotinostypewriter-bold-r-normal-sans-0-0-100-100-m-0-iso8859-2 for alias -b&h-lucidatypewriter-bold-r-normal-sans-0-0-100-100-m-0-iso8859-2 not found -biznet-fotinostypewriter-medium-r-normal-sans-0-0-100-100-m-0-iso8859-2 for alias -b&h-lucidatypewriter-medium-r-normal-sans-0-0-100-100-m-0-iso8859-2 |
![]() |
fonts-bitmap-iso8859-2-75dpi-1.0-alt2_36.noarch | fonts.alias | fail | FATAL: /tmp/.private/repocop/repocop-run.mTcVZf5a/chroot/usr/share/fonts/iso8859-2/75dpi/fonts.alias: not found -biznet-fotinos-bold-i-normal-sans-0-0-75-75-p-0-iso8859-2 for alias -b&h-lucida-bold-i-normal-sans-0-0-75-75-p-0-iso8859-2 not found -biznet-fotinos-bold-r-normal-sans-0-0-75-75-p-0-iso8859-2 for alias -b&h-lucida-bold-r-normal-sans-0-0-75-75-p-0-iso8859-2 not found -biznet-fotinos-medium-i-normal-sans-0-0-75-75-p-0-iso8859-2 for alias -b&h-lucida-medium-i-normal-sans-0-0-75-75-p-0-iso8859-2 not found -biznet-fotinos-medium-r-normal-sans-0-0-75-75-p-0-iso8859-2 for alias -b&h-lucida-medium-r-normal-sans-0-0-75-75-p-0-iso8859-2 not found -biznet-fotinostypewriter-bold-r-normal-sans-0-0-75-75-m-0-iso8859-2 for alias -b&h-lucidatypewriter-bold-r-normal-sans-0-0-75-75-m-0-iso8859-2 not found -biznet-fotinostypewriter-medium-r-normal-sans-0-0-75-75-m-0-iso8859-2 for alias -b&h-lucidatypewriter-medium-r-normal-sans-0-0-75-75-m-0-iso8859-2 |
![]() |
fonts-bitmap-japanese-0.20080710-alt2_21.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-bitmap-knm-new-fixed-1.1-alt4_24.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-bitmap-mona-2.90-alt1_23.noarch | fonts.alias | fail | FATAL: /tmp/.private/repocop/repocop-run.opg3RhGr/chroot/usr/share/fonts/bitmap/mona/fonts.alias: not found -adobe-helvetica-medium-r-normal--24-240-75-75-p-130-iso8859-1 for alias -mona-gothic-medium-r-normal--24-240-75-75-p-130-iso8859-1 not found -adobe-helvetica-medium-r-normal--18-180-75-75-p-98-iso8859-1 for alias -mona-gothic-medium-r-normal--18-180-75-75-p-98-iso8859-1 not found -adobe-helvetica-medium-r-normal--10-100-75-75-p-56-iso8859-1 for alias -mona-gothic-medium-r-normal--10-100-75-75-p-56-iso8859-1 not found -adobe-helvetica-bold-r-normal--24-240-75-75-p-138-iso8859-1 for alias -mona-gothic-bold-r-normal--24-240-75-75-p-138-iso8859-1 not found -adobe-helvetica-bold-r-normal--18-180-75-75-p-103-iso8859-1 for alias -mona-gothic-bold-r-normal--18-180-75-75-p-103-iso8859-1 not found -adobe-helvetica-bold-r-normal--10-100-75-75-p-60-iso8859-1 for alias -mona-gothic-bold-r-normal--10-100-75-75-p-60-iso8859-1 not found -adobe-helvetica-medium-o-normal--24-240-75-75-p-130-iso8859-1 for alias -mona-gothic-medium-i-normal--24-240-75-75-p-130-iso8859-1 not found -adobe-helvetica-medium-o-normal--18-180-75-75-p-98-iso8859-1 for alias -mona-gothic-medium-i-normal--18-180-75-75-p-98-iso8859-1 not found -adobe-helvetica-medium-o-normal--10-100-75-75-p-57-iso8859-1 for alias -mona-gothic-medium-i-normal--10-100-75-75-p-57-iso8859-1 not found -adobe-helvetica-bold-o-normal--24-240-75-75-p-138-iso8859-1 for alias -mona-gothic-bold-i-normal--24-240-75-75-p-138-iso8859-1 not found -adobe-helvetica-bold-o-normal--18-180-75-75-p-104-iso8859-1 for alias -mona-gothic-bold-i-normal--18-180-75-75-p-104-iso8859-1 not found -adobe-helvetica-bold-o-normal--10-100-75-75-p-60-iso8859-1 for alias -mona-gothic-bold-i-normal--10-100-75-75-p-60-iso8859-1 not found -sony-fixed-medium-r-normal--24-230-75-75-c-120-jisx0201.1976-0 for alias -mona-gothic-medium-r-normal--24-230-75-75-p-120-jisx0201.1976-0 not found -kappa-fixed-medium-r-normal--20-190-75-75-c-100-jisx0201.1976-0 for alias -mona-gothic-medium-r-normal--20-190-75-75-p-100-jisx0201.1976-0 not found -sony-fixed-bold-r-normal--24-230-75-75-c-120-jisx0201.1976-0 for alias -mona-gothic-bold-r-normal--24-230-75-75-p-120-jisx0201.1976-0 not found -kappa-fixed-bold-r-normal--20-190-75-75-c-100-jisx0201.1976-0 for alias -mona-gothic-bold-r-normal--20-190-75-75-p-100-jisx0201.1976-0 not found -sony-fixed-medium-i-normal--24-230-75-75-c-120-jisx0201.1976-0 for alias -mona-gothic-medium-i-normal--24-230-75-75-p-120-jisx0201.1976-0 not found -kappa-fixed-medium-i-normal--20-190-75-75-c-100-jisx0201.1976-0 for alias -mona-gothic-medium-i-normal--20-190-75-75-p-100-jisx0201.1976-0 not found -sony-fixed-bold-i-normal--24-230-75-75-c-120-jisx0201.1976-0 for alias -mona-gothic-bold-i-normal--24-230-75-75-p-120-jisx0201.1976-0 not found -kappa-fixed-bold-i-normal--20-190-75-75-c-100-jisx0201.1976-0 for alias -mona-gothic-bold-i-normal--20-190-75-75-p-100-jisx0201.1976-0 not found -jis-fixed-medium-r-normal--24-230-75-75-c-240-jisx0208.1983-0 for alias -mona-gothic-medium-r-normal--24-230-75-75-p-240-jisx0208.1990-0 not found -kappa-mincho-medium-r-normal--20-190-75-75-c-200-jisx0208.1990-0 for alias -mona-gothic-medium-r-normal--20-190-75-75-p-200-jisx0208.1990-0 not found -jis-fixed-bold-r-normal--24-230-75-75-c-240-jisx0208.1983-0 for alias -mona-gothic-bold-r-normal--24-230-75-75-p-240-jisx0208.1990-0 not found -kappa-mincho-bold-r-normal--20-190-75-75-c-200-jisx0208.1990-0 for alias -mona-gothic-bold-r-normal--20-190-75-75-p-200-jisx0208.1990-0 not found -jis-fixed-medium-i-normal--24-230-75-75-c-240-jisx0208.1983-0 for alias -mona-gothic-medium-i-normal--24-230-75-75-p-240-jisx0208.1990-0 not found -kappa-mincho-medium-i-normal--20-190-75-75-c-200-jisx0208.1990-0 for alias -mona-gothic-medium-i-normal--20-190-75-75-p-200-jisx0208.1990-0 not found -jis-fixed-bold-i-normal--24-230-75-75-c-240-jisx0208.1983-0 for alias -mona-gothic-bold-i-normal--24-230-75-75-p-240-jisx0208.1990-0 not found -kappa-mincho-bold-i-normal--20-190-75-75-c-200-jisx0208.1990-0 for alias -mona-gothic-bold-i-normal--20-190-75-75-p-200-jisx0208.1990-0 |
![]() |
fonts-bitmap-taipei-1.2-alt1_22.noarch | fonts.alias | fail | FATAL: /tmp/.private/repocop/repocop-run.JBfXvwY5/chroot/usr/share/fonts/bitmap/taipeifonts/fonts.alias: not found -taipei-fixed-medium-r-normal--16-150-75-75-c-160-big5-0 !ByRPM for alias taipei16 not found -taipei-fixed-medium-r-normal--20-200-75-75-c-200-big5-0 !ByRPM for alias taipeik20 not found -taipei-fixed-medium-r-normal--20-200-75-75-c-200-big5-0 !ByRPM for alias taipeim20 not found -taipei-fixed-medium-r-normal--24-240-75-75-c-240-big5-0 !ByRPM for alias taipeik24 not found -taipei-fixed-medium-r-normal--24-240-75-75-c-240-big5-0 !ByRPM for alias taipeim24 not found taipei16 !ByRPM for alias -taipei-ming-medium-r-normal--16-160-75-75-c-160-big5-0 not found taipeim20 !ByRPM for alias -taipei-ming-medium-r-normal--20-200-75-75-c-200-big5-0 not found taipeim24 !ByRPM for alias -taipei-ming-medium-r-normal--24-240-75-75-c-240-big5-0 not found vga12x24 !ByRPM for alias -vga-fixed-medium-r-normal--24-230-75-75-c-120-iso8859-1 not found -sony-fixed-medium-r-normal--16-120-100-100-c-80-iso8859-1 !ByRPM for alias vga8x16 not found -sony-fixed-medium-r-normal--16-120-100-100-c-80-iso8859-1 !ByRPM for alias 8x16 not found taipei16 !ByRPM for alias -default-ming-medium-r-normal--16-160-72-72-c-160-big5-0 not found taipeim20 !ByRPM for alias -default-ming-medium-r-normal--20-200-72-72-c-200-big5-0 not found taipeim24 !ByRPM for alias -default-ming-medium-r-normal--24-240-72-72-c-240-big5-0 |
![]() |
fonts-ttf-bpg-20120413-alt5_14.src | beehive-log-dependency-needs-epoch-i586 | info | fonts-ttf-bpg-algeti: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-chveulebrivi: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-classic: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-courier: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-courier-s: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dedaena-block: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dejavu-sans: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dejavu-sans-mono: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dejavu-serif: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-elite: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-excelsior: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-excelsior-caps: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-excelsior-condenced: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-glaho: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-gorda: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-ingiri: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-irubaqidze: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-mikhail-stephan: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-mrgvlovani: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-mrgvlovani-caps: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nateli: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nateli-caps: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nateli-condenced: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nino-medium: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nino-medium-cond: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans-medium: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans-modern: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans-regular: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-serif: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-serif-modern: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-ucnobi: dependency on fonts-ttf-bpg-common needs Epoch |
![]() |
fonts-ttf-bpg-20120413-alt5_14.src | beehive-log-dependency-needs-epoch-x86_64 | info | fonts-ttf-bpg-algeti: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-chveulebrivi: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-classic: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-courier: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-courier-s: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dedaena-block: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dejavu-sans: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dejavu-sans-mono: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-dejavu-serif: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-elite: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-excelsior: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-excelsior-caps: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-excelsior-condenced: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-glaho: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-gorda: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-ingiri: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-irubaqidze: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-mikhail-stephan: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-mrgvlovani: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-mrgvlovani-caps: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nateli: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nateli-caps: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nateli-condenced: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nino-medium: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-nino-medium-cond: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans-medium: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans-modern: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-sans-regular: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-serif: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-serif-modern: dependency on fonts-ttf-bpg-common needs Epoch fonts-ttf-bpg-ucnobi: dependency on fonts-ttf-bpg-common needs Epoch |
![]() |
fonts-ttf-chinese-opendesktop-1.6.100-alt1_11.noarch | rpm-filesystem-conflict-file-file | warn | Files /usr/share/ghostscript/conf.d/CIDFnmap.zh_CN /usr/share/ghostscript/conf.d/FAPIcidfmap.zh_CN /usr/share/ghostscript/conf.d/cidfmap.zh_CN conflict with the package ghostscript-chinese-zh_CN-0.4.0-alt1_9.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. Files /usr/share/ghostscript/conf.d/CIDFnmap.zh_TW /usr/share/ghostscript/conf.d/FAPIcidfmap.zh_TW /usr/share/ghostscript/conf.d/cidfmap.zh_TW conflict with the package ghostscript-chinese-zh_TW-0.4.0-alt1_9.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
fonts-ttf-ethiopic-1.0-alt1_17.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-ttf-gnu-freefont-common-20120503-alt1_18.noarch | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
fonts-ttf-google-croscore-arimo-1.31.0-alt1_2.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-ttf-google-croscore-common-1.31.0-alt1_2.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-ttf-google-croscore-cousine-1.31.0-alt1_2.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-ttf-google-croscore-tinos-1.31.0-alt1_2.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-ttf-jomolhari-0.003-alt3_23.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-ttf-mona-sazanami-2.90-alt1_23.noarch | altlinux-policy-rpm-group-should-be-ttf | info | RPM group should be 'System/Fonts/True type'. |
![]() |
fonts-ttf-mona-vlgothic-2.90-alt1_23.noarch | altlinux-policy-rpm-group-should-be-ttf | info | RPM group should be 'System/Fonts/True type'. |
![]() |
fonts-ttf-tifinagh-1.0-alt1_13.noarch | missing-url | info | Missing Url: in a package. |
![]() |
fonts-type1-ctan-cm-lgc-0.5-alt3_20.src | altlinux-policy-tex-rpm-build-texmf | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) packages that install files to /usr/share/texmf should BuildRequires(pre): rpm-build-texmf for the dependency magic to work. |
![]() |
fonts-type1-ctan-kerkis-2.0-alt3_26.src | altlinux-policy-tex-rpm-build-texmf | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) packages that install files to /usr/share/texmf should BuildRequires(pre): rpm-build-texmf for the dependency magic to work. |
![]() |
fonts-type1-cyrillic-1.1-alt1_18.noarch | missing-url | info | Missing Url: in a package. |
![]() |
foomatic-db-4.0.20200826-alt1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/foomatic/db/source/printer/Generic-GDI_Printer.xml /usr/share/foomatic/db/source/printer/HP-LaserJet_1010.xml /usr/share/foomatic/db/source/printer/HP-LaserJet_1012.xml /usr/share/foomatic/db/source/printer/Kyocera-FS-1016MFP.xml /usr/share/foomatic/db/source/printer/Samsung-CLP-610ND.xml |
![]() |
foomatic-db-4.0.20200826-alt1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/foomatic/db/source/printer/Generic-GDI_Printer.xml /usr/share/foomatic/db/source/printer/HP-LaserJet_1010.xml /usr/share/foomatic/db/source/printer/HP-LaserJet_1012.xml /usr/share/foomatic/db/source/printer/Kyocera-FS-1016MFP.xml /usr/share/foomatic/db/source/printer/Samsung-CLP-610ND.xml |
![]() |
frame-2.5.0-alt1_4.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/man/man1/frame-test-x11.1.xz |
![]() |
frame-2.5.0-alt1_4.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/man/man1/frame-test-x11.1.xz |
![]() |
fuse-zfs-0.7.2.2-alt1_14.x86_64 | init-lsb | warn | /etc/rc.d/init.d/zfs-fuse: lsb init header missing. See http://www.altlinux.org/Services_Policy for details. |
![]() |
fvcool-1.04-alt3.x86_64 | init-but-no-native-systemd | info | The package have SysV init script(s) but no native systemd files. |
![]() |
fvcool-1.04-alt3.x86_64 | init-lsb | fail | /etc/rc.d/init.d/fvcool: not systemd compatible: lsb init header missing and fvcool.service is not present. See http://www.altlinux.org/Services_Policy for details. |
![]() |
gamazons-0.83-alt4_19.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/gamazons.desktop: hint: value item "GNOME" in key "Categories" in group "Desktop Entry" can be extended with another category among the following categories: GTK |
![]() |
gamazons-0.83-alt4_19.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
garden-1.0.9-alt1_11.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/garden.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
gdcm-3.0.5-alt1_0.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/python3/site-packages/__pycache__/gdcm.cpython-38.opt-1.pyc /usr/lib/python3/site-packages/__pycache__/gdcm.cpython-38.opt-2.pyc /usr/lib/python3/site-packages/__pycache__/gdcm.cpython-38.pyc /usr/lib/python3/site-packages/__pycache__/gdcmswig.cpython-38.opt-1.pyc /usr/lib/python3/site-packages/__pycache__/gdcmswig.cpython-38.opt-2.pyc /usr/lib/python3/site-packages/__pycache__/gdcmswig.cpython-38.pyc /usr/lib/python3/site-packages/_gdcmswig.so /usr/lib/python3/site-packages/gdcm.py /usr/lib/python3/site-packages/gdcmswig.py /usr/share/gdcm/Examples/CMakeLists.txt /usr/share/gdcm/Examples/Csharp/BasicAnonymizer.cs /usr/share/gdcm/Examples/Csharp/BasicImageAnonymizer.cs /usr/share/gdcm/Examples/Csharp/CMakeLists.txt /usr/share/gdcm/Examples/Csharp/ClinicalTrialIdentificationWorkflow.cs /usr/share/gdcm/Examples/Csharp/CompressLossyJPEG.cs /usr/share/gdcm/Examples/Csharp/DecompressImage.cs /usr/share/gdcm/Examples/Csharp/DecompressImageMultiframe.cs /usr/share/gdcm/Examples/Csharp/DecompressJPEGFile.cs /usr/share/gdcm/Examples/Csharp/DumpCSA.cs /usr/share/gdcm/Examples/Csharp/ExtractEncapsulatedFile.cs /usr/share/gdcm/Examples/Csharp/ExtractImageRegion.cs /usr/share/gdcm/Examples/Csharp/ExtractImageRegionWithLUT.cs /usr/share/gdcm/Examples/Csharp/ExtractOneFrame.cs /usr/share/gdcm/Examples/Csharp/FileAnonymize.cs /usr/share/gdcm/Examples/Csharp/FileChangeTS.cs /usr/share/gdcm/Examples/Csharp/FileChangeTSLossy.cs /usr/share/gdcm/Examples/Csharp/FileStreaming.cs /usr/share/gdcm/Examples/Csharp/GenerateDICOMDIR.cs /usr/share/gdcm/Examples/Csharp/GetArray.cs /usr/share/gdcm/Examples/Csharp/ManipulateFile.cs /usr/share/gdcm/Examples/Csharp/MpegVideoInfo.cs /usr/share/gdcm/Examples/Csharp/NewSequence.cs /usr/share/gdcm/Examples/Csharp/ReformatFile.cs /usr/share/gdcm/Examples/Csharp/RescaleImage.cs /usr/share/gdcm/Examples/Csharp/ScanDirectory.cs /usr/share/gdcm/Examples/Csharp/SendFileSCU.cs /usr/share/gdcm/Examples/Csharp/SimplePrint.cs /usr/share/gdcm/Examples/Csharp/SimplePrintPatientName.cs /usr/share/gdcm/Examples/Csharp/SortImage2.cs /usr/share/gdcm/Examples/Csharp/StandardizeFiles.cs /usr/share/gdcm/Examples/Cxx/CMakeLists.txt /usr/share/gdcm/Examples/Cxx/CStoreQtProgress.cxx /usr/share/gdcm/Examples/Cxx/ChangePrivateTags.cxx /usr/share/gdcm/Examples/Cxx/ChangeSequenceUltrasound.cxx /usr/share/gdcm/Examples/Cxx/CheckBigEndianBug.cxx /usr/share/gdcm/Examples/Cxx/ClinicalTrialAnnotate.cxx /usr/share/gdcm/Examples/Cxx/CompressImage.cxx /usr/share/gdcm/Examples/Cxx/ConvertToQImage.cxx /usr/share/gdcm/Examples/Cxx/CreateARGBImage.cxx /usr/share/gdcm/Examples/Cxx/CreateCMYKImage.cxx /usr/share/gdcm/Examples/Cxx/CreateJPIPDataSet.cxx /usr/share/gdcm/Examples/Cxx/DeriveSeries.cxx /usr/share/gdcm/Examples/Cxx/DiffFile.cxx /usr/share/gdcm/Examples/Cxx/DiscriminateVolume.cxx /usr/share/gdcm/Examples/Cxx/DumpADAC.cxx /usr/share/gdcm/Examples/Cxx/DumpExamCard.cxx /usr/share/gdcm/Examples/Cxx/DumpGEMSMovieGroup.cxx /usr/share/gdcm/Examples/Cxx/DumpImageHeaderInfo.cxx /usr/share/gdcm/Examples/Cxx/DumpPhilipsECHO.cxx /usr/share/gdcm/Examples/Cxx/DumpSiemensBase64.cxx /usr/share/gdcm/Examples/Cxx/DumpToSQLITE3.cxx /usr/share/gdcm/Examples/Cxx/DumpToshibaDTI.cxx /usr/share/gdcm/Examples/Cxx/DumpVisusChange.cxx /usr/share/gdcm/Examples/Cxx/DuplicatePCDE.cxx /usr/share/gdcm/Examples/Cxx/ELSCINT1WaveToText.cxx /usr/share/gdcm/Examples/Cxx/EmptyMask.cxx /usr/share/gdcm/Examples/Cxx/EncapsulateFileInRawData.cxx /usr/share/gdcm/Examples/Cxx/ExtractEncryptedContent.cxx /usr/share/gdcm/Examples/Cxx/ExtractIconFromFile.cxx /usr/share/gdcm/Examples/Cxx/Extracting_All_Resolution.cxx /usr/share/gdcm/Examples/Cxx/Fake_Image_Using_Stream_Image_Writer.cxx /usr/share/gdcm/Examples/Cxx/FixBrokenJ2K.cxx /usr/share/gdcm/Examples/Cxx/FixJAIBugJPEGLS.cxx /usr/share/gdcm/Examples/Cxx/FixOrientation.cxx /usr/share/gdcm/Examples/Cxx/GenAllVR.cxx /usr/share/gdcm/Examples/Cxx/GenFakeIdentifyFile.cxx /usr/share/gdcm/Examples/Cxx/GenFakeImage.cxx /usr/share/gdcm/Examples/Cxx/GenLongSeqs.cxx /usr/share/gdcm/Examples/Cxx/GenSeqs.cxx /usr/share/gdcm/Examples/Cxx/GenerateStandardSOPClasses.cxx /usr/share/gdcm/Examples/Cxx/GetJPEGSamplePrecision.cxx /usr/share/gdcm/Examples/Cxx/GetSequenceUltrasound.cxx /usr/share/gdcm/Examples/Cxx/GetSubSequenceData.cxx /usr/share/gdcm/Examples/Cxx/HelloVizWorld.cxx /usr/share/gdcm/Examples/Cxx/HelloWorld.cxx /usr/share/gdcm/Examples/Cxx/LargeVRDSExplicit.cxx /usr/share/gdcm/Examples/Cxx/MakeTemplate.cxx /usr/share/gdcm/Examples/Cxx/MergeTwoFiles.cxx /usr/share/gdcm/Examples/Cxx/MrProtocol.cxx /usr/share/gdcm/Examples/Cxx/PatchFile.cxx /usr/share/gdcm/Examples/Cxx/PrintLUT.cxx /usr/share/gdcm/Examples/Cxx/PublicDict.cxx /usr/share/gdcm/Examples/Cxx/QIDO-RS.cxx /usr/share/gdcm/Examples/Cxx/ReadAndDumpDICOMDIR.cxx /usr/share/gdcm/Examples/Cxx/ReadAndDumpDICOMDIR2.cxx /usr/share/gdcm/Examples/Cxx/ReadAndPrintAttributes.cxx /usr/share/gdcm/Examples/Cxx/ReadExplicitLengthSQIVR.cxx /usr/share/gdcm/Examples/Cxx/ReadGEMSSDO.cxx /usr/share/gdcm/Examples/Cxx/ReadMultiTimesException.cxx /usr/share/gdcm/Examples/Cxx/ReadUTF8QtDir.cxx /usr/share/gdcm/Examples/Cxx/SimpleScanner.cxx /usr/share/gdcm/Examples/Cxx/SortImage.cxx /usr/share/gdcm/Examples/Cxx/StreamImageReaderTest.cxx /usr/share/gdcm/Examples/Cxx/TemplateEmptyImage.cxx /usr/share/gdcm/Examples/Cxx/TraverseModules.cxx /usr/share/gdcm/Examples/Cxx/VolumeSorter.cxx /usr/share/gdcm/Examples/Cxx/csa2img.cxx /usr/share/gdcm/Examples/Cxx/iU22tomultisc.cxx /usr/share/gdcm/Examples/Cxx/pmsct_rgb1.cxx /usr/share/gdcm/Examples/Cxx/rle2img.cxx /usr/share/gdcm/Examples/Cxx/uid_unique.cxx /usr/share/gdcm/Examples/Java/CMakeLists.txt /usr/share/gdcm/Examples/Java/DecompressImage.java /usr/share/gdcm/Examples/Java/DecompressPixmap.java /usr/share/gdcm/Examples/Java/ExtractImageRegion.java /usr/share/gdcm/Examples/Java/FileAnonymize.java /usr/share/gdcm/Examples/Java/HelloSimple.java /usr/share/gdcm/Examples/Java/ReadFiles.java /usr/share/gdcm/Examples/Java/ScanDirectory.java /usr/share/gdcm/Examples/PHP/README.txt /usr/share/gdcm/Examples/PHP/export_pnm.php /usr/share/gdcm/Examples/PHP/hello_world.php /usr/share/gdcm/Examples/PHP/modify_file.php /usr/share/gdcm/Examples/PHP/qido.php /usr/share/gdcm/Examples/PHP/rewrite_header.php /usr/share/gdcm/Examples/Python/AddPrivateAttribute.py /usr/share/gdcm/Examples/Python/CMakeLists.txt /usr/share/gdcm/Examples/Python/ConvertMPL.py /usr/share/gdcm/Examples/Python/ConvertNumpy.py /usr/share/gdcm/Examples/Python/ConvertPIL.py /usr/share/gdcm/Examples/Python/CreateRAWStorage.py /usr/share/gdcm/Examples/Python/DecompressImage.py /usr/share/gdcm/Examples/Python/DumbAnonymizer.py /usr/share/gdcm/Examples/Python/ExtractImageRegion.py /usr/share/gdcm/Examples/Python/FindAllPatientName.py /usr/share/gdcm/Examples/Python/FixCommaBug.py /usr/share/gdcm/Examples/Python/GetPortionCSAHeader.py /usr/share/gdcm/Examples/Python/HelloWorld.py /usr/share/gdcm/Examples/Python/ManipulateFile.py /usr/share/gdcm/Examples/Python/ManipulateSequence.py /usr/share/gdcm/Examples/Python/MergeFile.py /usr/share/gdcm/Examples/Python/NewSequence.py /usr/share/gdcm/Examples/Python/PhilipsPrivateRescaleInterceptSlope.py /usr/share/gdcm/Examples/Python/PlaySound.py /usr/share/gdcm/Examples/Python/PrivateDict.py /usr/share/gdcm/Examples/Python/ReWriteSCAsMR.py /usr/share/gdcm/Examples/Python/ReadAndDumpDICOMDIR.py /usr/share/gdcm/Examples/Python/RemovePrivateTags.py /usr/share/gdcm/Examples/Python/ScanDirectory.py /usr/share/gdcm/Examples/Python/SortImage.py /usr/share/gdcm/Examples/Python/WriteBuffer.py |
![]() |
gdcm-3.0.5-alt1_0.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib64/python3/site-packages/__pycache__/gdcm.cpython-38.opt-1.pyc /usr/lib64/python3/site-packages/__pycache__/gdcm.cpython-38.opt-2.pyc /usr/lib64/python3/site-packages/__pycache__/gdcm.cpython-38.pyc /usr/lib64/python3/site-packages/__pycache__/gdcmswig.cpython-38.opt-1.pyc /usr/lib64/python3/site-packages/__pycache__/gdcmswig.cpython-38.opt-2.pyc /usr/lib64/python3/site-packages/__pycache__/gdcmswig.cpython-38.pyc /usr/lib64/python3/site-packages/_gdcmswig.so /usr/lib64/python3/site-packages/gdcm.py /usr/lib64/python3/site-packages/gdcmswig.py /usr/share/gdcm/Examples/CMakeLists.txt /usr/share/gdcm/Examples/Csharp/BasicAnonymizer.cs /usr/share/gdcm/Examples/Csharp/BasicImageAnonymizer.cs /usr/share/gdcm/Examples/Csharp/CMakeLists.txt /usr/share/gdcm/Examples/Csharp/ClinicalTrialIdentificationWorkflow.cs /usr/share/gdcm/Examples/Csharp/CompressLossyJPEG.cs /usr/share/gdcm/Examples/Csharp/DecompressImage.cs /usr/share/gdcm/Examples/Csharp/DecompressImageMultiframe.cs /usr/share/gdcm/Examples/Csharp/DecompressJPEGFile.cs /usr/share/gdcm/Examples/Csharp/DumpCSA.cs /usr/share/gdcm/Examples/Csharp/ExtractEncapsulatedFile.cs /usr/share/gdcm/Examples/Csharp/ExtractImageRegion.cs /usr/share/gdcm/Examples/Csharp/ExtractImageRegionWithLUT.cs /usr/share/gdcm/Examples/Csharp/ExtractOneFrame.cs /usr/share/gdcm/Examples/Csharp/FileAnonymize.cs /usr/share/gdcm/Examples/Csharp/FileChangeTS.cs /usr/share/gdcm/Examples/Csharp/FileChangeTSLossy.cs /usr/share/gdcm/Examples/Csharp/FileStreaming.cs /usr/share/gdcm/Examples/Csharp/GenerateDICOMDIR.cs /usr/share/gdcm/Examples/Csharp/GetArray.cs /usr/share/gdcm/Examples/Csharp/ManipulateFile.cs /usr/share/gdcm/Examples/Csharp/MpegVideoInfo.cs /usr/share/gdcm/Examples/Csharp/NewSequence.cs /usr/share/gdcm/Examples/Csharp/ReformatFile.cs /usr/share/gdcm/Examples/Csharp/RescaleImage.cs /usr/share/gdcm/Examples/Csharp/ScanDirectory.cs /usr/share/gdcm/Examples/Csharp/SendFileSCU.cs /usr/share/gdcm/Examples/Csharp/SimplePrint.cs /usr/share/gdcm/Examples/Csharp/SimplePrintPatientName.cs /usr/share/gdcm/Examples/Csharp/SortImage2.cs /usr/share/gdcm/Examples/Csharp/StandardizeFiles.cs /usr/share/gdcm/Examples/Cxx/CMakeLists.txt /usr/share/gdcm/Examples/Cxx/CStoreQtProgress.cxx /usr/share/gdcm/Examples/Cxx/ChangePrivateTags.cxx /usr/share/gdcm/Examples/Cxx/ChangeSequenceUltrasound.cxx /usr/share/gdcm/Examples/Cxx/CheckBigEndianBug.cxx /usr/share/gdcm/Examples/Cxx/ClinicalTrialAnnotate.cxx /usr/share/gdcm/Examples/Cxx/CompressImage.cxx /usr/share/gdcm/Examples/Cxx/ConvertToQImage.cxx /usr/share/gdcm/Examples/Cxx/CreateARGBImage.cxx /usr/share/gdcm/Examples/Cxx/CreateCMYKImage.cxx /usr/share/gdcm/Examples/Cxx/CreateJPIPDataSet.cxx /usr/share/gdcm/Examples/Cxx/DeriveSeries.cxx /usr/share/gdcm/Examples/Cxx/DiffFile.cxx /usr/share/gdcm/Examples/Cxx/DiscriminateVolume.cxx /usr/share/gdcm/Examples/Cxx/DumpADAC.cxx /usr/share/gdcm/Examples/Cxx/DumpExamCard.cxx /usr/share/gdcm/Examples/Cxx/DumpGEMSMovieGroup.cxx /usr/share/gdcm/Examples/Cxx/DumpImageHeaderInfo.cxx /usr/share/gdcm/Examples/Cxx/DumpPhilipsECHO.cxx /usr/share/gdcm/Examples/Cxx/DumpSiemensBase64.cxx /usr/share/gdcm/Examples/Cxx/DumpToSQLITE3.cxx /usr/share/gdcm/Examples/Cxx/DumpToshibaDTI.cxx /usr/share/gdcm/Examples/Cxx/DumpVisusChange.cxx /usr/share/gdcm/Examples/Cxx/DuplicatePCDE.cxx /usr/share/gdcm/Examples/Cxx/ELSCINT1WaveToText.cxx /usr/share/gdcm/Examples/Cxx/EmptyMask.cxx /usr/share/gdcm/Examples/Cxx/EncapsulateFileInRawData.cxx /usr/share/gdcm/Examples/Cxx/ExtractEncryptedContent.cxx /usr/share/gdcm/Examples/Cxx/ExtractIconFromFile.cxx /usr/share/gdcm/Examples/Cxx/Extracting_All_Resolution.cxx /usr/share/gdcm/Examples/Cxx/Fake_Image_Using_Stream_Image_Writer.cxx /usr/share/gdcm/Examples/Cxx/FixBrokenJ2K.cxx /usr/share/gdcm/Examples/Cxx/FixJAIBugJPEGLS.cxx /usr/share/gdcm/Examples/Cxx/FixOrientation.cxx /usr/share/gdcm/Examples/Cxx/GenAllVR.cxx /usr/share/gdcm/Examples/Cxx/GenFakeIdentifyFile.cxx /usr/share/gdcm/Examples/Cxx/GenFakeImage.cxx /usr/share/gdcm/Examples/Cxx/GenLongSeqs.cxx /usr/share/gdcm/Examples/Cxx/GenSeqs.cxx /usr/share/gdcm/Examples/Cxx/GenerateStandardSOPClasses.cxx /usr/share/gdcm/Examples/Cxx/GetJPEGSamplePrecision.cxx /usr/share/gdcm/Examples/Cxx/GetSequenceUltrasound.cxx /usr/share/gdcm/Examples/Cxx/GetSubSequenceData.cxx /usr/share/gdcm/Examples/Cxx/HelloVizWorld.cxx /usr/share/gdcm/Examples/Cxx/HelloWorld.cxx /usr/share/gdcm/Examples/Cxx/LargeVRDSExplicit.cxx /usr/share/gdcm/Examples/Cxx/MakeTemplate.cxx /usr/share/gdcm/Examples/Cxx/MergeTwoFiles.cxx /usr/share/gdcm/Examples/Cxx/MrProtocol.cxx /usr/share/gdcm/Examples/Cxx/PatchFile.cxx /usr/share/gdcm/Examples/Cxx/PrintLUT.cxx /usr/share/gdcm/Examples/Cxx/PublicDict.cxx /usr/share/gdcm/Examples/Cxx/QIDO-RS.cxx /usr/share/gdcm/Examples/Cxx/ReadAndDumpDICOMDIR.cxx /usr/share/gdcm/Examples/Cxx/ReadAndDumpDICOMDIR2.cxx /usr/share/gdcm/Examples/Cxx/ReadAndPrintAttributes.cxx /usr/share/gdcm/Examples/Cxx/ReadExplicitLengthSQIVR.cxx /usr/share/gdcm/Examples/Cxx/ReadGEMSSDO.cxx /usr/share/gdcm/Examples/Cxx/ReadMultiTimesException.cxx /usr/share/gdcm/Examples/Cxx/ReadUTF8QtDir.cxx /usr/share/gdcm/Examples/Cxx/SimpleScanner.cxx /usr/share/gdcm/Examples/Cxx/SortImage.cxx /usr/share/gdcm/Examples/Cxx/StreamImageReaderTest.cxx /usr/share/gdcm/Examples/Cxx/TemplateEmptyImage.cxx /usr/share/gdcm/Examples/Cxx/TraverseModules.cxx /usr/share/gdcm/Examples/Cxx/VolumeSorter.cxx /usr/share/gdcm/Examples/Cxx/csa2img.cxx /usr/share/gdcm/Examples/Cxx/iU22tomultisc.cxx /usr/share/gdcm/Examples/Cxx/pmsct_rgb1.cxx /usr/share/gdcm/Examples/Cxx/rle2img.cxx /usr/share/gdcm/Examples/Cxx/uid_unique.cxx /usr/share/gdcm/Examples/Java/CMakeLists.txt /usr/share/gdcm/Examples/Java/DecompressImage.java /usr/share/gdcm/Examples/Java/DecompressPixmap.java /usr/share/gdcm/Examples/Java/ExtractImageRegion.java /usr/share/gdcm/Examples/Java/FileAnonymize.java /usr/share/gdcm/Examples/Java/HelloSimple.java /usr/share/gdcm/Examples/Java/ReadFiles.java /usr/share/gdcm/Examples/Java/ScanDirectory.java /usr/share/gdcm/Examples/PHP/README.txt /usr/share/gdcm/Examples/PHP/export_pnm.php /usr/share/gdcm/Examples/PHP/hello_world.php /usr/share/gdcm/Examples/PHP/modify_file.php /usr/share/gdcm/Examples/PHP/qido.php /usr/share/gdcm/Examples/PHP/rewrite_header.php /usr/share/gdcm/Examples/Python/AddPrivateAttribute.py /usr/share/gdcm/Examples/Python/CMakeLists.txt /usr/share/gdcm/Examples/Python/ConvertMPL.py /usr/share/gdcm/Examples/Python/ConvertNumpy.py /usr/share/gdcm/Examples/Python/ConvertPIL.py /usr/share/gdcm/Examples/Python/CreateRAWStorage.py /usr/share/gdcm/Examples/Python/DecompressImage.py /usr/share/gdcm/Examples/Python/DumbAnonymizer.py /usr/share/gdcm/Examples/Python/ExtractImageRegion.py /usr/share/gdcm/Examples/Python/FindAllPatientName.py /usr/share/gdcm/Examples/Python/FixCommaBug.py /usr/share/gdcm/Examples/Python/GetPortionCSAHeader.py /usr/share/gdcm/Examples/Python/HelloWorld.py /usr/share/gdcm/Examples/Python/ManipulateFile.py /usr/share/gdcm/Examples/Python/ManipulateSequence.py /usr/share/gdcm/Examples/Python/MergeFile.py /usr/share/gdcm/Examples/Python/NewSequence.py /usr/share/gdcm/Examples/Python/PhilipsPrivateRescaleInterceptSlope.py /usr/share/gdcm/Examples/Python/PlaySound.py /usr/share/gdcm/Examples/Python/PrivateDict.py /usr/share/gdcm/Examples/Python/ReWriteSCAsMR.py /usr/share/gdcm/Examples/Python/ReadAndDumpDICOMDIR.py /usr/share/gdcm/Examples/Python/RemovePrivateTags.py /usr/share/gdcm/Examples/Python/ScanDirectory.py /usr/share/gdcm/Examples/Python/SortImage.py /usr/share/gdcm/Examples/Python/WriteBuffer.py |
![]() |
gdcm-3.0.5-alt1_0.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
gear-cronbuild-1.41-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/gear-cronbuild-apply-hooks-in-hsh-chroot /usr/bin/gear-cronbuild-apply-hooks |
![]() |
gear-uupdate-0.28.1-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/gear-uupdate-execute |
![]() |
gemrb-0.8.5-alt3_1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/gemrb/AUTHORS /usr/share/doc/gemrb/COPYING /usr/share/doc/gemrb/NEWS /usr/share/doc/gemrb/README |
![]() |
gemrb-0.8.5-alt3_1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/gemrb/AUTHORS /usr/share/doc/gemrb/COPYING /usr/share/doc/gemrb/NEWS /usr/share/doc/gemrb/README |
![]() |
gemrb-0.8.5-alt3_1.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
ggz-base-libs-0.99.5-alt3_22.qa1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/locale/sr@Latn/LC_MESSAGES/ggzcore_snapshot-0.99.5.mo |
![]() |
ggz-base-libs-0.99.5-alt3_22.qa1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/locale/sr@Latn/LC_MESSAGES/ggzcore_snapshot-0.99.5.mo |
![]() |
ggz-base-libs-0.99.5-alt3_22.qa1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
ggz-base-libs-0.99.5-alt3_22.qa1.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
ghostscript-chinese-zh_CN-0.4.0-alt1_9.noarch | rpm-filesystem-conflict-file-file | warn | Files /usr/share/ghostscript/conf.d/CIDFnmap.zh_CN /usr/share/ghostscript/conf.d/FAPIcidfmap.zh_CN /usr/share/ghostscript/conf.d/cidfmap.zh_CN conflict with the package fonts-ttf-chinese-opendesktop-1.6.100-alt1_11.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
ghostscript-chinese-zh_TW-0.4.0-alt1_9.noarch | rpm-filesystem-conflict-file-file | warn | Files /usr/share/ghostscript/conf.d/CIDFnmap.zh_TW /usr/share/ghostscript/conf.d/FAPIcidfmap.zh_TW /usr/share/ghostscript/conf.d/cidfmap.zh_TW conflict with the package fonts-ttf-chinese-opendesktop-1.6.100-alt1_11.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
girar-nmu-2.011.3-alt1.x86_64 | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/girar-nmu-task-for-each /usr/bin/girar-nmu-task-add |
![]() |
girar-tools-2.011.3-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/girar-task-add-rebuild /usr/bin/girar-task-add-srpm |
![]() |
glassfish-jaf-1.1.0-alt5_6jpp6.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/maven-poms/JPP.glassfish-jaf.pom |
![]() |
glassfish-jaf-1.1.0-alt5_6jpp6.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/maven-poms/JPP.glassfish-jaf.pom |
![]() |
glassfish-javamail-1.4.0-alt4_5jpp6.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/maven-poms/JPP-glassfish-javamail-monolithic.pom /usr/share/maven-poms/JPP.glassfish-javamail-dsn.pom /usr/share/maven-poms/JPP.glassfish-javamail-imap.pom /usr/share/maven-poms/JPP.glassfish-javamail-mailapi.pom /usr/share/maven-poms/JPP.glassfish-javamail-pop3.pom /usr/share/maven-poms/JPP.glassfish-javamail-smtp.pom /usr/share/maven-poms/JPP.glassfish-javamail.pom |
![]() |
glassfish-javamail-1.4.0-alt4_5jpp6.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/maven-poms/JPP-glassfish-javamail-monolithic.pom /usr/share/maven-poms/JPP.glassfish-javamail-dsn.pom /usr/share/maven-poms/JPP.glassfish-javamail-imap.pom /usr/share/maven-poms/JPP.glassfish-javamail-mailapi.pom /usr/share/maven-poms/JPP.glassfish-javamail-pop3.pom /usr/share/maven-poms/JPP.glassfish-javamail-smtp.pom /usr/share/maven-poms/JPP.glassfish-javamail.pom |
![]() |
glyph-keeper-allegro-0.32-alt3_22.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
gradle-4.4.1-alt2_3jpp8.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/gradle |
![]() |
gradle-4.4.1-alt2_3jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/gradle.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
gresistor-0.0.2-alt1_10.noarch | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/noarch/RPMS/gresistor-0.0.2-alt1_10.noarch.rpm: forbidden requires: /usr/bin/python python-base sisyphus_check: check-deps ERROR: package dependencies violation /ALT/Sisyphus/files/noarch/RPMS/gresistor-0.0.2-alt1_10.noarch.rpm: license not found in '/usr/share/license' directory: GPL+ |
![]() |
grhino-0.16.1-alt1_7.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
grhino-0.16.1-alt1_7.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/grhino.desktop: hint: value item "GNOME" in key "Categories" in group "Desktop Entry" can be extended with another category among the following categories: GTK |
![]() |
grhino-0.16.1-alt1_7.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
groovy-2.4.8-alt1_9jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
gtorrentviewer-0.2b-alt4_38.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
hasher-rich-chroot-0.05-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
hasher-rich-chroot-user-utils-0.05-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
haxima-0.7.1-alt2_23.20120228gitb0a402a.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
haxima-0.7.1-alt2_23.20120228gitb0a402a.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
icon-theme-faience-0.5-alt1_7.noarch | symlink-extra-slash | info | /usr/share/icons/Faience-Azur/status:This symlink contains two successive slashes (//) or ends with a slash (/). symlinks should be as short as possible. /usr/share/icons/Faience-Azur/stock:This symlink contains two successive slashes (//) or ends with a slash (/). symlinks should be as short as possible. /usr/share/icons/Faience-Ocre/status:This symlink contains two successive slashes (//) or ends with a slash (/). symlinks should be as short as possible. /usr/share/icons/Faience-Ocre/stock:This symlink contains two successive slashes (//) or ends with a slash (/). symlinks should be as short as possible. |
![]() |
imagej-1.50-alt1_9.hjpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/imagej.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
imagej-1.50-alt1_9.hjpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
ispell-3.2.06-alt14.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/ispell/deutsch.aff /usr/lib/ispell/deutsch.hash /usr/lib/ispell/deutschlxg.hash /usr/lib/ispell/deutschmed.hash /usr/lib/ispell/german.hash |
![]() |
ispell-3.2.06-alt14.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib64/ispell/deutsch.aff /usr/lib64/ispell/deutsch.hash /usr/lib64/ispell/deutschlxg.hash /usr/lib64/ispell/deutschmed.hash /usr/lib64/ispell/german.hash |
![]() |
ispell-he-0.1-alt6.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
ispell-ru-rk-1.1-alt8.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
ispell-ru-rk-cp1251-1.1-alt8.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
itext-rups-2.1.7-alt3_41jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/itext-rups.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
itext-toolbox-2.1.7-alt3_41jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/itext-toolbox.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
jFormatString-javadoc-0-alt1_0.33.20131227gitf159b88jpp8.noarch | altlinux-java-forbidden-requires | fail | The package has JVM-specific Requires: java-1.8.0-javadoc. Those requires are often due to packaging errors and also specifically forbidden by Java Packageing Policy. If you really really need it, write it in more indirect way. |
![]() |
jadetex-3.13-alt4_13.noarch | altlinux-policy-tex-obsolete-util-calls-in-post | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) %post calls to texhash, updmap and fmtutil are now handled by filetrigger in tex-common package. Please, remove them. |
![]() |
jadetex-3.13-alt4_13.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/man/man1/pdfjadetex.1.xz /usr/share/texmf/tex/jadetex/dsssl.def /usr/share/texmf/tex/jadetex/jadetex.ltx /usr/share/texmf/web2c/jadetex.fmt /usr/share/texmf/web2c/pdfjadetex.fmt |
![]() |
jadetex-3.13-alt4_13.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/man/man1/pdfjadetex.1.xz /usr/share/texmf/tex/jadetex/dsssl.def /usr/share/texmf/tex/jadetex/jadetex.ltx /usr/share/texmf/web2c/jadetex.fmt /usr/share/texmf/web2c/pdfjadetex.fmt |
![]() |
jai-imageio-core-1.2-alt1_0.24.20100217cvsjpp8.noarch | altlinux-java-duplicate-jars | info | file /usr/share/java/jai_imageio.jar confilicts with package: jai-imageio-core-javadoc-1.2-alt1_0.24.20100217cvsjpp8.noarch: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar |
![]() |
jai-imageio-core-javadoc-1.2-alt1_0.24.20100217cvsjpp8.noarch | altlinux-java-duplicate-jars | info | file /usr/share/java/jai_imageio.jar confilicts with package: jai-imageio-core-1.2-alt1_0.24.20100217cvsjpp8.noarch: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar |
![]() |
java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64 | altlinux-java-duplicate-jars | info | file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jaas-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jaas-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jaas.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jce-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jce-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jce.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext-3.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-cos-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-cos-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-cos.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-ldap-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-ldap-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-ldap.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-rmi-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-rmi-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-rmi.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jsse-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jsse-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jsse.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/sasl-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/sasl-1.7.0.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/sasl.jar confilicts with package: java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar |
![]() |
java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64 | altlinux-java-duplicate-jars | info | file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jaas-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jaas-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jaas.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jce-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jce-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jce.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext-3.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jdbc-stdext.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-cos-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-cos-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-cos.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-ldap-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-ldap-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-ldap.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-rmi-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-rmi-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi-rmi.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jndi.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jsse-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jsse-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/jsse.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/sasl-1.7.0.221.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/sasl-1.7.0.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.7.0-openjdk-1.7.0.221-2.6.18.0.x86_64/sasl.jar confilicts with package: java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar |
![]() |
java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64 | altlinux-java-duplicate-jars | info | file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jaas-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jaas-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jaas.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jce-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jce-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jce.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext-3.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-cos-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-cos-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-cos.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-ldap-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-ldap-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-ldap.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-rmi-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-rmi-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-rmi.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jsse-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jsse-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jsse.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/sasl-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/sasl-1.8.0.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/sasl.jar confilicts with package: java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar |
![]() |
java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64 | altlinux-java-duplicate-jars | info | file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jaas-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jaas-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jaas.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jce-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jce-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jce.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext-3.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jdbc-stdext.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-cos-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-cos-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-cos.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-ldap-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-ldap-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-ldap.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-rmi-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-rmi-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi-rmi.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jndi.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jsse-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jsse-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/jsse.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/sasl-1.8.0.212.b04.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/sasl-1.8.0.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar file /usr/lib/jvm-exports/java-1.8.0-openjdk-1.8.0.212.b04-0.x86_64/sasl.jar confilicts with package: java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64: if the jar do provide the same standard interface, it should be alternative. Otherwise it is recommended to rename the jar |
![]() |
java-1.8.0-openjdk-javaws-1.8.2-alt1_3jpp8.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
java-10-openjdk-headless-10.0.2.13-alt2_7jpp9.x86_64 | obsolete-call-in-post-alternatives-0.3 | warn | alternatives-* calls in post/preun and in triggers are deprecated |
![]() |
java-10-openjdk-javadoc-10.0.2.13-alt2_7jpp9.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java-10-openjdk-javadoc-zip-10.0.2.13-alt2_7jpp9.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java-11-openjdk-11.0.9.7-alt1_0.0.eajpp11.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/jvm/java-11-openjdk-11.0.9.7-0.0.ea.i586/lib/libsunec.so |
![]() |
java-11-openjdk-11.0.9.7-alt1_0.0.eajpp11.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/jvm/java-11-openjdk-11.0.9.7-0.0.ea.x86_64/lib/libsunec.so |
![]() |
java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64 | alt-alternatives-vs-ghost | info | Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javac is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/javac. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jar is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jar. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jarsigner is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jarsigner. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javadoc is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/javadoc. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javap is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/javap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jdb is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jdb. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmic is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/rmic. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/serialver is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/serialver. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jconsole is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jconsole. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jinfo is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jinfo. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jmap is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jmap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jps is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jps. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstack is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jstack. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstat is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jstat. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstatd is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jstatd. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jrunscript is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/jrunscript. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-openjdk is an alternative in package java-9-openjdk-devel-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/java-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javac is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/javac. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jar is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jar. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jarsigner is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jarsigner. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javadoc is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/javadoc. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javap is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/javap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jdb is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jdb. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmic is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/rmic. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/serialver is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/serialver. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jconsole is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jconsole. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jinfo is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jinfo. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jmap is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jmap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jps is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jps. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstack is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jstack. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstat is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jstat. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstatd is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jstatd. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jrunscript is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/jrunscript. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-openjdk is an alternative in package java-1.8.0-openjdk-devel-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/java-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javac is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/javac. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jar is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jar. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jarsigner is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jarsigner. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javadoc is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/javadoc. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javap is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/javap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jdb is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jdb. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmic is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/rmic. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/serialver is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/serialver. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jconsole is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jconsole. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jinfo is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jinfo. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jmap is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jmap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jps is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jps. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstack is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jstack. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstat is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jstat. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstatd is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jstatd. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jrunscript is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/jrunscript. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-openjdk is an alternative in package java-1.7.0-openjdk-devel-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/java-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javac is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/javac. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jar is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jar. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jarsigner is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jarsigner. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javadoc is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/javadoc. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javap is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/javap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jdb is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jdb. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmic is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/rmic. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/serialver is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/serialver. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jconsole is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jconsole. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jinfo is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jinfo. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jmap is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jmap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jps is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jps. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstack is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jstack. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstat is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jstat. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstatd is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jstatd. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jrunscript is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/jrunscript. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/lib/jvm/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-openjdk is an alternative in package java-10-openjdk-devel-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/lib/jvm/java-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javac is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/javac. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jar is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jar. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jarsigner is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jarsigner. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javadoc is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/javadoc. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/javap is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/javap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jdb is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jdb. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmic is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/rmic. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/serialver is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/serialver. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jconsole is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jconsole. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jinfo is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jinfo. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jmap is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jmap. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jps is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jps. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstack is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jstack. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstat is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jstat. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jstatd is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jstatd. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/jrunscript is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/jrunscript. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-openjdk is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/java-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-11 is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/java-11. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/java-11-openjdk is an alternative in package java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/java-11-openjdk. |
![]() |
java-11-openjdk-devel-11.0.9.7-alt1_0.0.eajpp11.x86_64 | bin-permissions | info | not executable file /usr/bin/jaotc not executable file /usr/bin/jar not executable file /usr/bin/jarsigner not executable file /usr/bin/javac not executable file /usr/bin/javadoc not executable file /usr/bin/javap not executable file /usr/bin/jcmd not executable file /usr/bin/jconsole not executable file /usr/bin/jdb not executable file /usr/bin/jdeprscan not executable file /usr/bin/jdeps not executable file /usr/bin/jhsdb not executable file /usr/bin/jimage not executable file /usr/bin/jinfo not executable file /usr/bin/jlink not executable file /usr/bin/jmap not executable file /usr/bin/jmod not executable file /usr/bin/jps not executable file /usr/bin/jrunscript not executable file /usr/bin/jshell not executable file /usr/bin/jstack not executable file /usr/bin/jstat not executable file /usr/bin/jstatd not executable file /usr/bin/rmic not executable file /usr/bin/serialver |
![]() |
java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64 | alt-alternatives-vs-ghost | info | Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/java is an alternative in package java-9-openjdk-headless-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/bin/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre is an alternative in package java-9-openjdk-headless-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/jre. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-openjdk is an alternative in package java-9-openjdk-headless-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/java is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/keytool is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/keytool. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/pack200 is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/pack200. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/unpack200 is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/unpack200. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmid is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/rmid. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmiregistry is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/bin/rmiregistry. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/jre. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-openjdk is an alternative in package java-1.8.0-openjdk-headless-1.8.0.212.b04-alt2_0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/java is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/keytool is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/keytool. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/pack200 is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/pack200. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/unpack200 is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/unpack200. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmid is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/rmid. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/rmiregistry is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/bin/rmiregistry. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/jre. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-openjdk is an alternative in package java-1.7.0-openjdk-headless-1.7.0.221-alt3_2.6.18.0jpp8.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/java is an alternative in package java-10-openjdk-headless-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/bin/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre is an alternative in package java-10-openjdk-headless-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/lib/jvm/jre. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-openjdk is an alternative in package java-10-openjdk-headless-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/bin/java is an alternative in package java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/bin/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre is an alternative in package java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/jre. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-openjdk is an alternative in package java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-openjdk. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-11 is an alternative in package java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-11. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/lib/jvm/jre-11-openjdk is an alternative in package java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/lib/jvm/jre-11-openjdk. |
![]() |
java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64 | bin-permissions | info | not executable file /usr/bin/java not executable file /usr/bin/jjs not executable file /usr/bin/keytool not executable file /usr/bin/pack200 not executable file /usr/bin/rmid not executable file /usr/bin/rmiregistry not executable file /usr/bin/unpack200 |
![]() |
java-11-openjdk-headless-11.0.9.7-alt1_0.0.eajpp11.x86_64 | obsolete-call-in-post-alternatives-0.3 | warn | alternatives-* calls in post/preun and in triggers are deprecated |
![]() |
java-11-openjdk-javadoc-11.0.9.7-alt1_0.0.eajpp11.x86_64 | alt-alternatives-vs-ghost | info | Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/share/javadoc/java is an alternative in package java-stub-javadoc-0.1-alt1.noarch. Consider removing the ghost file /usr/share/javadoc/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/share/javadoc/java is an alternative in package java-9-openjdk-javadoc-9.0.4.11-alt3_6jpp8.x86_64. Consider removing the ghost file /usr/share/javadoc/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/share/javadoc/java is an alternative in package java-1.8.0-openjdk-javadoc-1.8.0.212.b04-alt2_0jpp8.noarch. Consider removing the ghost file /usr/share/javadoc/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/share/javadoc/java is an alternative in package java-1.7.0-openjdk-javadoc-1.7.0.221-alt3_2.6.18.0jpp8.noarch. Consider removing the ghost file /usr/share/javadoc/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/share/javadoc/java is an alternative in package java-10-openjdk-javadoc-10.0.2.13-alt2_7jpp9.x86_64. Consider removing the ghost file /usr/share/javadoc/java. Since alternatives 0.4 the practice to own alternative symlinks as ghost files is deprecated. the ghost file /usr/share/javadoc/java is an alternative in package java-11-openjdk-javadoc-11.0.9.7-alt1_0.0.eajpp11.x86_64. Consider removing the ghost file /usr/share/javadoc/java. |
![]() |
java-11-openjdk-javadoc-11.0.9.7-alt1_0.0.eajpp11.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java-11-openjdk-javadoc-zip-11.0.9.7-alt1_0.0.eajpp11.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java-9-openjdk-headless-9.0.4.11-alt3_6jpp8.x86_64 | obsolete-call-in-post-alternatives-0.3 | warn | alternatives-* calls in post/preun and in triggers are deprecated |
![]() |
java-9-openjdk-javadoc-9.0.4.11-alt3_6jpp8.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java-9-openjdk-javadoc-zip-9.0.4.11-alt3_6jpp8.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java-common-1.6.0-alt1.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/default-java.desktop: hint: value "X-ALTLinux-Java;" for key "Categories" in group "Desktop Entry" does not contain a registered main category; application might only show up in a "catch-all" section of the application menu |
![]() |
java-common-1.6.0-alt1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
java3d-1.5.2-alt3_15jpp8.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java3d-examples-1.5.2-alt3_15jpp8.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
java3d-javadoc-1.5.2-alt3_15jpp8.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
javacc-7.0.4-alt1_4jpp8.src | beehive-log-dependency-needs-epoch-i586 | info | javacc-demo: dependency on javacc needs Epoch |
![]() |
javacc-7.0.4-alt1_4jpp8.src | beehive-log-dependency-needs-epoch-x86_64 | info | javacc-demo: dependency on javacc needs Epoch |
![]() |
javapackages-tools-5.3.0-alt1_4jpp8.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/shade-jar /usr/bin/clean-binary-files /usr/bin/find-jar /usr/bin/create-jar-links /usr/bin/check-binary-files |
![]() |
jaxodraw-2.0.1-alt1_24jpp8.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/jaxodraw.desktop: hint: value "Graphics;2DGraphics;VectorGraphics;Physics;Science;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu /usr/share/applications/jaxodraw.desktop: warning: key "SwallowExec" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle[fr]" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle[de]" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle[it]" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle[es]" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle[fi]" in group "Desktop Entry" is deprecated /usr/share/applications/jaxodraw.desktop: warning: key "SwallowTitle[se]" in group "Desktop Entry" is deprecated |
![]() |
jaxodraw-2.0.1-alt1_24jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
jaxodraw-2.0.1-alt1_24jpp8.src | altlinux-policy-tex-rpm-build-texmf | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) packages that install files to /usr/share/texmf should BuildRequires(pre): rpm-build-texmf for the dependency magic to work. |
![]() |
jdepend-2.9.1-alt4_22jpp8.src | beehive-log-dependency-needs-epoch-i586 | info | jdepend-demo: dependency on jdepend needs Epoch |
![]() |
jdepend-2.9.1-alt4_22jpp8.src | beehive-log-dependency-needs-epoch-x86_64 | info | jdepend-demo: dependency on jdepend needs Epoch |
![]() |
jdiff-1.1.1-alt3_17jpp8.noarch | rpm-filesystem-conflict-file-file | warn | File /usr/bin/jdiff conflicts with the package python3-module-jsondiff-1.2.0-alt1.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
jetty-9.4.19-alt1_1.v20190610jpp8.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /etc/rc.d/init.d/jetty |
![]() |
jetty-9.4.19-alt1_1.v20190610jpp8.noarch | init-lsb | warn | /etc/rc.d/init.d/jetty: lsb init header missing. See http://www.altlinux.org/Services_Policy for details. |
![]() |
jetty-alpn-8.1.13-alt1_1.v20181017jpp8.noarch | altlinux-java-forbidden-requires | fail | The package has JVM-specific Requires: java-1.8.0-openjdk-headless. Those requires are often due to packaging errors and also specifically forbidden by Java Packageing Policy. If you really really need it, write it in more indirect way. |
![]() |
jeuclid-mathviewer-3.1.9-alt1_2.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/jeuclid-mathviewer.desktop: hint: value "Graphics;Math;Science;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
jflex-1.7.0-alt1_1jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/jflex.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
jflex-1.7.0-alt1_1jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
jflex-1.7.0-alt1_1jpp8.noarch | macos-resource-fork-file-in-package | warn | There is a file in the package with a name starting with ._, the file name pattern used by Mac OS X to store resource forks in non-native file systems. Such files are generally useless in packages and were usually accidentally included by copying complete directories from the source tarball. |
![]() |
jfreechart-1.0.19-alt1_13jpp8.noarch | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
jicofo-1.1-alt0.3.src | specfile-useradd-n | warn | -n in useradd is compat option and can be removed any time. Use -N instead. |
![]() |
jicofo-1.1-alt0.3.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
jigasi-1.1-alt0.3.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
jitsi-videobridge-2.1-alt0.5.noarch | buildroot | fail | found paths to buildroot: /etc/rc.d/init.d/jitsi-videobridge: NAME=/usr/src/tmp/jitsi-videobridge-buildroot/etc/rc.d/init.d/jitsi-videobridge |
![]() |
jogl-javadoc-1.1.1-alt1_13jpp8.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
jpanoramamaker-5.6-alt1_11jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/jpanoramamaker.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
jpanoramamaker-5.6-alt1_11jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
jss-4.7.3-alt1.x86_64 | altlinux-java-forbidden-requires | fail | The package has JVM-specific Requires: java-1.8.0-openjdk-headless. Those requires are often due to packaging errors and also specifically forbidden by Java Packageing Policy. If you really really need it, write it in more indirect way. |
![]() |
jwm-2.3.7-alt1_3.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
kanatest-0.4.10-alt1_0.1.D20170810git19dd1a7d.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/kanatest.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
kde4-menu-original-0.04-alt1.noarch | rpm-package-is-obsoleted | warn | The package is obsoleted by the package altlinux-freedesktop-menu-kde4-0.67-alt1.noarch, but is still alive and in the repository. Consider removing the package, or, if you want the package to be alive, ask the maintainer of altlinux-freedesktop-menu-kde4-0.67-alt1.noarch to remove Obsoletes: tag. |
![]() |
kxml-2.3.0-alt3_20jpp8.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/java/kxml2.jar |
![]() |
kxml-2.3.0-alt3_20jpp8.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/java/kxml2.jar |
![]() |
lash-0.5.4-alt1_40.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/lash-panel.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
lash-0.5.4-alt1_40.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/lash-panel.desktop: warning: value "LASH Control Panel" for key "Comment" in group "Desktop Entry" looks redundant with value "LASH Control Panel" of key "GenericName" |
![]() |
latex2html-2020.2-alt1.src | altlinux-policy-tex-rpm-build-texmf | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) packages that install files to /usr/share/texmf should BuildRequires(pre): rpm-build-texmf for the dependency magic to work. |
![]() |
libaccounts-qt-1.13-alt2_12.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/include/accounts-qt5/Accounts/Account /usr/include/accounts-qt5/Accounts/AccountService /usr/include/accounts-qt5/Accounts/Application /usr/include/accounts-qt5/Accounts/AuthData /usr/include/accounts-qt5/Accounts/Error /usr/include/accounts-qt5/Accounts/Manager /usr/include/accounts-qt5/Accounts/Provider /usr/include/accounts-qt5/Accounts/Service /usr/include/accounts-qt5/Accounts/ServiceType /usr/include/accounts-qt5/Accounts/account-service.h /usr/include/accounts-qt5/Accounts/account.h /usr/include/accounts-qt5/Accounts/accountscommon.h /usr/include/accounts-qt5/Accounts/application.h /usr/include/accounts-qt5/Accounts/auth-data.h /usr/include/accounts-qt5/Accounts/error.h /usr/include/accounts-qt5/Accounts/manager.h /usr/include/accounts-qt5/Accounts/manager_p.h /usr/include/accounts-qt5/Accounts/provider.h /usr/include/accounts-qt5/Accounts/service-type.h /usr/include/accounts-qt5/Accounts/service.h /usr/include/accounts-qt5/Accounts/utils.h /usr/lib/cmake/AccountsQt5/AccountsQt5Config.cmake /usr/lib/cmake/AccountsQt5/AccountsQt5ConfigVersion.cmake /usr/lib/libaccounts-qt5.so /usr/lib/libaccounts-qt5.so.1 /usr/lib/libaccounts-qt5.so.1.2 /usr/lib/libaccounts-qt5.so.1.2.0 /usr/lib/pkgconfig/accounts-qt5.pc /usr/share/doc/accounts-qt/html/account-service_8cpp_source.html /usr/share/doc/accounts-qt/html/account-service_8h_source.html /usr/share/doc/accounts-qt/html/account_8cpp_source.html /usr/share/doc/accounts-qt/html/account_8h_source.html /usr/share/doc/accounts-qt/html/accountscommon_8h_source.html /usr/share/doc/accounts-qt/html/annotated.html /usr/share/doc/accounts-qt/html/annotated_dup.js /usr/share/doc/accounts-qt/html/application_8cpp_source.html /usr/share/doc/accounts-qt/html/application_8h_source.html /usr/share/doc/accounts-qt/html/auth-data_8cpp_source.html /usr/share/doc/accounts-qt/html/auth-data_8h_source.html /usr/share/doc/accounts-qt/html/bc_s.png /usr/share/doc/accounts-qt/html/bdwn.png /usr/share/doc/accounts-qt/html/classAccounts_1_1AccountService-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AccountService.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AccountService.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Application-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Application.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Application.js /usr/share/doc/accounts-qt/html/classAccounts_1_1AuthData-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AuthData.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AuthData.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Error-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Error.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Error.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Manager-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Manager.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Manager.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Provider-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Provider.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Provider.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Service-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Service.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Service.js /usr/share/doc/accounts-qt/html/classAccounts_1_1ServiceType-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1ServiceType.html /usr/share/doc/accounts-qt/html/classAccounts_1_1ServiceType.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Watch-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Watch.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Watch.js /usr/share/doc/accounts-qt/html/classes.html /usr/share/doc/accounts-qt/html/closed.png /usr/share/doc/accounts-qt/html/deprecated.html /usr/share/doc/accounts-qt/html/dir_61c9e5842729cb34568d93cb98ad85b9.html /usr/share/doc/accounts-qt/html/dir_c3d1d086c816c0518443c9e800634b9c.html /usr/share/doc/accounts-qt/html/dir_c3d1d086c816c0518443c9e800634b9c.js /usr/share/doc/accounts-qt/html/dir_e68e8157741866f444e17edd764ebbae.html /usr/share/doc/accounts-qt/html/doc.png /usr/share/doc/accounts-qt/html/doxygen.css /usr/share/doc/accounts-qt/html/doxygen.png /usr/share/doc/accounts-qt/html/dynsections.js /usr/share/doc/accounts-qt/html/error_8cpp_source.html /usr/share/doc/accounts-qt/html/error_8h_source.html /usr/share/doc/accounts-qt/html/files.html /usr/share/doc/accounts-qt/html/files_dup.js /usr/share/doc/accounts-qt/html/folderclosed.png /usr/share/doc/accounts-qt/html/folderopen.png /usr/share/doc/accounts-qt/html/functions.html /usr/share/doc/accounts-qt/html/functions_enum.html /usr/share/doc/accounts-qt/html/functions_eval.html /usr/share/doc/accounts-qt/html/functions_func.html /usr/share/doc/accounts-qt/html/graph_legend.html /usr/share/doc/accounts-qt/html/graph_legend.md5 /usr/share/doc/accounts-qt/html/graph_legend.png /usr/share/doc/accounts-qt/html/index.html /usr/share/doc/accounts-qt/html/index.qhp /usr/share/doc/accounts-qt/html/jquery.js /usr/share/doc/accounts-qt/html/manager_8cpp_source.html /usr/share/doc/accounts-qt/html/manager_8h_source.html /usr/share/doc/accounts-qt/html/manager__p_8h_source.html /usr/share/doc/accounts-qt/html/menu.js /usr/share/doc/accounts-qt/html/menudata.js /usr/share/doc/accounts-qt/html/nav_f.png /usr/share/doc/accounts-qt/html/nav_g.png /usr/share/doc/accounts-qt/html/nav_h.png /usr/share/doc/accounts-qt/html/navtree.css /usr/share/doc/accounts-qt/html/navtree.js /usr/share/doc/accounts-qt/html/navtreedata.js /usr/share/doc/accounts-qt/html/navtreeindex0.js /usr/share/doc/accounts-qt/html/open.png /usr/share/doc/accounts-qt/html/pages.html /usr/share/doc/accounts-qt/html/provider_8cpp_source.html /usr/share/doc/accounts-qt/html/provider_8h_source.html /usr/share/doc/accounts-qt/html/resize.js /usr/share/doc/accounts-qt/html/service-type_8cpp_source.html /usr/share/doc/accounts-qt/html/service-type_8h_source.html /usr/share/doc/accounts-qt/html/service_8cpp_source.html /usr/share/doc/accounts-qt/html/service_8h_source.html /usr/share/doc/accounts-qt/html/splitbar.png /usr/share/doc/accounts-qt/html/sync_off.png /usr/share/doc/accounts-qt/html/sync_on.png /usr/share/doc/accounts-qt/html/tab_a.png /usr/share/doc/accounts-qt/html/tab_b.png /usr/share/doc/accounts-qt/html/tab_h.png /usr/share/doc/accounts-qt/html/tab_s.png /usr/share/doc/accounts-qt/html/tabs.css /usr/share/doc/accounts-qt/html/utils_8cpp_source.html /usr/share/doc/accounts-qt/html/utils_8h_source.html |
![]() |
libaccounts-qt-1.13-alt2_12.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/include/accounts-qt5/Accounts/Account /usr/include/accounts-qt5/Accounts/AccountService /usr/include/accounts-qt5/Accounts/Application /usr/include/accounts-qt5/Accounts/AuthData /usr/include/accounts-qt5/Accounts/Error /usr/include/accounts-qt5/Accounts/Manager /usr/include/accounts-qt5/Accounts/Provider /usr/include/accounts-qt5/Accounts/Service /usr/include/accounts-qt5/Accounts/ServiceType /usr/include/accounts-qt5/Accounts/account-service.h /usr/include/accounts-qt5/Accounts/account.h /usr/include/accounts-qt5/Accounts/accountscommon.h /usr/include/accounts-qt5/Accounts/application.h /usr/include/accounts-qt5/Accounts/auth-data.h /usr/include/accounts-qt5/Accounts/error.h /usr/include/accounts-qt5/Accounts/manager.h /usr/include/accounts-qt5/Accounts/manager_p.h /usr/include/accounts-qt5/Accounts/provider.h /usr/include/accounts-qt5/Accounts/service-type.h /usr/include/accounts-qt5/Accounts/service.h /usr/include/accounts-qt5/Accounts/utils.h /usr/lib64/cmake/AccountsQt5/AccountsQt5Config.cmake /usr/lib64/cmake/AccountsQt5/AccountsQt5ConfigVersion.cmake /usr/lib64/libaccounts-qt5.so /usr/lib64/libaccounts-qt5.so.1 /usr/lib64/libaccounts-qt5.so.1.2 /usr/lib64/libaccounts-qt5.so.1.2.0 /usr/lib64/pkgconfig/accounts-qt5.pc /usr/share/doc/accounts-qt/html/account-service_8cpp_source.html /usr/share/doc/accounts-qt/html/account-service_8h_source.html /usr/share/doc/accounts-qt/html/account_8cpp_source.html /usr/share/doc/accounts-qt/html/account_8h_source.html /usr/share/doc/accounts-qt/html/accountscommon_8h_source.html /usr/share/doc/accounts-qt/html/annotated.html /usr/share/doc/accounts-qt/html/annotated_dup.js /usr/share/doc/accounts-qt/html/application_8cpp_source.html /usr/share/doc/accounts-qt/html/application_8h_source.html /usr/share/doc/accounts-qt/html/auth-data_8cpp_source.html /usr/share/doc/accounts-qt/html/auth-data_8h_source.html /usr/share/doc/accounts-qt/html/bc_s.png /usr/share/doc/accounts-qt/html/bdwn.png /usr/share/doc/accounts-qt/html/classAccounts_1_1AccountService-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AccountService.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AccountService.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Application-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Application.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Application.js /usr/share/doc/accounts-qt/html/classAccounts_1_1AuthData-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AuthData.html /usr/share/doc/accounts-qt/html/classAccounts_1_1AuthData.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Error-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Error.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Error.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Manager-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Manager.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Manager.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Provider-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Provider.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Provider.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Service-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Service.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Service.js /usr/share/doc/accounts-qt/html/classAccounts_1_1ServiceType-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1ServiceType.html /usr/share/doc/accounts-qt/html/classAccounts_1_1ServiceType.js /usr/share/doc/accounts-qt/html/classAccounts_1_1Watch-members.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Watch.html /usr/share/doc/accounts-qt/html/classAccounts_1_1Watch.js /usr/share/doc/accounts-qt/html/classes.html /usr/share/doc/accounts-qt/html/closed.png /usr/share/doc/accounts-qt/html/deprecated.html /usr/share/doc/accounts-qt/html/dir_61c9e5842729cb34568d93cb98ad85b9.html /usr/share/doc/accounts-qt/html/dir_c3d1d086c816c0518443c9e800634b9c.html /usr/share/doc/accounts-qt/html/dir_c3d1d086c816c0518443c9e800634b9c.js /usr/share/doc/accounts-qt/html/dir_e68e8157741866f444e17edd764ebbae.html /usr/share/doc/accounts-qt/html/doc.png /usr/share/doc/accounts-qt/html/doxygen.css /usr/share/doc/accounts-qt/html/doxygen.png /usr/share/doc/accounts-qt/html/dynsections.js /usr/share/doc/accounts-qt/html/error_8cpp_source.html /usr/share/doc/accounts-qt/html/error_8h_source.html /usr/share/doc/accounts-qt/html/files.html /usr/share/doc/accounts-qt/html/files_dup.js /usr/share/doc/accounts-qt/html/folderclosed.png /usr/share/doc/accounts-qt/html/folderopen.png /usr/share/doc/accounts-qt/html/functions.html /usr/share/doc/accounts-qt/html/functions_enum.html /usr/share/doc/accounts-qt/html/functions_eval.html /usr/share/doc/accounts-qt/html/functions_func.html /usr/share/doc/accounts-qt/html/graph_legend.html /usr/share/doc/accounts-qt/html/graph_legend.md5 /usr/share/doc/accounts-qt/html/graph_legend.png /usr/share/doc/accounts-qt/html/index.html /usr/share/doc/accounts-qt/html/index.qhp /usr/share/doc/accounts-qt/html/jquery.js /usr/share/doc/accounts-qt/html/manager_8cpp_source.html /usr/share/doc/accounts-qt/html/manager_8h_source.html /usr/share/doc/accounts-qt/html/manager__p_8h_source.html /usr/share/doc/accounts-qt/html/menu.js /usr/share/doc/accounts-qt/html/menudata.js /usr/share/doc/accounts-qt/html/nav_f.png /usr/share/doc/accounts-qt/html/nav_g.png /usr/share/doc/accounts-qt/html/nav_h.png /usr/share/doc/accounts-qt/html/navtree.css /usr/share/doc/accounts-qt/html/navtree.js /usr/share/doc/accounts-qt/html/navtreedata.js /usr/share/doc/accounts-qt/html/navtreeindex0.js /usr/share/doc/accounts-qt/html/open.png /usr/share/doc/accounts-qt/html/pages.html /usr/share/doc/accounts-qt/html/provider_8cpp_source.html /usr/share/doc/accounts-qt/html/provider_8h_source.html /usr/share/doc/accounts-qt/html/resize.js /usr/share/doc/accounts-qt/html/service-type_8cpp_source.html /usr/share/doc/accounts-qt/html/service-type_8h_source.html /usr/share/doc/accounts-qt/html/service_8cpp_source.html /usr/share/doc/accounts-qt/html/service_8h_source.html /usr/share/doc/accounts-qt/html/splitbar.png /usr/share/doc/accounts-qt/html/sync_off.png /usr/share/doc/accounts-qt/html/sync_on.png /usr/share/doc/accounts-qt/html/tab_a.png /usr/share/doc/accounts-qt/html/tab_b.png /usr/share/doc/accounts-qt/html/tab_h.png /usr/share/doc/accounts-qt/html/tab_s.png /usr/share/doc/accounts-qt/html/tabs.css /usr/share/doc/accounts-qt/html/utils_8cpp_source.html /usr/share/doc/accounts-qt/html/utils_8h_source.html |
![]() |
libatlascpp-devel-0.6.4-alt1_2.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libcegui-devel-0.7.9-alt1_14.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libchardet-1.0.5-alt1_1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/libchardet/Changelog /usr/share/doc/libchardet/LICENSE |
![]() |
libchardet-1.0.5-alt1_1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/libchardet/Changelog /usr/share/doc/libchardet/LICENSE |
![]() |
libcmml-0.9.1-alt3_20.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/man/man1/cmml-fix.1.xz /usr/share/man/man1/cmml-timeshift.1.xz /usr/share/man/man1/cmml-validate.1.xz /usr/share/man/man6/cmml-fortune.6.xz |
![]() |
libcmml-0.9.1-alt3_20.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/man/man1/cmml-fix.1.xz /usr/share/man/man1/cmml-timeshift.1.xz /usr/share/man/man1/cmml-validate.1.xz /usr/share/man/man6/cmml-fortune.6.xz |
![]() |
libctl5-3.2.2-alt3_3.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/gen-ctl-io /usr/include/ctl/ctl.h /usr/include/ctl/ctlgeom-types.h /usr/include/ctl/ctlgeom.h /usr/lib/libctl.so /usr/lib/libctlgeom.so /usr/share/libctl/base/class.scm /usr/share/libctl/base/ctl.scm /usr/share/libctl/base/extern-funcs.scm /usr/share/libctl/base/help.scm /usr/share/libctl/base/include.scm /usr/share/libctl/base/interaction.scm /usr/share/libctl/base/io-vars.scm /usr/share/libctl/base/main.c /usr/share/libctl/base/math-utils.scm /usr/share/libctl/base/matrix3x3.scm /usr/share/libctl/base/simplex.scm /usr/share/libctl/base/utils.scm /usr/share/libctl/base/vector3.scm /usr/share/libctl/utils/ctl-io.scm /usr/share/libctl/utils/geom.c /usr/share/libctl/utils/geom.scm /usr/share/libctl/utils/nlopt-constants.scm /usr/share/libctl/utils/nlopt.c /usr/share/man/man1/gen-ctl-io.1.xz |
![]() |
libctl5-3.2.2-alt3_3.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/gen-ctl-io /usr/include/ctl/ctl.h /usr/include/ctl/ctlgeom-types.h /usr/include/ctl/ctlgeom.h /usr/lib64/libctl.so /usr/lib64/libctlgeom.so /usr/share/libctl/base/class.scm /usr/share/libctl/base/ctl.scm /usr/share/libctl/base/extern-funcs.scm /usr/share/libctl/base/help.scm /usr/share/libctl/base/include.scm /usr/share/libctl/base/interaction.scm /usr/share/libctl/base/io-vars.scm /usr/share/libctl/base/main.c /usr/share/libctl/base/math-utils.scm /usr/share/libctl/base/matrix3x3.scm /usr/share/libctl/base/simplex.scm /usr/share/libctl/base/utils.scm /usr/share/libctl/base/vector3.scm /usr/share/libctl/utils/ctl-io.scm /usr/share/libctl/utils/geom.c /usr/share/libctl/utils/geom.scm /usr/share/libctl/utils/nlopt-constants.scm /usr/share/libctl/utils/nlopt.c /usr/share/man/man1/gen-ctl-io.1.xz |
![]() |
libdap-3.20.6-alt1_1.x86_64 | uncompressed-manpages | info | Package contains uncompressed manual pages. |
![]() |
libdap-devel-3.20.6-alt1_1.x86_64 | uncompressed-manpages | info | Package contains uncompressed manual pages. |
![]() |
libdivecomputer-subsurface-devel-4.9.6-alt1_1.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libdlna-devel-0.2.4-alt2_12.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libdmapsharing-2.9.39-alt2.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/vala/vapi/libdmapsharing-3.0.vapi |
![]() |
libdmapsharing-2.9.39-alt2.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/vala/vapi/libdmapsharing-3.0.vapi |
![]() |
liberis-1.3.23-alt2_15.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
libfplll-static-5.3.1-alt1_1.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libgalago-devel-0.5.2-alt1_17.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
libgeotiff2-1.3.0-alt3.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/applygeo /usr/bin/csv2html /usr/bin/geotifcp /usr/bin/listgeo /usr/bin/makegeo /usr/include/cpl_serv.h /usr/include/epsg_datum.inc /usr/include/epsg_ellipse.inc /usr/include/epsg_gcs.inc /usr/include/epsg_pcs.inc /usr/include/epsg_pm.inc /usr/include/epsg_proj.inc /usr/include/epsg_units.inc /usr/include/epsg_vertcs.inc /usr/include/geo_config.h /usr/include/geo_ctrans.inc /usr/include/geo_incode_defs.h /usr/include/geo_keyp.h /usr/include/geo_normalize.h /usr/include/geo_simpletags.h /usr/include/geo_tiffp.h /usr/include/geokeys.h /usr/include/geokeys.inc /usr/include/geonames.h /usr/include/geotiff.h /usr/include/geotiffio.h /usr/include/geovalues.h /usr/include/xtiffio.h /usr/lib/libgeotiff.a /usr/lib/libgeotiff.so /usr/share/epsg_csv/alias.csv /usr/share/epsg_csv/area.csv /usr/share/epsg_csv/change.csv /usr/share/epsg_csv/codes.csv /usr/share/epsg_csv/coordinate_axis.csv /usr/share/epsg_csv/coordinate_axis_name.csv /usr/share/epsg_csv/coordinate_operation.csv /usr/share/epsg_csv/coordinate_operation_method.csv /usr/share/epsg_csv/coordinate_operation_parameter.csv /usr/share/epsg_csv/coordinate_operation_parameter_value.csv /usr/share/epsg_csv/coordinate_operation_path.csv /usr/share/epsg_csv/coordinate_reference_system.csv /usr/share/epsg_csv/coordinate_system.csv /usr/share/epsg_csv/datum.csv /usr/share/epsg_csv/ellipsoid.csv /usr/share/epsg_csv/esri_datum_override.csv /usr/share/epsg_csv/gcs.csv /usr/share/epsg_csv/gcs.override.csv /usr/share/epsg_csv/naming_system.csv /usr/share/epsg_csv/pcs.csv /usr/share/epsg_csv/pcs.override.csv /usr/share/epsg_csv/prime_meridian.csv /usr/share/epsg_csv/projop_wparm.csv /usr/share/epsg_csv/stateplane.csv /usr/share/epsg_csv/unit_of_measure.csv /usr/share/epsg_csv/version_history.csv |
![]() |
libgeotiff2-1.3.0-alt3.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/applygeo /usr/bin/csv2html /usr/bin/geotifcp /usr/bin/listgeo /usr/bin/makegeo /usr/include/cpl_serv.h /usr/include/epsg_datum.inc /usr/include/epsg_ellipse.inc /usr/include/epsg_gcs.inc /usr/include/epsg_pcs.inc /usr/include/epsg_pm.inc /usr/include/epsg_proj.inc /usr/include/epsg_units.inc /usr/include/epsg_vertcs.inc /usr/include/geo_config.h /usr/include/geo_ctrans.inc /usr/include/geo_incode_defs.h /usr/include/geo_keyp.h /usr/include/geo_normalize.h /usr/include/geo_simpletags.h /usr/include/geo_tiffp.h /usr/include/geokeys.h /usr/include/geokeys.inc /usr/include/geonames.h /usr/include/geotiff.h /usr/include/geotiffio.h /usr/include/geovalues.h /usr/include/xtiffio.h /usr/lib64/libgeotiff.a /usr/lib64/libgeotiff.so /usr/share/epsg_csv/alias.csv /usr/share/epsg_csv/area.csv /usr/share/epsg_csv/change.csv /usr/share/epsg_csv/codes.csv /usr/share/epsg_csv/coordinate_axis.csv /usr/share/epsg_csv/coordinate_axis_name.csv /usr/share/epsg_csv/coordinate_operation.csv /usr/share/epsg_csv/coordinate_operation_method.csv /usr/share/epsg_csv/coordinate_operation_parameter.csv /usr/share/epsg_csv/coordinate_operation_parameter_value.csv /usr/share/epsg_csv/coordinate_operation_path.csv /usr/share/epsg_csv/coordinate_reference_system.csv /usr/share/epsg_csv/coordinate_system.csv /usr/share/epsg_csv/datum.csv /usr/share/epsg_csv/ellipsoid.csv /usr/share/epsg_csv/esri_datum_override.csv /usr/share/epsg_csv/gcs.csv /usr/share/epsg_csv/gcs.override.csv /usr/share/epsg_csv/naming_system.csv /usr/share/epsg_csv/pcs.csv /usr/share/epsg_csv/pcs.override.csv /usr/share/epsg_csv/prime_meridian.csv /usr/share/epsg_csv/projop_wparm.csv /usr/share/epsg_csv/stateplane.csv /usr/share/epsg_csv/unit_of_measure.csv /usr/share/epsg_csv/version_history.csv |
![]() |
libgtkextra-x11-devel-3.3.4-alt1_1.x86_64 | rpm-filesystem-conflict-file-file | warn | There are file conflicts with the package libgtk+extra2-devel-docs-2.1.2-alt3.noarch, for example, /usr/share/gtk-doc/html/gtkextra/GtkPlotArray.html (10 file conflicts in total). Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libguichan05-devel-0.5.0-alt1_26.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libinfinity-0.7.1-alt1_2.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/girepository-1.0/InfGnutls-3.0.typelib /usr/lib/girepository-1.0/InfGsasl-1.0.typelib /usr/lib/girepository-1.0/InfGtk-0.7.typelib /usr/lib/girepository-1.0/InfText-0.7.typelib /usr/lib/girepository-1.0/InfTextGtk-0.7.typelib /usr/lib/girepository-1.0/Infinity-0.7.typelib /usr/lib/girepository-1.0/Infinityc-0.7.typelib /usr/lib/girepository-1.0/Infinityd-0.7.typelib /usr/lib/girepository-1.0/Infinoted-0.7.typelib /usr/share/gir-1.0/InfGnutls-3.0.gir /usr/share/gir-1.0/InfGsasl-1.0.gir /usr/share/gir-1.0/InfGtk-0.7.gir /usr/share/gir-1.0/InfText-0.7.gir /usr/share/gir-1.0/InfTextGtk-0.7.gir /usr/share/gir-1.0/Infinity-0.7.gir /usr/share/gir-1.0/Infinityc-0.7.gir /usr/share/gir-1.0/Infinityd-0.7.gir /usr/share/gir-1.0/Infinoted-0.7.gir |
![]() |
libinfinity-0.7.1-alt1_2.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib64/girepository-1.0/InfGnutls-3.0.typelib /usr/lib64/girepository-1.0/InfGsasl-1.0.typelib /usr/lib64/girepository-1.0/InfGtk-0.7.typelib /usr/lib64/girepository-1.0/InfText-0.7.typelib /usr/lib64/girepository-1.0/InfTextGtk-0.7.typelib /usr/lib64/girepository-1.0/Infinity-0.7.typelib /usr/lib64/girepository-1.0/Infinityc-0.7.typelib /usr/lib64/girepository-1.0/Infinityd-0.7.typelib /usr/lib64/girepository-1.0/Infinoted-0.7.typelib /usr/share/gir-1.0/InfGnutls-3.0.gir /usr/share/gir-1.0/InfGsasl-1.0.gir /usr/share/gir-1.0/InfGtk-0.7.gir /usr/share/gir-1.0/InfText-0.7.gir /usr/share/gir-1.0/InfTextGtk-0.7.gir /usr/share/gir-1.0/Infinity-0.7.gir /usr/share/gir-1.0/Infinityc-0.7.gir /usr/share/gir-1.0/Infinityd-0.7.gir /usr/share/gir-1.0/Infinoted-0.7.gir |
![]() |
libirman-0.5.2-alt1_10.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/libirman/README |
![]() |
libirman-0.5.2-alt1_10.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/libirman/README |
![]() |
libkarma-0.1.2-alt1_12.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/libkarma/ChangeLog /usr/share/doc/libkarma/THANKS /usr/share/doc/libkarma/TODO |
![]() |
libkarma-0.1.2-alt1_12.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/libkarma/ChangeLog /usr/share/doc/libkarma/THANKS /usr/share/doc/libkarma/TODO |
![]() |
libkarma-devel-0.1.2-alt1_12.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
liblettertree-devel-0.1-alt1_13.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
liblettertree0-0.1-alt1_13.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
liblettertree0-debuginfo-0.1-alt1_13.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
liblzmalib-devel-0.0.1-alt1_10.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libmapsdb-devel-0.16-alt1.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
libmilter-devel-static-8.14.3_1-alt1_11.x86_64 | rpm-filesystem-conflict-file-file | warn | Files /usr/include/libmilter/mfapi.h /usr/include/libmilter/mfdef.h /usr/include/libmilter/milter.h conflict with the package sendmail-devel-8.16.1-alt1.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libmonetra-7.14.0-alt1_1.1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/libmcve.la |
![]() |
libmonetra-7.14.0-alt1_1.1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib64/libmcve.la |
![]() |
libmonetra-devel-7.14.0-alt1_1.1.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libmsym-devel-0.2.3-alt2_4.x86_64 | rpm-filesystem-conflict-file-file | warn | Files /usr/include/libmsym/msym.h /usr/include/libmsym/msym_error.h conflict with the package avogadro-devel-1.2.0-alt7.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libnut-devel-0.0.675-alt1_10.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libomp-test-10.0.0-alt1_1.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libompl-devel-1.5.0-alt1_1.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libopennet-devel-0.9.9-alt1_10.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libpari23-devel-2.3.5-alt1_18.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libpgf-devel-6.14.12-alt1_10.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
libpgf-devel-6.14.12-alt1_10.x86_64 | rpm-filesystem-conflict-file-file | warn | File /usr/share/man/man3/config.h.3.xz conflicts with the package liblog4cplus-devel-docs-2.0.5-alt1.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libpqxx-4.0.1-alt2_17.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
libpreludedb-doc-5.1.0-alt1_2.noarch | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
libshout-idjc-devel-2.4.1-alt1_1.x86_64 | rpm-filesystem-conflict-file-file | warn | File /usr/share/aclocal/shout.m4 conflicts with the package libshout2-devel-2.2.2-alt3.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libsombok-2.4.0-alt1_8.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/sombok/annotated.html /usr/share/doc/sombok/bc_s.png /usr/share/doc/sombok/bdwn.png /usr/share/doc/sombok/break_8c.html /usr/share/doc/sombok/charprop_8c.html /usr/share/doc/sombok/classes.html /usr/share/doc/sombok/closed.png /usr/share/doc/sombok/deprecated.html /usr/share/doc/sombok/dir_97aefd0d527b934f1d99a682da8fe6a9.html /usr/share/doc/sombok/dir_d44c64559bbebec7f509842c48db8b23.html /usr/share/doc/sombok/doc.png /usr/share/doc/sombok/doxygen.css /usr/share/doc/sombok/doxygen.png /usr/share/doc/sombok/dynsections.js /usr/share/doc/sombok/files.html /usr/share/doc/sombok/folderclosed.png /usr/share/doc/sombok/folderopen.png /usr/share/doc/sombok/functions.html /usr/share/doc/sombok/functions_vars.html /usr/share/doc/sombok/gcstring_8c.html /usr/share/doc/sombok/globals.html /usr/share/doc/sombok/globals_enum.html /usr/share/doc/sombok/globals_eval.html /usr/share/doc/sombok/globals_func.html /usr/share/doc/sombok/globals_type.html /usr/share/doc/sombok/globals_vars.html /usr/share/doc/sombok/graph_legend.dot /usr/share/doc/sombok/graph_legend.html /usr/share/doc/sombok/group__gcstring.dot /usr/share/doc/sombok/group__gcstring.html /usr/share/doc/sombok/group__linebreak.dot /usr/share/doc/sombok/group__linebreak.html /usr/share/doc/sombok/group__linebreak__break.dot /usr/share/doc/sombok/group__linebreak__break.html /usr/share/doc/sombok/group__linebreak__southeastasian.html /usr/share/doc/sombok/group__linebreak__utils.html /usr/share/doc/sombok/group__utf8.html /usr/share/doc/sombok/index.html /usr/share/doc/sombok/jquery.js /usr/share/doc/sombok/linebreak_8c.html /usr/share/doc/sombok/menu.js /usr/share/doc/sombok/menudata.js /usr/share/doc/sombok/modules.html /usr/share/doc/sombok/nav_f.png /usr/share/doc/sombok/nav_g.png /usr/share/doc/sombok/nav_h.png /usr/share/doc/sombok/open.png /usr/share/doc/sombok/pages.html /usr/share/doc/sombok/sombok_8h.html /usr/share/doc/sombok/sombok_8h_source.html /usr/share/doc/sombok/southeastasian_8c.html /usr/share/doc/sombok/splitbar.png /usr/share/doc/sombok/structgcchar__t.html /usr/share/doc/sombok/structgcstring__t.html /usr/share/doc/sombok/structgcstring__t__coll__graph.dot /usr/share/doc/sombok/structlinebreak__t.html /usr/share/doc/sombok/structlinebreak__t__coll__graph.dot /usr/share/doc/sombok/structmapent__t.html /usr/share/doc/sombok/structunistr__t.html /usr/share/doc/sombok/sync_off.png /usr/share/doc/sombok/sync_on.png /usr/share/doc/sombok/tab_a.png /usr/share/doc/sombok/tab_b.png /usr/share/doc/sombok/tab_h.png /usr/share/doc/sombok/tab_s.png /usr/share/doc/sombok/tabs.css /usr/share/doc/sombok/todo.html /usr/share/doc/sombok/utf8_8c.html /usr/share/doc/sombok/utils_8c.html |
![]() |
libsombok-2.4.0-alt1_8.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/sombok/annotated.html /usr/share/doc/sombok/bc_s.png /usr/share/doc/sombok/bdwn.png /usr/share/doc/sombok/break_8c.html /usr/share/doc/sombok/charprop_8c.html /usr/share/doc/sombok/classes.html /usr/share/doc/sombok/closed.png /usr/share/doc/sombok/deprecated.html /usr/share/doc/sombok/dir_97aefd0d527b934f1d99a682da8fe6a9.html /usr/share/doc/sombok/dir_d44c64559bbebec7f509842c48db8b23.html /usr/share/doc/sombok/doc.png /usr/share/doc/sombok/doxygen.css /usr/share/doc/sombok/doxygen.png /usr/share/doc/sombok/dynsections.js /usr/share/doc/sombok/files.html /usr/share/doc/sombok/folderclosed.png /usr/share/doc/sombok/folderopen.png /usr/share/doc/sombok/functions.html /usr/share/doc/sombok/functions_vars.html /usr/share/doc/sombok/gcstring_8c.html /usr/share/doc/sombok/globals.html /usr/share/doc/sombok/globals_enum.html /usr/share/doc/sombok/globals_eval.html /usr/share/doc/sombok/globals_func.html /usr/share/doc/sombok/globals_type.html /usr/share/doc/sombok/globals_vars.html /usr/share/doc/sombok/graph_legend.dot /usr/share/doc/sombok/graph_legend.html /usr/share/doc/sombok/group__gcstring.dot /usr/share/doc/sombok/group__gcstring.html /usr/share/doc/sombok/group__linebreak.dot /usr/share/doc/sombok/group__linebreak.html /usr/share/doc/sombok/group__linebreak__break.dot /usr/share/doc/sombok/group__linebreak__break.html /usr/share/doc/sombok/group__linebreak__southeastasian.html /usr/share/doc/sombok/group__linebreak__utils.html /usr/share/doc/sombok/group__utf8.html /usr/share/doc/sombok/index.html /usr/share/doc/sombok/jquery.js /usr/share/doc/sombok/linebreak_8c.html /usr/share/doc/sombok/menu.js /usr/share/doc/sombok/menudata.js /usr/share/doc/sombok/modules.html /usr/share/doc/sombok/nav_f.png /usr/share/doc/sombok/nav_g.png /usr/share/doc/sombok/nav_h.png /usr/share/doc/sombok/open.png /usr/share/doc/sombok/pages.html /usr/share/doc/sombok/sombok_8h.html /usr/share/doc/sombok/sombok_8h_source.html /usr/share/doc/sombok/southeastasian_8c.html /usr/share/doc/sombok/splitbar.png /usr/share/doc/sombok/structgcchar__t.html /usr/share/doc/sombok/structgcstring__t.html /usr/share/doc/sombok/structgcstring__t__coll__graph.dot /usr/share/doc/sombok/structlinebreak__t.html /usr/share/doc/sombok/structlinebreak__t__coll__graph.dot /usr/share/doc/sombok/structmapent__t.html /usr/share/doc/sombok/structunistr__t.html /usr/share/doc/sombok/sync_off.png /usr/share/doc/sombok/sync_on.png /usr/share/doc/sombok/tab_a.png /usr/share/doc/sombok/tab_b.png /usr/share/doc/sombok/tab_h.png /usr/share/doc/sombok/tab_s.png /usr/share/doc/sombok/tabs.css /usr/share/doc/sombok/todo.html /usr/share/doc/sombok/utf8_8c.html /usr/share/doc/sombok/utils_8c.html |
![]() |
libstatgrab-devel-0.92-alt1_1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
libstatgrab10-0.92-alt1_1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
libticables-devel-1.3.4-alt1_1.x86_64 | rpm-filesystem-conflict-file-file | warn | Files /usr/include/tilp2/ticables.h /usr/lib64/pkgconfig/ticables2.pc conflict with the package libticables2-devel-1.3.5-alt1_4.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. File /usr/share/locale/fr/LC_MESSAGES/libticables2.mo conflicts with the package libticables2-i18n-1.3.5-alt1_4.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libticables-devel-1.3.4-alt1_1.x86_64 | rpm-filesystem-conflict-symlink-symlink | warn | value of symlink /usr/lib64/libticables2.so is different from the same symlink in the package libticables2-devel-1.3.5-alt1_4.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libticables2-devel-1.3.5-alt1_4.x86_64 | rpm-filesystem-conflict-file-file | warn | Files /usr/include/tilp2/ticables.h /usr/lib64/pkgconfig/ticables2.pc conflict with the package libticables-devel-1.3.4-alt1_1.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libticables2-devel-1.3.5-alt1_4.x86_64 | rpm-filesystem-conflict-symlink-symlink | warn | value of symlink /usr/lib64/libticables2.so is different from the same symlink in the package libticables-devel-1.3.4-alt1_1.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libticables2-i18n-1.3.5-alt1_4.noarch | rpm-filesystem-conflict-file-file | warn | File /usr/share/locale/fr/LC_MESSAGES/libticables2.mo conflicts with the package libticables-devel-1.3.4-alt1_1.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
libtpcmisc-static-1.4.8-alt2_17.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libtranslit-icu-0.0.3-alt1_23.x86_64 | altlinux-policy-shared-lib-contains-devel-so | info | SharedLibs Policy Draft violation: Shared Lib package should not contain symlink /usr/lib64/libtranslit/modules/libtransliticu.so but just /usr/lib64/libtranslit/modules/libtransliticu.so.0.0.0. According to SharedLibs Policy Draft, symlink /usr/lib64/libtranslit/modules/libtransliticu.so should be placed in a special subpackage named lib |
![]() |
libtranslit-m17n-0.0.3-alt1_23.x86_64 | altlinux-policy-shared-lib-contains-devel-so | info | SharedLibs Policy Draft violation: Shared Lib package should not contain symlink /usr/lib64/libtranslit/modules/libtranslitm17n.so but just /usr/lib64/libtranslit/modules/libtranslitm17n.so.0.0.0. According to SharedLibs Policy Draft, symlink /usr/lib64/libtranslit/modules/libtranslitm17n.so should be placed in a special subpackage named lib |
![]() |
libverto-0.3.0-alt1_7.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/include/verto-tevent.h /usr/lib/libverto-tevent.so /usr/lib/libverto-tevent.so.1 /usr/lib/libverto-tevent.so.1.0.0 /usr/lib/pkgconfig/libverto-tevent.pc |
![]() |
libverto-0.3.0-alt1_7.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/include/verto-tevent.h /usr/lib64/libverto-tevent.so /usr/lib64/libverto-tevent.so.1 /usr/lib64/libverto-tevent.so.1.0.0 /usr/lib64/pkgconfig/libverto-tevent.pc |
![]() |
libwfut-0.2.3-alt2_17.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib/python2.7/site-packages/libwfut/WFUTAvahiClient.py /usr/lib/python2.7/site-packages/libwfut/WFUTAvahiClient.pyc /usr/lib/python2.7/site-packages/libwfut/WFUTAvahiClient.pyo /usr/lib/python2.7/site-packages/libwfut/WFUTCore.py /usr/lib/python2.7/site-packages/libwfut/WFUTCore.pyc /usr/lib/python2.7/site-packages/libwfut/WFUTCore.pyo /usr/lib/python2.7/site-packages/libwfut/__init__.py /usr/lib/python2.7/site-packages/libwfut/__init__.pyc /usr/lib/python2.7/site-packages/libwfut/__init__.pyo /usr/lib/python2.7/site-packages/libwfut/pyWFUT.la /usr/lib/python2.7/site-packages/libwfut/pyWFUT.so /usr/lib/python2.7/site-packages/libwfut/wfut-python.py /usr/lib/python2.7/site-packages/libwfut/wfut-python.pyc /usr/lib/python2.7/site-packages/libwfut/wfut-python.pyo /usr/lib/python2.7/site-packages/libwfut/wfut-server.py /usr/lib/python2.7/site-packages/libwfut/wfut-server.pyc /usr/lib/python2.7/site-packages/libwfut/wfut-server.pyo |
![]() |
libwfut-0.2.3-alt2_17.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/lib64/python2.7/site-packages/libwfut/WFUTAvahiClient.py /usr/lib64/python2.7/site-packages/libwfut/WFUTAvahiClient.pyc /usr/lib64/python2.7/site-packages/libwfut/WFUTAvahiClient.pyo /usr/lib64/python2.7/site-packages/libwfut/WFUTCore.py /usr/lib64/python2.7/site-packages/libwfut/WFUTCore.pyc /usr/lib64/python2.7/site-packages/libwfut/WFUTCore.pyo /usr/lib64/python2.7/site-packages/libwfut/__init__.py /usr/lib64/python2.7/site-packages/libwfut/__init__.pyc /usr/lib64/python2.7/site-packages/libwfut/__init__.pyo /usr/lib64/python2.7/site-packages/libwfut/pyWFUT.la /usr/lib64/python2.7/site-packages/libwfut/pyWFUT.so /usr/lib64/python2.7/site-packages/libwfut/wfut-python.py /usr/lib64/python2.7/site-packages/libwfut/wfut-python.pyc /usr/lib64/python2.7/site-packages/libwfut/wfut-python.pyo /usr/lib64/python2.7/site-packages/libwfut/wfut-server.py /usr/lib64/python2.7/site-packages/libwfut/wfut-server.pyc /usr/lib64/python2.7/site-packages/libwfut/wfut-server.pyo |
![]() |
libxsettings-client-devel-0.17-alt2.x86_64 | library-pkgnames-static | warn | package contains static library which has the same name as a shared library in the repository, but neither package name ends with -devel-static according to http://altlinux.org/Drafts/SharedLibs nor the package explicitly conflicts with the package with .so library |
![]() |
libzeitgeist-devel-0.3.18-alt2_7.x86_64 | sisyphus_check-check-dirlist | warn | sisyphus_check --check-dirlist failed: package contains a directory /usr/share/vala/vapi that exclusively belongs to package vapi-common |
![]() |
light-1.2.2-alt1_2.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/light/COPYING /usr/share/doc/light/ChangeLog.md /usr/share/doc/light/README.md |
![]() |
light-1.2.2-alt1_2.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/light/COPYING /usr/share/doc/light/ChangeLog.md /usr/share/doc/light/README.md |
![]() |
logoved-autorepo-0.016-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/logoved-autorepo-helper-prepare-iteration /usr/bin/logoved-autorepo-helper-merge-task-goodies |
![]() |
love-11.2-alt1_2.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/love.desktop: hint: value "Development;Game;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
love-11.2-alt1_2.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
lpairs-1.0.5-alt1_1.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
matchbox-keyboard-0.1-alt1_10.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
matchbox-panel-0.9.3-alt1_12.qa1.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-applet-menu-launcher.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-applet-clock.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-applet-system-monitor.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-launcher-term.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-applet-battery.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-applet-wireless.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
matchbox-panel-0.9.3-alt1_12.qa1.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
matchbox-panel-manager-0.1-alt1_11.x86_64 | freedesktop-categories | fail | Main Categories consist of those categories that every conforming desktop environment MUST support.(http://standards.freedesktop.org/menu-spec/latest/apa.html). None found in /usr/share/applications/mb-panel-manager.desktop. please, fix. Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/mb-panel-manager.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
matchbox-panel-manager-0.1-alt1_11.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/mb-panel-manager.desktop: warning: value "Application;" for key "Categories" in group "Desktop Entry" contains a deprecated value "Application" /usr/share/applications/mb-panel-manager.desktop: hint: value "Application;" for key "Categories" in group "Desktop Entry" does not contain a registered main category; application might only show up in a "catch-all" section of the application menu |
![]() |
matchbox-panel-manager-0.1-alt1_11.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
maven-3.5.4-alt1_10jpp8.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /etc/alternatives/packages.d/mvn_maven |
![]() |
maven-3.5.4-alt1_10jpp8.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /etc/alternatives/packages.d/mvn_maven |
![]() |
maven-filesystem-0.01-alt2.1.noarch | missing-url | info | Missing Url: in a package. |
![]() |
maven3-transaction-1.0.1-alt0.9jpp.noarch | missing-url | info | Missing Url: in a package. |
![]() |
maxr-0.2.6-alt2_3.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
milkytracker-1.02.00-alt3_5.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
mjpg-streamer-r160-alt1_6.2.src | requires-ImageMagick | info | Dependency on ImageMagick (compat package) found. It probably should be replaced with more specific dependency like /usr/bin/convert or ImageMagick-tools, or it can be already autodetected by findreq-shell. |
![]() |
mjpg-streamer-r160-alt1_6.2.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
moon-buggy-1.0.51-alt2_24.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
mozilla-plugin-java-1.8.0-openjdk-1.8.2-alt1_3jpp8.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/policyeditor.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
mythes-el-0.20070412-alt1_19.noarch | invalid-url | warn | Package has invalid Url:. It looks like a protocol part (http:,ftp:,etc.) is missing. |
![]() |
nazghul-0.7.1-alt2_23.20120228gitb0a402a.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
netembryo-0.1.1-alt2_5.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
nopaste-1.013-alt1_1.noarch | unmet-dependency-no-suitable-version | fail | install dependency perl-App-Nopaste has no suitable version. |
![]() |
octave-interval-3.2.0-alt2.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
octave-ltfat-2.3.1-alt2.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
octave-stk-2.6.1-alt1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
opencsg-1.4.2-alt1_8.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
openjfx-javadoc-8.0.202-alt1_8.b07jpp8.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
openni-1.5.7.10-alt2_17.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
opticalraytracer-2.7-alt2_12jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/opticalraytracer.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
pavuk-0.9.35-alt6.3.x86_64 | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/pavuk.sh |
![]() |
perl-Data-Array2ArrayMap-Hash-XSTree-0.13-alt4.2.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
perl-Data-Array2ArrayMap-Hash-XSTree-debuginfo-0.13-alt4.2.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
perl-Data-Array2ArrayMap-SDB-0.16-alt1.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
perl-Data-Array2ArrayMap-SDB-debuginfo-0.16-alt1.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
perl-Devel-REPL-1.003028-alt2_12.src | beehive-log-non-strict-dependency-i586 | info | perl-Devel-REPL: non-strict dependency on perl-Devel-REPL-Plugin-DDS perl-Devel-REPL: non-strict dependency on perl-Devel-REPL-Plugin-LexEnv perl-Devel-REPL: non-strict dependency on perl-Devel-REPL-Plugin-MultiLine-PPI |
![]() |
perl-Devel-REPL-1.003028-alt2_12.src | beehive-log-non-strict-dependency-x86_64 | info | perl-Devel-REPL: non-strict dependency on perl-Devel-REPL-Plugin-DDS perl-Devel-REPL: non-strict dependency on perl-Devel-REPL-Plugin-LexEnv perl-Devel-REPL: non-strict dependency on perl-Devel-REPL-Plugin-MultiLine-PPI |
![]() |
perl-Gear-Remotes-0.022-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/gear-remotes-set-from-url |
![]() |
perl-Math-Primality-scripts-0.08-alt2.noarch | rpm-filesystem-conflict-file-file | warn | File /usr/bin/primes.pl conflicts with the package perl-Math-Prime-Util-scripts-0.73-alt2.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
perl-Math-Prime-Util-scripts-0.73-alt2.noarch | rpm-filesystem-conflict-file-file | warn | File /usr/bin/primes.pl conflicts with the package perl-Math-Primality-scripts-0.08-alt2.noarch. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
perl-Sys-CPUtime-0.10-alt4.2.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
perl-Sys-CPUtime-debuginfo-0.10-alt4.2.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
perl-Tapper-Cmd-5.0.11-alt1_1.noarch | unsafe-tmp-usage-in-scripts | fail | The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/share/perl5/auto/Tapper/Cmd/Init/hello-world/run-hello-world.sh: $ grep -A5 -B5 /tmp/ /usr/share/perl5/auto/Tapper/Cmd/Init/hello-world/run-hello-world.sh start-tapper-daemon () { DAEMON=$1 if ps auxwww | grep -v grep | grep $DAEMON ; then kill $(ps auxwww | grep -v grep | grep $DAEMON | awk '{print $2}') fi $DAEMON > /tmp/$DAEMON-helloworld.log 2>&1 & } start-tapper-daemon tapper_reports_web_server.pl start-tapper-daemon tapper-reports-receiver start-tapper-daemon tapper-reports-api |
![]() |
pinball-0.3.4-alt1_1.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
pioneers-15.5-alt1_3.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
pioneers-15.5-alt1_3.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
portecle-1.10-alt1_5jpp8.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/portecle.desktop: hint: value "Utility;Security;System;Java;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
publican-4.3.2-alt3_13.noarch | file-in-usr-marked-as-conffile | warn | Files below /usr may not be marked as conffiles, since /usr might be mounted read-only and thus, the local system administrator would not have a chance to modify this configuration file. |
![]() |
publican-4.3.2-alt3_13.noarch | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/noarch/RPMS/publican-4.3.2-alt3_13.noarch.rpm: the package obsoletes itself sisyphus_check: check-deps ERROR: package dependencies violation /ALT/Sisyphus/files/noarch/RPMS/publican-4.3.2-alt3_13.noarch.rpm: The use of such a license name is ambiguous: Artistic |
![]() |
publican-doc-4.3.2-alt3_13.noarch | freedesktop-categories | fail | Main Categories consist of those categories that every conforming desktop environment MUST support.(http://standards.freedesktop.org/menu-spec/latest/apa.html). None found in /usr/share/applications/fedora-publican.desktop. please, fix. |
![]() |
publican-doc-4.3.2-alt3_13.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/fedora-publican.desktop: hint: value "Documentation;X-Red-Hat-Base;" for key "Categories" in group "Desktop Entry" does not contain a registered main category; application might only show up in a "catch-all" section of the application menu |
![]() |
publican-doc-4.3.2-alt3_13.noarch | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/noarch/RPMS/publican-doc-4.3.2-alt3_13.noarch.rpm: the package obsoletes itself sisyphus_check: check-deps ERROR: package dependencies violation /ALT/Sisyphus/files/noarch/RPMS/publican-doc-4.3.2-alt3_13.noarch.rpm: The use of such a license name is ambiguous: Artistic |
![]() |
publican-releasenotes-4.3.2-alt3_13.noarch | freedesktop-categories | fail | Main Categories consist of those categories that every conforming desktop environment MUST support.(http://standards.freedesktop.org/menu-spec/latest/apa.html). None found in /usr/share/applications/fedora-publican-releasenotes.desktop. please, fix. |
![]() |
publican-releasenotes-4.3.2-alt3_13.noarch | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/fedora-publican-releasenotes.desktop: hint: value "Documentation;X-Red-Hat-Base;" for key "Categories" in group "Desktop Entry" does not contain a registered main category; application might only show up in a "catch-all" section of the application menu |
![]() |
python-module-DistroDbMaker-0.025-alt1.noarch | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/noarch/RPMS/python-module-DistroDbMaker-0.025-alt1.noarch.rpm: forbidden requires: /usr/bin/python sisyphus_check: check-deps ERROR: package dependencies violation /ALT/Sisyphus/files/noarch/RPMS/python-module-DistroDbMaker-0.025-alt1.noarch.rpm: license not found in '/usr/share/license' directory: LGPL2+ |
![]() |
python-module-libcomps-doc-0.1.15-alt1_2.noarch | altlinux-python-python-requires-python3 | warn | python2 package requires python3-module-libcomps. |
![]() |
quarry-0.2.0-alt5_27.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
rachota-2.3-alt1_18.20130104cvsjpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/rachota.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
rachota-2.3-alt1_18.20130104cvsjpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
radius-engine-1.1-alt1_16.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
raidem-0.3.1-alt2_41.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
repocop-0.83-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/common/purge-keydir |
![]() |
repocop-collector-debian-menu-0.01-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/pkgcollectors/debian-menu/purge |
![]() |
repocop-collector-init-script-0.04-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/pkgcollectors/init-script/purge |
![]() |
repocop-collector-specfile-0.04-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/srccollectors/specfile/purge |
![]() |
repocop-collector-systemd-0.02-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/pkgcollectors/systemd/purge |
![]() |
repocop-demo-menu-altlinux-sisyphus-0.04.20201027-alt1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/kf5/applications/kf5/demo-menu-entry-alt-app-starter.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-alt-customize-branding.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-kamerka.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-konqbrowser.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-net.sourceforge.kid3.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.Help.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.akonadiconsole.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.akonadiimportwizard.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.akregator.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ark.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.bovo.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.calligraplan.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.calligraplanwork.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.cantor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.contactprintthemeeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.contactthemeeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.cuttlefish.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.dolphin.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.dragonplayer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.elisa.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.filelight.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.granatier.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.gwenview.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.headerthemeeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.heaptrack.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.juk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kaddressbook.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kaffeine.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalarm.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalgebra.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalgebramobile.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalzium.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kanagram.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kapptemplate.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kate.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.katomic.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kbibtex.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kbruch.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kcachegrind.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kcalc.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kcharselect.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.app.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.nonplasma.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.settings.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.sms.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdevelop.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdevelop_ps.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdf.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdiff3.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kfind.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kfloppy.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kgeography.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kget.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kgpg.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.khangman.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kig.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kigo.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kile.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kimagemapeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kinfocenter.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kiten.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kleopatra.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.klipper.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmag.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmahjongg.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmail2.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmines.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmix.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmousetool.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmouth.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmplot.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.knavalbattle.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.knetwalk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.knotes.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kolf.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kolourpaint.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kompare.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.konsole.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kontact.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kopete.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.korganizer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kpat.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krdc.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krename.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kreversi.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krfb.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kruler.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krusader.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kshisen.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksirk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksirkskineditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kstars.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksudoku.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksysguard.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksystemlog.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kteatime.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktimer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktnef.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktorrent.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktouch.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktpcontactlist.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktplogviewer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktuberling.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kturtle.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwalletmanager5.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwave.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwikdisk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwordquiz.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwrite.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.labplot2.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.latte-dock.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.lskat.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.marble.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.minuet.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.mobile.angelfish.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.mobile.camera.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.okteta.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.palapeli.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.parley.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.phone.calindori.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.pimdataexporter.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasma.emojier.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasma.lookandfeelexplorer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasma.themeexplorer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasmaengineexplorer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.rocs.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.sieveeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.smb4k.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.spectacle.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.step.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.sweeper.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.umbrello.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.yakuake.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-systemsettings.desktop |
![]() |
repocop-demo-menu-altlinux-sisyphus-0.04.20201027-alt1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/kf5/applications/kf5/demo-menu-entry-alt-app-starter.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-alt-customize-branding.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-kamerka.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-konqbrowser.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-net.sourceforge.kid3.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.Help.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.akonadiconsole.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.akonadiimportwizard.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.akregator.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ark.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.bovo.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.calligraplan.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.calligraplanwork.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.cantor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.contactprintthemeeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.contactthemeeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.cuttlefish.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.dolphin.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.dragonplayer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.elisa.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.filelight.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.granatier.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.gwenview.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.headerthemeeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.heaptrack.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.juk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kaddressbook.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kaffeine.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalarm.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalgebra.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalgebramobile.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kalzium.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kanagram.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kapptemplate.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kate.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.katomic.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kbibtex.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kbruch.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kcachegrind.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kcalc.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kcharselect.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.app.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.nonplasma.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.settings.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdeconnect.sms.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdevelop.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdevelop_ps.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdf.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kdiff3.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kfind.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kfloppy.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kgeography.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kget.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kgpg.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.khangman.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kig.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kigo.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kile.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kimagemapeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kinfocenter.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kiten.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kleopatra.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.klipper.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmag.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmahjongg.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmail2.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmines.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmix.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmousetool.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmouth.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kmplot.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.knavalbattle.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.knetwalk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.knotes.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kolf.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kolourpaint.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kompare.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.konsole.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kontact.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kopete.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.korganizer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kpat.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krdc.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krename.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kreversi.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krfb.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kruler.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.krusader.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kshisen.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksirk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksirkskineditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kstars.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksudoku.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksysguard.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ksystemlog.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kteatime.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktimer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktnef.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktorrent.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktouch.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktpcontactlist.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktplogviewer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.ktuberling.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kturtle.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwalletmanager5.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwave.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwikdisk.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwordquiz.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.kwrite.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.labplot2.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.latte-dock.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.lskat.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.marble.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.minuet.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.mobile.angelfish.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.mobile.camera.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.okteta.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.palapeli.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.parley.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.phone.calindori.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.pimdataexporter.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasma.emojier.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasma.lookandfeelexplorer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasma.themeexplorer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.plasmaengineexplorer.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.rocs.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.sieveeditor.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.smb4k.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.spectacle.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.step.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.sweeper.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.umbrello.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-org.kde.yakuake.desktop /usr/share/kf5/applications/kf5/demo-menu-entry-systemsettings.desktop |
![]() |
repocop-report-distrodb-0.429-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/repocop-report-helper-distrodb-preprocess |
![]() |
repocop-report-qa-robot-0.42-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/qa-robot-repocop |
![]() |
repocop-unittest-altlinux-policy-0.45-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/srctests/specfile-macros-update_menus-is-deprecated/posttest /usr/share/repocop/srctests/specfile-macros-post_ldconfig-is-deprecated/posttest /usr/share/repocop/srctests/specfile-useradd-n/posttest /usr/share/repocop/srctests/specfile-macros-ubt-is-deprecated/posttest /usr/share/repocop/srctests/specfile-macros-__autoreconf-is-obsolete/posttest /usr/share/repocop/srctests/specfile-macros-post_fonts-is-deprecated/posttest /usr/share/repocop/srctests/specfile-macros-update_vimhelp-is-deprecated/posttest /usr/share/repocop/srctests/specfile-macros-get_dep-is-deprecated/posttest |
![]() |
repocop-unittest-altlinux-python-0.19-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/srctests/specfile-python2-in-spec/posttest /usr/share/repocop/pkgtests/altlinux-python-obsolete-requires-python-version/posttest |
![]() |
repocop-unittest-init-x-functions-0.02-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/pkgtests/init-x-functions/posttest |
![]() |
repocop-unittest-systemd-0.08-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/pkgtests/systemd-check-socket-name/posttest |
![]() |
repocop-unittest-unsafe-tmp-usage-in-scripts-0.6-alt7.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/share/repocop/pkgtests/unsafe-tmp-usage-in-scripts/test |
![]() |
repofork-utils-0.11-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/repofork-create-addon-repo-from-autorepo-taskgood /usr/bin/repofork-create-addon-repo-from-autorepo-taskgood-subset /usr/bin/repofork-create-addon-repo-for-each-given-autorepo-taskgood /usr/bin/repofork-create-addon-repo-for-each-given-hasher-srpm /usr/bin/mkrepofork /usr/bin/repofork-rebuild-helper-rebuild-a-srpm /usr/bin/repofork-create-addon-repo-for-each-given-autorepo-taskgood-subdir /usr/bin/repofork-create-addon-repo-for-each-build-in-given-autorepo-taskgood |
![]() |
reportbug-debian-gtk-7.7.0.1-alt0.2.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/reportbug-debian.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
rpm-build-java-osgi-5.0.0-alt45.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /etc/java/font.properties /etc/java/java.conf /etc/java/jpackage-release /etc/maven/maven2-depmap.xml /etc/maven/metadata-org-apache-maven-plugins.xml /etc/maven/metadata-org-codehaus-mojo.xml /usr/bin/build-classpath /usr/bin/build-classpath-directory /usr/bin/build-jar-repository /usr/bin/check-binary-files /usr/bin/clean-binary-files /usr/bin/create-jar-links /usr/bin/diff-jars /usr/bin/find-jar /usr/bin/jvmjar /usr/bin/mvn-alias /usr/bin/mvn-build /usr/bin/mvn-config /usr/bin/mvn-file /usr/bin/mvn-local /usr/bin/mvn-package /usr/bin/mvn-rpmbuild /usr/bin/rebuild-jar-repository /usr/bin/rebuild-security-providers /usr/lib/rpm/macros.d/javapackages-fjava /usr/lib/rpm/macros.d/javapackages-xmvn /usr/lib/rpm/macros.d/jpackage /usr/lib/rpm/macros.d/jpackage-eclipse /usr/lib/rpm/macros.d/libjvm /usr/lib/rpm/maven-fragments.prov /usr/lib/rpm/maven-fragments.prov.files /usr/lib/rpm/maven-fragments.req /usr/lib/rpm/maven-fragments.req.files /usr/share/java-utils/abs2rel.sh /usr/share/java-utils/java-functions /usr/share/java-utils/java-functions-safe /usr/share/java-utils/maven_depmap /usr/share/java-utils/pom_editor.sh /usr/share/java-utils/xml/maven2jpp-mapdeps.xsl /usr/share/java-utils/xmvn_config_editor.sh /usr/share/java/maven/empty-dep.jar /usr/share/man/man1/build-classpath-directory.1.xz /usr/share/man/man1/build-classpath.1.xz /usr/share/man/man1/build-jar-repository.1.xz /usr/share/man/man1/check-binary-files.1.xz /usr/share/man/man1/clean-binary-files.1.xz /usr/share/man/man1/create-jar-links.1.xz /usr/share/man/man1/diff-jars.1.xz /usr/share/man/man1/find-jar.1.xz /usr/share/man/man1/jvmjar.1.xz /usr/share/man/man1/rebuild-jar-repository.1.xz /usr/share/man/man1/rebuild-security-providers.1.xz /usr/share/man/man5/java.conf.5.xz /usr/share/man/man7/java-functions.7.xz /usr/share/man/man7/jpackage-utils.7.xz /usr/share/man/man7/macros.jpackage.7.xz /usr/share/maven-fragments/empty-dep-hacks /usr/share/maven-poms/JPP.maven-empty-dep.pom /usr/share/xmvn/configuration-19-rpmbuild-raw.xml /usr/share/xmvn/configuration-19-rpmbuild.xml /usr/share/xmvn/configuration-19.xml /usr/share/xmvn/configuration.xml |
![]() |
rpm-build-java-osgi-5.0.0-alt45.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /etc/java/font.properties /etc/java/java.conf /etc/java/jpackage-release /etc/maven/maven2-depmap.xml /etc/maven/metadata-org-apache-maven-plugins.xml /etc/maven/metadata-org-codehaus-mojo.xml /usr/bin/build-classpath /usr/bin/build-classpath-directory /usr/bin/build-jar-repository /usr/bin/check-binary-files /usr/bin/clean-binary-files /usr/bin/create-jar-links /usr/bin/diff-jars /usr/bin/find-jar /usr/bin/jvmjar /usr/bin/mvn-alias /usr/bin/mvn-build /usr/bin/mvn-config /usr/bin/mvn-file /usr/bin/mvn-local /usr/bin/mvn-package /usr/bin/mvn-rpmbuild /usr/bin/rebuild-jar-repository /usr/bin/rebuild-security-providers /usr/lib/rpm/macros.d/javapackages-fjava /usr/lib/rpm/macros.d/javapackages-xmvn /usr/lib/rpm/macros.d/jpackage /usr/lib/rpm/macros.d/jpackage-eclipse /usr/lib/rpm/macros.d/libjvm /usr/lib/rpm/maven-fragments.prov /usr/lib/rpm/maven-fragments.prov.files /usr/lib/rpm/maven-fragments.req /usr/lib/rpm/maven-fragments.req.files /usr/share/java-utils/abs2rel.sh /usr/share/java-utils/java-functions /usr/share/java-utils/java-functions-safe /usr/share/java-utils/maven_depmap /usr/share/java-utils/pom_editor.sh /usr/share/java-utils/xml/maven2jpp-mapdeps.xsl /usr/share/java-utils/xmvn_config_editor.sh /usr/share/java/maven/empty-dep.jar /usr/share/man/man1/build-classpath-directory.1.xz /usr/share/man/man1/build-classpath.1.xz /usr/share/man/man1/build-jar-repository.1.xz /usr/share/man/man1/check-binary-files.1.xz /usr/share/man/man1/clean-binary-files.1.xz /usr/share/man/man1/create-jar-links.1.xz /usr/share/man/man1/diff-jars.1.xz /usr/share/man/man1/find-jar.1.xz /usr/share/man/man1/jvmjar.1.xz /usr/share/man/man1/rebuild-jar-repository.1.xz /usr/share/man/man1/rebuild-security-providers.1.xz /usr/share/man/man5/java.conf.5.xz /usr/share/man/man7/java-functions.7.xz /usr/share/man/man7/jpackage-utils.7.xz /usr/share/man/man7/macros.jpackage.7.xz /usr/share/maven-fragments/empty-dep-hacks /usr/share/maven-poms/JPP.maven-empty-dep.pom /usr/share/xmvn/configuration-19-rpmbuild-raw.xml /usr/share/xmvn/configuration-19-rpmbuild.xml /usr/share/xmvn/configuration-19.xml /usr/share/xmvn/configuration.xml |
![]() |
rpmdevtools-8.10-alt1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /etc/emacs/site-start.d/rpmdev-init.elc |
![]() |
rpmdevtools-8.10-alt1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /etc/emacs/site-start.d/rpmdev-init.elc |
![]() |
sablecc-3.7-alt1_9jpp8.noarch | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
sdljava-demo-0.9.1-alt2_44jpp8.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/sdljava-run-bsh.sh |
![]() |
seahorse-adventures-1.1-alt1_1.noarch | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/noarch/RPMS/seahorse-adventures-1.1-alt1_1.noarch.rpm: forbidden requires: python-base sisyphus_check: check-deps ERROR: package dependencies violation /ALT/Sisyphus/files/noarch/RPMS/seahorse-adventures-1.1-alt1_1.noarch.rpm: license not found in '/usr/share/license' directory: GPL+ |
![]() |
sgml-common-0.6.3-alt15.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /usr/bin/install-catalog |
![]() |
shippy-1.5.0-alt1_1.src | beehive-log-non-strict-dependency-i586 | info | shippy-common: non-strict dependency on shippy shippy-common: non-strict dependency on shippy-allegro |
![]() |
shippy-1.5.0-alt1_1.src | beehive-log-non-strict-dependency-x86_64 | info | shippy-common: non-strict dependency on shippy shippy-common: non-strict dependency on shippy-allegro |
![]() |
slashem-0.0.8-alt2_0.23.E0F1.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/slashem/Guidebook.txt /usr/share/doc/slashem/license |
![]() |
slashem-0.0.8-alt2_0.23.E0F1.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/doc/slashem/Guidebook.txt /usr/share/doc/slashem/license |
![]() |
slingshot-0.9-alt2.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/local/share/applications/slingshot.desktop /usr/local/share/pixmaps/slingshot.xpm |
![]() |
slingshot-0.9-alt2.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/local/share/applications/slingshot.desktop /usr/local/share/pixmaps/slingshot.xpm |
![]() |
statgrab-tools-0.92-alt1_1.x86_64 | big-changelog | info | Package contains big ChangeLog. Gzip it. |
![]() |
sudoku-savant-1.3-alt2_20.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/sudoku-savant.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
sweethome3d-6.1-alt1_2jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
taggle-1.0-alt2_17jpp8.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/taggle.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
taggle-1.0-alt2_17jpp8.noarch | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
tagsoup-1.2.1-alt2_17jpp8.noarch | uncompressed-manpages | info | Package contains uncompressed manual pages. |
![]() |
teg-0.11.2-alt2_46.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
tepache-1.1.2-alt1_14.noarch | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/noarch/RPMS/tepache-1.1.2-alt1_14.noarch.rpm: forbidden requires: /usr/bin/python sisyphus_check: check-deps ERROR: package dependencies violation |
![]() |
texlive-collection-basic-2019-alt2_7.noarch | unsafe-tmp-usage-in-scripts | fail | The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/share/texmf-dist/scripts/shipunov/biokey2html.sh: $ grep -A5 -B5 /tmp/ /usr/share/texmf-dist/scripts/shipunov/biokey2html.sh #!/bin/bash export PATH=.:{$PATH} biokey2html1.pl $1 > $12 biokey2html2.pl $12 > /tmp/$1.$$ biokey2html3.pl /tmp/$1.$$ > $1.html # |
![]() |
texlive-doc-2019-alt2_7.noarch | windows-thumbnail-database-in-package | warn | /usr/share/texmf-dist/doc/latex/latex-course/Graphics/Thumbs.db: It is the file in the package named Thumbs.db or Thumbs.db.gz, which is normally a Windows image thumbnail database. Such databases are generally useless in packages and were usually accidentally included by copying complete directories from the source tarball. /usr/share/texmf-dist/doc/latex/lion-msc/Thumbs.db: It is the file in the package named Thumbs.db or Thumbs.db.gz, which is normally a Windows image thumbnail database. Such databases are generally useless in packages and were usually accidentally included by copying complete directories from the source tarball. /usr/share/texmf-dist/doc/latex/pdfwin/Thumbs.db: It is the file in the package named Thumbs.db or Thumbs.db.gz, which is normally a Windows image thumbnail database. Such databases are generally useless in packages and were usually accidentally included by copying complete directories from the source tarball. |
![]() |
texmf-bibtex8-gost-0.20050820-alt4.src | altlinux-policy-tex-rpm-build-texmf | warn | According to TeX policy (http://www.altlinux.org/TeXPolicy) packages that install files to /usr/share/texmf should BuildRequires(pre): rpm-build-texmf for the dependency magic to work. |
![]() |
tgif-4.2.5-alt2_18.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/tgif.desktop: hint: value item "VectorGraphics" in key "Categories" in group "Desktop Entry" can be extended with another category among the following categories: Graphics;2DGraphics |
![]() |
thrift-devel-0.13.0-alt1_9.x86_64 | altlinux-policy-shared-lib-contains-devel-so | info | SharedLibs Policy Draft violation: Shared Lib package should not contain symlink /usr/lib64/libthrift_c_glib.so but just /usr/lib64/libthrift_c_glib.so.0.0.0. According to SharedLibs Policy Draft, symlink /usr/lib64/libthrift_c_glib.so should be placed in a special subpackage named lib |
![]() |
thrift-glib-0.13.0-alt1_9.x86_64 | altlinux-policy-shared-lib-contains-devel-so | info | SharedLibs Policy Draft violation: Shared Lib package should not contain symlink /usr/lib64/libthrift_c_glib.so but just /usr/lib64/libthrift_c_glib.so.0.0.0. According to SharedLibs Policy Draft, symlink /usr/lib64/libthrift_c_glib.so should be placed in a special subpackage named lib |
![]() |
tomcat-9.0.37-alt1.noarch | checkbashisms | experimental | checkbashisms utility found possible bashisms in: /etc/rc.d/init.d/tomcat |
![]() |
torque-client-6.1.2-alt3_5.x86_64 | rpm-filesystem-conflict-file-file | warn | File /usr/bin/qstat conflicts with the package qstat-2.14-alt1.85fbecb.x86_64. Moreover, the packages have no explicit conflicts with each other. You should add explicit conflicts, or, if conflicts are avoidable, consider using alternatives. |
![]() |
unclutter-xfixes-1.3-alt1.x86_64 | invalid-url | warn | Package has invalid Url:. It looks like a protocol part (http:,ftp:,etc.) is missing. |
![]() |
unclutter-xfixes-debuginfo-1.3-alt1.x86_64 | invalid-url | warn | Package has invalid Url:. It looks like a protocol part (http:,ftp:,etc.) is missing. |
![]() |
uvcview-20071108-alt2.x86_64 | altlinux-find-lang-mo | warn | Language specific files in /usr/share/locale should be marked, for example, using %find_lang. See http://www.altlinux.org/FindLangPolicy for details. |
![]() |
uvcview-20071108-alt2.x86_64 | freedesktop-desktop | warn | desktop-file-validate utility exited abnormally with the following message(s): /usr/share/applications/uvcview.desktop: error: key "GenericName[ru]" in group "Desktop Entry" is a localized key, but there is no non-localized key "GenericName" |
![]() |
voms-clients-java-3.3.0-alt1_6jpp8.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/voms-proxy-destroy /usr/bin/voms-proxy-info /usr/bin/voms-proxy-init |
![]() |
voms-clients-java-3.3.0-alt1_6jpp8.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/bin/voms-proxy-destroy /usr/bin/voms-proxy-info /usr/bin/voms-proxy-init |
![]() |
widelands-0-alt8_0.77.build20.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
wordwarvi-1.1-alt1_6.git6beed31.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
xaos-3.6-alt3.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/xaos.desktop: hint: value "Education;Science;Math;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
xdaliclock-2.43-alt2_9.x86_64 | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/xdaliclock.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
xdaliclock-2.43-alt2_9.x86_64 | freedesktop-desktop | info | desktop-file-validate utility printed the following message(s): /usr/share/applications/xdaliclock.desktop: hint: value "Utility;X-Fedora;Graphics;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu |
![]() |
xhtml2ps-1.0-alt2_0.33.b7.noarch | freedesktop-categories | warn | Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/xhtml2ps.desktop. Please add it or report a bug against this test if you already have registered one (not including menu unrelated ones as Core or Qt). |
![]() |
xml-common-0.6.3-alt15.noarch | file-in-usr-marked-as-conffile | warn | Files below /usr may not be marked as conffiles, since /usr might be mounted read-only and thus, the local system administrator would not have a chance to modify this configuration file. |
![]() |
xmvn-3.0.0-alt1_23jpp8.src | beehive-log-unpackaged-files-found-i586 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/xmvn/repository-jni/JPP/hawtjni/hawtjni-runtime.jar /usr/share/xmvn/repository-jni/JPP/jansi-native/jansi-linux.jar /usr/share/xmvn/repository-jni/JPP/jansi-native/jansi-linux32.jar /usr/share/xmvn/repository-jni/JPP/jansi-native/jansi-native.jar /usr/share/xmvn/repository-jni/JPP/native-platform.jar |
![]() |
xmvn-3.0.0-alt1_23jpp8.src | beehive-log-unpackaged-files-found-x86_64 | info | warning: Installed (but unpackaged) file(s) found: /usr/share/xmvn/repository-jni/JPP/hawtjni/hawtjni-runtime.jar /usr/share/xmvn/repository-jni/JPP/jansi-native/jansi-linux.jar /usr/share/xmvn/repository-jni/JPP/jansi-native/jansi-linux64.jar /usr/share/xmvn/repository-jni/JPP/jansi-native/jansi-native.jar /usr/share/xmvn/repository-jni/JPP/native-platform.jar |
![]() |
xpilot-ng-4.7.3-alt4.x86_64 | sisyphus_check | fail | sisyphus_check failed: /ALT/Sisyphus/files/x86_64/RPMS/xpilot-ng-4.7.3-alt4.x86_64.rpm: forbidden requires: python-base sisyphus_check: check-deps ERROR: package dependencies violation /ALT/Sisyphus/files/x86_64/RPMS/xpilot-ng-4.7.3-alt4.x86_64.rpm: The use of such a license name is ambiguous: GPL |
![]() |
xppaut-6.10-alt2.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
xroach-4.0-alt1.2.x86_64 | missing-url | info | Missing Url: in a package. |
![]() |
xskat-4.0.0-alt2_20.x86_64 | iconsdir | experimental | Please, move pixmaps from /usr/share/pixmaps to %_liconsdir, %_niconsdir, %_miconsdir according to their size. See http://www.altlinux.org/IconPathsPolicy. |
![]() |
zipios++-0.1.5.9-alt2_20.x86_64 | library-pkgnames | info | package contains public library which is used in external packages: name should be lib* according to http://altlinux.org/Drafts/SharedLibs |
![]() |
zipios++-devel-0.1.5.9-alt2_20.x86_64 | arch-dep-package-has-big-usr-share | info | The package has a significant amount of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |
![]() |
zookeeper-java-3.4.9-alt6_13jpp8.x86_64 | arch-dep-package-consists-of-usr-share | info | The package consists of architecture-independent data in /usr/share, while it is an architecture-dependent package. This is wasteful of mirror space and bandwidth, as we then end up with multiple copies of this data, one for each architecture. If the data in /usr/share is not architecture-independent, it is a policy violation, and in this case, you should move that data elsewhere. |