We have some news to share for the request index beta feature. We’ve added more options to sort your requests, counters to the individual filters and documentation for the search functionality. Checkout the blog post for more details.

File splitflist of Package kernel-source

#!/bin/bash -e

package="$1"
present="$2"
ghost="$3"

missing=""

rpm -ql --noghost "$package" | while read x ; do
	[ -e "$x" -o -L "$x" ] && echo "$x" >> "$present" || echo Missing file "$x"
done

rpm -q --qf '[%{FILEFLAGS} %{FILENAMES} 0%{FILEMODES:octal} %{FILESIZES} %{FILEMTIMES} %{FILELINKTOS}\n]' $package | while read -a line; do
	[ $[line[0]&64] = 64 ] || continue
	echo "${line[@]:1}"
done > "$ghost"
openSUSE Build Service is sponsored by