From: Joe L. <jl...@op...> - 2002-01-02 19:54:33
|
the cvs tar image is unusable since its CVS format.. just follow the instructions for doing a cs checkout. Or, grab my SRPM, install it, and in /usr/src/redhat/SOURCES will be the python-ldap-cvs-010102.tar.gz file for your enjoyment. On 1/2/02 11:38 AM, "Ben Ocean" <zo...@th...> wrote: > At 07:19 PM 1/2/02 +0100, you wrote: >> Ben Ocean wrote: >>> >>> Darn. I was afraid of that. Is there no bridge for python2x and openldap2x? >> >> There is. Check out recent version from CVS. > > Okay, I d'l'd, edited setup.cfg,v and ran make but it complained that it > couldn't find setup.py so I moved setup.py,v to setup.py but that caused an > error. This is my first time working with CVS: what am I doing wrong? > TIA, > BenO > > P.S. > Thanks to Joe Little for similar comments. > Thanks to Jens Vagelpohl for recommending the FAQ. > > > > _______________________________________________ > Python-LDAP-dev mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/python-ldap-dev |
From: Ben O. <zo...@th...> - 2002-01-02 20:31:21
|
At 09:03 PM 1/2/02 +0100, you wrote: >You should follow the "Anonymous CVS instructions": I'm afraid I'm thoroughly confused now! <disclaimer> This is my first time with CVS</disclaimer> I read the following: This project's SourceForge CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. The module you wish to check out must be specified as the modulename. When prompted for a password for anonymous, simply press the Enter key. cvs -d:pserver:ano...@cv...:/cvsroot/python-ldap login cvs -z3 -d:pserver:ano...@cv...:/cvsroot/python-ldap co modulename So, what exactly do I do? At a command prompt I enter what? Or, is it in a browser address bar? What do I do? TIA, BenO |
From: Ben O. <zo...@th...> - 2002-01-02 21:03:30
|
At 09:49 PM 1/2/02 +0100, you wrote: >Ben Ocean wrote: > > > > I'm afraid I'm thoroughly confused now! > > <disclaimer> This is my first time with CVS</disclaimer> > >Well, it seems you should use Joe's RPMs. He built them recently. Fine, but will that default to all these flags? #sh configure --with-ldap=/usr/local/openldap --with-ldap-lib=/usr/local/openldap/libraries --with-ldap-inc=/usr/local/openldap/include --with-python=/usr/local/bin/python --with-kerberos --with-kerberos-lib=/usr/krb5-1.2.2/src/lib If not, if you would be so kind as to translate the following I would be much obliged: This project's SourceForge CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. The module you wish to check out must be specified as the modulename. When prompted for a password for anonymous, simply press the Enter key. cvs -d:pserver:ano...@cv...:/cvsroot/python-ldap login cvs -z3 -d:pserver:ano...@cv...:/cvsroot/python-ldap co modulename At a command prompt I enter what? Or, is it in a browser address bar? What do I do? TIA, BenO |
From: Ben O. <zo...@th...> - 2002-01-02 21:14:07
|
At 04:09 PM 1/2/02 -0500, you wrote: >>If not, if you would be so kind as to translate the following ... > > >They are showing two UNIX-style command-line invocations of CVS. > >Type the first command to "login" to the remote site. When it asks for a >password, just hit the RETURN key. Cool. When I tried the first time it didn't work: now I see my error. Thus, the following: #cvs -d:pserver:ano...@cv...:/cvsroot/python-ldap login (Logging in to ano...@cv...) CVS password: # Okay, what do I do at the last prompt? >Type the second command to fetch the latest sources and make a local >mirror of the source tree. So, in other words, I only need the command listed above (but again, what comes next?) >Cute sitename. Thanks! BenO |
From: Michael <mi...@st...> - 2002-01-02 20:49:11
|
Ben Ocean wrote: > > I'm afraid I'm thoroughly confused now! > <disclaimer> This is my first time with CVS</disclaimer> Well, it seems you should use Joe's RPMs. He built them recently. Ciao, Michael. |
From: Rich S. <rs...@zo...> - 2002-01-02 21:06:53
|
> If not, if you would be so kind as to translate the following ... They are showing two UNIX-style command-line invocations of CVS. Type the first command to "login" to the remote site. When it asks for a password, just hit the RETURN key. Type the second command to fetch the latest sources and make a local mirror of the source tree. Hope this helps. Cute sitename. /r$ -- Zolera Systems, Your Key to Online Integrity Securing Web services: XML, SOAP, Dig-sig, Encryption http://www.zolera.com |
From: Rich S. <rs...@zo...> - 2002-01-02 21:21:16
|
There are TWO commands. The first starts "cvs -d... login", the second is "cvs -d ... checkout" /r$ Zolera Systems, Your Key to Online Integrity Securing Web services: XML, SOAP, Dig-sig, Encryption http://www.zolera.com |
From: Ben O. <zo...@th...> - 2002-01-02 21:33:08
|
At 04:23 PM 1/2/02 -0500, you wrote: >There are TWO commands. The first starts "cvs -d... login", the second is >"cvs -d ... checkout" Then what is the name of the module? Or, how do I ls to find out? TIA BenO |
From: Michael <mi...@st...> - 2002-01-02 23:10:49
|
Ben Ocean wrote: > > cvs > -d:pserver:ano...@cv...:/cvsroot/python-ldap > login > > cvs -z3 > -d:pserver:ano...@cv...:/cvsroot/python-ldap > co modulename modulename is python-ldap > At 09:49 PM 1/2/02 +0100, you wrote: > >Ben Ocean wrote: > > > > > > I'm afraid I'm thoroughly confused now! > > > <disclaimer> This is my first time with CVS</disclaimer> > > > >Well, it seems you should use Joe's RPMs. He built them recently. BTW: The URL is http://www.open-it.org/download/redhat7.2/ > Fine, but will that default to all these flags? > > #sh configure --with-ldap=/usr/local/openldap There's no ./configure in the recent version. The build and installation process uses DistUtils (shipped with Python 2.0+). You have to edit setup.cfg to reflect the position of your OpenLDAP 2 headers and libs and invoke $ python setup.py build If that was successful you invoke as root $ python setup.py install Afterwards you should be able to use without errors $ python -c "import ldap" Ciao, Michael. |
From: Michael <mi...@st...> - 2002-01-03 00:02:24
|
Ben Ocean wrote: > > --with-kerberos --with-kerberos-lib=/usr/krb5-1.2.2/src/lib BTW: Direct support for Kerberos is deprecated with LDAPv3 (here OpenLDAP 2). It should be done via SASL bind. Hmm, any takers? Keith...? Ciao, Michael. |