File: test-appdata.sh.in

package info (click to toggle)
gimp-data-extras 1%3A2.0.4-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124,480 kB
  • sloc: lisp: 5,902; python: 859; sh: 662; ansic: 315; makefile: 252
file content (12 lines) | stat: -rwxr-xr-x 365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

appstreamcli validate ${GIMP_TESTING_ABS_TOP_BUILDDIR}/desktop/org.gimp.GIMP.data_extras.metainfo.xml && \
if [ $(expr @GIMP_MICRO_VERSION@ % 2) = 0 ]; then
  grep TODO ${GIMP_TESTING_ABS_TOP_BUILDDIR}/desktop/org.gimp.GIMP.appdata.xml
  if [ $? = 0 ]; then
    echo "ERROR: stable version with remaining TODOs in appdata."
    false
  fi
else
  true
fi