From 7c4e28e63a465e1b17fb68654651aebc995029f6 Mon Sep 17 00:00:00 2001 From: Ratnadeep Debnath Date: Aug 27 2015 15:39:23 +0000 Subject: statscache v0.0.1-1 --- diff --git a/.gitignore b/.gitignore index e69de29..de3bfb8 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/statscache-0.0.1.tar.gz diff --git a/sources b/sources index e69de29..d2296df 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +d36032a433e8ced18882c0c197575dac statscache-0.0.1.tar.gz diff --git a/statscache.spec b/statscache.spec new file mode 100644 index 0000000..6a50c3a --- /dev/null +++ b/statscache.spec @@ -0,0 +1,127 @@ +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?pyver: %global pyver %(%{__python} -c "import sys ; print sys.version[:3]")} + +%global modname statscache + + +Name: statscache +Version: 0.0.1 +Release: 1%{?dist} +Summary: A daemon to build and keep fedmsg statistics +Group: Applications/Internet +License: LGPLv2+ +URL: http://github.com/fedora-infra/statscache +Source0: https://rtnpro.fedorapeople.org/statscache-0.0.1.tar.gz + +BuildArch: noarch + +BuildRequires: python-devel +BuildRequires: python-setuptools +# For tests +BuildRequires: python-nose +BuildRequires: python-six +BuildRequires: python-mock + +BuildRequires: fedmsg +BuildRequires: python-fedmsg-meta-fedora-infrastructure +BuildRequires: python-sqlalchemy +Requires: fedmsg +Requires: python-fedmsg-meta-fedora-infrastructure +Requires: python-sqlalchemy + +%description +Statscache is a plugin to the fedmsg-hub that sits listening in our +infrastructure. When new messages arrive, it will pass them off to `plugins +`_ that will calculate and +store various statistics. If we want a new kind of statistic to be kept, we +write a new plugin for it. It will come with a tiny flask frontend, much like +datagrepper, that allows you to query for this or that stat in this or that +format (csv, json, maybe html or svg too but that might be overkill). The idea +being that we can then build neater smarter frontends that can render +fedmsg-based activity very quickly.. and perhaps later drill-down into the +*details* kept in datagrepper. + +It is kind of like a data mart (http://en.wikipedia.org/wiki/Data_mart). + +%package common +Summary: Statscache common library +Group: Applications/Internet + +%description common +This package contains the common libraries required by other statscache +components. + +%package web +Summary: A REST API server on top of statscache +Group: Applications/Internet + +Requires: %{name}-common = %{version}-%{release} +Requires: python-flask + +%description web +This package exposes a REST API server to render data generated by statscache. + +%package consumer +Summary: Statscache consumer +Group: Applications/Internet +Requires: %{name}-common = %{version}-%{release} +Requires: fedmsg-hub + +%description consumer +This runs a daemon which keeps listening to fedmsg and dispatches messages +to statscache plugins for storing data in required format. + +%prep +%setup -q -n %{modname}-%{version} + +%build +%{__python} setup.py build + +%check +PYTHONPATH=$(pwd) python setup.py test + +%install +%{__python} setup.py install -O1 --skip-build \ + --install-data=%{_datadir} --root %{buildroot} + +%{__mkdir_p} %{buildroot}%{_sysconfdir}/fedmsg.d/ +%{__cp} fedmsg.d/statscache.py %{buildroot}%{_sysconfdir}/fedmsg.d/. + +mkdir -p %{buildroot}%{_datadir}/%{modname}/apache/ +install -m 644 apache/%{modname}.wsgi %{buildroot}%{_datadir}/%{modname}/apache/%{modname}.wsgi +install -m 644 apache/%{modname}.conf %{buildroot}%{_datadir}/%{modname}/apache/%{modname}.conf + +mkdir -p %{buildroot}%{_sysconfdir}/%{modname}/ +install -m 644 apache/%{modname}.cfg %{buildroot}%{_sysconfdir}/%{modname}/%{modname}.cfg + +%files common +%doc README.rst +%license COPYING COPYING.LESSER + +%dir %{python_sitelib}/%{modname}/ +%{python_sitelib}/%{modname}/__init__.py* +%{python_sitelib}/%{modname}/utils.py* +%{python_sitelib}/%{modname}/schedule.py* +%{python_sitelib}/%{modname}/plugins.py* +%{python_sitelib}/%{modname}-%{version}-py%{pyver}.egg-info/ + +%config(noreplace) %{_sysconfdir}/fedmsg.d/statscache.py* + +%dir %{_sysconfdir}/%{modname}/ +%config(noreplace) %{_sysconfdir}/%{modname}/%{modname}.cfg + +%files web +%{python_sitelib}/%{modname}/app.py* + +%dir %{_datadir}/%{modname} +%dir %{_datadir}/%{modname}/apache/ +%{_datadir}/%{modname}/apache/%{modname}.wsgi +%{_datadir}/%{modname}/apache/%{modname}.conf + +%files consumer +%{python_sitelib}/%{modname}/consumer.py* +%{python_sitelib}/%{modname}/producer.py* + +%changelog +* Sat Jun 20 2015 Ratnadeep Debnath - 0.0.1-1 +- Initial packaging.