Remove some ancient files

This commit is contained in:
Manish Singh 2005-08-27 23:31:55 +00:00
parent f9000dfb63
commit 5fd191b770
4 changed files with 0 additions and 255 deletions

View File

@ -1,65 +0,0 @@
pygimp-0.5: 8-July-1999
- Fixed some bugs that I missed in gimpui. It should actually work
on other people's systems now (I don't know why it worked on mine).
- Included the foggify.py and shadow_bevel.py plugins in the package.
- Added a timeout function to flush the displays in the gimpconsole
plugin. This way you can see the results of what you type easily.
pygimp-0.4: 5-July-1999
- Removed the drawable type -- now layer or channel objects are used
in its place. All drawable methods have been transfered to both
the channel and layer objects. The layer and channel objects have
the following attributes in common:
ID, bpp, has_alpha, height, image, is_color, is_colour, is_gray,
is_grey, is_indexed, mask_bounds, name, offsets, opacity
This means that the gimp.drawable(layer|channel) command is gone,
and so is the gimp.layer(drawable) and gimp.channel(drawable)
syntaxes (the gimp.layer and gimp.channel commands still exist).
I made this change because the previous setup was confusing, and
more complicated than it needed to be.
- Removed all tkinter code, and replaced it with pygtk code. There
is now also a convenience module gimpfu, which is a simpler
interface to
pygimp-0.3: 8-February-1999
- Some small build cleanups. Now you should be able to do the normal
./configure ; make ; make install. It should compile fine with
GIMP 1.0 (I haven't tested 1.1 series though).
- gimpmodule.c now prints exception messages, so now exceptions caused
by a plugin will print a stack trace to stdout, and cause gimp to
realise the plugin failed.
- The disable_undo and enable_undo methods of image now use the
stack based enable/disable functions.
- Added function names to PyArg_ParseTuple calls, so exceptions
are a little easier to understand.
- added a spec file for building RPMS for this package.
- added gimp.extension_ack, gimp.extension_process,
gimp.install_temp_proc and gimp.uninstall_temp_proc which will be
useful to implement an interface similar to script-fu's (ie. one
copy of python running in the background, responding to requests
from the gimp process every now and again).
- changed over to using glib's safe memory allocation routines g_new,
g_strdup and g_free.
- Converted documentation to docbook -- linuxdoc is just about dead.
pygimp-0.2.0: 19-Nov-1997
- implemented pixel regions. You can access them as a mapping. (ie.
pr[x,y] is get_pixel, pr[x1:x2,y] is get_row, pr[x, y1:y2] is get_col
and pr[x1:x2, y1:y2] is get_rect)
- to demonstrate the use of this low level object, I have included a
translation of the c plugin Whirl and Pinch.
- fixed a problem where I didn't check for a NULL when parsing
arguments for a plugin. This caused a crash when you ran a plugin
that took a string as an argument was run in interactive mode.
pygimp-0.1.0: 18-Nov-1997
- first public release.
- implements images, layers, channels, drawables, tiles, and just about
everything except pixel regions.
- I have included a number of example plugins:
- gimpcons is an interactive python console
- pdbbrowse is a browser for the PDB
- clothify is a translation of the Script-Fu script
- sphere is a translation of the Script-Fu script

View File

@ -1,29 +0,0 @@
Gimp-Python - allows the writing of plugins for Gimp in Python.
Copyright (C) 1997-1999 James Henstridge <james@daa.com.au>
This is the Gimp-Python package. It is free software and is covered
by the GNU General Public Licence (A copy of which is in the file
COPYING in the distribution) with the exception that you may link
gimpmodule with the python program.
For more information, please see the documentation in the directory
doc. The documentation is in SGML, and translations to text, html and
texinfo are included in the distribution.
To build the program, you should be able to just type:
./configure --prefix=<gimp-prefix>
make
make install
Pregenerated HTML docs are included with the package in the doc
directory. If you want ps or pdf documentation, get Mark Galassi's
docbook SGML packages.
Here is a list of what you will find in the subdirectories of this
distribution:
. - The actual source code.
doc/ - The documentation.
plug-ins/ - The sample plugins. Contents are copied to GIMP plug-ins
directory.

View File

