* release notes script dependencies
@ 2015-05-05 18:56 Loic Dachary
2015-05-06 4:27 ` Abhishek L
0 siblings, 1 reply; 6+ messages in thread
From: Loic Dachary @ 2015-05-05 18:56 UTC (permalink / raw)
To: Abhishek L; +Cc: Ceph Development
[-- Attachment #1: Type: text/plain, Size: 468 bytes --]
Hi Abhishek,
It would be useful to add instructions on what dependencies to pull to run http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes. Something like
virtualenv /tmp/foo
. /tmp/foo/bin/activate
pip install GitPython # I recognized the library from the import ;-)
pip install ?? # I tried half a dozen but could not find one that matches the import github semantic
Cheers
--
Loïc Dachary, Artisan Logiciel Libre
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: release notes script dependencies
2015-05-05 18:56 release notes script dependencies Loic Dachary
@ 2015-05-06 4:27 ` Abhishek L
2015-05-06 14:55 ` Loic Dachary
0 siblings, 1 reply; 6+ messages in thread
From: Abhishek L @ 2015-05-06 4:27 UTC (permalink / raw)
To: Loic Dachary; +Cc: Ceph Development
On Wed, May 6, 2015 at 12:26 AM, Loic Dachary <loic@dachary.org> wrote:
> Hi Abhishek,
>
> It would be useful to add instructions on what dependencies to pull to run http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes. Something like
>
> virtualenv /tmp/foo
> . /tmp/foo/bin/activate
> pip install GitPython # I recognized the library from the import ;-)
> pip install ?? # I tried half a dozen but could not find one that matches the import github semantic
The module was githubpy (I agree there are too many of github python
modules around :-)) I added a basic argparser for the script; I've put
it up as a github repo at
https://github.com/theanalyst/ceph-release-helper
Let me know if you're facing any problems using it
Regards
Abhishek
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: release notes script dependencies
2015-05-06 4:27 ` Abhishek L
@ 2015-05-06 14:55 ` Loic Dachary
2015-05-06 16:19 ` Sage Weil
0 siblings, 1 reply; 6+ messages in thread
From: Loic Dachary @ 2015-05-06 14:55 UTC (permalink / raw)
To: Abhishek L; +Cc: Ceph Development
[-- Attachment #1: Type: text/plain, Size: 1271 bytes --]
Hi Abhishek,
On 06/05/2015 06:27, Abhishek L wrote:
> On Wed, May 6, 2015 at 12:26 AM, Loic Dachary <loic@dachary.org> wrote:
>> Hi Abhishek,
>>
>> It would be useful to add instructions on what dependencies to pull to run http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes. Something like
>>
>> virtualenv /tmp/foo
>> . /tmp/foo/bin/activate
>> pip install GitPython # I recognized the library from the import ;-)
>> pip install ?? # I tried half a dozen but could not find one that matches the import github semantic
>
> The module was githubpy (I agree there are too many of github python
> modules around :-)) I added a basic argparser for the script; I've put
> it up as a github repo at
> https://github.com/theanalyst/ceph-release-helper
>
> Let me know if you're facing any problems using it
It works :-) http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes amended accordingly.
Cheers
>
> Regards
> Abhishek
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
Loïc Dachary, Artisan Logiciel Libre
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: release notes script dependencies
2015-05-06 14:55 ` Loic Dachary
@ 2015-05-06 16:19 ` Sage Weil
2015-05-06 16:35 ` Loic Dachary
0 siblings, 1 reply; 6+ messages in thread
From: Sage Weil @ 2015-05-06 16:19 UTC (permalink / raw)
To: Loic Dachary; +Cc: Abhishek L, Ceph Development
On Wed, 6 May 2015, Loic Dachary wrote:
>
> Hi Abhishek,
>
> On 06/05/2015 06:27, Abhishek L wrote:
> > On Wed, May 6, 2015 at 12:26 AM, Loic Dachary <loic@dachary.org> wrote:
> >> Hi Abhishek,
> >>
> >> It would be useful to add instructions on what dependencies to pull to run http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes. Something like
> >>
> >> virtualenv /tmp/foo
> >> . /tmp/foo/bin/activate
> >> pip install GitPython # I recognized the library from the import ;-)
> >> pip install ?? # I tried half a dozen but could not find one that matches the import github semantic
> >
> > The module was githubpy (I agree there are too many of github python
> > modules around :-)) I added a basic argparser for the script; I've put
> > it up as a github repo at
> > https://github.com/theanalyst/ceph-release-helper
> >
> > Let me know if you're facing any problems using it
>
> It works :-) http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes amended accordingly.
Could we put the script in ceph.git/src/scripts or similar instead of a
separate repo? One less thing to clone...
sage
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: release notes script dependencies
2015-05-06 16:19 ` Sage Weil
@ 2015-05-06 16:35 ` Loic Dachary
2015-05-06 16:41 ` Abhishek L
0 siblings, 1 reply; 6+ messages in thread
From: Loic Dachary @ 2015-05-06 16:35 UTC (permalink / raw)
To: Sage Weil; +Cc: Abhishek L, Ceph Development
[-- Attachment #1: Type: text/plain, Size: 1302 bytes --]
On 06/05/2015 18:19, Sage Weil wrote:
> On Wed, 6 May 2015, Loic Dachary wrote:
>>
>> Hi Abhishek,
>>
>> On 06/05/2015 06:27, Abhishek L wrote:
>>> On Wed, May 6, 2015 at 12:26 AM, Loic Dachary <loic@dachary.org> wrote:
>>>> Hi Abhishek,
>>>>
>>>> It would be useful to add instructions on what dependencies to pull to run http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes. Something like
>>>>
>>>> virtualenv /tmp/foo
>>>> . /tmp/foo/bin/activate
>>>> pip install GitPython # I recognized the library from the import ;-)
>>>> pip install ?? # I tried half a dozen but could not find one that matches the import github semantic
>>>
>>> The module was githubpy (I agree there are too many of github python
>>> modules around :-)) I added a basic argparser for the script; I've put
>>> it up as a github repo at
>>> https://github.com/theanalyst/ceph-release-helper
>>>
>>> Let me know if you're facing any problems using it
>>
>> It works :-) http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes amended accordingly.
>
> Could we put the script in ceph.git/src/scripts or similar instead of a
> separate repo? One less thing to clone...
+1
>
> sage
>
--
Loïc Dachary, Artisan Logiciel Libre
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: release notes script dependencies
2015-05-06 16:35 ` Loic Dachary
@ 2015-05-06 16:41 ` Abhishek L
0 siblings, 0 replies; 6+ messages in thread
From: Abhishek L @ 2015-05-06 16:41 UTC (permalink / raw)
To: Loic Dachary; +Cc: Sage Weil, Ceph Development
[-- Attachment #1: Type: text/plain, Size: 1362 bytes --]
Loic Dachary writes:
> On 06/05/2015 18:19, Sage Weil wrote:
>> On Wed, 6 May 2015, Loic Dachary wrote:
>>>
>>> Hi Abhishek,
>>>
>>> On 06/05/2015 06:27, Abhishek L wrote:
>>>> On Wed, May 6, 2015 at 12:26 AM, Loic Dachary <loic@dachary.org> wrote:
>>>>> Hi Abhishek,
>>>>>
>>>>> It would be useful to add instructions on what dependencies to pull to run http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes. Something like
>>>>>
>>>>> virtualenv /tmp/foo
>>>>> . /tmp/foo/bin/activate
>>>>> pip install GitPython # I recognized the library from the import ;-)
>>>>> pip install ?? # I tried half a dozen but could not find one that matches the import github semantic
>>>>
>>>> The module was githubpy (I agree there are too many of github python
>>>> modules around :-)) I added a basic argparser for the script; I've put
>>>> it up as a github repo at
>>>> https://github.com/theanalyst/ceph-release-helper
>>>>
>>>> Let me know if you're facing any problems using it
>>>
>>> It works :-) http://tracker.ceph.com/projects/ceph-releases/wiki/HOWTO_write_the_release_notes amended accordingly.
>>
>> Could we put the script in ceph.git/src/scripts or similar instead of a
>> separate repo? One less thing to clone...
>
> +1
Sure, I'll send in a patch
>
>>
>> sage
>>
--
Abhishek
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 489 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-05-06 16:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-05 18:56 release notes script dependencies Loic Dachary
2015-05-06 4:27 ` Abhishek L
2015-05-06 14:55 ` Loic Dachary
2015-05-06 16:19 ` Sage Weil
2015-05-06 16:35 ` Loic Dachary
2015-05-06 16:41 ` Abhishek L
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox