fxpy-commits Mailing List for FXPy
Status: Inactive
Brought to you by:
lyle
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
(10) |
Mar
(18) |
Apr
(35) |
May
(1) |
Jun
(1) |
Jul
|
Aug
(10) |
Sep
(4) |
Oct
|
Nov
(1) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(4) |
Feb
(11) |
Mar
|
Apr
(1) |
May
|
Jun
(5) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Bastian K. <ca...@us...> - 2003-07-01 16:19:04
|
Update of /cvsroot/fxpy/FXPy/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv12159/debian
Added Files:
fxpy-python2.3.postinst fxpy-python2.3.prerm
Log Message:
added postinst, prerm for python 2.3
--- NEW FILE: fxpy-python2.3.postinst ---
#!/bin/sh -e
#
# Written 1998 by Gregor Hoffleit <fl...@de...>.
# used by Bastian Kleineidam for FXPy
PYTHON=python2.3
SITEPACKAGES=/usr/lib/$PYTHON/site-packages
DIRLIST=FXPy
FILELIST=
COMMAND="'import sys,py_compile;py_compile.compile(sys.argv[1])'"
case "$1" in
configure|abort-upgrade|abort-remove|abort-deconfigure)
for i in $DIRLIST; do
$PYTHON -O /usr/lib/$PYTHON/compileall.py -q $SITEPACKAGES/$i
$PYTHON /usr/lib/$PYTHON/compileall.py -q $SITEPACKAGES/$i
done
# use /bin/sh -c, otherwise I get a SyntaxError from Python
for i in $FILELIST; do
/bin/sh -c "$PYTHON -O -c $COMMAND $SITEPACKAGES/$i"
/bin/sh -c "$PYTHON -c $COMMAND $SITEPACKAGES/$i"
done
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
--- NEW FILE: fxpy-python2.3.prerm ---
#!/bin/sh -e
#
# Written 1998 by Gregor Hoffleit <fl...@de...>.
# used by Bastian Kleineidam for FXPy
PACKAGE=fxpy-python2.3
PYTHON=python2.3
#DEBHELPER#
dpkg --listfiles $PACKAGE |
awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
xargs rm -f >&2
rmdir /usr/lib/$PYTHON/site-packages/FXPy 2>/dev/null || true
exit 0
|
|
From: Bastian K. <ca...@us...> - 2003-07-01 16:18:32
|
Update of /cvsroot/fxpy/FXPy/debian In directory sc8-pr-cvs1:/tmp/cvs-serv12097/debian Modified Files: changelog control rules Log Message: add a Python 2.3 package Index: changelog =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/changelog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- changelog 26 Jun 2003 22:38:29 -0000 1.12 +++ changelog 1 Jul 2003 16:18:28 -0000 1.13 @@ -1,3 +1,10 @@ +fxpy (1.0.42-0.1) unstable; urgency=low + + * Built with FOX 1.0.42 + * Add Python 2.3 package + + -- Bastian Kleineidam <ca...@de...> Tue, 1 Jul 2003 17:49:39 +0200 + fxpy (1.0.41-0.1) unstable; urgency=low * Rebuilt with FOX 1.0.41 Index: control =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/control,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- control 26 Jun 2003 22:38:53 -0000 1.8 +++ control 1 Jul 2003 16:18:28 -0000 1.9 @@ -2,7 +2,7 @@ Section: devel Priority: optional Maintainer: Bastian Kleineidam <ca...@de...> -Build-Depends: debhelper (>= 4), python2.1-dev, python2.2-dev, libfox1.0-dev +Build-Depends: debhelper (>= 4), python2.1-dev, python2.2-dev, python2.3-dev, libfox1.0-dev Standards-Version: 3.5.10.0 Package: fxpy-python2.1 @@ -21,6 +21,15 @@ Suggests: fxpy-doc Description: Python bindings for the FOX C++ GUI toolkit a Python 2.2 extension module which provides an interface to the + FOX C++ GUI library. + +Package: fxpy-python2.3 +Architecture: any +Depends: libfox1.0, python2.3 +Conflicts: libfox0.99 +Suggests: fxpy-doc +Description: Python bindings for the FOX C++ GUI toolkit + a Python 2.3 extension module which provides an interface to the FOX C++ GUI library. Package: fxpy-doc Index: rules =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/rules,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- rules 26 Jun 2003 22:38:15 -0000 1.7 +++ rules 1 Jul 2003 16:18:28 -0000 1.8 @@ -4,6 +4,7 @@ PACKAGE21=fxpy-python2.1 PACKAGE22=fxpy-python2.2 +PACKAGE23=fxpy-python2.3 ROOT=$(CURDIR)/debian/ DOC=$(ROOT)/fxpy-doc/usr/share/doc/fxpy-doc @@ -13,8 +14,6 @@ configure: configure-stamp configure-stamp: dh_testdir - python2.1 setup.py config - python2.2 setup.py config touch configure-stamp build: configure-stamp build-stamp @@ -22,6 +21,7 @@ dh_testdir python2.1 setup.py build_ext --include-dirs=/usr/include/fox --library-dirs=/usr/lib:/usr/lib/X11R6 build python2.2 setup.py build_ext --include-dirs=/usr/include/fox --library-dirs=/usr/lib:/usr/lib/X11R6 build + python2.3 setup.py build_ext --include-dirs=/usr/include/fox --library-dirs=/usr/lib:/usr/lib/X11R6 build touch build-stamp clean: @@ -30,6 +30,7 @@ rm -f build-stamp configure-stamp python2.1 setup.py clean --all python2.2 setup.py clean --all + python2.3 setup.py clean --all dh_clean install: build @@ -39,6 +40,7 @@ dh_installdirs python2.1 setup.py install --root=$(ROOT)/$(PACKAGE21) --no-compile python2.2 setup.py install --root=$(ROOT)/$(PACKAGE22) --no-compile + python2.3 setup.py install --root=$(ROOT)/$(PACKAGE23) --no-compile dh_installdocs dh_installexamples -pfxpy-doc cp examples/icons/*.png $(DOC)/examples/icons |
|
From: Bastian K. <ca...@us...> - 2003-06-27 17:37:10
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv13949 Modified Files: Makefile Log Message: as long as SF anon CVS access drops connections like crazy, switch to developer access Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile 26 Jun 2003 22:41:23 -0000 1.5 +++ Makefile 27 Jun 2003 16:40:02 -0000 1.6 @@ -36,10 +36,10 @@ deb_signed: # ready for upload, signed with my GPG key - env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -sgpg -pgpg -k32EC6F3E -r"fakeroot --" + env CVSROOT=:ext:ca...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -sgpg -pgpg -k32EC6F3E -r"fakeroot --" deb_unsigned: # same thing, but unsigned (for local archives) - env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -us -uc -r"fakeroot --" + env CVSROOT=:ext:ca...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -us -uc -r"fakeroot --" .PHONY: all swig clean distclean cleandeb dist deb_local deb_signed deb_unsigned |
|
From: Bastian K. <ca...@us...> - 2003-06-26 22:41:26
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv7332 Modified Files: Makefile Log Message: safer fakeroot call Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 22 Feb 2003 00:33:12 -0000 1.4 +++ Makefile 26 Jun 2003 22:41:23 -0000 1.5 @@ -36,10 +36,10 @@ deb_signed: # ready for upload, signed with my GPG key - env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -sgpg -pgpg -k32EC6F3E -rfakeroot + env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -sgpg -pgpg -k32EC6F3E -r"fakeroot --" deb_unsigned: # same thing, but unsigned (for local archives) - env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -us -uc -rfakeroot + env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -us -uc -r"fakeroot --" .PHONY: all swig clean distclean cleandeb dist deb_local deb_signed deb_unsigned |
|
From: Bastian K. <ca...@us...> - 2003-06-26 22:38:56
|
Update of /cvsroot/fxpy/FXPy/debian In directory sc8-pr-cvs1:/tmp/cvs-serv6902/debian Modified Files: control Log Message: Standards version 3.5.10 Index: control =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/control,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- control 22 Feb 2003 00:19:32 -0000 1.7 +++ control 26 Jun 2003 22:38:53 -0000 1.8 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Bastian Kleineidam <ca...@de...> Build-Depends: debhelper (>= 4), python2.1-dev, python2.2-dev, libfox1.0-dev -Standards-Version: 3.5.8.0 +Standards-Version: 3.5.10.0 Package: fxpy-python2.1 Architecture: any |
|
From: Bastian K. <ca...@us...> - 2003-06-26 22:38:32
|
Update of /cvsroot/fxpy/FXPy/debian In directory sc8-pr-cvs1:/tmp/cvs-serv6852/debian Modified Files: changelog Log Message: updated Index: changelog =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/changelog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- changelog 22 Feb 2003 00:19:32 -0000 1.11 +++ changelog 26 Jun 2003 22:38:29 -0000 1.12 @@ -1,3 +1,11 @@ +fxpy (1.0.41-0.1) unstable; urgency=low + + * Rebuilt with FOX 1.0.41 + * Standards version 3.5.10.0 + * use debian/compat instead of DH_COMPAT + + -- Bastian Kleineidam <ca...@de...> Fri, 27 Jun 2003 00:04:48 +0200 + fxpy (1.0.32-0.1) unstable; urgency=low * use DH_COMPAT=4, adjust depends |
|
From: Bastian K. <ca...@us...> - 2003-06-26 22:38:19
|
Update of /cvsroot/fxpy/FXPy/debian In directory sc8-pr-cvs1:/tmp/cvs-serv6810/debian Modified Files: rules Added Files: compat Log Message: use debian/compat --- NEW FILE: compat --- 4 Index: rules =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/rules,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- rules 23 Feb 2003 09:35:31 -0000 1.6 +++ rules 26 Jun 2003 22:38:15 -0000 1.7 @@ -10,9 +10,6 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -# This is the debhelper compatability version to use. -export DH_COMPAT=4 - configure: configure-stamp configure-stamp: dh_testdir |
|
From: Lyle J. <ly...@us...> - 2003-04-18 01:41:29
|
Update of /cvsroot/fxpy/FXPy/examples
In directory sc8-pr-cvs1:/tmp/cvs-serv26313
Modified Files:
table.py
Log Message:
Incorporated James Lockley's patches for the table.py example program.
Index: table.py
===================================================================
RCS file: /cvsroot/fxpy/FXPy/examples/table.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- table.py 7 Feb 2002 12:35:14 -0000 1.4
+++ table.py 18 Apr 2003 01:41:25 -0000 1.5
@@ -38,7 +38,7 @@
contents = FXVerticalFrame(self, LAYOUT_SIDE_TOP|FRAME_NONE|\
LAYOUT_FILL_X|LAYOUT_FILL_Y)
- # Add a vertical fram layout manager
+ # Add a vertical frame layout manager
frame = FXVerticalFrame(contents, FRAME_SUNKEN|FRAME_THICK|\
LAYOUT_FILL_X|LAYOUT_FILL_Y, 0,0,0,0, 0,0,0,0)
@@ -51,13 +51,13 @@
self.table.setLeadingRows(1)
self.table.setLeadingCols(1)
- months = ['January', 'Feburary', 'March', 'April', 'May', 'June',
+ self.months = ['January', 'Feburary', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November',
'December']
# Set the first and last fixed rows in the table
row = 1
- for month in months:
+ for month in self.months:
self.table.setItemText(0, row, month)
self.table.setItemText(49, row, month)
row = row + 1
@@ -69,7 +69,7 @@
# Set the scrollable part of the table
for row in range(48):
- for column in range(len(months)):
+ for column in range(len(self.months)):
self.table.setItemText(row+1, column+1,
"row %i; column %i" %(row+1, column+1))
@@ -121,7 +121,7 @@
return 1
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- def onCmdResizeTable(self, sel):
+ def onCmdResizeTable(self, sel, ptr, sender):
# Create a dialog box
dlg = FXDialogBox(self, "Resize Table")
@@ -133,25 +133,25 @@
FXLabel(frame, "Rows :", None, LAYOUT_SIDE_LEFT|LAYOUT_CENTER_Y)
# Add a text filed
- rows = FXTextFiled(frame, 5, None, 0, JUSTIFY_RIGHT|FRAME_SUNKEN|\
+ rows = FXTextField(frame, 5, None, 0, JUSTIFY_RIGHT|FRAME_SUNKEN|\
FRAME_THICK|LAYOUT_SIDE_LEFT|LAYOUT_CENTER_Y)
# Add the "Columns" label
FXLabel(frame, "Columns:", None, (LAYOUT_SIDE_LEFT|LAYOUT_CENTER_Y))
# Add atext field
- cols = FXTextFiled(frame, 5, None, 0, JUSTIFY_RIGHT|FRAME_SUNKEN|\
+ cols = FXTextField(frame, 5, None, 0, JUSTIFY_RIGHT|FRAME_SUNKEN|\
FRAME_THICK|LAYOUT_SIDE_LEFT|LAYOUT_CENTER_Y)
- # Add a Cancle button
- FXButton(frame, "Cancle", None, dlg, FXDialogBox.ID_CANCLE,
+ # Add a Cancel button
+ FXButton(frame, "Cancel", None, dlg, FXDialogBox.ID_CANCEL,
(FRAME_RAISED|FRAME_THICK|LAYOUT_SIDE_LEFT|LAYOUT_CENTER_Y))
# Add an OK button
FXButton(frame, " OK ", None, dlg, FXDialogBox.ID_ACCEPT,
(FRAME_RAISED|FRAME_THICK|LAYOUT_SIDE_LEFT|LAYOUT_CENTER_Y))
- # Get the curretn number of rows and columns in the table
+ # Get the current number of rows and columns in the table
curNoRows = self.table.getNumRows()
curNoCols = self.table.getNumCols()
@@ -164,20 +164,28 @@
if dlg.execute():
# Get the new number of rows and columns
- newNoRows = rows.getText()
- newNoCols = cols.getText()
+ newNoRows = int(rows.getText())
+ newNoCols = int(cols.getText())
if newNoRows < 0:
newNoRows = 0
if newNoCols < 0:
newNoCols = 0
- self.table.setTableSize(newNoRows, newNoCols)
- for row in range(newNoRows):
- for col in range(newNoCols):
- if row > curNoRows or col > curNoCols:
- self.table.setItemText(row, col,
- "row %i; column %i" %(row+1, column+1))
+ self.table.setTableSize(newNoRows, newNoCols)
+ for row in range(0, newNoRows):
+ for col in range(0, newNoCols):
+ # minus 1 to tkae account of zero index
+ if (row > curNoRows-1) or col > (curNoCols-1):
+ if row == 0:
+ self.table.setItemText(row, col,
+ "%s" %self.months[col%12-1])
+ elif col == 0:
+ self.table.setItemText(row, col,
+ "%i" %col)
+ else:
+ self.table.setItemText(row, col,
+ "row %i; column %i" %(row, col))
return 1
|
|
From: Bastian K. <ca...@us...> - 2003-02-23 09:35:34
|
Update of /cvsroot/fxpy/FXPy/debian In directory sc8-pr-cvs1:/tmp/cvs-serv17401/debian Modified Files: fxpy-doc.docs fxpy-doc.examples rules Added Files: fxpy-doc.dirs Log Message: install example icons properly --- NEW FILE: fxpy-doc.dirs --- usr/share/doc/fxpy-doc/examples/icons Index: fxpy-doc.docs =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/fxpy-doc.docs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- fxpy-doc.docs 1 Sep 2002 21:24:26 -0000 1.2 +++ fxpy-doc.docs 23 Feb 2003 09:35:31 -0000 1.3 @@ -2,4 +2,4 @@ doc/*.xml doc/*.png logo.png -index.php +index.html Index: fxpy-doc.examples =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/fxpy-doc.examples,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- fxpy-doc.examples 1 Sep 2002 20:47:34 -0000 1.1 +++ fxpy-doc.examples 23 Feb 2003 09:35:31 -0000 1.2 @@ -1,4 +1,3 @@ examples/*.py examples/demos.xml -examples/icons examples/README.txt Index: rules =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/rules,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- rules 22 Feb 2003 00:19:32 -0000 1.5 +++ rules 23 Feb 2003 09:35:31 -0000 1.6 @@ -43,8 +43,8 @@ python2.1 setup.py install --root=$(ROOT)/$(PACKAGE21) --no-compile python2.2 setup.py install --root=$(ROOT)/$(PACKAGE22) --no-compile dh_installdocs - mv $(DOC)/index.php $(DOC)/index.html dh_installexamples -pfxpy-doc + cp examples/icons/*.png $(DOC)/examples/icons # Build architecture-independent files here. binary-indep: build install |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:41:42
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv31885 Modified Files: MANIFEST.in Log Message: renamed index.php to index.html Index: MANIFEST.in =================================================================== RCS file: /cvsroot/fxpy/FXPy/MANIFEST.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- MANIFEST.in 2 Apr 2002 18:10:30 -0000 1.15 +++ MANIFEST.in 22 Feb 2003 00:41:39 -0000 1.16 @@ -1,5 +1,5 @@ include LICENSE -include index.php logo.png +include index.html logo.png include contrib/README contrib/*.py include doc/*.xml doc/*.html doc/*.png include examples/*.py examples/icons/*.png examples/demos.xml |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:40:19
|
Update of /cvsroot/fxpy/FXPy/swig In directory sc8-pr-cvs1:/tmp/cvs-serv31506 Modified Files: Makefile Log Message: use some make macros Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/swig/Makefile,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- Makefile 22 Feb 2003 00:31:08 -0000 1.31 +++ Makefile 22 Feb 2003 00:40:14 -0000 1.32 @@ -18,34 +18,25 @@ INTERFACES = fox.i fxdefs.i fox3d.i controls.i windows.i structs.i \ graphics.i mdi.i containers.i menus.i dialogs.i misc.i \ table.i treelist.i dirlist.i iconlist.i text.i - +SRCDIR = ../src # SWIG-generated wrapper files -WRAPPERS = ../src/mdi.cpp ../src/fox.cpp ../src/fox3d.cpp ../src/mdi.cpp\ - ../src/controls.cpp ../src/menus.cpp ../src/dialogs.cpp\ - ../src/windows.cpp ../src/containers.cpp ../src/misc.cpp\ - ../src/graphics.cpp ../src/table.cpp ../src/treelist.cpp\ - ../src/dirlist.cpp ../src/iconlist.cpp ../src/text.cpp - +WRAPPERS = $(patsubst %.i, $(SRCDIR)/%.cpp, $(INTERFACES)) # SWIG-generated shadow class modules -MODULES = ../src/mdi.py ../src/fox.py ../src/fox3d.py ../src/mdi.py\ - ../src/controls.py ../src/menus.py ../src/dialogs.py\ - ../src/windows.py ../src/containers.py ../src/misc.py\ - ../src/graphics.py ../src/table.py ../src/treelist.py\ - ../src/dirlist.py ../src/iconlist.py ../src/text.py +MODULES = $(patsubst %.i, $(SRCDIR)/%.py, $(INTERFACES)) # Make a SWIG interface file from its template %.i: %.ii - python prep.py $< > $@ - @python crlf.py $@ + $(PYTHON) prep.py $< > $@ + @$(PYTHON) crlf.py $@ # Make a wrapper file from its interface file %.cpp: $(SWIG) $(CFLAGS) -c -o $*.cpp $< - @python crlf.py $*.cpp $*.py + @$(PYTHON) crlf.py $*.cpp $*.py # Make all wrappers & shadow class files all: $(WRAPPERS) - @cd ../src; python make_virtuals.py; python overloads.py; python ../swig/crlf.py *.py + @cd ../src; $(PYTHON) make_virtuals.py; $(PYTHON) overloads.py; $(PYTHON) ../swig/crlf.py *.py # will be automatically called when dependencies file is missing dependencies: @@ -57,14 +48,14 @@ $(SWIG) $(CFLAGS) -c -o $*.cpp $< @sed -e "s/FXchar \*\* _arg1/const FXchar \*\* _arg1/g" ../src/dialogs.cpp > junk @mv junk ../src/dialogs.cpp - @python crlf.py $*.cpp $*.py + @$(PYTHON) crlf.py $*.cpp $*.py # Miscellaneous (same SWIG bug workaround) ../src/misc.cpp: misc.i $(SWIG) $(CFLAGS) -c -o $*.cpp $< @sed -e "s/FXchar \*\*/const FXchar \*\*/g" ../src/misc.cpp > junk @mv junk ../src/misc.cpp - @python crlf.py $*.cpp $*.py + @$(PYTHON) crlf.py $*.cpp $*.py clean: - @rm -rf $(WRAPPERS) $(MODULES) $(INTERFACES) + rm -f $(WRAPPERS) $(MODULES) $(INTERFACES) |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:33:16
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv29552 Modified Files: Makefile Log Message: adjusted Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile 22 Feb 2003 00:18:02 -0000 1.3 +++ Makefile 22 Feb 2003 00:33:12 -0000 1.4 @@ -6,7 +6,7 @@ $(SETUP) build swig: - cd swig && ./build.sh + $(MAKE) -C swig clean: -$(SETUP) clean --all # ignore errors of this command @@ -42,4 +42,4 @@ # same thing, but unsigned (for local archives) env CVSROOT=:pserver:ano...@cv...:/cvsroot/fxpy cvs-buildpackage -MFXPy -W/home/calvin/projects/cvs-build -us -uc -rfakeroot -.PHONY: all clean distclean cleandeb dist deb_local deb_signed deb_unsigned +.PHONY: all swig clean distclean cleandeb dist deb_local deb_signed deb_unsigned |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:31:15
|
Update of /cvsroot/fxpy/FXPy/swig In directory sc8-pr-cvs1:/tmp/cvs-serv29053 Modified Files: Makefile Removed Files: build.sh Log Message: auto-dependencies target, build.sh is not needed Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/swig/Makefile,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- Makefile 29 Mar 2002 00:01:52 -0000 1.30 +++ Makefile 22 Feb 2003 00:31:08 -0000 1.31 @@ -7,6 +7,7 @@ # Name of swig executable SWIG = swig +PYTHON = python # SWIG settings here #DEFINES = -D__WIN32__ -DWIN32 @@ -46,6 +47,9 @@ all: $(WRAPPERS) @cd ../src; python make_virtuals.py; python overloads.py; python ../swig/crlf.py *.py +# will be automatically called when dependencies file is missing +dependencies: + $(PYTHON) makedepend.py > dependencies include dependencies # Common Dialogs (needs special rule for SWIG bug workaround) --- build.sh DELETED --- |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:25:03
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv27129 Removed Files: index.php Log Message: removed --- index.php DELETED --- |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:24:55
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv27082 Added Files: index.html Log Message: added |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:24:49
|
Update of /cvsroot/fxpy/FXPy/swig In directory sc8-pr-cvs1:/tmp/cvs-serv27047 Modified Files: dependencies Log Message: regenerate Index: dependencies =================================================================== RCS file: /cvsroot/fxpy/FXPy/swig/dependencies,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- dependencies 20 Apr 2001 20:56:24 -0000 1.2 +++ dependencies 22 Feb 2003 00:24:45 -0000 1.3 @@ -18,20 +18,20 @@ ../src/text.cpp: text.i ../src/treelist.cpp: treelist.i ../src/windows.cpp: windows.i -containers.i: misc.i fxdefs.i windows.i my_typemaps.i containers.ii -controls.i: misc.i windows.i my_typemaps.i controls.ii containers.i fxdefs.i -dialogs.i: controls.i treelist.i iconlist.i windows.i dialogs.ii fxdefs.i containers.i my_typemaps.i -dirlist.i: treelist.i dirlist.ii misc.i windows.i fxdefs.i containers.i my_typemaps.i -fox.i: graphics.i treelist.i menus.i controls.i fxdefs.i text.i containers.i dialogs.i fox.ii fox3d.i misc.i iconlist.i windows.i mdi.i dirlist.i my_typemaps.i table.i -fox3d.i: fox3d.ii misc.i windows.i fxdefs.i containers.i my_typemaps.i +containers.i: containers.ii my_typemaps.i fxdefs.i windows.i misc.i +controls.i: my_typemaps.i containers.i controls.ii windows.i misc.i fxdefs.i +dialogs.i: my_typemaps.i containers.i fxdefs.i controls.i windows.i iconlist.i dialogs.ii treelist.i +dirlist.i: my_typemaps.i containers.i fxdefs.i treelist.i windows.i dirlist.ii misc.i +fox.i: table.i my_typemaps.i dirlist.i mdi.i windows.i iconlist.i misc.i fox.ii fox3d.i containers.i text.i fxdefs.i controls.i menus.i treelist.i graphics.i dialogs.i +fox3d.i: my_typemaps.i containers.i fxdefs.i windows.i misc.i fox3d.ii fxdefs.i: fxdefs.ii -graphics.i: fxdefs.i containers.i graphics.ii misc.i my_typemaps.i -iconlist.i: misc.i windows.i my_typemaps.i fxdefs.i containers.i iconlist.ii -mdi.i: misc.i menus.i controls.i mdi.ii fxdefs.i my_typemaps.i -menus.i: menus.ii windows.i controls.i fxdefs.i containers.i my_typemaps.i -misc.i: misc.ii fxdefs.i my_typemaps.i structs.i renames.i +graphics.i: graphics.ii containers.i my_typemaps.i fxdefs.i misc.i +iconlist.i: iconlist.ii containers.i fxdefs.i windows.i my_typemaps.i misc.i +mdi.i: my_typemaps.i fxdefs.i mdi.ii controls.i menus.i misc.i +menus.i: my_typemaps.i containers.i fxdefs.i controls.i windows.i menus.ii +misc.i: structs.i my_typemaps.i renames.i fxdefs.i misc.ii structs.i: structs.ii -table.i: misc.i windows.i fxdefs.i table.ii containers.i my_typemaps.i -text.i: misc.i windows.i text.ii fxdefs.i containers.i my_typemaps.i -treelist.i: misc.i treelist.ii windows.i fxdefs.i containers.i my_typemaps.i -windows.i: fxdefs.i windows.ii my_typemaps.i misc.i +table.i: my_typemaps.i containers.i table.ii fxdefs.i windows.i misc.i +text.i: my_typemaps.i containers.i fxdefs.i text.ii windows.i misc.i +treelist.i: my_typemaps.i containers.i fxdefs.i windows.i treelist.ii misc.i +windows.i: my_typemaps.i windows.ii fxdefs.i misc.i |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:19:35
|
Update of /cvsroot/fxpy/FXPy/debian In directory sc8-pr-cvs1:/tmp/cvs-serv25556 Modified Files: changelog control rules Log Message: use DH_COMPAT=4 Index: changelog =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/changelog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- changelog 13 Jan 2003 02:02:15 -0000 1.10 +++ changelog 22 Feb 2003 00:19:32 -0000 1.11 @@ -1,3 +1,9 @@ +fxpy (1.0.32-0.1) unstable; urgency=low + + * use DH_COMPAT=4, adjust depends + + -- Bastian Kleineidam <ca...@de...> Sat, 22 Feb 2003 01:18:57 +0100 + fxpy (1.0.30-0.1) unstable; urgency=low * Rebuild with gcc 3.2 and FOX 1.0.30 Index: control =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/control,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- control 28 Nov 2002 01:13:35 -0000 1.6 +++ control 22 Feb 2003 00:19:32 -0000 1.7 @@ -2,7 +2,7 @@ Section: devel Priority: optional Maintainer: Bastian Kleineidam <ca...@de...> -Build-Depends: debhelper (>> 3.0.0), python2.1-dev, python2.2-dev, libfox1.0-dev +Build-Depends: debhelper (>= 4), python2.1-dev, python2.2-dev, libfox1.0-dev Standards-Version: 3.5.8.0 Package: fxpy-python2.1 Index: rules =================================================================== RCS file: /cvsroot/fxpy/FXPy/debian/rules,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- rules 1 Sep 2002 20:47:34 -0000 1.4 +++ rules 22 Feb 2003 00:19:32 -0000 1.5 @@ -11,7 +11,7 @@ #export DH_VERBOSE=1 # This is the debhelper compatability version to use. -export DH_COMPAT=3 +export DH_COMPAT=4 configure: configure-stamp configure-stamp: |
|
From: Bastian K. <ca...@us...> - 2003-02-22 00:18:05
|
Update of /cvsroot/fxpy/FXPy In directory sc8-pr-cvs1:/tmp/cvs-serv25119 Modified Files: Makefile Log Message: use SETUP var Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 11 Feb 2002 09:58:49 -0000 1.2 +++ Makefile 22 Feb 2003 00:18:02 -0000 1.3 @@ -1,13 +1,15 @@ # This Makefile is only used by developers. PYTHON=python +SETUP=$(PYTHON) setup.py all: swig + $(SETUP) build swig: cd swig && ./build.sh clean: - -$(PYTHON) setup.py clean --all # ignore errors of this command + -$(SETUP) clean --all # ignore errors of this command distclean: clean cleandeb rm -rf dist build # just to be sure clean also the build dir @@ -19,13 +21,13 @@ # on Debian use 'fakeroot debian/rules clean' or 'debuild clean' or # 'debclean' (read the appropriate man pages) cleandeb: - rm -rf debian/fxpy0.99-python2.1 + rm -rf debian/fxpy-python2.[12] rm -f debian/*.debhelper debian/*files debian/*substvars rm -f configure-stamp build-stamp # make a source distribution dist: - $(PYTHON) setup.py sdist --formats=gztar,zip bdist_wininst + $(SETUP) sdist --formats=gztar,zip bdist_wininst # produce the .deb Debian package deb_local: |
|
From: Bastian K. <ca...@us...> - 2003-02-21 23:50:16
|
Update of /cvsroot/fxpy/FXPy/includes-archive
In directory sc8-pr-cvs1:/tmp/cvs-serv15630
Modified Files:
FXColorBar.h fxdefs.h
Log Message:
updated to 1.0.32
Index: FXColorBar.h
===================================================================
RCS file: /cvsroot/fxpy/FXPy/includes-archive/FXColorBar.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- FXColorBar.h 28 Mar 2002 22:33:48 -0000 1.1
+++ FXColorBar.h 21 Feb 2003 23:50:12 -0000 1.2
@@ -67,7 +67,7 @@
long onQueryTip(FXObject*,FXSelector,void*);
public:
- /// Construct color well with initial color clr
+ /// Construct color bar
FXColorBar(FXComposite* p,FXObject* tgt=NULL,FXSelector sel=0,FXuint opts=FRAME_NORMAL,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=DEFAULT_PAD,FXint pr=DEFAULT_PAD,FXint pt=DEFAULT_PAD,FXint pb=DEFAULT_PAD);
/// Create server-side resources
@@ -106,22 +106,22 @@
/// Get the color bar style
void setBarStyle(FXuint style);
- /// Set status line help text for this color well
+ /// Set status line help text for this color bar
void setHelpText(const FXString& text){ help=text; }
- /// Get status line help text for this color well
+ /// Get status line help text for this color bar
FXString getHelpText() const { return help; }
- /// Set tool tip message for this color well
+ /// Set tool tip message for this color bar
void setTipText(const FXString& text){ tip=text; }
- /// Get tool tip message for this color well
+ /// Get tool tip message for this color bar
FXString getTipText() const { return tip; }
- /// Save color well to a stream
+ /// Save color bar to a stream
virtual void save(FXStream& store) const;
- /// Load color well from a stream
+ /// Load color bar from a stream
virtual void load(FXStream& store);
/// Destructor
Index: fxdefs.h
===================================================================
RCS file: /cvsroot/fxpy/FXPy/includes-archive/fxdefs.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
|
|
From: Bastian K. <ca...@us...> - 2003-01-25 18:40:25
|
Update of /cvsroot/fxpy/FXPy/includes-archive In directory sc8-pr-cvs1:/tmp/cvs-serv14402 Modified Files: fxdefs.h fxver.h xincs.h Log Message: update to FOX 1.0.30 Index: fxdefs.h =================================================================== RCS file: /cvsroot/fxpy/FXPy/includes-archive/fxdefs.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- fxdefs.h 2 Apr 2002 16:29:00 -0000 1.16 +++ fxdefs.h 25 Jan 2003 18:40:22 -0000 1.17 @@ -311,7 +311,7 @@ #define FX_LONG typedef unsigned __int64 FXulong; typedef __int64 FXlong; -#elif defined(__GNUG__) || defined(__GNUC__) || defined(__SUNPRO_CC) || defined(__MWERKS__) +#elif defined(__GNUG__) || defined(__GNUC__) || defined(__SUNPRO_CC) || defined(__MWERKS__) || defined(__SC__) #define FX_LONG typedef unsigned long long int FXulong; typedef long long int FXlong; Index: fxver.h =================================================================== RCS file: /cvsroot/fxpy/FXPy/includes-archive/fxver.h,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- fxver.h 2 Apr 2002 18:26:46 -0000 1.29 +++ fxver.h 25 Jan 2003 18:40:22 -0000 1.30 @@ -5,7 +5,7 @@ // FOX version #define FOX_MAJOR 1 #define FOX_MINOR 0 -#define FOX_LEVEL 5 +#define FOX_LEVEL 30 Index: xincs.h =================================================================== RCS file: /cvsroot/fxpy/FXPy/includes-archive/xincs.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- xincs.h 28 Mar 2002 22:23:06 -0000 1.12 +++ xincs.h 25 Jan 2003 18:40:22 -0000 1.13 @@ -82,6 +82,11 @@ #include <direct.h> #define vsnprintf _vsnprintf #endif +#ifdef __SC__ /* Digital Mars C++ Compiler */ +#include <direct.h> +#include <io.h> /* for _access() */ +#define vsnprintf _vsnprintf +#endif #endif |
|
From: Bastian K. <ca...@us...> - 2003-01-25 15:54:04
|
Update of /cvsroot/fxpy/FXPy/doc In directory sc8-pr-cvs1:/tmp/cvs-serv23814 Modified Files: Makefile Log Message: added Linux target Index: Makefile =================================================================== RCS file: /cvsroot/fxpy/FXPy/doc/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 2 Apr 2002 17:13:45 -0000 1.2 +++ Makefile 25 Jan 2003 15:54:01 -0000 1.3 @@ -6,11 +6,17 @@ SAXON = saxon DOCBOOK_XSL = C:\docbook\docbook-xsl-customized\html\chunk.xsl +XSL_LINUX = /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/html/chunk.xsl all: xml xml: $(SAXON) book.xml $(DOCBOOK_XSL) + +# this works on a Debian Linux system, you need to +# apt-get install xsltproc docbook-xsl +xml-unix: + xsltproc $(XSL_LINUX) book.xml clean: @rm -f *.html |
|
From: Bastian K. <ca...@us...> - 2003-01-25 13:56:08
|
|
From: Bastian K. <ca...@us...> - 2003-01-13 02:02:21
|
|
From: Bastian K. <ca...@us...> - 2002-11-28 01:13:42
|
|
From: Bastian K. <ca...@us...> - 2002-09-13 06:22:39
|