Skip to content

Commit a02d356

Browse files
committed
Add missing meta data
1 parent dd03cc7 commit a02d356

File tree

3 files changed

+36
-8
lines changed

3 files changed

+36
-8
lines changed

MANIFEST

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

META6.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
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",
67
"description" : "Use Python code and libraries in a Perl 6 program",
7-
"depends" : [ "LibraryMake" ],
8-
"provides" : {
8+
"depends" : [ "LibraryMake" ],
9+
"provides" : {
910
"Inline::Python" : "lib/Inline/Python.pm6"
1011
},
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"
1314
}

Makefile.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ all: %DESTDIR%/resources/libraries/%pyhelper%
44

55
clean:
66
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
711

812
%DESTDIR%/resources/libraries/%pyhelper%: pyhelper.c
913
%CC% pyhelper.c %cflags% %ldflags% -shared -fPIC -o %DESTDIR%/resources/libraries/%pyhelper%

0 commit comments

Comments
 (0)