Repocop reports for by-leader boyarsh

  rpm id test status message
alt-domain-server-0.5.3-alt1.noarch missing-url info Missing Url: in a package.
altsp-test-scripts-1.1-alt6.x86_64 missing-url info Missing Url: in a package.
altsp-test-scripts-debuginfo-1.1-alt6.x86_64 missing-url info Missing Url: in a package.
branding-alt-spserver-11.0-alt0.10.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.
branding-alt-spserver-notes-11.0-alt0.10.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.
branding-alt-spworkstation-11.0-alt0.11.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.
branding-alt-spworkstation-notes-11.0-alt0.11.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.
cap-audit-write-filetrigger-0.1-alt1.noarch missing-url info Missing Url: in a package.
csync-0.50.6-alt1.2.x86_64 missing-url info Missing Url: in a package.
csync-debuginfo-0.50.6-alt1.2.x86_64 missing-url info Missing Url: in a package.
cups-filter-sl-watermark-0.4-alt1.noarch missing-url info Missing Url: in a package.
cups-pdf-3.0.1-alt2.x86_64 systemd-but-no-native-init experimental The package have native systemd file(s) but no SysV init scripts.
dconf-defaults-tablet-0.1-alt2.noarch missing-url info Missing Url: in a package.
dconf-defaults-tablet-caribou-fullscale-0.1-alt2.noarch missing-url info Missing Url: in a package.
dconf-defaults-tablet-disable-lightbox-0.1-alt2.noarch missing-url info Missing Url: in a package.
hugin-2025.0.0-alt1.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.
hugin-2025.0.0-alt1.x86_64 freedesktop-categories warn Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/hugin_toolbox_gui.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).
ibus-1.5.33-alt1.x86_64 freedesktop-categories warn Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/org.freedesktop.IBus.Setup.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).
installer-common-base-stage2-1.16.34-alt1.x86_64 systemd-but-no-native-init experimental The package have native systemd file(s) but no SysV init scripts.
installer-common-base-stage2-1.16.34-alt1.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/install2/preinstall.d/90-setup-bootloader.sh: $ grep /tmp/ /usr/share/install2/preinstall.d/90-setup-bootloader.sh #!/bin/sh . install2-init-functions script="$(basename $0)" echo "#!/bin/sh" > /tmp/"$script" chmod +x /tmp/"$script" exec_chroot sh "rpm '%{name}\n'| grep 'branding.*bootloader' | xargs bash \"rpm '%{postin}' {} \"" >>/tmp/"$script" exec_chroot /tmp/"$script" 1 ||: Found error in /usr/share/install2/preinstall.d/65-setup-control.sh: $ grep /tmp/ /usr/share/install2/preinstall.d/65-setup-control.sh [ /usr/share/install2/control ] || exit 0 while read facility state; do [ "$facility" "$state" ] || chroot $destdir control "$facility" "$state" ||: done < /usr/share/install2/control >> /tmp/install2.log 2>&1 Found error in /usr/libexec/install2/install2: $ grep /tmp/ /usr/libexec/install2/install2 charset=utf8 cmdline="$(cat /proc/cmdline)" stderr_to_log() { exec 4>&2 2>/tmp/install2.log } stderr_to_stderr() { exec 2>&4 { AUTOINSTALL= export AUTOINSTALL if cmdline_has_arg ai ; then AUTOINSTALL='/tmp/metadata/autoinstall.scm' fi shell_config_set "$install_variables" AUTOINSTALL "$AUTOINSTALL" } set_cdromdev() -- mkdir -p -m700 -- "$destdir/root/.install-log" # Copy alteratord.log from temporary dir to /tmp cp /run/alteratord/alteratord.log /tmp ||: # save logs for f in initinstall preinstall postinstall install2 pkg-install remount alteratord x11; do [ -f "/tmp/$f.log" ] || continue sed -r 's;( passwd_?([12]|auto) ")([^"]|[\\]["])*";\1*";g' <"/tmp/$f.log" \ >"$destdir/root/.install-log"/"$f.log" done # save screenshots mkdir -p -m700 -- "$destdir/root/.install-log/screenshots" for f in /tmp/alterator-screenshot-*.*; do [ ! -f "$f" ] || cp "$f" "$destdir"/root/.install-log/screenshots/ ||: done } x11presetdrv() { [ -n "$INSTALL2_INIT" ] || return 0 [ -f /etc/rc.d/init.d/x11presetdrv ] || return 0 service x11presetdrv start 2>/tmp/x11presetdrv.log update_splash x11presetdrv } if [ -z "$INSTALL2_INIT" ]; then > /tmp/install2.log chmod 600 /tmp/install2.log stderr_to_log fi # Mount touch /var/rw-test || action 'Mounting filesystems' mount_fs -- rm -r /var/lock/ fi # Create tmpfiles [ -z "$INSTALL2_INIT" ] || systemd-tmpfiles --remove --create --boot --exclude-prefix=/dev >/tmp/tmpfiles.log 2>&1 # do not assemble raid automatically (restore with start_mdraid) if [ -s /lib/udev/rules.d/64-md-raid-assembly.rules ]; then mv /lib/udev/rules.d/64-md-raid-assembly.rules /tmp fi [ -z "$INSTALL2_INIT" ] || service udevd start 2>/tmp/udevd.log update_splash udev x11presetdrv set_alterator_datadir -- set_device update_splash device # create empty logs with strict rights > /tmp/initinstall.log > /tmp/preinstall.log > /tmp/postinstall.log > /tmp/wizard.log > /tmp/pkg-install.log > /tmp/x11.log chmod 600 /tmp/initinstall.log chmod 600 /tmp/preinstall.log chmod 600 /tmp/postinstall.log chmod 600 /tmp/wizard.log chmod 600 /tmp/pkg-install.log chmod 600 /tmp/x11.log # create destination directory mkdir -p "$destdir" [ -n "$DISPLAY" ] || [ -n "$WAYLAND_DISPLAY" ] || "$install2_bindir"/initinstall 2>>/tmp/initinstall.log | tee -a /tmp/initinstall.log update_splash finish if_run_debug_shell rc=0 -- chmod 700 /run/user/0 export XDG_RUNTIME_DIR=/run/user/0 export WLR_NO_HARDWARE_CURSORS=1 cmd="cage -d -s "$install2_bindir"/alterator-install2" chvt 7 $cmd >/tmp/install2.log 2>&1 chvt 1 else echo 'Starting Xorg server...' auto_drivers="$(video_scan -s drivers)" xinit_args='vt7 -dpms -ac -nolisten tcp -logfile /tmp/x11.log' eval $(grep -s ^xinit_args= /etc/xserver-args) ||: cmd="xinit "$install2_bindir"/alterator-install2 -- $xinit_args" if ! $cmd >/tmp/install2.log 2>&1 ; then for drv in $auto_drivers; do # xinit must failed before run alterator-wizard [ ! -s /tmp/wizard.log ] || break echo "Error running Xorg server, trying with driver $drv..." "$install2_bindir"/xorg_conf_setup "$drv" "$XORG_CONF" rc=0 $cmd >>/tmp/install2.log 2>&1 && break || rc=$? done fi fi fi fi fi if_run_debug_shell [ "$rc" -ne 0 ] || "$install2_bindir"/postinstall 2>>/tmp/postinstall.log | tee -a /tmp/postinstall.log save_logs # Unmount destination if [ -z "$INSTALL2_INIT" ]; then Found error in /usr/libexec/install2/alterator-vnc: $ grep -A5 -B5 /tmp/ /usr/libexec/install2/alterator-vnc export FD_GEOM=1024x768 export FD_PROG="$install2_bindir"/alterator-install2 CAGE=/usr/bin/cage ALTERATOR_VNC_SERVER_W=/usr/bin/wayvnc WAYVNC_CONF_FILE=/tmp/vnc_conf vncip="$(cmdline_get_arg vncip)" if ! [ -n "$vncip" ]; then vncip="0.0.0.0" fi -- export WLR_BACKENDS=headless export WLR_LIBINPUT_NO_DEVICES=1 export WLR_RENDERER=pixman export WLR_NO_HARDWARE_CURSORS=1 wayvnc_passwd ssh-keygen -m pem -f /tmp/rsa_key.pem -t rsa -N "" $install2_bindir/vnc_info wayland $CAGE -d $FD_PROG & $ALTERATOR_VNC_SERVER_W --config $WAYVNC_CONF_FILE > /tmp/wayvnc.log 2>&1 } xvnc(){ if [ -n "$DISPLAY" ]; then VNC="x11vnc" -- VNC="x11vnc -create" fi if [ -n "$host_connect" ]; then $VNC -connect "$host_connect" else $VNC -storepasswd "$password" /tmp/vncpasswd chmod 600 /tmp/vncpasswd xvncpam=$([ -n "$password" ] && echo "-usepw -rfbauth /tmp/vncpasswd" || echo "-nopw") $install2_bindir/vnc_info $VNC -quiet -listen "$vncip" $xvncpam -o /tmp/x11vnc.log fi } vnc
installer-common-desktop-1.16.34-alt1.noarch freedesktop-categories warn Menu-related Additional Categories (http://standards.freedesktop.org/menu-spec/latest/apa.html) not found in /usr/share/applications/install2.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).
installer-distro-centaurus-stage2-11.1-alt3.x86_64 rpm-filesystem-conflict-file-file warn There are file conflicts with the package installer-distro-virtualization-pve-stage2-11.0.0-alt0.4.noarch, for example, /usr/share/install2/alterator-menu/module-expert-list (4 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.
tives.
alternatives.
rnatives.
installer-distro-centaurus-stage2-11.1-alt3.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/install2/postinstall.d/66-setup-net-services.sh: $ grep /tmp/ /usr/share/install2/postinstall.d/66-setup-net-services.sh if [ "$SYSTEMD_CONTROLLED" ] ; then chroot $destdir systemctl disable systemd-networkd.service chroot $destdir systemctl disable systemd-resolved.service fi } >> /tmp/install2.log 2>&1 :
installer-distro-cliff-common-11.0-alt7.x86_64 rpm-filesystem-conflict-file-file warn Files /usr/share/install2/postinstall.d/20-alterator-menu.sh /usr/share/install2/preinstall.d/80-setup-user-groups conflict with the package installer-distro-virtualization-pve-stage2-11.0.0-alt0.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.
installer-distro-cliff-net-eth-stage3-11.0-alt7.x86_64 altlinux-policy-description-has-tags fail Description contains tags such as Provides/Requires/BuildRequires. Beware of errors with %ifs/%endifs!
installer-distro-cliff-stage2-11.0-alt7.x86_64 rpm-filesystem-conflict-file-file warn Files /usr/share/install2/alterator-menu/module-expert-list /usr/share/install2/alterator-menu/module-order-list /usr/share/install2/installer-steps conflict with the package installer-distro-virtualization-pve-stage2-11.0.0-alt0.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.
installer-feature-alphabet-profiles-1.0-alt2.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/prepkg.d/50-groups.sh conflicts with the package installer-feature-centaurus-profiles-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.
installer-feature-centaurus-profiles-2.0-alt1.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/prepkg.d/50-groups.sh conflicts with the package installer-feature-alphabet-profiles-1.0-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.
installer-feature-vm-ofs-stage2-0.3-alt1.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/initinstall.d/05-vm-profile-ofs conflicts with the package installer-feature-vm-fs-stage2-0.3-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.
installer-feature-vm-ofs-stage3-0.3-alt1.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/preinstall.d/01-move-fs-ofs conflicts with the package installer-feature-vm-fs-stage3-0.3-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.
jack_mixer-19-alt1.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.
kernel-source-asix-4.20.0-alt1.noarch missing-url info Missing Url: in a package.
kernel-source-ch34x-20180821-alt1.noarch missing-url info Missing Url: in a package.
kernel-source-trsec-1.0-alt2.noarch missing-url info Missing Url: in a package.
kmod-sign-4.18-alt2.x86_64 missing-url info Missing Url: in a package.
kmod-sign-debuginfo-4.18-alt2.x86_64 missing-url info Missing Url: in a package.
lastlog-notification-0.3-alt1.noarch missing-url info Missing Url: in a package.
ldap-user-tools-0.9.5-alt1.noarch missing-url info Missing Url: in a package.
libcsync-0.50.6-alt1.2.x86_64 missing-url info Missing Url: in a package.
libcsync-debuginfo-0.50.6-alt1.2.x86_64 missing-url info Missing Url: in a package.
libcsync-devel-0.50.6-alt1.2.x86_64 missing-url info Missing Url: in a package.
libtclap-doc-1.2.5-alt1.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.
livecd-gnome-nowarn-space-0.3-alt1.noarch missing-url info Missing Url: in a package.
livecd-save-nfs-0.4.2-alt1.noarch init-condrestart fail /etc/rc.d/init.d/livecd-save-nfs: missing condrestart target. Note: alt-specific script %_sbindir/post_service (used in %post_service macro) depends on condrestart. It is wise to add condrestart anyway./etc/rc.d/init.d/livecd-save-nfs: missing condstop target. ERROR: alt-specific script %_sbindir/preun_service (used in your %preun_service macro) depends on condstop. Please, fix.
livecd-save-nfs-0.4.2-alt1.noarch init-lsb warn /etc/rc.d/init.d/livecd-save-nfs: lsb init header missing. See http://www.altlinux.org/Services_Policy for details.
livecd-save-nfs-0.4.2-alt1.noarch missing-url info Missing Url: in a package.
livecd-setauth-0.8-alt1.noarch init-condrestart fail /etc/rc.d/init.d/livecd-setauth: missing condrestart target. ERROR: alt-specific script %_sbindir/post_service (used in your %post_service macro) depends on condrestart. Please, fix./etc/rc.d/init.d/livecd-setauth: missing condstop target. ERROR: alt-specific script %_sbindir/preun_service (used in your %preun_service macro) depends on condstop. Please, fix.
livecd-setauth-0.8-alt1.noarch init-lsb warn /etc/rc.d/init.d/livecd-setauth: lsb init header missing. See http://www.altlinux.org/Services_Policy for details.
livecd-setauth-0.8-alt1.noarch missing-url info Missing Url: in a package.
livecd-setlocale-0.3.17-alt1.noarch missing-url info Missing Url: in a package.
mar-20070301-alt2.x86_64 missing-url info Missing Url: in a package.
mar-debuginfo-20070301-alt2.x86_64 missing-url info Missing Url: in a package.
mkfakepkg-0.1-alt1.noarch missing-url info Missing Url: in a package.
mkimage-profiles-office-server-5.0.0-alt2.noarch missing-url info Missing Url: in a package.
nagwad-service-0.11.10-alt1.noarch systemd-but-no-native-init experimental The package have native systemd file(s) but no SysV init scripts.
opendbx-1.4.3-alt3.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
paxctl-0.9-alt1.x86_64 missing-url info Missing Url: in a package.
paxctl-debuginfo-0.9-alt1.x86_64 missing-url info Missing Url: in a package.
rpmrebuild-kmodsign-0.2-alt2.noarch missing-url info Missing Url: in a package.
settime-rfc867-0.4-alt4.noarch init-lsb warn /etc/rc.d/init.d/settime-rfc867: lsb init header missing. See http://www.altlinux.org/Services_Policy for details.
settime-rfc867-0.4-alt4.noarch missing-url info Missing Url: in a package.
startup-rescue-0.50-alt2.x86_64 init-but-no-native-systemd info The package have SysV init script(s) but no native systemd files.
startup-rescue-0.50-alt2.x86_64 init-condrestart fail /etc/rc.d/init.d/rescue-remote: missing condrestart target. ERROR: alt-specific script %_sbindir/post_service (used in your %post_service macro) depends on condrestart. Please, fix./etc/rc.d/init.d/sysreport: missing condrestart target. ERROR: alt-specific script %_sbindir/post_service (used in your %post_service macro) depends on condrestart. Please, fix.
startup-rescue-0.50-alt2.x86_64 init-lsb fail /etc/rc.d/init.d/rescue-remote: not systemd compatible: lsb init header missing and rescue-remote.service is not present. /etc/rc.d/init.d/sysreport: not systemd compatible: lsb init header missing and sysreport.service is not present. See http://www.altlinux.org/Services_Policy for details.
startup-rescue-0.50-alt2.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 /etc/rc.d/rc.sysinit.rescue: $ grep /tmp/ /etc/rc.d/rc.sysinit.rescue # Ensure plymouth is not running killall plymouthd >/dev/null 2>&1 remount_aufs() { [ "$1" ] || return 0 mkdir "/tmp/root$1" mount -n -t aufs -o dirs="/tmp/root$1=rw:$1=ro" "/tmp/root$1" "$1" } # Avoid double-aufs/overlayfs attempt if ! grep -qE "^overlay|/ aufs" /proc/mounts; then for mpoint in /etc /var /lib /bin /sbin /home /root /mnt; do -- action "Mounting efivars filesystem:" mount -t efivarfs none /sys/firmware/efi/efivars fi # run tmpfiles.d scripts if systemd_tmpfiles="$(find_util systemd-tmpfiles)"; then "$systemd_tmpfiles" --clean >/tmp/tmpfiles.log 2>&1 "$systemd_tmpfiles" --remove --create --boot --exclude-prefix=/dev >>/tmp/tmpfiles.log 2>&1 fi # Recover mdadm.conf if it's been changed above if [ -s "$MDCONF" ]; then sed -i 's,^DEVICE /dev/null,DEVICE partitions,' "$MDCONF"
system-config-printer-1.5.18-alt3.x86_64 freedesktop-desktop info desktop-file-validate utility printed the following message(s): /usr/share/applications/system-config-printer.desktop: hint: value "System;Settings;HardwareSettings;Printing;GTK;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu
system-config-printer-lib-1.5.18-alt3.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.
system-config-printer-lib-1.5.18-alt3.x86_64 dbus-xml-not-in-devel info file /usr/share/dbus-1/interfaces/org.fedoraproject.Config.Printing.xml is not used in run time. Move it to the -devel subpackage.
system-config-printer-udev-1.5.18-alt3.x86_64 sisyphus_check fail sisyphus_check failed: /ALT/Sisyphus/files/x86_64/RPMS/system-config-printer-udev-1.5.18-alt3.x86_64.rpm: Invalid path names: /usr/lib/tmpfiles.d/system-config-printer.conf sisyphus_check: check-fhs ERROR: FHS violation /ALT/Sisyphus/files/x86_64/RPMS/system-config-printer-udev-1.5.18-alt3.x86_64.rpm: invalid udev rules path: /usr/lib/udev/rules.d/70-printers.rules sisyphus_check: check-udev ERROR: udev rules path violation
task-auth-ad-sssd-0.48-alt1.x86_64 missing-url info Missing Url: in a package.
task-auth-ad-winbind-0.48-alt1.x86_64 missing-url info Missing Url: in a package.
task-auth-freeipa-0.48-alt1.x86_64 missing-url info Missing Url: in a package.
task-auth-ldap-sssd-0.48-alt1.x86_64 missing-url info Missing Url: in a package.
trsec-1.0-alt2.x86_64 missing-url info Missing Url: in a package.
trsec-debuginfo-1.0-alt2.x86_64 missing-url info Missing Url: in a package.
volumes-profile-centaurus-0.14-alt1.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/initinstall.d/10-vm-profile.sh conflicts with the package volumes-profile-regular-0.5.2-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.
.
ives.
volumes-profile-cliff-server-0.18-alt1.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/initinstall.d/10-vm-profile.sh conflicts with the package volumes-profile-regular-0.5.2-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.
.
ives.
volumes-profile-master-0.2-alt1.noarch rpm-filesystem-conflict-file-file warn File /usr/share/install2/initinstall.d/10-vm-profile.sh conflicts with the package volumes-profile-regular-0.5.2-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.
.
ives.
xorg-conf-right-click-ungrab-0.1-alt1.noarch missing-url info Missing Url: in a package.
zram-swap-0.2-alt4.noarch init-but-no-native-systemd info The package have SysV init script(s) but no native systemd files.
zram-swap-0.2-alt4.noarch init-lsb warn /etc/rc.d/init.d/zram-swap: lsb init header missing. See http://www.altlinux.org/Services_Policy for details.
zram-swap-0.2-alt4.noarch missing-url info Missing Url: in a package.

generated by repocop at Sat Feb 7 02:46:31 2026