|
14 | 14 |
|
15 | 15 | from os import path |
16 | 16 |
|
17 | | -pkg_version = '0.0.5' |
| 17 | +pkg_version = '0.0.5post1' |
18 | 18 |
|
19 | 19 | env = os.environ.copy() |
20 | 20 |
|
@@ -143,6 +143,17 @@ def build_package(): |
143 | 143 | (os.path.join(eC_dir, 'crossplatform.mk'), 'crossplatform.mk'), |
144 | 144 | (os.path.join(eC_dir, 'default.cf'), 'default.cf'), |
145 | 145 | (os.path.join(eC_dir, 'extras', 'testing', 'testingFramework.ec'), os.path.join('extras', 'testing', 'testingFramework.ec')), |
| 146 | + (os.path.join(eC_dir, 'extras', 'base64.ec'), os.path.join('extras', 'base64.ec')), |
| 147 | + (os.path.join(eC_dir, 'extras', 'BinaryTriangle.ec'), os.path.join('extras', 'BinaryTriangle.ec')), |
| 148 | + (os.path.join(eC_dir, 'extras', 'FileSystemAPI.ec'), os.path.join('extras', 'FileSystemAPI.ec')), |
| 149 | + (os.path.join(eC_dir, 'extras', 'iso8601.ec'), os.path.join('extras', 'iso8601.ec')), |
| 150 | + (os.path.join(eC_dir, 'extras', 'JSONSchema.ec'), os.path.join('extras', 'JSONSchema.ec')), |
| 151 | + (os.path.join(eC_dir, 'extras', 'md5.ec'), os.path.join('extras', 'md5.ec')), |
| 152 | + (os.path.join(eC_dir, 'extras', 'protocolBuffer.ec'), os.path.join('extras', 'protocolBuffer.ec')), |
| 153 | + (os.path.join(eC_dir, 'extras', 'stringTools.ec'), os.path.join('extras', 'stringTools.ec')), |
| 154 | + (os.path.join(eC_dir, 'extras', 'stringUtils.ec'), os.path.join('extras', 'stringUtils.ec')), |
| 155 | + (os.path.join(eC_dir, 'extras', 'threadedProcessing.ec'), os.path.join('extras', 'threadedProcessing.ec')), |
| 156 | + (os.path.join(eC_dir, 'extras', 'XMLParser.ec'), os.path.join('extras', 'XMLParser.ec')) |
146 | 157 | ], artifacts_dir) |
147 | 158 | except subprocess.CalledProcessError as e: |
148 | 159 | print(f"Error during make: {e}") |
@@ -220,7 +231,18 @@ def get_tag(self): |
220 | 231 | ]) |
221 | 232 |
|
222 | 233 | extras_files = [ |
223 | | - 'testing/testingFramework.ec' |
| 234 | + 'testing/testingFramework.ec', |
| 235 | + 'base64.ec', |
| 236 | + 'BinaryTriangle.ec', |
| 237 | + 'FileSystemAPI.ec', |
| 238 | + 'iso8601.ec', |
| 239 | + 'JSONSchema.ec', |
| 240 | + 'md5.ec', |
| 241 | + 'protocolBuffer.ec', |
| 242 | + 'stringTools.ec', |
| 243 | + 'stringUtils.ec', |
| 244 | + 'threadedProcessing.ec', |
| 245 | + 'XMLParser.ec' |
224 | 246 | ] |
225 | 247 |
|
226 | 248 | commands = set(sys.argv) |
|
0 commit comments