-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy paththe-new-hotness.spec
128 lines (94 loc) · 3.88 KB
/
the-new-hotness.spec
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
%{!?_licensedir: %global license %%doc}
%if 0%{?rhel} && 0%{?rhel} <= 6
%{!?__python2: %global __python2 /usr/bin/python2}
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%endif
%global modname the-new-hotness
Name: the-new-hotness
Version: 0.7.3
Release: 1%{?dist}
Summary: Consume anitya fedmsg messages to file bugzilla bugs
Group: Development/Libraries
License: LGPLv2+
URL: http://pypi.python.org/pypi/the-new-hotness
Source0: https://pypi.python.org/packages/source/t/%{modname}/%{modname}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python2-devel
BuildRequires: python-setuptools
BuildRequires: python-bugzilla
BuildRequires: python-dogpile-cache
BuildRequires: fedmsg
BuildRequires: python-fedmsg-meta-fedora-infrastructure
BuildRequires: python-six
Requires: python-bugzilla
Requires: python-dogpile-cache
Requires: fedmsg
Requires: python-fedmsg-meta-fedora-infrastructure
Requires: python-six
%description
Fedmsg consumer that listens to release-monitoring.org and files bugzilla bugs
in response (to notify packagers that they can update their packages).
%prep
%setup -q -n %{modname}-%{version}
# Remove bundled egg-info in case it exists
rm -rf %{modname}.egg-info
%build
%{__python2} setup.py build
%install
%{__python2} setup.py install -O1 --skip-build --root=%{buildroot}
# setuptools installs these, but we don't want them.
rm -rf %{buildroot}%{python2_sitelib}/tests/
%files
%doc README.rst
%license LICENSE
%{python2_sitelib}/hotness/
%{python2_sitelib}/the_new_hotness-%{version}*
%changelog
* Wed Apr 06 2016 Ralph Bean <[email protected]> - 0.7.3-1
- new version
* Tue Mar 08 2016 Ralph Bean <[email protected]> - 0.7.2-1
- new version
* Tue Mar 01 2016 Ralph Bean <[email protected]> - 0.7.1-1
- new version
* Mon Feb 29 2016 Ralph Bean <[email protected]> - 0.7.0-1
- new version
* Tue Nov 24 2015 Ralph Bean <[email protected]> - 0.6.4-1
- new version
* Fri Oct 09 2015 Ralph Bean <[email protected]> - 0.6.3-1
- new version
* Thu Oct 01 2015 Ralph Bean <[email protected]> - 0.6.2-1
- new version
* Fri Sep 25 2015 Ralph Bean <[email protected]> - 0.6.1-1
- new version
* Thu Sep 24 2015 Ralph Bean <[email protected]> - 0.6.0-1
- new version
* Fri Jun 05 2015 Ralph Bean <[email protected]> - 0.5.0-1
- new version
* Tue Apr 07 2015 Ralph Bean <[email protected]> - 0.4.1-1
- Small bump to the get the GitHub name right for anitya.
* Sat Mar 28 2015 Ralph Bean <[email protected]> - 0.4.0-1
- Map in anitya when monitoring flag is toggled.
- File bugs when newly mapped in anitya.
- Send patches to bugzilla.
- Comment on the bug when we failed to kick off a scratch build.
- Publish fedmsg messages about errors instead of emailing hapless admins.
* Tue Feb 24 2015 Ralph Bean <[email protected]> - 0.3.3-1
- Improved changelog format.
- Provide correct information when mapping new github backends.
* Sat Feb 21 2015 Ralph Bean <[email protected]> - 0.3.2-1
- Improved logging
- Only followup on rawhide builds.
* Tue Feb 17 2015 Ralph Bean <[email protected]> - 0.3.1-1
- Minor bugfix to rawhide build followup.
* Thu Jan 29 2015 Ralph Bean <[email protected]> - 0.3.0-1
- new version
* Mon Jan 12 2015 Ralph Bean <[email protected]> - 0.2.2-1
- Latest upstream.
* Thu Nov 20 2014 Ralph Bean <[email protected]> - 0.2.1-1
- Latest upstream with lots of bugfixes.
- New fedmsg messages included.
* Wed Nov 19 2014 Ralph Bean <[email protected]> - 0.1.3-1
- Latest upstream with some bugfixes.
* Mon Nov 17 2014 Ralph Bean <[email protected]> - 0.1.2-1
- Initial package for infrastructure.