[python-django-notification] initial import

Matthias Runge mrunge at fedoraproject.org
Tue Mar 27 06:36:25 UTC 2012


commit a224a92009aa36cac6566e66ca849f4c983bd525
Author: Matthias Runge <mrunge at matthias-runge.de>
Date:   Tue Mar 27 08:36:10 2012 +0200

    initial import

 .gitignore                      |    1 +
 python-django-notification.spec |   76 +++++++++++++++++++++++++++++++++++++++
 sources                         |    1 +
 3 files changed, 78 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..3fea851 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-notification-0.2.tar.gz
diff --git a/python-django-notification.spec b/python-django-notification.spec
new file mode 100644
index 0000000..9e8014a
--- /dev/null
+++ b/python-django-notification.spec
@@ -0,0 +1,76 @@
+%global         pkgname django-notification
+%global         obs_ver 0.1.2-7
+
+Name:           python-django-notification
+Version:        0.2
+Release:        2%{?dist}
+Summary:        User notification management for the Django web framework
+
+Group:          Development/Languages
+License:        MIT
+URL:            https://github.com/jtauber/django-notification/
+Source0:        http://pypi.python.org/packages/source/d/%{pkgname}/%{pkgname}-%{version}.tar.gz
+
+BuildArch:      noarch
+BuildRequires:  python2-devel 
+BuildRequires:  python-setuptools
+Requires:       python-django
+
+Provides:       %{pkgname} = %{version}-%{release}
+# latest release for django-notification is 0.1.2-6
+Obsoletes:      %{pkgname} < %{obs_ver}
+
+%description
+Many sites need to notify users when certain events have occurred and to
+allow configurable options as to how those notifications are to be received.
+
+The project aims to provide a Django app for this sort of functionality.
+This includes:
+
+    * submission of notification messages by other apps
+    * notification messages on signing in
+    * notification messages via email (configurable by user)
+    * notification messages via feed
+
+%prep
+%setup -q -n %{pkgname}-%{version}
+# remove bundled egg-info
+rm -rf django_notification.egg-info
+
+%build
+%{__python} setup.py build
+
+%install
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+
+%files
+%doc AUTHORS LICENSE README docs/*
+%{python_sitelib}/notification
+%{python_sitelib}/django_notification-%{version}-py?.?.egg-info
+
+%changelog
+* Mon Mar 26 2012 Matthias Runge <mrunge at matthias-runge.de> - 0.2-2
+- obsolete old package
+
+* Sat Mar 24 2012 Matthias Runge <mrunge at matthias-runge.de> - 0.2-1
+- package renamed to python-django-notification
+- update to version 0.2
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.1.2-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.1.2-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Jul 21 2010 David Malcolm <dmalcolm at redhat.com> - 0.1.2-4
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.1.2-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Mar 02 2009 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> 0.1.2-2
+- Add Requires: Django
+
+* Wed Feb 18 2009 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> 0.1.2-1
+- Initial RPM release
diff --git a/sources b/sources
index e69de29..66e142c 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+0ba8e2ef23e1bcd1bc83e508d7580782  django-notification-0.2.tar.gz


More information about the scm-commits mailing list