You are not logged in.
Pages: 1
Why is there a .FILELIST in a package?
If all the files are in a package than pacman can generate this while you install the package, or do I forget something?
Thanks,
David
Offline
pacman -Ql foo
Offline
The .FILELIST file is generated during the creation of a package to keep track all files and directory contained in the package.
Offline
miqorz,
That command shows the files a package uses but why is this in a seperated file. Isn't it possible that when pacman installs foo that it sees what files are in the package and generates a list?
Offline
fetreney2000,
What do you mean with 'keep track'. All the files are gzipped in a tarball so they can't get lost, can they?
I'm sure there's a good reason to have the .FILELIST but I think it would be more logic that the list is created during the installation and not during the creation of the package
Offline
it's a minor performance optimization - it's faster to read a file than to unzip a tarball and scan all files unzipped...
it adds almost nothing to the package size, so it's really not important...
Offline
it's a minor performance optimization - it's faster to read a file than to unzip a tarball and scan all files unzipped...
it adds almost nothing to the package size, so it's really not important...
Not to mention it makes a HELL of alot more sense to do it BEFORE the install to avoid file conflicts and it makes finding them faster.
Offline
ok you convinced me ![]()
thanks for clearing this up,
david
Offline
it makes it faster to check what files will be installed with the package, that's the only reason I can think of,
arch + gentoo + initng + python = enlisy
Offline
Pages: 1