APT dists merge provides a tool and a library to merge dists/
contents for APT repository.
Generally, you should use more general APT repository management tool such as aptly and reprepro.
APT dists merge is useful when you want to manage pool/
by yourself and add .deb
s incrementally without keeping all .deb
s for the target APT repository on local.
Use cases:
gem install apt-dists-merge
Tool:
apt-dists-merge --base base/dists/ --new new/dists/ --output merged/dists/
Library:
require "apt-dists-merge"
merger = APTDistsMerge::Merger.new("base/dists/", "new/dists/")
merger.merge("merged/dists/")
The MIT license. See LICENSE.txt
for details.