Re: Bug#970873: ITP: ruby-ms-rest -- Azure Client Library for Ruby

2020-09-25 Thread Andrei POPESCU
Control: reassign -1 wnpp
Control: severity -1 wishlist
Control: owner -1 Abraham Raji 

On Jo, 24 sep 20, 21:05:20, Abraham Raji wrote:
> Package: wnppSeverity: wishlistOwner: Abraham Raji 
> X-Debbugs-CC: debian-devel@lists.debian.org* Package name    
> : ruby-ms-rest
>   Version : 0.7.6
>   Upstream Author : Copyright (c) 2015 Microsoft Corporation
> * URL : 
> https://github.com/Azure/azure-sdk-for-ruby/tree/master/runtime/ms_rest* 
> License : Expat
>   Programming Lang: Ruby
>   Description : Azure Client Library for Ruby MsRest is a library which 
> supports the clients (SDKs) generated with Autorest tool. It contains core 
> logic and helper classes for error handling and authentication. Usually it is 
> not supposed to be used as a standalone gem but only as a dependency for 
> generated client gems. Azure Client Library for Ruby.
> .
> This package is a dependency for the latest  version of Gitlab. I am a member 
> of the Debian Ruby team and with their help I'll maintain the package.
> Abraham Raji
> --
> Mea navis aëricumbens anguillis abundant.

Hello,

You mailer is messing up line breaks.

Kind regards,
Andrei
-- 
Looking after bugs assigned to unknown packages


signature.asc
Description: PGP signature


Re: Bug#970881: ITP: ruby-ms-rest-azure -- library which supports Azure clients generated with autorest tool

2020-09-25 Thread Andrei POPESCU
Control: reassign -1 wnpp
Control: severity -1 wishlist
Control: owner -1 Abraham Raji 

On Jo, 24 sep 20, 23:40:48, Abraham Raji wrote:
> Package: wnppSeverity: wishlistOwner: Abraham Raji 
> X-Debbugs-CC: debian-devel@lists.debian.org* Package name    
> : ruby-ms-rest-azure
>   Version : 0.12.0
>   Upstream Author : Copyright 2015 Microsoft Corporation
> * URL : 
> https://github.com/Azure/azure-sdk-for-ruby/tree/master/runtime/ms_rest_azure 
> * 
> License : Expat
>   Programming Lang: Ruby
>   Description : library which supports Azure clients generated with 
> autorest tool MsRestAzure is a library which supports the Azure clients 
> (SDKs) generated with Autorest tool. It contains core logic and helper 
> classes for error handling and authentication. Also it includes azure 
> specific logic like long polling functionality and Azure application 
> authentication. Usually it is not supposed to be used as a standalone gem but 
> only as a dependency for generated client gems.
> .
> This package is a dependency for the latest  version of Gitlab. I am a member 
> of the Debian Ruby team and with their help I'll maintain the package.
> Abraham Raji
> --
> Mea navis aëricumbens anguillis abundant.

Fixing the issues resulting from mangling of the line breaks.

Kind regards,
Andrei
-- 
Looking after bugs assigned to unknown packages


signature.asc
Description: PGP signature


Re: Pimp your shell - Debian developer tips?

2020-09-25 Thread Otto Kekäläinen
Hello!

ma 8. kesäk. 2020 klo 12.04 Arturo Borrero Gonzalez
(art...@debian.org) kirjoitti:
>
> On 5/27/20 9:06 PM, Otto Kekäläinen wrote:
> > Hello!
> >
> > Do we have Debian devs here who have pimped their shell heavily with custom
> > prompts, colors, command line fonts, shell window title hacks, perhaps 
> > using zsh
> > etc? Have you written blogs about you experiences, can you share some good 
> > reads
> > (with screenshots) of what you have done?
> >
> > I've read a bit on zsh and powerline and the like, but I am annoyed that all
> > those blog posts are quite superficial and do not mention security,
> > interoperability or performance aspects. Frankly any blog post that 
> > recommends
> > cloning random repos or even worse, running wget | sh something gives me 
> > chills.
...
> Take a look at liquidprompt(1).
>
> Is what I use everywhere!

This turned out to be my favourite tip. I've written about my
experiences and why I love it so much at
https://linuxnatives.net/2020/liquid-prompt in case others are
interested.

And thanks to Arturo for packaging it and for recently uploading the
latest version of it to Debian unstable!

- Otto



Re: Pimp your shell - Debian developer tips?

2020-09-25 Thread Lyndon Brown
Awesome :D. I took a look at liquidprompt and the article having just
seen the email I'm responding to. It'll take a little getting used to,
but I'm liking it. I've just been using plain defaults (gnome terminal,
bash/dash) here except one customisation of re-enabling the colour
prompt to better find it in large output. Thanks for bringing this to
my attention!

One issue though, the article suggests placing this:
```
# Ensure Gnome Terminal shows the prompt correctly
PROMPT_COMMAND='echo -ne "\033]2;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
PROMPT_COMMAND="history -a; history -c; history -r;$PROMPT_COMMAND"
```
into the .bashrc file, but not where is best to place it (or why it's
supposedly needed). Placing it at the end of the file, this results in
a prompt like this for me:

"${debian_chroot:+($debian_chroot)}lyndon@laptop:~$"

which is clearly not right.

Placing it just before this block though:
```
if [ "$color_prompt" = yes ]; then

PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033>
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
```
it seems to avoid that bug, but I don't see an immediate difference to
not having it at all...


On Fri, 2020-09-25 at 21:15 +0300, Otto Kekäläinen wrote:
> Hello!
> 
> ma 8. kesäk. 2020 klo 12.04 Arturo Borrero Gonzalez
> (art...@debian.org) kirjoitti:
> > On 5/27/20 9:06 PM, Otto Kekäläinen wrote:
> > > Hello!
> > > 
> > > Do we have Debian devs here who have pimped their shell heavily
> > > with custom
> > > prompts, colors, command line fonts, shell window title hacks,
> > > perhaps using zsh
> > > etc? Have you written blogs about you experiences, can you share
> > > some good reads
> > > (with screenshots) of what you have done?
> > > 
> > > I've read a bit on zsh and powerline and the like, but I am
> > > annoyed that all
> > > those blog posts are quite superficial and do not mention
> > > security,
> > > interoperability or performance aspects. Frankly any blog post
> > > that recommends
> > > cloning random repos or even worse, running wget | sh something
> > > gives me chills.
> ...
> > Take a look at liquidprompt(1).
> > 
> > Is what I use everywhere!
> 
> This turned out to be my favourite tip. I've written about my
> experiences and why I love it so much at
> https://linuxnatives.net/2020/liquid-prompt in case others are
> interested.
> 
> And thanks to Arturo for packaging it and for recently uploading the
> latest version of it to Debian unstable!
> 
> - Otto
>