Home » Questions » Computers [ Ask a new question ]

Ubuntu: What are they doing to the vanilla sources?

Ubuntu: What are they doing to the vanilla sources?

Correct me if I am wrong

Asked by: Guest | Views: 251
Total answers/comments: 2
Guest [Entry]

"apt-get source package

Will get you two or three files: ""original"" tarball (sometimes modified, but rarely... the only change is often the file name) -- named *.orig.tar.gz, the debian changes in form of *.diff.gz file, and some metadata. Sometimes the .diff.gz file is missing: this means that package is built only for debian/ubuntu, to handle some very-specific distro work... like dak which manages the debian archive uploads. Then all the code is in the original tarball.

Reasons are multiple: fixing bugs for software (when upstream doesn't want to), adapting software to debian (f.e. adjusting file paths). Debian wants all packages to comply with FileSystem Hierarchy Standard, and this is a very common adjustment.

The original tarball is sometimes not the same as upstream created because of packaging issues. I remember seeing a program distributed in several tarballs, while they generated only one executable -- the debian maintainer decided to make its own ""original"" tarball consisting of tarred upstream tarballs. The other reason is when sometimes debian maintainer decides to add some binary file to the package. It is difficult to put binaries in inside the .diff.gz file, so the original tarball is modified (and this is usually clearly described in the documentation for package).

Sometimes (very rarely) the licensing is the issue. It happens that the upstream doesn't understand or want to understand implications due to some licenses. Debian wants to have all licensing issues resolved, so it happens that the debian patches do some specific things, or the original tarball is stripped from illegaly distributed files.

It also happens that some content is licensed so that you can use it but not distribute. Usually (f.e. for msttcorefonts, flashplugin-nonfree) the debian package is only some kind of an installer for a package, and no original content is inside the package.

pine package is also interesting, because the license forbids to distribute compiled forms. Therefore there is no pine binary package, but there is pine source package. You can download it using the above command and compile into a debian package for yourself."
Guest [Entry]

Think of it this way. If you installed the program from the original source tarball via ./configure; make; make install, you still have some work to do. You have to make menu entries, you have to set up config files, and such. You might have to give ./configure a --prefix. The distro maintainers' changes often amount to nothing more than automation of these mundane tasks.