Revision: 174
Author: roman_yakovenko
Date: 2006-05-28 01:27:04 -0700 (Sun, 28 May 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=174&view=rev
Log Message:
-----------
removing build_setup.py file
Removed Paths:
-------------
pyplusplus_dev/examples/pyboost_dev/dev/date_time/build_setup.py
Deleted: pyplusplus_dev/examples/pyboost_dev/dev/date_time/build_setup.py
===================================================================
--- pyplusplus_dev/examples/pyboost_dev/dev/date_time/build_setup.py 2006-05-28 08:08:40 UTC (rev 173)
+++ pyplusplus_dev/examples/pyboost_dev/dev/date_time/build_setup.py 2006-05-28 08:27:04 UTC (rev 174)
@@ -1,40 +0,0 @@
-#! /usr/bin/python
-# Copyright 2004 Roman Yakovenko.
-# Distributed under the Boost Software License, Version 1.0. (See
-# accompanying file LICENSE_1_0.txt or copy at
-# http://www.boost.org/LICENSE_1_0.txt)
-
-import os
-import sys
-import shutil
-
-def create( source_dir, target_dir ):
- sys.path.append( source_dir )
- environment = __import__( 'environment' )
- files_dir = os.path.join( source_dir, 'unittests' )
- files = ['date_time.py'
- , 'date_time_zonespec.csv'
- , 'LICENSE_1_0.txt'
- , 'local_time_tester.py'
- , 'posix_time_tester.py'
- , 'gregorian_tester.py'
- , 'test_all.py'
- ]
-
- if 'win32' == sys.platform:
- files.append( '_date_time_.pyd' )
- else:
- files.append( '_date_time_.so' )
-
-
- files = map( lambda fname: os.path.join( files_dir, fname ), files )
- if 'win32' == sys.platform:
- files.append( os.path.join( environment.settings.boost_libs_path, 'boost_python.dll' ) )
- files.append( os.path.join( environment.settings.boost_libs_path, 'boost_date_time-vc71-mt-1_33_1.dll' ) )
- else:
- files.append( os.path.join( environment.settings.boost_libs_path, 'libboost_python.so' ) )
- files.append( os.path.join( environment.settings.boost_libs_path, 'libboost_python.so.1.33.1' ) )
- files.append( os.path.join( environment.settings.boost_libs_path, 'libboost_date_time-gcc-1_33_1.so' ) )
- files.append( os.path.join( environment.settings.boost_libs_path, 'libboost_date_time-gcc-1_33_1.so.1.33.1' ) )
- for f in files:
- shutil.copy( f, target_dir )
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|