blob: e84d8548c332414d6da13b1f29ba506960810513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/sh
NAME=$(sed -n '/^Name:/{s/.* //;s/%{.*}//;p}' *.spec)
OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec)
PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec)
VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec)
COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec)
SHORT=${COMMIT:0:7}
upstream=$PROJECT-$VERSION.tar.gz
downstream=$PROJECT-$VERSION-strip.tar.xz
list1=$(mktemp)
list2=$(mktemp)
echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION, Short=$SHORT\n"
if [ ! -f $upstream ]; then
wget https://github.com/$OWNER/$PROJECT/archive/$COMMIT/$upstream
fi
if [ ! -f $upstream ]; then
echo missgin upstream archive
else
echo Unpacking...
tar tf $upstream >$list1
tar xf $upstream
echo Cleaning non-free stuff...
rm $PROJECT-$COMMIT/ext/phalcon/assets/filters/jsminifier.? \
$PROJECT-$COMMIT/ext/phalcon/assets/filters/cssminifier.? \
$PROJECT-$COMMIT/build/php?/*/phalcon.zep.?
echo Packing...
tar cJf $downstream $PROJECT-$COMMIT
tar tf $downstream >$list2
echo "Diffing..."
diff $list1 $list2
fi
rm -f $list1 $list2
|