[libinline-java-perl] 313/398: ok
Jonas Smedegaard
dr at jones.dk
Thu Feb 26 11:43:18 UTC 2015
This is an automated email from the git hooks/post-receive script.
js pushed a commit to tag 0.55
in repository libinline-java-perl.
commit 14b8dd864baaeacd4f1838b8907a11c9918d9271
Author: patrick_leb <>
Date: Mon Apr 19 18:43:31 2004 +0000
ok
---
CHANGES | 5 ++++-
MANIFEST | 1 +
Makefile.PL | 16 ++++++++--------
README | 4 ++++
4 files changed, 17 insertions(+), 9 deletions(-)
diff --git a/CHANGES b/CHANGES
index e08bd87..18cee1e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
Revision history for Perl extension Inline::Java
------------------------------------------------
-0.48
+0.48
+ - Added PerlInterpreter: require/eval Perl code directly from Java
+ - Renamed PerlNatives stuff
+ - Split and updated documentation
0.47 Sat Feb 14 10:00:00 EST 2004
- Fixed bugs in portability code and added HPUX, AIX and Solaris specifics
diff --git a/MANIFEST b/MANIFEST
index 193a1cf..35f9b62 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -37,6 +37,7 @@ Java/sources/org/perl/inline/java/InlineJavaCallback.java
Java/sources/org/perl/inline/java/InlineJavaCallbackQueue.java
Java/sources/org/perl/inline/java/InlineJavaPerlNatives.java
Java/sources/org/perl/inline/java/InlineJavaPerlInterpreter.java
+Java/sources/org/perl/inline/java/InlineJavaPerlObject.java
Java/PerlNatives/Makefile.PL
Java/PerlNatives/PerlNatives.pm
Java/PerlNatives/PerlNatives.xs
diff --git a/Makefile.PL b/Makefile.PL
index bc69a78..a55f8d4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -191,12 +191,12 @@ close(J2SDK) ;
# Create the properties that will be included in the jar.
-my @natives_so_parts = ("auto", "Inline", "Java", "Natives",
- "Natives." . Inline::Java::Portable::portable('SO_EXT')) ;
-my $install_natives_so = File::Spec->catfile($INSTALLSITEARCH, @natives_so_parts) ;
-$install_natives_so =~ s/\\/\\\\/g ;
-my $test_natives_so = File::Spec->rel2abs(File::Spec->catfile($INST_ARCHLIB, @natives_so_parts)) ;
-$test_natives_so =~ s/\\/\\\\/g ;
+my @perlnatives_so_parts = ("auto", "Inline", "Java", "PerlNatives",
+ "PerlNatives." . Inline::Java::Portable::portable('SO_EXT')) ;
+my $install_perlnatives_so = File::Spec->catfile($INSTALLSITEARCH, @perlnatives_so_parts) ;
+$install_perlnatives_so =~ s/\\/\\\\/g ;
+my $test_perlnatives_so = File::Spec->rel2abs(File::Spec->catfile($INST_ARCHLIB, @perlnatives_so_parts)) ;
+$test_perlnatives_so =~ s/\\/\\\\/g ;
my @perlinterpreter_so_parts = ("auto", "Inline", "Java", "PerlInterpreter",
"PerlInterpreter." . Inline::Java::Portable::portable('SO_EXT')) ;
@@ -217,8 +217,8 @@ open(PROP, ">$prop") or
die("Can't open '$prop' for writing: $!") ;
print PROP <<PROP;
# This file is created by the Makefile.PL for Inline::Java
-inline_java_natives_so_install = $install_natives_so
-inline_java_natives_so_test = $test_natives_so
+inline_java_perlnatives_so_install = $install_perlnatives_so
+inline_java_perlnatives_so_test = $test_perlnatives_so
inline_java_perlinterpreter_so_install = $install_perlinterpreter_so
inline_java_perlinterpreter_so_test = $test_perlinterpreter_so
inline_java_libperl_so = $libperl_so
diff --git a/README b/README
index fb69097..6399065 100644
--- a/README
+++ b/README
@@ -67,6 +67,10 @@ second time you test loading of an already built module.
FEATURES FOR THIS VERSION:
Inline::Java version 0.48 is a major upgrade that includes:
+ - Added PerlInterpreter: require/eval Perl code directly from Java
+ - Renamed PerlNatives stuff
+ - Split and updated documentation
+
See CHANGES for a full change list.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libinline-java-perl.git
More information about the Pkg-perl-cvs-commits
mailing list