X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=update-archive%2Fapt-ftparchive.conf.in;h=c78c35ccc6b0c15eafbe43b13fe886d6728c8c31;hb=839efe6d8548bf2453b282bd49cf1deca4ad079f;hp=2042d57e395c99e845fb7fbceddc3bb87e45e78e;hpb=4899d5ff358df3d3a668e3439b834b8800e97ae5;p=git-tools-moved-to-github.git diff --git a/update-archive/apt-ftparchive.conf.in b/update-archive/apt-ftparchive.conf.in index 2042d57..c78c35c 100644 --- a/update-archive/apt-ftparchive.conf.in +++ b/update-archive/apt-ftparchive.conf.in @@ -1,34 +1,37 @@ -// $Id: apt-ftparchive.conf.in,v 1.1.1.1 2006-06-15 11:53:00 adam Exp $ -// This config is for us with the pool-structure for the packages, thus we -// don't use a Tree Section in here +APT::FTPArchive::Release { + Origin "Index Data"; + Label "Index Data"; + Suite "@dist@"; + Codename "@dist@"; + Architectures "@architectures@"; + Components "@sections@"; + Description "Index Data Debian packages"; +} -// The debian archive should be in the current working dir Dir { ArchiveDir "."; - CacheDir "."; + OverrideDir "."; + CacheDir "tmp"; }; -// Create Packages, Packages.gz and Packages.bz2, remove what you don't need Default { + Packages::Extensions ".deb"; Packages::Compress ". gzip bzip2"; Sources::Compress ". gzip bzip2"; Contents::Compress ". gzip bzip2"; }; -// Includes the main section. You can structure the directory tree under -// ./pool/main any way you like, apt-ftparchive will take any deb (and -// source package) it can find. This creates a Packages a Sources and a -// Contents file for these in the main section of the sid release -BinDirectory "pool/@dist@" { - Packages "dists/@dist@/main/binary-i386/Packages"; - Sources "dists/@dist@/main/source/Sources"; - Contents "dists/@dist@/Contents-i386"; -} +TreeDefault { + Directory "pool/$(DIST)/$(SECTION)/$(ARCH)"; + SrcDirectory "pool/$(DIST)/$(SECTION)/source"; + Packages "$(DIST)/$(SECTION)/binary-$(ARCH)/Packages"; + Sources "$(DIST)/$(SECTION)/source/Sources"; + Contents "$(DIST)/Contents-$(ARCH)"; +}; -// By default all Packages should have the extension ".deb" -Default { - Packages { - Extensions ".deb"; - }; +Tree "dists/@dist@" { + Sections "@sections@"; + Architectures "source @architectures@"; + SrcOverride "override"; };