forked from pynag/pynag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·177 lines (134 loc) · 5.03 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/bin/bash
# Use this script to release a new version of ${project_name}
# Extract current version information
project_name=$(ls *spec | sed 's/.spec$//')
current_version=$(grep ^Version: $project_name.spec | awk '{ print $2 }')
current_release=$(grep "define release" $project_name.spec | awk '{ print $3 }')
UPDATE_INFO_FILE=$(mktemp)
freecode_file=$(mktemp)
trap "rm -f ${UPDATE_INFO_FILE} ${freecode_file}" EXIT
if [ -z "$EDITOR" ]; then
EDITOR=vi
fi
if [ -z $BASH ]; then
echo "You need /bin/bash to run this script"
exit 1
fi
main() {
update_changes || echo FAIL
update_version_number || echo FAIL
new_version=$(grep ^VERSION Makefile | awk '{ print $3 }')
update_manpage || echo FAIL
git_commit || echo FAIL
git_push || echo FAIL
upload_to_pypi || echo FAIL
upload_to_freecode || echo FAIL
echo "### All Done"
}
update_changes() {
ask "Update Changelog?" || return 0
${EDITOR} CHANGES || return 1
}
upload_to_pypi() {
ask "Upload to pypi?" || return 0
python setup.py build sdist upload || return 1
}
git_push() {
ask "Upload to github?" || return 0
git push origin master || return 1
git push --tags origin master || return 1
}
upload_to_freecode() {
ask "Upload to freecode?" || return 0
update_freecode_info
error=0
which freecode-submit &> /dev/null || error=1
grep freecode ~/.netrc &> /dev/null || error=1
if [ $error -gt 0 ]; then
echo freecode-submit missing, please install and update .netrc appropriately
echo
echo use yum install freecode-submit or equivilent for your distribution
echo
echo Next you have to find your API key on freecode.com and put it into ~/.netrc
echo
echo 'echo "machine freecode account <apikey> password none" >> ~/.netrc'
return 1
fi
echo "Project: $project_name" > ${freecode_file}
echo "Version: ${new_version}" >> ${freecode_file}
echo "Hide: N" >> ${freecode_file}
echo "Website-URL: http://${project_name}/" >> ${freecode_file}
echo "Tar/GZ-URL: https://pypi.python.org/packages/source/p/${project_name}/${project_name}-${new_version}.tar.gz" >> ${freecode_file}
grep -A24 '^$' ${UPDATE_INFO_FILE} >> ${freecode_file}
freecode-submit < ${freecode_file}
}
update_freecode_info() {
echo "Current version is: $current_version" > ${UPDATE_INFO_FILE}
echo "New version number: ${new_version}" >> ${UPDATE_INFO_FILE}
echo 'Summary: <one line summary>' >> ${UPDATE_INFO_FILE}
echo '' >> ${UPDATE_INFO_FILE}
echo '<full description>' >> ${UPDATE_INFO_FILE}
${EDITOR} ${UPDATE_INFO_FILE}
new_version=$(grep '^New version number:' ${UPDATE_INFO_FILE} | sed 's/^New version number: *//' | sed 's/ *$//')
short_desc=$(grep '^Summary:' ${UPDATE_INFO_FILE} | sed 's/^Summary: *//')
# Some sanity checking
if [ -z "${new_version}" ]; then
echo "New version is required"
exit 1
fi
if [ -z "${short_desc}" ]; then
echo "Summary is required"
exit 1
fi
}
update_manpage() {
ask "Update manpage?" || return 0
./setup.py build_man
gzip -c < man/pynag.1 > man/pynag.1.gz
}
update_version_number() {
ask "Update version number?" || return 0
echo "Current version is: ${current_version}"
read -p "New version number: " new_version
echo
echo "### Updating Makefile"
sed -i "s/^VERSION.*=.*/VERSION = ${new_version}/" Makefile
echo "### Updating ${project_name}/__init__.py"
sed -i "s/^__version__.*/__version__ = '${new_version}'/" ${project_name}/__init__.py
echo "### Updating ${project_name}.spec"
sed -i "s/^Version: ${current_version}/Version: ${new_version}/" ${project_name}.spec
echo "### Updating rel-eng/packages/${project_name}"
echo "${new_version}-${current_release} /" > rel-eng/packages/${project_name}
echo "### Updating debian.upstream/changelog"
update_debian_changelog
}
update_debian_changelog() {
DATE=$(LANG=C date -R)
NAME=$(git config --global --get user.name)
MAIL=$(git config --global --get user.email)
changelog=$(mktemp)
echo "${project_name} (${new_version}-${current_release}) unstable; urgency=low" > ${changelog}
echo "" >> ${changelog}
echo " * New upstream version" >> ${changelog}
echo "" >> ${changelog}
echo " -- ${NAME} <${MAIL}> ${DATE}" >> ${changelog}
echo "" >> ${changelog}
cat debian.upstream/changelog >> ${changelog}
cp -f ${changelog} debian.upstream/changelog
}
git_commit() {
ask "Commit changes to git and tag release ?" || return 0
git commit Makefile CHANGES ${project_name}/__init__.py rel-eng/packages/${project_name} ${project_name}.spec debian.upstream/changelog man/pynag.1* -m "Bumped version number to $new_version" > /dev/null
git tag ${project_name}-${new_version}-${current_release} -a -m "Bumped version number to $new_version"
}
ask() {
read -n 1 -p "### $@ [Yn] "
echo
if [[ $REPLY =~ n ]]; then
return 1
else
return 0
fi
}
main;
# vim: sts=4 expandtab autoindent