Your message dated Mon, 10 Apr 2017 08:45:57 -0400
with message-id <[email protected]>
and subject line Re: Bug#840231: src:neovim: FTBFS if name of building user
contains a digit
has caused the Debian Bug report #840231,
regarding src:neovim: FTBFS if name of building user contains a digit
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
840231: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840231
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:neovim
Version: 0.1.5-6
Severity: normal
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Dear Maintainer,
the way debian/rules extracts the UID/GID of the current user fails when the
user name contains a digit:
sur5r@samsa:~$ id | cut -d' ' -f 1 | egrep -o '[0-9]+'
2000
5
sur5r@samsa:~$
I'd suggest switching to "id -u" and "id -g", respectively.
Cheers,
sur5r
-----BEGIN PGP SIGNATURE-----
iQIcBAEBCgAGBQJX+o6dAAoJEEzyshj1Ta49GzwQAL+p8po/gamPUi7mY8Q7xffM
+LSjZtdjhzrAt1xB+EB9e22jr1ixXPXGM4999KiFZ+UufdQ8B2BC59Ifw/DjakcT
VuTEtrustGUzZhcTec7zP3S9TtzS2+nnW+8Jw7JcRBTa2Ac3gISZy4hqCDA7bIQP
V7sDIFD8T+NZP7sShivXl71Xcf75VIH0AJxOaGXVOkPllNZvWJ4CqT9hguhBOcT3
MQna4bqc3YdoA4w/tE0oMeNWvSW/dy4+nwWpp8LXEwdsQEb22BS5iIhbxLoLvz+5
fL5jB+aHezafP+9KY4S9g7Lpj7IpyA2TJH5FE8h3hf1LWnrUkhTjufVXwpRhBfY0
O8+LujcJDKErlEXaLUQDSioSOLQ5yTmpX83EqcE4R1BFgsSaf/9OGy3TN95v4u4j
H8Px3BpJJ0871DTU4GL50pxHTIVm3Hgs6ykmIQFMKysxpFrL/xrhCxrMMVMdE7D5
LvPZADyiH+ruZFC+es5I7GTLvds89rjOu/vLNhJ7nIWIcdAlyehHCtYfca6Cp4FR
DZEGBQjFppHM/CIjZTJTe1ispFeiYrEwvEMgComhBkPT7cgXW06Syd7Np3RYNe4B
B5Z8a8DL6jt/InSPgDR5GLZzdrMrLYyUZvlFt7MXJM88+4eioCQ4wlTPApQBEqVV
B1hOsGoVKEIltHq7PGsj
=y6o9
-----END PGP SIGNATURE-----
--- debian/rules.orig 2016-10-09 20:27:43.417812556 +0200
+++ debian/rules 2016-10-09 20:28:02.777957447 +0200
@@ -19,8 +19,8 @@
UNITTEST = unittest
endif
-ID = $(shell id | cut -d' ' -f 1 | egrep -o '[0-9]+')
-GID = $(shell id | cut -d' ' -f 2 | egrep -o '[0-9]+')
+ID = $(shell id -u)
+GID = $(shell id -g)
%:
dh $@ --parallel
--- End Message ---
--- Begin Message ---
Version: 0.1.5-7
On Sun, Oct 09, 2016 at 03:28:18PM -0400, James McCoy wrote:
> On Sun, Oct 09, 2016 at 08:38:27PM +0200, Jakob Haufe wrote:
> > the way debian/rules extracts the UID/GID of the current user fails when the
> > user name contains a digit:
> >
> > sur5r@samsa:~$ id | cut -d' ' -f 1 | egrep -o '[0-9]+'
> > 2000
> > 5
> > sur5r@samsa:~$
> >
> > I'd suggest switching to "id -u" and "id -g", respectively.
>
> Thanks! I'm not sure how I missed that in the man page. :)
Somehow this didn't get closed when I uploaded the fix. Closing now.
Cheers,
--
James
GPG Key: 4096R/91BF BF4D 6956 BD5D F7B7 2D23 DFE6 91AE 331B A3DB
--- End Message ---