[django-threadedcomments] Initial import (#645761).

Domingo Becker beckerde at fedoraproject.org
Fri Nov 19 15:44:30 UTC 2010


commit 2b94448ab1665e284078f8eb0e82164c0500b4fa
Author: Constructor de RPM 1 <rpm at boris3.(none)>
Date:   Fri Nov 19 12:44:29 2010 -0300

    Initial import (#645761).

 .gitignore                   |    1 +
 django-threadedcomments.spec |   51 ++++++++++++++++++++++++++++++++++++++++++
 sources                      |    1 +
 3 files changed, 53 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..57e28e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-threadedcomments-0.5.3.tar.gz
diff --git a/django-threadedcomments.spec b/django-threadedcomments.spec
new file mode 100644
index 0000000..4d07fb0
--- /dev/null
+++ b/django-threadedcomments.spec
@@ -0,0 +1,51 @@
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name:           django-threadedcomments
+Version:        0.5.3
+Release:        2%{?dist}
+Summary:        A simple yet flexible threaded commenting system for Django
+
+Group:          Development/Languages
+License:        BSD
+URL:            http://pypi.python.org/pypi/django-threadedcomments
+Source:         http://pypi.python.org/packages/source/d/django-threadedcomments/%{name}-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch:      noarch
+BuildRequires:  python-devel python-setuptools-devel Django
+Requires:       Django
+
+%description
+Django-threadedcomments is a Django application which allows for the 
+simple creation of a threaded commenting system. It is flexible as well, 
+partly due to its use of the same facilities that any other Django 
+application would use.
+
+%prep
+%setup -q 
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc LICENSE.txt README.txt CONTRIBUTORS.txt CHANGELOG.txt INSTALL.txt docs/api.txt docs/index.txt docs/pinax.txt docs/tutorial.txt
+%{python_sitelib}/*
+
+%changelog
+* Mon Nov 08 2010 Domingo Becker <domingobecker at gmail.com> - 0.5.3-2
+- new doc section excluding binary file ._pinax.txt from docs directory
+- new description
+- BuildRequires added Django.
+- fixed changelog version of the previous one.
+
+* Mon Sep 27 2010 Domingo Becker <domingobecker at gmail.com> - 0.5.3-1
+- Initial RPM release
+
diff --git a/sources b/sources
index e69de29..07ac2dc 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+d799f1f965dda12f75d9240a70f419f5  django-threadedcomments-0.5.3.tar.gz


More information about the scm-commits mailing list