서로 다른 두 배포판에서 이름이 같지만 각 배포판이 관련 없는 업스트림 프로젝트를 참조하는 패키지의 예는 무엇입니까?

서로 다른 두 배포판에서 이름이 같지만 각 배포판이 관련 없는 업스트림 프로젝트를 참조하는 패키지의 예는 무엇입니까?

여러 배포판에 걸친 오픈 소스 패키지 구성에 대해 생각하고 있는데 발생할 수 있는 문제 중 하나는 여러 배포판이 동일한 항목에 다른 패키지 이름을 할당하기로 결정하거나 하나의 배포판에서 동일한 이름을 가진 패키지를 참조하는 것입니다. 동일한 것이어야 하고 다른 배포판에서는 완전히 다른 것이어야 합니다.

후자의 실제적인 예가 있습니까, 아니면 단지 이론적 가능성입니까? 나는 한동안 검색해 보았지만 "여기, 실제로 이런 일이 발생합니다"라고 가리키고 말할 수 있는 실용적인 예를 찾지 못했습니다.

답변1

docker

우분투 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

페도라 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.

관련 정보