I'd like to rebuild a source package that's in the ubuntu repo, changing nothing, except that I would like to build it without a subset of the patches it comes with. I have no experience doing such things.

Let's say the package is called foo (it's actually called network-manager-gnome in my case) and the patches I don't want are called patch1 and patch2. At which step do I tell it to ignore these patches? When extracting with {dpkg-source -x foo_version-revision.dsc}? Or when building with {dpkg-buildpackage -rfakeroot -b}? Or sometime in between extracting and calling dpkg-buildpackage?

It seems like the build side of dpkg-source has options for ignoring patches matching a given regular expressions. Is this what I should be using, passing them in with --source-option through dpkg-buildpackage?

Thanks!

link|improve this question

60% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Apply your changes (such as reversing some patches) before building. dpkg-buildpackage simply builds the files in the directory you specify.

link|improve this answer
Oooh I see. I hadn't noticed that patch had a reverse option. So I can just do patch -R -p0 < patch1.patch to undo the patch which was automatically applied during extraction. Thanks for you help. – Ian Hincks Jan 26 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.