Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Zope: CMF

Eggified CMF 2.1.1 now available

 

 

Zope cmf RSS feed   Index | Next | Previous | View Threaded


tseaver at palladion

Aug 3, 2008, 9:19 AM

Post #1 of 8 (1708 views)
Permalink
Eggified CMF 2.1.1 now available

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
products this morning:

- CMFDefault

- CMFTopic

- CMFActionIcons

- CMFCalendar

- CMFUid

- DCWorkflow

Source distributions for the 2.1.1 versions are now available on PyPI.


Tres.
- --
===================================================================
Tres Seaver +1 540-429-0999 tseaver [at] palladion
Palladion Software "Excellence by Design" http://palladion.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIldqF+gerLs4ltQ4RArHvAJwJdHslGSI20crfqKe5WRjYEwtWFwCgxOZz
MI1fj2+LRnR5Orxc6puv6jk=
=yUkn
-----END PGP SIGNATURE-----

_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests


m.van.rees at zestsoftware

Aug 4, 2008, 2:29 AM

Post #2 of 8 (1653 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

Tres Seaver, on 2008-08-03:
>
> I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
> products this morning:
>
> - CMFDefault
>
> - CMFTopic
>
> - CMFActionIcons
>
> - CMFCalendar
>
> - CMFUid
>
> - DCWorkflow
>
> Source distributions for the 2.1.1 versions are now available on PyPI.

Great, thanks!

But I hit a problem when I try to make a checkout the CMFActionIcons tag:

====================================================
$ svn co svn://svn.zope.org/repos/main/Products.CMFActionIcons/tags/2.1.1
A 2.1.1/Products
A 2.1.1/Products/EXTERNALS.txt
A 2.1.1/Products/__init__.py
A 2.1.1/setup.py
A 2.1.1/README.txt
U 2.1.1

Fetching external item into '2.1.1/Products/CMFActionIcons'
Permission denied (publickey,gssapi-with-mic).
svn: Connection closed unexpectedly
====================================================

This is because EXTERNALS.txt points to:

CMFActionIcons svn+ssh://svn.zope.org/repos/main/CMF/tags/2.1.1/CMFActionIcons

Should that not be changed to just svn instead of svn+ssh?

I *do* have an ssh account for svn.zope.org, so a checkout of
svn+ssh://mauritsvanrees [at] svn/... works. Am I missing some
trick so that svn+ssh://svn.zope.org/ works too, without having a
username in there?

Come to think of it, when my username on my laptop would have been
'mauritsvanrees' this checkout probably would have worked, so there is
probably an ssh config file somewhere that I can tweak. Does anyone
know how to do that?


BTW, I noticed this when making a checkout of the core development
buildout of Plone, branch 3.2:
https://svn.plone.org/svn/plone/buildouts/plone-coredev/branches/3.2
Not everyone using that checkout will have ssh access to svn.zope.org.


--
Maurits van Rees | http://maurits.vanrees.org/
Work | http://zestsoftware.nl/
"This is your day, don't let them take it away." [Barlow Girl]

_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests


ra at burningman

Aug 4, 2008, 6:47 PM

Post #3 of 8 (1650 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

Maurits van Rees wrote:
> Tres Seaver, on 2008-08-03:
>> I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
>> products this morning:
>>
>> - CMFDefault
>>
>> - CMFTopic
>>
>> - CMFActionIcons
>>
>> - CMFCalendar
>>
>> - CMFUid
>>
>> - DCWorkflow
>>
>> Source distributions for the 2.1.1 versions are now available on PyPI.
>
> Great, thanks!
>
> But I hit a problem when I try to make a checkout the CMFActionIcons tag:
>
> ====================================================
> $ svn co svn://svn.zope.org/repos/main/Products.CMFActionIcons/tags/2.1.1
> A 2.1.1/Products
> A 2.1.1/Products/EXTERNALS.txt
> A 2.1.1/Products/__init__.py
> A 2.1.1/setup.py
> A 2.1.1/README.txt
> U 2.1.1
>
> Fetching external item into '2.1.1/Products/CMFActionIcons'
> Permission denied (publickey,gssapi-with-mic).
> svn: Connection closed unexpectedly
> ====================================================
>
> This is because EXTERNALS.txt points to:
>
> CMFActionIcons svn+ssh://svn.zope.org/repos/main/CMF/tags/2.1.1/CMFActionIcons
>
> Should that not be changed to just svn instead of svn+ssh?
>
> I *do* have an ssh account for svn.zope.org, so a checkout of
> svn+ssh://mauritsvanrees [at] svn/... works. Am I missing some
> trick so that svn+ssh://svn.zope.org/ works too, without having a
> username in there?
>
> Come to think of it, when my username on my laptop would have been
> 'mauritsvanrees' this checkout probably would have worked, so there is
> probably an ssh config file somewhere that I can tweak. Does anyone
> know how to do that?

yes, b/c i just had to figure it out to check out the cmf-coredev buildout at
https://svn.plone.org/svn/plone/buildouts/cmf-coredev/trunk. you have to
include something like this in your ~/.ssh/config file:

Host svn.zope.org
User [USERNAME]

the "Host" directive means that all subsequent config options only apply to
that host, at least until another Host directive is hit. wildcards are
supported, so "Host *" will match all hosts.

-r

_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests


m.van.rees at zestsoftware

Aug 5, 2008, 1:46 AM

Post #4 of 8 (1645 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

