From f91cd3896917fc386a1f7ede095c6cdf5fcdf7e6 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 31 Jul 1999 07:21:04 +0000 Subject: [PATCH] some dist helpers for wxPython git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3222 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/wxPython/.cvsignore | 9 +++++---- utils/wxPython/distrib/makexferzip | 10 ++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) create mode 100755 utils/wxPython/distrib/makexferzip diff --git a/utils/wxPython/.cvsignore b/utils/wxPython/.cvsignore index f7a3543c72..791552a2b0 100644 --- a/utils/wxPython/.cvsignore +++ b/utils/wxPython/.cvsignore @@ -1,5 +1,9 @@ +*.py +*.pyc *.pyc *.pyd +*.pyd +*.pyo *.pyo *.zip .cvsignore @@ -35,6 +39,7 @@ events.pyc events.pyc events.pyo events.pyo +filelist frames.py frames.py frames.pyc @@ -108,7 +113,3 @@ wxp.pyo wxpc.ilk wxpc.pdb wxpc.pyd -*.py -*.pyc -*.pyo -*.pyd diff --git a/utils/wxPython/distrib/makexferzip b/utils/wxPython/distrib/makexferzip new file mode 100755 index 0000000000..88e06f3ab0 --- /dev/null +++ b/utils/wxPython/distrib/makexferzip @@ -0,0 +1,10 @@ +#!/bin/bash + +cd ~/wx/utils/wxPython + +find . -name "*.py" > filelist +find . -name "*.i" >> filelist +find . -name "*.h" >> filelist +find . -name "*.cpp" >> filelist + +cat filelist | zip -r -u -@ xfer.zip