Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/web
In directory vz-cvs-3.sog:/tmp/cvs-serv25972/stable/main/finkinfo/web

Modified Files:
        django-py.info 
Log Message:
sync django-pyXX to stable because stable required a psycopg that doesn't 
appear to have existed anywhere


Index: django-py.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/web/django-py.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- django-py.info      8 Jun 2011 18:42:05 -0000       1.5
+++ django-py.info      20 Oct 2011 06:34:08 -0000      1.6
@@ -1,17 +1,42 @@
 Info2: <<
 Package: django-py%type_pkg[python]
-Type: python (2.4 2.5)
-Version: 0.96.4
+Type: python (2.4 2.5 2.6 2.7)
+Version: 1.3.1
 Revision: 1
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 
-# The only database backend I have tested is pysqlite2:
-Depends: python%type_pkg[python],  setuptools-py%type_pkg[python] (>= 
0.6c2-1), docutils-py%type_pkg[python], pysqlite2-py%type_pkg[python] | 
mysql-python-py%type_pkg[python] | psycopg2-py%type_pkg[python] | 
psycopg-py%type_pkg[python]
+# Python 2.5 and newer already have an sqlite3 interface
+Depends: <<
+  python%type_pkg[python],  
+  docutils-py%type_pkg[python],
+  (%type_raw[python] = 2.4) pysqlite2-py%type_pkg[python] | (%type_raw[python] 
= 2.4) mysql-python-py%type_pkg[python] | (%type_raw[python] = 2.4) 
psycopg2-py%type_pkg[python] 
+<<
+BuildDepends: distribute-py%type_pkg[python]
 
-Source: http://media.djangoproject.com/releases/0.96/Django-%v.tar.gz
-Source-MD5: 78b212d0a538ecb1756cf15cc5884506
+# Does this really need entries for each python version?
+Recommends: <<
+  (%type_raw[python] = 2.5) mysql-python-py%type_pkg[python], 
+  (%type_raw[python] = 2.5) psycopg2-py%type_pkg[python],
+  (%type_raw[python] = 2.6) mysql-python-py%type_pkg[python], 
+  (%type_raw[python] = 2.6) psycopg2-py%type_pkg[python],
+  (%type_raw[python] = 2.7) mysql-python-py%type_pkg[python], 
+  (%type_raw[python] = 2.7) psycopg2-py%type_pkg[python],
+  (%type_raw[python] = 2.7) yaml-py%type_pkg[python],
+  (%type_raw[python] = 2.7) yaml-py%type_pkg[python]
+<<
+# FIX: add yaml for dumpdata serializer
 
-DocFiles: AUTHORS INSTALL LICENSE README PKG-INFO
+Source: http://media.djangoproject.com/releases/1.3/Django-%v.tar.gz
+Source-MD5: 62d8642fd06b9a0bf8544178f8500767
+
+DocFiles: AUTHORS INSTALL LICENSE README
+
+PatchScript: <<
+  #!/bin/bash -ev
+  perl -pi -e "s|'geos_c'|'libgeos_c.1.dylib'|g" 
django/contrib/gis/geos/libgeos.py
+  perl -pi -e "s|lib_path = None|lib_path = 
'%p/opt/libgeos3.3.0/lib/libgeos_c.1.dylib'|g" 
django/contrib/gis/geos/libgeos.py
+  perl -pi -e "s|lib_path = None|lib_path = '%p/lib/libgdal.1.dylib'|g" 
django/contrib/gis/gdal/libgdal.py
+<<
 
 CompileScript: <<
    echo Skipping compile stage
@@ -19,14 +44,25 @@
 
 InstallScript: <<
    %p/bin/python%type_raw[python] setup.py install --root=%d
+   echo "Removing geodjango gis module.  Only works easily in python 2.5 w/ 
builtin ctypes (see geodjango-py25 package)"
    mkdir -p %i/share/doc/%n
    cp -pr docs %i/share/doc/%n
-   #cp -pr examples %i/share/doc/%n
    install -d %i/etc/bash_completion.d
-   #install extras/django_bash_completion 
%i/etc/bash_completion.d/django-py%type_pkg[python]
+   install extras/django_bash_completion 
%i/etc/bash_completion.d/django-py%type_pkg[python]
    mv %i/bin/django-admin.py %i/bin/django-admin%type_raw[python]
 <<
 
+SplitOff: <<
+  Package: django-gis-py%type_pkg[python]
+  Description: gis/geo contrib application for django
+  Depends: libgeos3.3.0-shlibs, django-py%type_pkg[python], gdal-shlibs | 
gdal-pgsql-shlibs | gdal-mysql-shlibs| gdal-pgsql-mysql-shlibs
+  Files: <<
+    lib/python%type_raw[python]/site-packages/django/contrib/gis
+    
lib/python%type_raw[python]/site-packages/django/contrib/admin/media/img/gis
+  <<
+
+<<
+
 PostInstScript: <<
  update-alternatives --install %p/bin/django-admin.py django-admin.py 
%p/bin/django-admin%type_raw[python] %type_pkg[python]
 <<
@@ -47,24 +83,27 @@
 Django was designed to handle two challenges: the intensive deadlines of a
 newsroom and the stringent requirements of the experienced Web developers who
 wrote it. It lets you build high-performing, elegant Web applications quickly.
-
-WARNING: Not being supported.  Strongly suggest that you use django from
-unstable.
 <<
 
 DescUsage:<<
-See http://www.djangoproject.com/documentation/0.96/
+See http://www.djangoproject.com/documentation/
+
+If you developed for a version of Django prior to 1.0 (such as 0.95 or 0.96),
+refer to http://docs.djangoproject.com/en/dev/releases/1.0-porting-guide/
 <<
 
 DescPort:<<
 The documentation in the admin interface should work, now that docutils has
 been split into -py* variants.
 
-The install script was cribbed from setuptools-py.info.
+Need to improve the load process for libgeosc1-shlibs for python
+ctypes.  It's too version dependent.  May need to update what is in
+the libgeosc1-shlibs package.
 <<
 
 DescPackaging:<<
-$LastChangedRevision: 537 $ in my local repository.
+$LastChangedRevision: 538 $ in Charles Lepple local repository.
+Maintainer was Charles Lepple <[email protected]> until 1.0.
 <<
 
 License: BSD


------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning@Ciosco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to