Codebase list rust-libslirp / 0b5e3ef
when the upstream name is different, show it. for example, for the _ - story Sylvestre Ledru 2 years ago
1 changed file(s) with 6 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
22 echo "$(git log -1 --pretty="format:%ct" "$i")" "$i"
33 done | sort | while read t i; do
44 pkg=$(basename "$(dirname "$(dirname "$i")")")
5 upstream_pkg=$(grep Upstream-Name src/$pkg/debian/copyright|awk '{print $2}')
56 if test -n "$(git --no-pager branch --remotes -l origin/pending-"$pkg")"; then
67 # If a pending branch exists, skip it
78 continue
89 fi
910 AUTHOR=$(cat $(dirname "$i")/changelog|grep " -- "|head -1|sed -e "s| -- \(.*\) <.*$|\1|g")
1011
11 echo -e "$(date -d@"$t") \e[32m$pkg - $AUTHOR\e[0m"
12 if test $pkg == $upstream_pkg; then
13 echo -e "$(date -d@"$t") \e[32m$pkg - $AUTHOR\e[0m"
14 else
15 echo -e "$(date -d@"$t") \e[32m$pkg (upstream name: $upstream_pkg) - $AUTHOR\e[0m"
16 fi
1217 if ! head -1 $(dirname "$i")/changelog |grep -q UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; then
1318 echo -e "\e[31mRFS but the first line of the changelog doesn't contain UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO\e[0m"
1419 fi