forked from sshkm/django-sshkm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
156 lines (125 loc) · 4.75 KB
/
release.sh
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#!/bin/bash
############################################################################
### preconditions
############################################################################
# check parameter count
if [ "$2" == "" ]; then
echo "usage: $0 <tag> <message>"
exit 1
fi
# check correct working dir
#if [ ! -d .git -a ! -f setup.py ]; then
# echo "please run this script from project base directory"
# exit 2
#fi
# check if rpmbuild is installed
which rpmbuild >/dev/null 2>&1
if [ $? -ne 0 ]; then
yum -y install rpmdevtools rpmlint
fi
# check if build environment is created
if [ ! -d ~/rpmbuild ]; then
rpmdev-setuptree
fi
############################################################################
############################################################################
### prepare
############################################################################
# predefine variables
TAG=$1
MESSAGE="$2"
GITREPO=https://github.com/sshkm/django-sshkm.git
TEMPDIR=/tmp/sshkm-build
SPEC=rpmbuild/SPECS/sshkm.spec
# cleanup temp dir
rm -rf $TEMPDIR
mkdir -p $TEMPDIR
# clone git repo
cd $TEMPDIR
git clone $GITREPO
# get RPM release
#cd $TEMPDIR/django-sshkm
#RELEASE=$((($(grep "Release:" $SPEC | awk '{print $2}' | awk -F '%' '{print $1}')+1)))
RELEASE=1
############################################################################
############################################################################
### verify
############################################################################
# verify settings
echo "--------------------------------------------------------------"
echo "TAG: $TAG"
echo "MESSAGE: $MESSAGE"
echo "RPM RELEASE: $RELEASE"
echo ""
echo "---- please press enter to continue"
echo "--------------------------------------------------------------"
read
echo ""
############################################################################
############################################################################
### make changes for new version
############################################################################
# change to temporary directory
cd $TEMPDIR/django-sshkm
# set version in setup.py
sed -i "s/version = .*/version = '$TAG'/g" setup.py
# set version and releas in SPEC file
sed -i "s/Version:\t.*/Version:\t$TAG/g" $SPEC
sed -i "s/Release:\t.*/Release:\t$RELEASE%{?dist}/g" $SPEC
############################################################################
############################################################################
### commit changes and create tag
############################################################################
# change to temporary directory
cd $TEMPDIR/django-sshkm
# commit and push last modifications to git repo
git commit -a -m "$MESSAGE"
git push
# create tag and push it to git repo
git tag -a $TAG -m "$MESSAGE"
git push origin $TAG
############################################################################
############################################################################
### prepare files for pypi and upload them
############################################################################
# change to temporary directory
cd $TEMPDIR/django-sshkm
# prepare
python setup.py sdist
PYPIDIR=~/rpmbuild/pypi
rm -rf $PYPIDIR
mkdir -p $PYPIDIR
cp dist/* $PYPIDIR/
cp django_sshkm.egg-info/PKG-INFO $PYPIDIR/
############################################################################
############################################################################
### create SRPM
############################################################################
# change to temporary directory
cd $TEMPDIR/django-sshkm
# create tarball for rpmbuild
RPMSRC=$TEMPDIR/rpmbuild/SOURCES
mkdir -p $RPMSRC
cp -a rpmbuild/SOURCES/sshkm-master $RPMSRC/
mv $RPMSRC/sshkm-master $RPMSRC/sshkm-$TAG
cd $RPMSRC
tar czf ~/rpmbuild/SOURCES/sshkm-${TAG}.tar.gz sshkm-$TAG/
# build SRPM
cd $TEMPDIR/django-sshkm
rpmbuild -bs $TEMPDIR/django-sshkm/$SPEC
############################################################################
############################################################################
### cleanups
############################################################################
# cleanup temp dir
rm -rf $TEMPDIR
############################################################################
############################################################################
### final info
############################################################################
echo "--------------------------------------------------------------"
echo "manual steps:"
echo "- register pypi (files in $PYPIDIR)"
echo "- upload SRPM file to copr (file in ~/rpmbuild/SRPMS)"
echo "--------------------------------------------------------------"
############################################################################