From 6db3640d61741b51676980ccdbdad0715c50c5f2 Mon Sep 17 00:00:00 2001 From: Rahul Sundaram Date: Sun, 17 Jul 2011 02:37:43 +0530 Subject: [PATCH 1/8] initial spec --- .gitignore | 1 + django-celery.spec | 46 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 48 insertions(+) create mode 100644 django-celery.spec diff --git a/.gitignore b/.gitignore index e69de29..b5b76d8 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/django-celery-2.2.4.tar.gz diff --git a/django-celery.spec b/django-celery.spec new file mode 100644 index 0000000..17e6586 --- /dev/null +++ b/django-celery.spec @@ -0,0 +1,46 @@ +Name: django-celery +Version: 2.2.4 +Release: 1%{?dist} +Summary: Django Celery Integration +Group: Development/Languages +License: BSD +URL: http://pypi.python.org/pypi/%{name} +Source0: http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz + +BuildArch: noarch +BuildRequires: python-setuptools-devel python-devel +Requires: Django python-celery + +%description +django-celery provides Celery integration for Django; Using the Django ORM and +cache backend for storing results, autodiscovery of task modules for +applications listed in INSTALLED_APPS, and more. + +Celery is a task queue/job queue based on distributed message passing. It is +focused on real-time operation, but supports scheduling as well. + +The execution units, called tasks, are executed concurrently on a single or more +worker servers. Tasks can execute asynchronously (in the background) or +synchronously (wait until ready). + +%prep +%setup -q +rm -rf docs/.templates +rm -rf docs/.static* +%build +%{__python} setup.py build + +%install +rm -rf $RPM_BUILD_ROOT +%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc LICENSE FAQ README AUTHORS THANKS TODO Changelog docs/ +%{_bindir}/djcelerymon +%{python_sitelib}/djcelery/ +%{python_sitelib}/django_celery*.egg-info + +%changelog +* Thu Apr 18 2011 Rahul Sundaram - 2.2.4-1 +- initial spec diff --git a/sources b/sources index e69de29..abe508b 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +08ea1ce14af8a09c8eeae7fcfcaefaae django-celery-2.2.4.tar.gz From 9eea01647b2ebe7ec882cfe98df95bc7efdaa12e Mon Sep 17 00:00:00 2001 From: Rahul Sundaram Date: Sun, 17 Jul 2011 02:56:24 +0530 Subject: [PATCH 2/8] initial spec --- .gitignore | 1 + django-celery.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 46 insertions(+) create mode 100644 django-celery.spec diff --git a/.gitignore b/.gitignore index e69de29..1a8b100 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/django-celery-2.2.3.tar.gz diff --git a/django-celery.spec b/django-celery.spec new file mode 100644 index 0000000..5efb67f --- /dev/null +++ b/django-celery.spec @@ -0,0 +1,44 @@ +Name: django-celery +Version: 2.2.3 +Release: 1%{?dist} +Summary: Django Celery Integration +Group: Development/Languages +License: BSD +URL: http://pypi.python.org/pypi/%{name} +Source0: http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz + +BuildArch: noarch +BuildRequires: python-setuptools python-devel +Requires: Django python-celery + +%description +django-celery provides Celery integration for Django; Using the Django ORM and +cache backend for storing results, autodiscovery of task modules for +applications listed in INSTALLED_APPS, and more. + +Celery is a task queue/job queue based on distributed message passing. It is +focused on real-time operation, but supports scheduling as well. + +The execution units, called tasks, are executed concurrently on a single or more +worker servers. Tasks can execute asynchronously (in the background) or +synchronously (wait until ready). + +%prep +%setup -q +rm -rf docs/.templates +rm -rf docs/.static* +%build +%{__python} setup.py build + +%install +%{__python} setup.py install -O1 --skip-build --root %{buildroot} + +%files +%doc LICENSE FAQ README AUTHORS THANKS TODO Changelog docs/ +%{_bindir}/djcelerymon +%{python_sitelib}/djcelery/ +%{python_sitelib}/django_celery*.egg-info + +%changelog +* Thu Apr 18 2011 Rahul Sundaram - 2.2.3-1 +- initial spec diff --git a/sources b/sources index e69de29..ce77eaa 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +5f84c04a7535fcd67715548b0c7e9dc5 django-celery-2.2.3.tar.gz From 6d8a09d87c55e067de5a56913911ad71e14e39f6 Mon Sep 17 00:00:00 2001 From: Rahul Sundaram Date: Sun, 17 Jul 2011 03:02:56 +0530 Subject: [PATCH 3/8] Match current guidelines. Fix buildrequires --- django-celery.spec | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/django-celery.spec b/django-celery.spec index 17e6586..63cc4c0 100644 --- a/django-celery.spec +++ b/django-celery.spec @@ -1,6 +1,6 @@ Name: django-celery Version: 2.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Django Celery Integration Group: Development/Languages License: BSD @@ -8,7 +8,7 @@ URL: http://pypi.python.org/pypi/%{name} Source0: http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz BuildArch: noarch -BuildRequires: python-setuptools-devel python-devel +BuildRequires: python-setuptools python-devel Requires: Django python-celery %description @@ -31,16 +31,17 @@ rm -rf docs/.static* %{__python} setup.py build %install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT +%{__python} setup.py install -O1 --skip-build --root %{buildroot} %files -%defattr(-,root,root,-) %doc LICENSE FAQ README AUTHORS THANKS TODO Changelog docs/ %{_bindir}/djcelerymon %{python_sitelib}/djcelery/ %{python_sitelib}/django_celery*.egg-info %changelog +* Sun Jul 17 2011 Rahul Sundaram - 2.2.4-2 +- Match current guidelines. Fix buildrequires + * Thu Apr 18 2011 Rahul Sundaram - 2.2.4-1 - initial spec From c146c27a6727802556f466044649ece0898d4dd0 Mon Sep 17 00:00:00 2001 From: Rahul Sundaram Date: Thu, 11 Aug 2011 12:53:03 +0530 Subject: [PATCH 4/8] new upstream release --- .gitignore | 1 + django-celery.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b5b76d8..c569c49 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /django-celery-2.2.4.tar.gz +/django-celery-2.2.7.tar.gz diff --git a/django-celery.spec b/django-celery.spec index 63cc4c0..ed65854 100644 --- a/django-celery.spec +++ b/django-celery.spec @@ -1,6 +1,6 @@ Name: django-celery -Version: 2.2.4 -Release: 2%{?dist} +Version: 2.2.7 +Release: 1%{?dist} Summary: Django Celery Integration Group: Development/Languages License: BSD @@ -40,6 +40,9 @@ rm -rf docs/.static* %{python_sitelib}/django_celery*.egg-info %changelog +* Thu Aug 11 2011 Rahul Sundaram - 2.2.7-1 +- new upstream release + * Sun Jul 17 2011 Rahul Sundaram - 2.2.4-2 - Match current guidelines. Fix buildrequires diff --git a/sources b/sources index abe508b..aa2ab3a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -08ea1ce14af8a09c8eeae7fcfcaefaae django-celery-2.2.4.tar.gz +833d142cb065d53049d03f288f359735 django-celery-2.2.7.tar.gz From bef4f9b2fdad1c09ac695e2595a5e6e98895e173 Mon Sep 17 00:00:00 2001 From: Rahul Sundaram Date: Thu, 11 Aug 2011 14:22:13 +0530 Subject: [PATCH 5/8] new upstream release --- .gitignore | 1 + django-celery.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1a8b100..bca0a07 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /django-celery-2.2.3.tar.gz +/django-celery-2.2.7.tar.gz diff --git a/django-celery.spec b/django-celery.spec index 5efb67f..9c3fd0b 100644 --- a/django-celery.spec +++ b/django-celery.spec @@ -1,5 +1,5 @@ Name: django-celery -Version: 2.2.3 +Version: 2.2.7 Release: 1%{?dist} Summary: Django Celery Integration Group: Development/Languages @@ -40,5 +40,9 @@ rm -rf docs/.static* %{python_sitelib}/django_celery*.egg-info %changelog +* Thu Aug 11 2011 Rahul Sundaram - 2.2.7-1 +- new upstream release + * Thu Apr 18 2011 Rahul Sundaram - 2.2.3-1 - initial spec + diff --git a/sources b/sources index ce77eaa..aa2ab3a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5f84c04a7535fcd67715548b0c7e9dc5 django-celery-2.2.3.tar.gz +833d142cb065d53049d03f288f359735 django-celery-2.2.7.tar.gz From c043a91e4456d870b86414bd21e946b8d1a6af2f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 18:42:56 -0600 Subject: [PATCH 6/8] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- django-celery.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/django-celery.spec b/django-celery.spec index ed65854..f1c6fbb 100644 --- a/django-celery.spec +++ b/django-celery.spec @@ -1,6 +1,6 @@ Name: django-celery Version: 2.2.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Django Celery Integration Group: Development/Languages License: BSD @@ -40,6 +40,9 @@ rm -rf docs/.static* %{python_sitelib}/django_celery*.egg-info %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 2.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Thu Aug 11 2011 Rahul Sundaram - 2.2.7-1 - new upstream release From 20bf1ffbaa8f393f8f843c8acc0303a80d242e31 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 15:49:04 -0500 Subject: [PATCH 7/8] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- django-celery.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/django-celery.spec b/django-celery.spec index f1c6fbb..05ddcc3 100644 --- a/django-celery.spec +++ b/django-celery.spec @@ -1,6 +1,6 @@ Name: django-celery Version: 2.2.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Django Celery Integration Group: Development/Languages License: BSD @@ -40,6 +40,9 @@ rm -rf docs/.static* %{python_sitelib}/django_celery*.egg-info %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 2.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 2.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 4a71d7056232eda9585bc9c77d2c42643c99f3ed Mon Sep 17 00:00:00 2001 From: Thomas Spura Date: Wed, 8 Aug 2012 09:55:47 +0200 Subject: [PATCH 8/8] package was renamed python-django-celery --- .gitignore | 2 -- dead.package | 1 + django-celery.spec | 56 ---------------------------------------------- sources | 1 - 4 files changed, 1 insertion(+), 59 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 django-celery.spec delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index c569c49..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/django-celery-2.2.4.tar.gz -/django-celery-2.2.7.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..26b5f6c --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +package was renamed python-django-celery diff --git a/django-celery.spec b/django-celery.spec deleted file mode 100644 index 05ddcc3..0000000 --- a/django-celery.spec +++ /dev/null @@ -1,56 +0,0 @@ -Name: django-celery -Version: 2.2.7 -Release: 3%{?dist} -Summary: Django Celery Integration -Group: Development/Languages -License: BSD -URL: http://pypi.python.org/pypi/%{name} -Source0: http://pypi.python.org/packages/source/d/%{name}/%{name}-%{version}.tar.gz - -BuildArch: noarch -BuildRequires: python-setuptools python-devel -Requires: Django python-celery - -%description -django-celery provides Celery integration for Django; Using the Django ORM and -cache backend for storing results, autodiscovery of task modules for -applications listed in INSTALLED_APPS, and more. - -Celery is a task queue/job queue based on distributed message passing. It is -focused on real-time operation, but supports scheduling as well. - -The execution units, called tasks, are executed concurrently on a single or more -worker servers. Tasks can execute asynchronously (in the background) or -synchronously (wait until ready). - -%prep -%setup -q -rm -rf docs/.templates -rm -rf docs/.static* -%build -%{__python} setup.py build - -%install -%{__python} setup.py install -O1 --skip-build --root %{buildroot} - -%files -%doc LICENSE FAQ README AUTHORS THANKS TODO Changelog docs/ -%{_bindir}/djcelerymon -%{python_sitelib}/djcelery/ -%{python_sitelib}/django_celery*.egg-info - -%changelog -* Wed Jul 18 2012 Fedora Release Engineering - 2.2.7-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Jan 13 2012 Fedora Release Engineering - 2.2.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Thu Aug 11 2011 Rahul Sundaram - 2.2.7-1 -- new upstream release - -* Sun Jul 17 2011 Rahul Sundaram - 2.2.4-2 -- Match current guidelines. Fix buildrequires - -* Thu Apr 18 2011 Rahul Sundaram - 2.2.4-1 -- initial spec diff --git a/sources b/sources deleted file mode 100644 index aa2ab3a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -833d142cb065d53049d03f288f359735 django-celery-2.2.7.tar.gz