File tree Expand file tree Collapse file tree 3 files changed +36
-8
lines changed Expand file tree Collapse file tree 3 files changed +36
-8
lines changed Original file line number Diff line number Diff line change
1
+ ./Build.pm
2
+ ./configure.pl6
3
+ ./lib/Inline/Python.pm6
4
+ ./LICENSE
5
+ ./Makefile.in
6
+ ./MANIFEST
7
+ ./META6.json
8
+ ./pyhelper.c
9
+ ./README.md
10
+ ./t/callables.t
11
+ ./t/call_back.t
12
+ ./t/call.t
13
+ ./t/date.t
14
+ ./t/eval_return_values.t
15
+ ./t/eval.t
16
+ ./t/exceptions.t
17
+ ./t/import.t
18
+ ./t/inherit.t
19
+ ./t/invoke.t
20
+ ./t/lib/Precomp.pm
21
+ ./t/matplotlib.t
22
+ ./t/p6_to_py.t
23
+ ./t/py_to_p6.t
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " Inline::Python" ,
3
- "license" : " Artistic-2.0" ,
4
- "version" : " 0.3" ,
5
- "author" : " github:niner" ,
2
+ "name" : " Inline::Python" ,
3
+ "license" : " Artistic-2.0" ,
4
+ "version" : " 0.3" ,
5
+ "perl" : " 6.c" ,
6
+ "author" : " github:niner" ,
6
7
"description" : " Use Python code and libraries in a Perl 6 program" ,
7
- "depends" : [ " LibraryMake" ],
8
- "provides" : {
8
+ "depends" : [ " LibraryMake" ],
9
+ "provides" : {
9
10
"Inline::Python" : " lib/Inline/Python.pm6"
10
11
},
11
- "resources" : [ " libraries/pyhelper" ],
12
- "source-url" : " git://github.com/niner/Inline-Python.git"
12
+ "resources" : [ " libraries/pyhelper" ],
13
+ "source-url" : " git://github.com/niner/Inline-Python.git"
13
14
}
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ all: %DESTDIR%/resources/libraries/%pyhelper%
4
4
5
5
clean :
6
6
rm %DESTDIR%/resources/libraries/%pyhelper%
7
+ rm -rf %DESTDIR%/lib/.precomp %DESTDIR%/t/lib/.precomp
8
+
9
+ manifest :
10
+ find . -name .git -prune -o -name .gitignore -prune -o -name .prove -prune -o -name .travis.yml -prune -o -name Makefile -prune -o -type f -print | sort > MANIFEST
7
11
8
12
% DESTDIR% /resources/libraries/% pyhelper% : pyhelper.c
9
13
%CC% pyhelper.c %cflags% %ldflags% -shared -fPIC -o %DESTDIR%/resources/libraries/%pyhelper%
You can’t perform that action at this time.
0 commit comments