Rob Miller, on 2008-08-05:
> Maurits van Rees wrote:
>> Come to think of it, when my username on my laptop would have been
>> 'mauritsvanrees' this checkout probably would have worked, so there is
>> probably an ssh config file somewhere that I can tweak. Does anyone
>> know how to do that?
>
> yes, b/c i just had to figure it out to check out the cmf-coredev buildout at
> https://svn.plone.org/svn/plone/buildouts/cmf-coredev/trunk. you have to
> include something like this in your ~/.ssh/config file:
>
> Host svn.zope.org
> User [USERNAME]
>
> the "Host" directive means that all subsequent config options only apply to
> that host, at least until another Host directive is hit. wildcards are
> supported, so "Host *" will match all hosts.

Ah yes, that is it. Thanks!

--
Maurits van Rees | http://maurits.vanrees.org/
Work | http://zestsoftware.nl/
"This is your day, don't let them take it away." [Barlow Girl]

_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests


jens at dataflake

Aug 11, 2008, 2:38 AM

Post #5 of 8 (1606 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

On Aug 3, 2008, at 18:19 , Tres Seaver wrote:

> I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
> products this morning:
>
> - CMFDefault
> - CMFTopic
> - CMFActionIcons
> - CMFCalendar
> - CMFUid
> - DCWorkflow
>
> Source distributions for the 2.1.1 versions are now available on PyPI.

With there being no clear roadmap for 2.2 releases yet, would there be
any desire to move the 2.1 branch over to "new style" separate
products which would make it easier to release them as eggs? I would
have time to do this during a sprint later this month.

jens


_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See http://collector.zope.org/CMF for bug reports and feature requests


wichert at wiggy

Aug 11, 2008, 3:10 AM

Post #6 of 8 (1596 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

Previously Jens Vagelpohl wrote:
>
> On Aug 3, 2008, at 18:19 , Tres Seaver wrote:
>
> > I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
> > products this morning:
> >
> > - CMFDefault
> > - CMFTopic
> > - CMFActionIcons
> > - CMFCalendar
> > - CMFUid
> > - DCWorkflow
> >
> > Source distributions for the 2.1.1 versions are now available on PyPI.
>
> With there being no clear roadmap for 2.2 releases yet, would there be
> any desire to move the 2.1 branch over to "new style" separate
> products which would make it easier to release them as eggs? I would
> have time to do this during a sprint later this month.

+1

Wichert.

--
Wichert Akkerman <wichert [at] wiggy> It is simple to make things.
http://www.wiggy.net/ It is hard to make things simple.
_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See https://bugs.launchpad.net/zope-cmf/ for bug reports and feature requests


tseaver at palladion

Aug 11, 2008, 9:45 AM

Post #7 of 8 (1607 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Wichert Akkerman wrote:
> Previously Jens Vagelpohl wrote:
>> On Aug 3, 2008, at 18:19 , Tres Seaver wrote:
>>
>>> I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
>>> products this morning:
>>>
>>> - CMFDefault
>>> - CMFTopic
>>> - CMFActionIcons
>>> - CMFCalendar
>>> - CMFUid
>>> - DCWorkflow
>>>
>>> Source distributions for the 2.1.1 versions are now available on PyPI.
>> With there being no clear roadmap for 2.2 releases yet, would there be
>> any desire to move the 2.1 branch over to "new style" separate
>> products which would make it easier to release them as eggs? I would
>> have time to do this during a sprint later this month.

+0. Making new eggs from the monolithic checkout / satellites is not
going to be any harder than the following:

$ svn cp $ZSVN/Products.CMFDefault/tags/2.1.{1,2}
$ svn co $ZSVN/Products.CMFDefault/tags/2.1.2 CMFDefault-2.1.2
$ cd CMFDefault-2.1.2
$ vim setup.py # change version
$ svn propedit svn:externals Products # point to new monolith tag
$ svn commit

I don't really object to breaking the monolith up, however (replacing
the 'svn:externals' with real copies): most of the effort is going to
be in teasing apart changelog entries.

Tres.
- --
===================================================================
Tres Seaver +1 540-429-0999 tseaver [at] palladion
Palladion Software "Excellence by Design" http://palladion.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFIoGzB+gerLs4ltQ4RAks+AKDTklxkF9O3l2p1FcsPqCMOr2NduQCdGN72
3ivYmZCyBFPtRIB1JKZe+uM=
=oNku
-----END PGP SIGNATURE-----

_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See https://bugs.launchpad.net/zope-cmf/ for bug reports and feature requests


jens at dataflake

Aug 27, 2008, 7:43 AM

Post #8 of 8 (1482 views)
Permalink
Re: Eggified CMF 2.1.1 now available [In reply to]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


On Aug 3, 2008, at 18:19 , Tres Seaver wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> I created "satellite" versions of the 2.1.1 eggs for the remaining CMF
> products this morning:

The whole CMF 2.1-branch is eggified now, and just like on the trunk
the toplevel SN folder /CMF/branches/2.1 contains svn:externals links
to the respective products.

jens



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (Darwin)

iEYEARECAAYFAki1aAIACgkQRAx5nvEhZLKYkgCfYWsIYU3O+2/npvDZ96HtO+sR
3PUAoJjd0Ov2TphVE69RDkwPK+HQ63rJ
=N3LP
-----END PGP SIGNATURE-----
_______________________________________________
Zope-CMF maillist - Zope-CMF [at] lists
http://mail.zope.org/mailman/listinfo/zope-cmf

See https://bugs.launchpad.net/zope-cmf/ for bug reports and feature requests

Zope cmf RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.