FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Updated Makefile · pythonnet/pythonnet@221715e · GitHub

Commit 221715e

Browse files
committed
Updated Makefile
Bumped version of clrmodule.il Added Python.Runtime.dll.config
1 parent 462a429 commit 221715e

4 files changed

Lines changed: 39 additions & 9 deletions

File tree

‎pythonnet/Makefile‎

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,13 @@ dist: realclean
145145
rm -rf ./$(RELEASE)/
146146

147147
sign:
148-
md5sum ./release/$(RELEASE).tar.gz ./release/$(RELEASE).zip > \
149-
./release/$(RELEASE).md5
150-
sha256sum ./release/$(RELEASE).tar.gz ./release/$(RELEASE).zip > \
151-
./release/$(RELEASE).sha
152-
gpg -sb ./release/$(RELEASE).zip
153-
gpg -sb ./release/$(RELEASE).tar.gz
148+
rm -f release/$(RELEASE)*.sig
149+
cd release; md5sum $(RELEASE).tar.gz $(RELEASE).zip > \
150+
$(RELEASE).md5
151+
cd release; sha256sum $(RELEASE).tar.gz $(RELEASE).zip > \
152+
$(RELEASE).sha
153+
cd release; gpg -sab $(RELEASE).zip
154+
cd release; gpg -sab $(RELEASE).tar.gz
154155

155156
dis:
156157
$(ILDASM) Python.Runtime.dll /out=Python.Runtime.il
@@ -170,4 +171,4 @@ install: all
170171
$(PYTHON) setup.py install
171172

172173
mkkey:
173-
$(SN) /k $(KEYFILE)
174+
$(SN) -k $(KEYFILE)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!-- Mono DLL map for Python.Runtime.dll
2+
3+
Keep this file next to Python.Runtime.dll
4+
5+
For more information read:
6+
http://www.mono-project.com/Config
7+
http://www.mono-project.com/Config_DllMap
8+
9+
-->
10+
11+
<configuration>
12+
<dllmap dll="python23" target="libpython2.3.so" os="!windows" />
13+
<dllmap dll="python24" target="libpython2.4.so" os="!windows" />
14+
<dllmap dll="python25" target="libpython2.5.so" os="!windows" />
15+
<dllmap dll="python26" target="libpython2.6.so" os="!windows" />
16+
<dllmap dll="python23.dll" target="libpython2.3.so" os="!windows" />
17+
<dllmap dll="python24.dll" target="libpython2.4.so" os="!windows" />
18+
<dllmap dll="python25.dll" target="libpython2.5.so" os="!windows" />
19+
<dllmap dll="python26.dll" target="libpython2.6.so" os="!windows" />
20+
</configuration>
21+

‎pythonnet/doc/changes.txt‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ Python for .NET Changes
5656
- Added code for Python 2.3. PythonNet can be build for Python 2.3 again
5757
but it is not fully supported. [tiran]
5858

59+
- Changed the PythonException.Message value so it displays the name of
60+
the exception class ("Exception") instead of its representation
61+
("<type 'exceptions.Exception'>").
62+
63+
- Added Python.Runtime.dll.config
64+
65+
5966
PythonNet 2.0 alpha 1
6067
---------------------------------------------------------------------------
6168

‎pythonnet/src/runtime/clrmodule.il‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@
2121
}
2222
.assembly extern Python.Runtime
2323
{
24-
.ver 1:0:0:0
24+
// .publickeytoken = (64 e1 4e 84 5a bf 2e 60)
25+
.ver 2:0:0:2
2526
}
2627
.assembly clr
2728
{
2829
// --- The following custom attribute is added automatically, do not uncomment -------
2930
// .custom instance void [mscorlib]System.Diagnostics.DebuggableAttribute::.ctor(bool,
3031
// bool) = ( 01 00 00 01 00 00 )
3132
.hash algorithm 0x00008004
32-
.ver 0:0:0:0
33+
.ver 2:0:0:2
3334
}
3435

3536
.module clr.dll

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL