/usr/share/doc/libembperl-perl/SVN is in libembperl-perl 2.5.0-11build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | NAME
SVN - Access to the Embperl SVN development tree
SVN Access
The Embperl development tree lives on the machine svn.apache.org. This
tree contains the latest Embperl bug fixes and developments that have
not made it to CPAN yet. Welcome to the bleeding edge.
Just like SVN access to the Apache development tree, the Embperl code
pulled from SVN is not guaranteed to do anything, especially not compile
or work. But - that's exactly why we are using SVN - so that everyone
has access the latest version and can help ensure that Embperl does
compile and work on all platforms, with the various versions and
configurations of Perl and Apache, once it is really supposed to.
Patches are always welcome. Simply testing the latest snapshots is just
as (if not even more) helpful.
Anonymous Subversion
To access the Subversion repositories anonymously, you will need a
Subversion client. You can also browse the ASF projects that are using
Subversion with a Webbroswer via http://svn.apache.org/repos/asf/.
Embperl can be found at the URL
http://svn.apache.org/repos/asf/perl/embperl/
To check it out use
svn checkout http://svn.apache.org/repos/asf/perl/embperl/trunk embperl
To keep it up to date go into the embperl directory and run
svn up
For more help on using Subversion, consult the Subversion website
(http://subversion.tigris.org/) or Subversion book
(http://svnbook.red-bean.com/). The web site provides a list of clients
and useful links (http://subversion.tigris.org/project_links.html).
web-access
As mentioned above you can browser the svn repository directly with a
webbrowser at http://svn.apache.org/repos/asf/perl/embperl
A more confortable way is to use
http://svn.apache.org/viewcvs.cgi/perl/embperl/
Snapshot
A snapshot is rolled off the Embperl tree every 6 hours and placed here:
http://svn.apache.org/snapshots/embperl/
Embperl 1.x
There is no further development in the Embperl 1.x branch, but case it
will become necessary you can access the Embperl 1.x code via the branch
ep1, so when you checkout just run
svn checkout http://svn.apache.org/repos/asf/perl/embperl/branches/ep1/
MAILING LIST
There is a SVN mailing list for Embperl (This is SVN - not a list for
asking questions about Embperl!!!). This list receives all changes which
are committed to the SVN. If you want to know what's going on which
Embperl, you can subscribe by sending a mail to
embperl-CVS-request@perl.apache.org with subscribe in the body.
Building from SVN sources
Before you can build Embperl from sources that are checked out from the
SVN, you need to generate some glue code. This is done by the module
ExtUtils::XSBuilder, so you need to install it first from CPAN. When
it's installed run:
perl xsbuilder/source_scan.pl
perl xsbuilder/xs_generate.pl
perl Makefile.PL
make
make test
make install
|