Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv11687

Added Files:
        celementtree-py.info docutils-py.info docutils-py.patch 
        docutils.info elementtree-py.info 
Log Message:
move to stable to satisfy dependencies


--- NEW FILE: elementtree-py.info ---
Info2: <<
Package: elementtree-py%type_pkg[python]
Version: 1.2.6
Revision: 2
Distribution: (%type_pkg[python] = 21) 10.3, (%type_pkg[python] = 21) 10.4, 
(%type_pkg[python] = 22) 10.3, (%type_pkg[python] = 22) 10.4, 
(%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
Type: python (2.1 2.2 2.3 2.4 2.5)
Source: http://effbot.org/downloads/elementtree-%v-20050316.tar.gz
Source-MD5: e1b21716be8bfff8bf192fc3880ad008
Depends: python%type_pkg[python] | python%type_pkg[python]-nox

CompileScript: <<
  python%type_raw[python] setup.py build
<<
DocFiles: CHANGES PKG-INFO README
InstallScript: <<
  python%type_raw[python] setup.py install --root=%d
  mkdir -p %i/share/doc/%n
  cp docs/* %i/share/doc/%n
  cp -r samples %i/share/doc/%n
<<

Description: Lightweight XML processing toolkit
Homepage: http://effbot.org/zone/element.htm
# Not actually sure what to call the license...
License: BSD
Maintainer: Brendan Cully <[EMAIL PROTECTED]>
<<

--- NEW FILE: docutils-py.info ---
Info2: <<
Package: docutils-py%type_pkg[python]
Type: python (2.3 2.4 2.5)
Distribution: (%type_pkg[python] = 23) 10.4
Version: 0.4
Revision: 7
Source: mirror:sourceforge:docutils/docutils-%v.tar.gz
Source-MD5: 0fe7b42bb3c2aa3680fe30f9a5fbf712
Patch: %{ni}.patch

Depends: python%type_pkg[python]

Conflicts: docutils (<= 0.4-2)
Replaces: docutils (<= 0.4-2)
Provides: docutils

CompileScript: <<
  %p/bin/python%type_raw[python] setup.py build
<<

InstallScript: <<
#!/bin/sh -ev
%p/bin/python%type_raw[python] setup.py install --root %d

for i in *.txt ; do
  htmldoc=${i%%txt}html
  echo "Making $htmldoc"
  PYTHONPATH=.:extras tools/rst2html.py $i $htmldoc
done

cd docs
for i in `find . -name '*.txt'` ; do
  destdir="%i/share/doc/%n/html/"${i%%/*}
  htmldoc=${i%%txt}html
  echo "Making $htmldoc"
  PYTHONPATH=..:../extras ../tools/rst2html.py $i $htmldoc
  mkdir -p "$destdir"
  cp $htmldoc $destdir
done

cd %i/bin
for i in rst2*; do
  mv $i ${i%%.py}-%type_raw[python].py
done
<<

PostInstScript: <<
  for i in rst2html rst2latex rst2newlatex rst2pseudoxml rst2s5 rst2xml; do
    #                              link      name    path (source)              
     priority
    update-alternatives --install %p/bin/$i    $i    
%p/bin/$i-%type_raw[python].py %type_pkg[python] \
                        --slave   %p/bin/$i.py $i-py 
%p/bin/$i-%type_raw[python].py
  done
<<

PreRmScript: <<
  if [ $1 != "upgrade" ]; then
    for i in rst2html rst2latex rst2newlatex rst2pseudoxml rst2s5 rst2xml; do
      update-alternatives --remove-all $i
      update-alternatives --remove-all $i-py
    done
  fi
<<

DocFiles: README.html BUGS.html COPYING.html HISTORY.html FAQ.html THANKS.html

Description: Python-approved WYSIWYG text markup toolkit
DescDetail: <<
Docutils is an open-source text processing system for processing
plaintext documentation into useful formats, such as HTML or LaTeX. It
includes reStructuredText, the easy to read, easy to use,
what-you-see-is-what-you-get plaintext markup language.

Converters included:

 * rst2html
 * rst2latex
 * rst2s5
... etc.
<<

DescPackaging:<<
$LastChangedRevision: 499 $ in my local repository.
<<

License: GPL
Homepage: http://docutils.sourceforge.net/
#Maintainer: Brendan Cully <[EMAIL PROTECTED]>
Maintainer: Charles Lepple <[EMAIL PROTECTED]>

# closes Info2:
<<

--- NEW FILE: docutils.info ---
Package: docutils
Type: bundle
Version: 0.4
Revision: 3
Depends: docutils-py25 | docutils-py24 | docutils-py23, fink-obsolete-packages

Description: Python-approved WYSIWYG text markup toolkit
DescDetail: <<
Docutils is an open-source text processing system for processing
plaintext documentation into useful formats, such as HTML or LaTeX. It
includes reStructuredText, the easy to read, easy to use,
what-you-see-is-what-you-get plaintext markup language.

This placeholder package depends on the versioned package which holds the
actual docutils code.
<<

License: GPL
Homepage: http://docutils.sourceforge.net/
Maintainer: Charles Lepple <[EMAIL PROTECTED]>

--- NEW FILE: docutils-py.patch ---
--- docutils-0.4/setup.py.orig  2006-01-09 13:28:09.000000000 -0500
+++ docutils-0.4/setup.py       2008-02-02 11:25:13.000000000 -0500
@@ -133,6 +133,9 @@
                    % (module_name, module_name))
         except (ImportError, AttributeError, ValueError):
             extras.append(module_name)
+    # for Fink:
+    if 'roman' not in extras:
+        extras.append('roman')
     return extras
 
 

--- NEW FILE: celementtree-py.info ---
Info2: <<
Package: celementtree-py%type_pkg[python]
Version: 1.0.5
Revision: 2
Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
Type: python (2.3 2.4 2.5)
Source: http://effbot.org/downloads/cElementTree-%v-20051216.tar.gz
Source-MD5: b6896e742e39f594046b07e58f1d25fe
Depends: <<
  python%type_pkg[python] | python%type_pkg[python]-nox,
  elementtree-py%type_pkg[python]
<<

CompileScript: <<
  python%type_raw[python] setup.py build
<<
DocFiles: CHANGES PKG-INFO README
InstallScript: <<
  python%type_raw[python] setup.py install --root=%d
  mkdir -p %i/share/doc/%n
  cp -r samples %i/share/doc/%n
<<

Description: C implementation of the ElementTree API
Homepage: http://effbot.org/zone/element.htm
# Not actually sure what to call the license...
License: BSD
Maintainer: Brendan Cully <[EMAIL PROTECTED]>
<<


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to