Sponsored Content
Full Discussion: AIX 6.1 SVN
Operating Systems AIX AIX 6.1 SVN Post 302382424 by shockneck on Wednesday 23rd of December 2009 07:37:17 AM
Old 12-23-2009
Did you install all the prerequisites (that are also available from Michael Perzl's website)?
 

10 More Discussions You Might Find Interesting

1. Ubuntu

svn keyrings

Hello, I have a svn account and can use it easly trought Web browser inserting username and passwd. But I get problems when I wanna do the same via shell, here the output that I get: svn --username myusername co https://address/repo/ . Password for '(null)' GNOME keyring: svn: OPTIONS... (0 Replies)
Discussion started by: Dedalus
0 Replies

2. UNIX for Dummies Questions & Answers

svn question

Hello, This one really stumps me. I checked out a repo to a subdirectory. I created a simple post-commit hook that updates the webserver. A. When I update with the command line everything is fine. B. When I use a GUI program to commit, I get this message in the log: Host key verification... (3 Replies)
Discussion started by: mike628
3 Replies

3. Shell Programming and Scripting

svn check out

If I am transfering a folder from svn location to my unix server with below command, it is working – svn co svn+ssh://bcvxsvxxnp01.corp.ocwen.com/svn/repos/repos/REALResolution/CalcEngine/CalcEngine\ QA/1852011_CalcEngine_v5.1 But when I do below thing – ... (0 Replies)
Discussion started by: thearpit
0 Replies

4. Solaris

How to integrate SVN client to SVN server repository.

Hi, I am new to SVN configuration on Solaris 10.I have installed SVN client version 1.7. bash-3.00# ./svn --version svn, version 1.7.4 (r1295709) compiled Mar 2 2012, 12:59:36 Here my requirement is how to integrate svn client to One of the SVN server repository. My repository... (0 Replies)
Discussion started by: muraliinfy04
0 Replies

5. Shell Programming and Scripting

Connect to SVN from UNIX

Hi, Can anyone please tell the command to connect to SVN from UNIX? Thanks (1 Reply)
Discussion started by: sampoorna
1 Replies

6. Shell Programming and Scripting

Connecting to SVN from UNIX

Hi, I'm new to Unix,I want to connect to Sub Version(SVN) through Unix. Please let know what command i need to use. Thanks, Madhuri (3 Replies)
Discussion started by: srimadhuri
3 Replies

7. UNIX for Dummies Questions & Answers

Login to svn from UNIX

Hi Can anyone please tell me about how to connect to SVN from unix Thanks (2 Replies)
Discussion started by: kedar_laveti
2 Replies

8. Programming

Beginning svn

I had hard time to understand svn, and asked my admin who said I was over thinking and recommend remember the 5~6 commands to do as told. But I am so lost when the situation changed a little bit. For example, I am in my local box under my project folder: /home/yifangt/svn/ where there are two... (5 Replies)
Discussion started by: yifangt
5 Replies

9. UNIX for Dummies Questions & Answers

Svn update

dear all after a wile that i was able to update my model with ''svn update'', now i can not update my model with that command:mad:. my model is COAWST please see the following error: $ svn update svn: OPTIONS of 'https://coawstmodel.sourcerepo.com/coawstmodel/COAWST': SSL handshake failed:... (1 Reply)
Discussion started by: komijani
1 Replies

10. Shell Programming and Scripting

Making post down hook script for svn regarding sending emails after an file is committed in svn

Hi Folks , I am asking this question but i apologise please if this is not the correct forum , I have to develop a shell script that i want to place in at hooks/post-commit , that is basically i have to develop a post hook script and the main functionality of that script would be lets say if... (0 Replies)
Discussion started by: sunsun06060606
0 Replies
CPANPLUS::Dist::Build(3pm)				 Perl Programmers Reference Guide				CPANPLUS::Dist::Build(3pm)

NAME
CPANPLUS::Dist::Build - CPANPLUS plugin to install packages that use Build.PL SYNOPSIS
my $build = CPANPLUS::Dist->new( format => 'CPANPLUS::Dist::Build', module => $modobj, ); $build->prepare; # runs Build.PL $build->create; # runs build && build test $build->install; # runs build install DESCRIPTION
"CPANPLUS::Dist::Build" is a distribution class for "Module::Build" related modules. Using this package, you can create, install and uninstall perl modules. It inherits from "CPANPLUS::Dist". Normal users won't have to worry about the interface to this module, as it functions transparently as a plug-in to "CPANPLUS" and will just "Do The Right Thing" when it's loaded. ACCESSORS
"parent()" Returns the "CPANPLUS::Module" object that parented this object. "status()" Returns the "Object::Accessor" object that keeps the status for this module. STATUS ACCESSORS
All accessors can be accessed as follows: $build->status->ACCESSOR "build_pl ()" Location of the Build file. Set to 0 explicitly if something went wrong. "build ()" BOOL indicating if the "Build" command was successful. "test ()" BOOL indicating if the "Build test" command was successful. "prepared ()" BOOL indicating if the "prepare" call exited successfully This gets set after "perl Build.PL" "distdir ()" Full path to the directory in which the "prepare" call took place, set after a call to "prepare". "created ()" BOOL indicating if the "create" call exited successfully. This gets set after "Build" and "Build test". "installed ()" BOOL indicating if the module was installed. This gets set after "Build install" exits successfully. uninstalled () BOOL indicating if the module was uninstalled properly. "_create_args ()" Storage of the arguments passed to "create" for this object. Used for recursive calls when satisfying prerequisites. "_install_args ()" Storage of the arguments passed to "install" for this object. Used for recursive calls when satisfying prerequisites. METHODS
$bool = CPANPLUS::Dist::Build->format_available(); Returns a boolean indicating whether or not you can use this package to create and install modules in your environment. $bool = $dist->init(); Sets up the "CPANPLUS::Dist::Build" object for use. Effectively creates all the needed status accessors. Called automatically whenever you create a new "CPANPLUS::Dist" object. $bool = $dist->prepare([perl => '/path/to/perl', buildflags => 'EXTRA=FLAGS', force => BOOL, verbose => BOOL]) "prepare" prepares a distribution, running "Build.PL" and establishing any prerequisites this distribution has. The variable "PERL5_CPANPLUS_IS_EXECUTING" will be set to the full path of the "Build.PL" that is being executed. This enables any code inside the "Build.PL" to know that it is being installed via CPANPLUS. After a successful "prepare" you may call "create" to create the distribution, followed by "install" to actually install it. Returns true on success and false on failure. $dist->create([perl => '/path/to/perl', buildflags => 'EXTRA=FLAGS', prereq_target => TARGET, force => BOOL, verbose => BOOL, skiptest => BOOL]) "create" preps a distribution for installation. This means it will run "Build" and "Build test". This will also satisfy any prerequisites the module may have. If you set "skiptest" to true, it will skip the "Build test" stage. If you set "force" to true, it will go over all the stages of the "Build" process again, ignoring any previously cached results. It will also ignore a bad return value from "Build test" and still allow the operation to return true. Returns true on success and false on failure. You may then call "$dist->install" on the object to actually install it. $dist->install([verbose => BOOL, perl => /path/to/perl]) Actually installs the created dist. Returns true on success and false on failure. AUTHOR
Originally by Jos Boumans <kane@cpan.org>. Brought to working condition by Ken Williams <kwilliams@cpan.org>. Other hackery and currently maintained by Chris "BinGOs" Williams ( no relation ). <bingos@cpan.org>. LICENSE
The CPAN++ interface (of which this module is a part of) is copyright (c) 2001, 2002, 2003, 2004, 2005 Jos Boumans <kane@cpan.org>. All rights reserved. This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. perl v5.18.2 2014-01-06 CPANPLUS::Dist::Build(3pm)
All times are GMT -4. The time now is 01:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy