Browse Source

removed Django: duplicated python-django

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@1744 ec354946-7b23-47d6-9f5a-488ba84defc7
munepi 13 years ago
parent
commit
b87785cdbc
1 changed files with 0 additions and 222 deletions
  1. 0 222
      D/Django/Django-vl.spec

+ 0 - 222
D/Django/Django-vl.spec

@@ -1,222 +0,0 @@
-%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%{!?pyver: %define pyver %(%{__python} -c "import sys ; print sys.version[:3]")}
-
-Name:           Django
-Version:        1.2.1
-Release:        1%{?_dist_release}
-Summary:        A high-level Python Web framework
-
-Group:          Development/Languages
-License:        BSD
-URL:            http://www.djangoproject.com/
-Source0:        http://media.djangoproject.com/releases/%{version}/Django-%{version}.tar.gz
-# stub simplejson module that imports the system version
-Source1:        simplejson-init.py
-Patch0:         Django-hash-compat-13310.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
-
-BuildArch:      noarch
-# Note: No longer required in development version > 0.95
-# BuildRequires:  python-setuptools
-BuildRequires:  python-devel
-BuildRequires:  python-sphinx
-
-Requires:       python-simplejson
-
-Provides:       python-Django
-
-%description
-Django is a high-level Python Web framework that encourages rapid
-development and a clean, pragmatic design. It focuses on automating as
-much as possible and adhering to the DRY (Don't Repeat Yourself)
-principle.
-#'
-
-%prep
-%setup -q -n %{name}-%{version}
-%patch0 -p3
-# remove bundled simplejson
-cd django/utils/simplejson/
-%__rm -rf *
-# and put the replacement stub in place
-cp -p %{SOURCE1} __init__.py
-
-
-%build
-%{__python} setup.py build
-
-
-%install
-%__rm -rf $RPM_BUILD_ROOT
-%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
-# Handling locale files
-# This is adapted from the %%find_lang macro, which cannot be directly
-# used since Django locale files are not located in %%{_datadir}
-#
-# The rest of the packaging guideline still apply -- do not list
-# locale files by hand!
-(cd $RPM_BUILD_ROOT && find . -name 'django*.mo') | %{__sed} -e 's|^.||' | %{__sed} -e \
-  's:\(.*/locale/\)\([^/_]\+\)\(.*\.mo$\):%lang(\2) \1\2\3:' \
-  >> %{name}.lang
-
-# install man pages
-%__mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1/
-%__cp -p docs/man/* $RPM_BUILD_ROOT%{_mandir}/man1/
-
-# Fix items in %{_bindir}
-%__mv $RPM_BUILD_ROOT%{_bindir}/django-admin.py $RPM_BUILD_ROOT%{_bindir}/django-admin
-
-# remove .po files
-find $RPM_BUILD_ROOT -name "*.po" | xargs %__rm -f
-
-
-%clean
-%__rm -rf $RPM_BUILD_ROOT
-
-
-%files -f %{name}.lang
-%defattr(-,root,root,-)
-%doc AUTHORS LICENSE README
-%{_bindir}/django-admin
-%{_mandir}/man1/*
-%attr(0755,root,root) %{python_sitelib}/django/conf/project_template/manage.py
-%attr(0755,root,root) %{python_sitelib}/django/contrib/admin/media/js/compress.py
-%attr(0755,root,root) %{python_sitelib}/django/bin/profiling/gather_profile_stats.py*
-%attr(0755,root,root) %{python_sitelib}/django/bin/*-messages.py*
-%attr(0755,root,root) %{python_sitelib}/django/bin/daily_cleanup.py*
-%attr(0755,root,root) %{python_sitelib}/django/bin/django-admin.py*
-%{python_sitelib}/django/bin/profiling/*
-%{python_sitelib}/django/bin/__init__.py*
-# Include everything but the locale data ...
-%{python_sitelib}/django/db/
-%{python_sitelib}/django/*.py*
-%{python_sitelib}/django/shortcuts/
-%{python_sitelib}/django/utils/
-%{python_sitelib}/django/dispatch/
-%{python_sitelib}/django/template/
-%{python_sitelib}/django/views/
-%{python_sitelib}/django/contrib/
-%{python_sitelib}/django/forms/
-%{python_sitelib}/django/templatetags/ 
-%{python_sitelib}/django/core/
-%{python_sitelib}/django/http/
-%{python_sitelib}/django/middleware/
-%{python_sitelib}/django/test/
-%{python_sitelib}/django/conf/*.py*
-%{python_sitelib}/django/conf/project_template/
-%{python_sitelib}/django/conf/app_template/
-%{python_sitelib}/django/conf/urls/
-%{python_sitelib}/django/conf/locale/*/*.py*
-%{python_sitelib}/django/conf/locale/*.py*
-
-%{python_sitelib}/*.egg-info
-
-
-%changelog
-* Mon Aug 23 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 1.2.1-1
-- initial build based on Fedora development
-
-* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.2.1-6
-- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
-
-* Tue Jun  8 2010 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.2.1-5
-- Added http://code.djangoproject.com/changeset/13310?format=diff&new=13310 per BZ#601212
-
-* Thu Jun  3 2010 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.2.1-4
-- Include egg in >= rhel6
-
-* Thu Jun  3 2010 Michel Salim <salimma@fedoraproject.org> - 1.2.1-3
-- Use generated %%{name}.lang instead of including each locale file by hand
-- Temporarily make main package provide -doc on Rawhide, to fix upgrade path
-  until upstream documentation builds with Sphinx 1.0
-
-* Thu May 27 2010 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.2.1-2
-- Allow for building docs in F13 as it's only F14 freaking out
-
-* Tue May 25 2010 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.2.1-1
-- Update for new release.
-- Added lang files per BZ#584866.
-- Changed perms on %%{python_sitelib}/django/contrib/admin/media/js/compress.py
-- Lots of explicit files listed in %%files in order to reduce duplicate file listings
-- Docs are not built on F-13 for now
-
-* Wed Oct 21 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.1.1-2
-- Removed po files per BZ#529188.
-
-* Fri Oct  9 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.1.1-1
-- Update to fix http://www.djangoproject.com/weblog/2009/oct/09/security/
-- Django-ignore-pyo-bz-495046.patch no longer needed.
-
-* Wed Aug 26 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.1-4
-- EL-4 shouldn't get the sphinx docs.
-
-* Wed Aug 26 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.1-3
-- ghosting admin py* is now FC9 and under.
-
-* Thu Aug  6 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.1-2
-- Applied Daniel Mach's patch from bz#516016.
-
-* Sat Aug  1 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.1-1
-- Update for Django 1.1 release.
-- Moved /usr/bin/django-admin.py to /usr/bin/django-admin
-- sed macro is now being used
-- Patch for bz#495046 applied.
-
-* Wed Jul 29 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.0.3-6
-- Attempted combined spec for F12/11/10 and EL5
-
-* Wed Jul 29 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.0.3-4
-- Older builds must ghost django-admin.py[c,o]
-
-* Wed Jul 29 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.0.3-3
-- Bump for tag issue.
-
-* Wed Jul 29 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.0.3-2
-- Fix changelog.
-
-* Wed Jul 29 2009 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.0.3-1
-- Upgrade for http://www.djangoproject.com/weblog/2009/jul/28/security/
-
-* Thu Mar 12 2009 Michel Salim <salimma@fedoraproject.org> - 1.0.2-3
-- Build HTML documentation (bug #484070)
-- No longer excluding *.py? in bindir, F11's Python does not optimizes these
-
-* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Sun Dec 14 2008 Michel Salim <salimma@fedoraproject.org> - 1.0.2-1
-- Update to 1.0.2
-
-* Sat Nov  1 2008 Steve 'Ashcrow' Milner <stevem@gnulinux.net> - 1.0.1-0.1.beta1
-- Update to 1.0.1_beta_1
-
-* Sat Sep  6 2008 Michel Salim <salimma@fedoraproject.org> - 1.0-1
-- Update to final 1.0 release
-
-* Tue Sep  2 2008 Michel Salim <salimma@fedoraproject.org> - 1.0-0.1.rc1%{?dist}
-- CSRF security update: bz#460966
-
-* Wed Aug 27 2008 Michel Salim <salimma@fedoraproject.org> - 1.0-0.1.beta2
-- Update to 1.0 beta2
-
-* Sat Aug 23 2008 Michel Salim <salimma@fedoraproject.org> - 1.0-0.1.beta1
-- Update to 1.0 beta1
-
-* Mon May 19 2008 Michel Salim <salimma@fedoraproject.org> - 0.96.2-1
-- XSS security update: CVE-2008-2302 (bz# 442757-60)
-
-* Sat Apr  5 2008 Michel Salim <salimma@fedoraproject.org> - 0.96.1-2
-- Package .egg-info file on Fedora >= 9
-
-* Thu Nov  1 2007 Michel Salim <michel.sylvan@gmail.com> 0.96.1-1
-- i18n security update: CVE-2007-5712, bz#357051
-
-* Sat Mar 24 2007 Michel Salim <michel.salim@gmail.com> - 0.96-1
-- New upstream version
-
-* Sun Jan 21 2007 Michel Salim <michel.salim@gmail.com> - 0.95.1-1
-- Upstream security updates:
-  http://www.djangoproject.com/weblog/2007/jan/21/0951/
-
-* Sun Nov 12 2006 Michel Salim <michel.salim@gmail.com> - 0.95-1
-- Initial package