[Bug 605423] Review Request: python-dulwich - A python implementation of the Git file formats and protocols

bugzilla at redhat.com bugzilla at redhat.com
Sun Jul 4 15:22:48 UTC 2010


Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


https://bugzilla.redhat.com/show_bug.cgi?id=605423

--- Comment #6 from Christian Krause <chkr at plauener.de> 2010-07-04 11:22:48 EDT ---
Thanks for the new package. Everything is fixed now besides the regexp to
filter out the provides/requires:

The used syntax doesn't work:
$ echo "_objects.so"| grep -v -e '_objects.so|_pack.so'
_objects.so
$

It is necessary to use "-E" for "extended regexp":
$ echo "_objects.so"| grep -v -E '_objects.so|_pack.so'
$

If you change the package for this, please just remove also the commented line
with "##grep..." in the %build section. ;-)

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the package-review mailing list