Exemplo de um pacote que tem o mesmo nome em duas distros diferentes, mas se refere a projetos upstream não relacionados para cada um deles?

2

Estou pensando na organização de pacotes de código aberto em diferentes distribuições, e um dos problemas que podem surgir é que diferentes distribuições decidem atribuir um nome de pacote diferente à mesma coisa ou ter um pacote com o mesmo nome. que se refere a uma coisa em uma distro e algo completamente diferente em outra.

Existe algum exemplo prático deste último, ou é apenas uma possibilidade teórica? Eu procurei por um tempo e não encontrei um exemplo real que eu pudesse apontar e dizer "aqui, este cenário realmente aconteceu".

    
por MaxVT 15.08.2015 / 14:02

1 resposta

5

docker

Ubuntu 15.04:

$ lsb_release -rd
Description:    Ubuntu 15.04
Release:    15.04

$ apt-cache show docker
Package: docker
...
Description-en: System tray for KDE3/GNOME2 docklet applications
 Docker is a docking application (WindowMaker dock app) which acts as a system
 tray for any desktop environment, allowing you to have a system tray    without
 running the KDE/GNOME panel Docker was designed to work with Openbox 2, but it
 should work fine in any window manager.
Description-md5: 032a37ba6228c22cbca1c0b960030eaa
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu

Fedora 22:

$ cat /etc/os-release
NAME=Fedora
VERSION="22 (Twenty Two)"

$ dnf info docker
...
Available Packages
Name        : docker
...
Description : Docker is an open-source engine that automates the deployment of any
        : application as a lightweight, portable, self-sufficient container that will
        : run virtually anywhere.
        :
        : Docker containers can encapsulate any payload, and will run consistently on
        : and between virtually any server. The same container that a developer builds
        : and tests on a laptop will run at scale, in production*, on VMs, bare-metal
        : servers, OpenStack clusters, public instances, or combinations of the above.
    
por 15.08.2015 / 14:22