@ -1,135 +0,0 @@
## Find the install dirs for the python installation.
## By James Henstridge
# serial 1
AC_DEFUN(AM_PATH_PYTHON,
[AC_CHECK_PROGS(PYTHON, python python1.5 python1.4 python1.3,no)
if test "$PYTHON" != no; then
AC_MSG_CHECKING([where .py files should go])
changequote(, )dnl
pythondir=`$PYTHON -c '
import sys
if sys.version[0] > "1" or sys.version[2] > "4":
print "%s/lib/python%s/site-packages" % (sys.prefix, sys.version[:3])
else:
print "%s/lib/python%s" % (sys.prefix, sys.version[:3])'`
changequote([, ])dnl
AC_MSG_RESULT($pythondir)
AC_MSG_CHECKING([where python extensions should go])
changequote(, )dnl
pyexecdir=`$PYTHON -c '
import sys
if sys.version[0] > "1" or sys.version[2] > "4":
print "%s/lib/python%s/site-packages" % (sys.exec_prefix, sys.version[:3])
else:
print "%s/lib/python%s/sharedmodules" % (sys.exec_prefix, sys.version[:3])'`
changequote([, ])dnl
AC_MSG_RESULT($pyexecdir)
else
# these defaults are version independent ...
AC_MSG_CHECKING([where .py files should go])
pythondir='$(prefix)/lib/site-python'
AC_MSG_RESULT($pythondir)
AC_MSG_CHECKING([where python extensions should go])
pyexecdir='$(exec_prefix)/lib/site-python'
AC_MSG_RESULT($pyexecdir)
fi
AC_SUBST(pythondir)
AC_SUBST(pyexecdir)])
## this one is commonly used with AM_PATH_PYTHONDIR ...
dnl AM_CHECK_PYMOD(MODNAME [,SYMBOL [,ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]])
dnl Check if a module containing a given symbol is visible to python.
AC_DEFUN(AM_CHECK_PYMOD,
[AC_REQUIRE([AM_PATH_PYTHON])
py_mod_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
AC_MSG_CHECKING(for ifelse([$2],[],,[$2 in ])python module $1)
AC_CACHE_VAL(py_cv_mod_$py_mod_var, [
ifelse([$2],[], [prog="
import sys
try:
import $1
except ImportError:
sys.exit(1)
except:
sys.exit(0)
sys.exit(0)"], [prog="
import $1
$1.$2"])
if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC
then
eval "py_cv_mod_$py_mod_var=yes"
else
eval "py_cv_mod_$py_mod_var=no"
fi
])
py_val=`eval "echo \`echo '$py_cv_mod_'$py_mod_var\`"`
if test "x$py_val" != xno; then
AC_MSG_RESULT(yes)
ifelse([$3], [],, [$3
])dnl
else
AC_MSG_RESULT(no)
ifelse([$4], [],, [$4
])dnl
fi
])
# serial 1
dnl finds information needed for compilation of shared library style python
dnl extensions. AM_PATH_PYTHON should be called before hand.
AC_DEFUN(AM_INIT_PYEXEC_MOD,
[AC_REQUIRE([AM_PATH_PYTHON])
AC_MSG_CHECKING([for python headers])
AC_CACHE_VAL(am_cv_python_includes,
[changequote(,)dnl
am_cv_python_includes="`$PYTHON -c '
import sys
includepy = \"%s/include/python%s\" % (sys.prefix, sys.version[:3])
if sys.version[0] > \"1\" or sys.version[2] > \"4\":
libpl = \"%s/include/python%s\" % (sys.exec_prefix, sys.version[:3])
else:
libpl = \"%s/lib/python%s/config\" % (sys.exec_prefix, sys.version[:3])
print \"-I%s -I%s\" % (includepy, libpl)'`"
changequote([, ])])
PYTHON_INCLUDES="$am_cv_python_includes"
AC_MSG_RESULT(found)
AC_SUBST(PYTHON_INCLUDES)
AC_MSG_CHECKING([definitions from Python makefile])
AC_CACHE_VAL(am_cv_python_makefile,
[changequote(,)dnl
py_makefile="`$PYTHON -c '
import sys
print \"%s/lib/python%s/config/Makefile\"%(sys.exec_prefix, sys.version[:3])'`"
if test ! -f "$py_makefile"; then
AC_MSG_ERROR([*** Couldn't find the python config makefile. Maybe you are
*** missing the development portion of the python installation])
fi
eval `sed -n \
-e "s/^CC=[ ]*\(.*\)/am_cv_python_CC='\1'/p" \
-e "s/^OPT=[ ]*\(.*\)/am_cv_python_OPT='\1'/p" \
-e "s/^CCSHARED=[ ]*\(.*\)/am_cv_python_CCSHARED='\1'/p" \
-e "s/^LDSHARED=[ ]*\(.*\)/am_cv_python_LDSHARED='\1'/p" \
-e "s/^SO=[ ]*\(.*\)/am_cv_python_SO='\1'/p" \
$py_makefile`
am_cv_python_makefile=found
changequote([, ])])
AC_MSG_RESULT(done)
CC="$am_cv_python_CC"
OPT="$am_cv_python_OPT"
SO="$am_cv_python_SO"
PYTHON_CFLAGS="$am_cv_python_CCSHARED \$(OPT)"
PYTHON_LINK="$am_cv_python_LDSHARED -o \[$]@"
AC_SUBST(CC)dnl
AC_SUBST(OPT)dnl
AC_SUBST(SO)dnl
AC_SUBST(PYTHON_CFLAGS)dnl
AC_SUBST(PYTHON_LINK)])

View File

@ -1,26 +0,0 @@
AC_INIT(gimpmodule.c)
AM_INIT_AUTOMAKE(pygimp, 0.5)
AM_PATH_PYTHON
AM_INIT_PYEXEC_MOD
AM_CHECK_PYMOD(gtk,,,AC_MSG_ERROR([You need the pygtk package to use pygimp]))
AC_PATH_PROG(GIMPTOOL, gimptool, no)
if test "x$GIMPTOOL" = xno; then
AC_MSG_ERROR([could not find gimptool script])
fi
GIMP_CFLAGS_NOUI=`$GIMPTOOL --cflags-noui`
GIMP_LIBS_NOUI=`$GIMPTOOL --libs-noui`
gimp_ver=`$GIMPTOOL --version | cut -d. -f 1-2 `
pluginexecdir=\${libdir}/gimp/$gimp_ver/plug-ins
AC_SUBST(GIMP_CFLAGS_NOUI)
AC_SUBST(GIMP_LIBS_NOUI)
AC_SUBST(pluginexecdir)
AC_OUTPUT(Makefile doc/Makefile plug-ins/Makefile)