Sophie

Sophie

distrib > Altlinux > 4.1 > i586 > by-pkgid > 1f13c575389fe266b79afb7bde4b2a9a > files > 1

repocop-unittest-buildroot-0.04-alt1.src.rpm

%define testname buildroot

Name: repocop-unittest-%testname
Version: 0.04
Release: alt1
BuildArch: noarch
Packager: Igor Yu. Vlasenko <viy@altlinux.org>

Summary: %testname intergration tests for repocop test platform
Group: Development/Other
License: GPL or Artistic
#Url: 
Requires: repocop

%description
%testname intergration test for repocop test platform.
The test finds packages that contains a piece of path
to buildroot where they were built.
It often indicates an essential bug in the package
such as misconfiguration.

%prep

%build
cat > test <<'EOF'
#!/bin/bash
# we have no $REPOCOP_PKG_SRC_NAME yet, so try to guess it from the source rpm string
srcname=
if [ "${REPOCOP_PKG_SOURCEPKG%%-$REPOCOP_PKG_RELEASE}" != "$REPOCOP_PKG_SOURCEPKG" ]; then
    srcname=${REPOCOP_PKG_SOURCEPKG%%-$REPOCOP_PKG_RELEASE}
    if [ "${srcname%%-$REPOCOP_PKG_VERSION}" != "$srcname" ]; then
        srcname=${srcname%%-$REPOCOP_PKG_VERSION}
    else
        srcname=${srcname%%[-0-9.]*}
    fi
fi
################
STATUS=ok
declare -a MESSAGE
i=0
for file in `grep -s -r -l $srcname-buildroot $REPOCOP_PKG_ROOT/`; do
    if [ ${file%%.elc} == "$i" ]; then
        [ "$STATUS" = "fail" ] || MESSAGE[i++]="found paths to buildroot: "
    	STATUS=fail
	MESSAGE[i++]=`grep -s $srcname-buildroot $file`
    fi
done
exec repocop-test-$STATUS "${MESSAGE[@]}"
EOF

cat > description <<'EOF'
The test finds packages that contains a piece of path
to buildroot where they were built.
It often indicates an essential bug in the package
such as misconfiguration.
TODO: write page on wiki.
EOF

%install
mkdir -p $RPM_BUILD_ROOT%_datadir/repocop/pkgtests/%testname/
%__install -m 755 test $RPM_BUILD_ROOT%_datadir/repocop/pkgtests/%testname/
%__install -m 644 description $RPM_BUILD_ROOT%_datadir/repocop/pkgtests/%testname/

%files
#doc README ChangeLog
%_datadir/repocop/pkgtests/%testname

%changelog
* Fri Mar 07 2008 Igor Vlasenko <viy@altlinux.ru> 0.04-alt1
- fixed bug in source name heuristic

* Thu Mar 06 2008 Igor Vlasenko <viy@altlinux.ru> 0.03-alt1
- search for source name (thanks to damir@).

* Sat Mar 01 2008 Igor Vlasenko <viy@altlinux.ru> 0.02-alt1
- First build for Sisyphus.