Skip to content

Commit

Permalink
contrib/Giorgi: revise installation
Browse files Browse the repository at this point in the history
  • Loading branch information
pinard committed Feb 15, 2008
1 parent 557547a commit 2ba3d38
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 22 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
.stamp
Pymacs/__init__.py
build
contrib/Giorgi/Pymacs/__init__.py
contrib/Giorgi/setup.py
contrib/rebox/Pymacs/__init__.py
contrib/rebox/setup.py
pymacs.el
Expand Down
1 change: 0 additions & 1 deletion contrib/Giorgi/Pymacs/__init__.py

This file was deleted.

13 changes: 9 additions & 4 deletions contrib/Giorgi/README
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ Giovanni Giorgi's files
.. contents::
.. sectnum::

The :file:`contrib/Giorgi/` subdirectory of the Pymacs distribution
contains miscellaneous files contributed by Giovanni Giorgi, to be
sorted, documented, maybe deleted, at least pondered in one way or
another. The remainder of this page comes from Giovanni's writing,
This page documents the :file:`contrib/Giorgi/` subdirectory of the
Pymacs distribution. First install Pymacs from the top-level of the
distribution, this has the side-effect of adjusting a few files in this
directory. Once this done, return to this directory, then run ``python
setup.py install``.

Here, you'll find miscellaneous files contributed by Giovanni Giorgi,
to be sorted, documented, maybe deleted, at least pondered in one way
or another. The remainder of this page comes from Giovanni's writing,
waiting for Giovanni to revise its contents.

Introduction
Expand Down
15 changes: 0 additions & 15 deletions contrib/Giorgi/setup.py

This file was deleted.

10 changes: 10 additions & 0 deletions contrib/Giorgi/setup.py.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup

setup(name='Giorgi', version='Pymacs-@VERSION@',
description="Giovanni's Pymacs-based tools.",
author='Giovanni Giorgi', author_email='jj@objectsroot.com',
url='http://blog.objectsroot.com/projects/pymacs',
py_modules=['Pymacs.utility'])
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ def adjust(input, output):
os.chmod(output, 0444)

adjust('__init__.py.in', 'Pymacs/__init__.py')
adjust('__init__.py.in', 'contrib/rebox/Pymacs/__init__.py')
adjust('contrib/rebox/setup.py.in', 'contrib/rebox/setup.py')
adjust('pymacs.el.in', 'pymacs.el')
adjust('pymacs.rst.in', 'pymacs.rst')

adjust('contrib/Giorgi/setup.py.in', 'contrib/Giorgi/setup.py')
adjust('__init__.py.in', 'contrib/Giorgi/Pymacs/__init__.py')

adjust('contrib/rebox/setup.py.in', 'contrib/rebox/setup.py')
adjust('__init__.py.in', 'contrib/rebox/Pymacs/__init__.py')

setup(name=package, version=version,
description="Interface between Emacs Lisp and Python.",
author='François Pinard', author_email='pinard@iro.umontreal.ca',
Expand Down

0 comments on commit 2ba3d38

Please sign in to comment.