Happy new year!
On 1/7/25 09:44, Petter Reinholdtsen wrote:
[Diederik de Haas]
Also, my bug is essentially "New upstream version" which normally gets
a severity wishlist, but when I looked at dkms upstream and saw the
massive CI failures which were fixed with newer versions, I bumped the
severity to important.
OK, then I guess this will have to wait for a newer upstream version of
dkms.
The CI failures should be fixed with your upload ...
I'm currently working on getting some further changes upstream (likely 3
or 4 PR of 5-10+ commits each), will update the Debian package
afterwards, will need to go through NEW for at least one new test
package.
Don't worry about the not-source-only upload, will fix that with some
new upstream soon. It does not really matter if it does not yet migrate.
gbp:error: Import of ../dkms_3.1.1.orig.tar.gz failed: Can't find upstream
vcs tag at 'v3.1.1'
Sounds like you don't have a remote for the upstream repository ...
git remote add upstream $(sed -rn 's/Repository: //p' debian/upstream/metadata)
or as a potential d/rules target
ifneq (,$(wildcard .git))
upstream:
git remote show $@ >/dev/null 2>&1 || git remote add $@ $(shell sed -rn
's/Repository: //p' debian/upstream/metadata)
git fetch $@ --prune
endif
Andreas