I'm building a number of packages from one source package, I'd like one of my packages to depend on another package explicitly on the version that is being built and no-other - ie the current version being built.
Depends: original-package-min (= "what do I put here"),
I suspect there's an obvious answer, but I'm not finding it anywhere.
Background:
I'm trying to split a package into two, a minimal and a full version - something like this. The -min package exists because when building for a new distribution there can be circular (runtime) dependencies.
Package: original-package-min
Architecture: all
Depends: ${misc:Depends}
Description: Minimal version of original package
Useful when bootstrapping new or incomplete distributions
Package: original-package
Architecture: all
Depends: original-package-min (= "what do I put here"),
# lots of dependencies missing
${misc:Depends}
Description: Original package
Does what the original package does