From: Peter Michael Green Date: Wed, 18 Jan 2017 23:37:12 +0000 (+0000) Subject: dgit: aptget archive access method X-Git-Tag: archive/debian/3.6~1 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=94a7b24db8f6ef620aed4a449f11644db5a0e788 dgit: aptget archive access method Add dummy implementation of file_in_archive_aptget copied from file_in_archive_dummycat. Re:#851697. --- diff --git a/debian/changelog b/debian/changelog index b1c7db17..8f831732 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ dgit (3.6~) unstable; urgency=medium Bugfixes: * Actually use the url from a Dgit .dsc field naming an unknown distro. Closes:#851728. + * Add dummy implementation of file_in_archive_aptget copied from + file_in_archive_dummycat. Re:#851697. [ Peter Green ] Minor improvements: * Use `confess' to print a stack trace in a couple of internal error diff --git a/dgit b/dgit index b7888afb..b508ae67 100755 --- a/dgit +++ b/dgit @@ -1319,6 +1319,8 @@ sub archive_query_aptget { return [ (getfield $pre_dsc, 'Version'), $uri ]; } +sub file_in_archive_aptget () { return undef; } + #---------- `dummyapicat' archive query method ---------- sub archive_query_dummycatapi { archive_query_ftpmasterapi @_; }