Re: [PATCH] completion: move out of contrib

2014-05-07 Thread Felipe Contreras
Junio C Hamano wrote: > Felipe Contreras writes: > > > As an example of all the hacks needed by a real distribution package, > > here's the stuff ArchLinux packagers have to do: > > > > # bash completion > > mkdir -p "$pkgdir"/usr/share/bash-completion/completions/ > > install -m644 ./contr

Re: [PATCH] completion: move out of contrib

2014-05-07 Thread Junio C Hamano
Felipe Contreras writes: > As an example of all the hacks needed by a real distribution package, > here's the stuff ArchLinux packagers have to do: > > # bash completion > mkdir -p "$pkgdir"/usr/share/bash-completion/completions/ > install -m644 ./contrib/completion/git-completion.bash > "

Re: [PATCH] completion: move out of contrib

2014-05-07 Thread Felipe Contreras
Felipe Contreras wrote: > Yes, *if* they have been packaging them, they have a way. But what if > they haven't been doing so? > > And for the ones that have a way, now they need one hack less. As an example of all the hacks needed by a real distribution package, here's the stuff ArchLinux package

Re: [PATCH] completion: move out of contrib

2014-05-06 Thread Felipe Contreras
Junio C Hamano wrote: > Felipe Contreras writes: > > > These have been stable and widely used for quite a long time, they even > > have tests outside of the contrib area, and most distributions ship > > them, so they can be considered part of the core already. > > > > Let's move them out of contr

Re: [PATCH] completion: move out of contrib

2014-05-06 Thread Junio C Hamano
Felipe Contreras writes: > These have been stable and widely used for quite a long time, they even > have tests outside of the contrib area, and most distributions ship > them, so they can be considered part of the core already. > > Let's move them out of contrib and install them by default. > >

[PATCH] completion: move out of contrib

2014-05-02 Thread Felipe Contreras
These have been stable and widely used for quite a long time, they even have tests outside of the contrib area, and most distributions ship them, so they can be considered part of the core already. Let's move them out of contrib and install them by default. Signed-off-by: Felipe Contreras --- M