# Installer xdelta avec Homebrew, apt, dnf, MacPorts, Nix, scoop, zypper, apk, pacman

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de xdelta pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:xdelta
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install xdelta
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install xdelta
```

  Preuve: MacPorts ports tree: archivers/xdelta/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- Debian apt (92%):

```sh
sudo apt install xdelta
```

  Preuve: Debian stable package indexes: xdelta from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install xdelta
```

  Preuve: Fedora Rawhide package metadata: xdelta from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#xdelta
```

  Preuve: nixpkgs package indexes: pkgs/by-name/xd/xdelta/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- zypper (92%):

```sh
sudo zypper install xdelta3
```

  Preuve: openSUSE Tumbleweed package metadata: xdelta3 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

- apk (92%):

```sh
sudo apk add xdelta3
```

  Preuve: Alpine Linux edge package indexes: xdelta3 from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- pacman (92%):

```sh
sudo pacman -S xdelta3
```

  Preuve: Arch Linux sync databases: xdelta3 from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

### Windows

- Scoop (92%):

```sh
scoop install main/xdelta
```

  Preuve: Scoop official bucket manifest trees: bucket/xdelta.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

## Faits du paquet

- **Clé du paquet:** brew:xdelta
- **Gestionnaire de paquets:** Homebrew
- **Version:** 3.2.0
- **Résumé source:** Binary diff, differential compression tools
- **Page d'accueil:** <https://github.com/jmacd/xdelta>
- **Dépôt:** <https://github.com/jmacd/xdelta>
- **Dernière mise à jour:** 2026-06-21T10:48:23Z
- **Généré:** 2026-08-03T19:37:03+00:00

## exécutables

- xdelta3 (alias)

## Comportement d'installation

- Bouteille: non disponible

## Version et fraîcheur

- page générée: 2026-08-03
- version du gestionnaire: 3.2.0
## Historique du projet et usages

xdelta is a long-running binary differencing and delta-compression project. The modern xdelta3 command and library implement VCDIFF/RFC 3284 streams, letting users create compact patch files between related binary inputs and reconstruct targets from a source plus delta.

### Historique du projet

The xdelta3 README carries copyright years beginning in 2001 and describes the project as a command-line interface and source distribution for VCDIFF differential compression. RFC 3284, published in June 2002 and co-authored by Josh MacDonald, standardized the VCDIFF generic differencing and compression data format that xdelta3 implements.

The public Git history in the current repository starts with 2006 source snapshots and concentrated work around large-file and checksum behavior. By the 3.0 series, xdelta3 had become the maintained branch users generally meant when they installed an xdelta package.

The current upstream documentation presents xdelta version 3 as both a C library and a command-line tool, with the maintained 3.2.x series using CMake, optional liblzma secondary compression, static release binaries, and an embeddable libxdelta3 API.

### Historique d'adoption

xdelta adoption has always followed the practical need to ship changes without shipping whole files: game patches, ROM patching communities, software update systems, and package workflows all benefit from binary deltas. Its VCDIFF basis matters because the delta format is documented outside a single implementation.

Package availability is broad in the input facts: Alpine, Homebrew, Debian/Ubuntu, Fedora, MacPorts, Nix, Arch, Scoop, and openSUSE-family packages all carry xdelta or xdelta3 names. That cross-platform packaging matches upstream release binaries for Linux, macOS, and Windows.

### Modes d'utilisation

The core command pattern is encode with an old source file, a new target file, and an output delta, then decode later with the same source and the delta to reconstruct the target. The upstream README shows xdelta3 -e and -d examples with -s for the source file.

Modern xdelta3 can also be embedded as a library through xdelta3.h and build-system integration. This matters for software that wants VCDIFF behavior internally rather than shelling out to the xdelta3 executable.

### Pourquoi les passionnés de paquets s'y intéressent

xdelta is a package-nerd staple because it sits at the intersection of compression, patch distribution, archival workflows, and reproducible binary transformations. It is small enough to be a CLI utility, but backed by a standards-track format and decades of compatibility expectations.

For package indexes, it is also a naming lesson: users may search for xdelta, xdelta3, or VCDIFF depending on platform and era, while the executable commonly exposed by modern packages is xdelta3.

### Chronologie

- 2001: xdelta3 README copyright years begin, indicating early xdelta3 development.
- 2002-06: RFC 3284 publishes the VCDIFF data format.
- 2006-08-27: First source snapshot in the current GitHub repository history.
- 2015-03-30: v3.0.9 tag in the long-lived 3.0 release line.
- 2016-01-07: v3.0.11 and v3.1.0 tags.
- 2026-06-20: v3.2.0 tag and maintained 3.2.x series documented upstream.

### Related projects

- VCDIFF/RFC 3284: standardized delta format implemented by xdelta3.
- XZ Utils/liblzma: optional secondary compression support in upstream builds.
- BLAKE3: used by modern xdelta3 armor mode for whole-file verification.
- bsdiff and courgette-style binary patchers: related binary-delta tools with different formats and tradeoffs.

### Sources

- Git history and tags: https://github.com/jmacd/xdelta
- README, jmacd/xdelta: https://github.com/jmacd/xdelta#readme
- RFC 3284: https://www.rfc-editor.org/rfc/rfc3284
- Xdelta documentation: https://jmacd.github.io/xdelta/
- xdelta3 README: https://github.com/jmacd/xdelta/blob/main/xdelta3/README.md


## Notes de sécurité

broad file, network, media, or database tool signal.

- **Risque Geiger:** blue / moyen
- broad file, network, media, or database tool signal

## Autres enregistrements de gestionnaires de paquets

- Debian apt - libxdelta2-dev - 1.1.3-10.7: normalized package name match | Debian stable package indexes: libxdelta2-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Xdelta development files
- Debian apt - libxdelta2t64 - 1.1.3-10.7: normalized package name match | Debian stable package indexes: libxdelta2t64 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Xdelta runtime library
- Debian apt - xdelta - 1.1.3-10.7: normalized package name match | Debian stable package indexes: xdelta from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | A diff utility which works with binary files
- Nix - xdelta: normalized package name match | nixpkgs package indexes: pkgs/by-name/xd/xdelta/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - libxdelta2-dev - 1.1.3-10.6build1: normalized package name match | Ubuntu 24.04 LTS package indexes: libxdelta2-dev from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Xdelta development files
- Ubuntu apt - libxdelta2t64 - 1.1.3-10.6build1: normalized package name match | Ubuntu 24.04 LTS package indexes: libxdelta2t64 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Xdelta runtime library
- Ubuntu apt - xdelta - 1.1.3-10.6build1: normalized package name match | Ubuntu 24.04 LTS package indexes: xdelta from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | A diff utility which works with binary files
- dnf - xdelta - 3.1.0-25.fc45: normalized package name match | Fedora Rawhide package metadata: xdelta from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | A binary file delta generator | https://github.com/jmacd/xdelta
- zypper - xdelta3 - 3.1.0-6.5: normalized package name match | openSUSE Tumbleweed package metadata: xdelta3 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | A diff utility which works with binary files | https://github.com/jmacd/xdelta-gpl
- MacPorts - xdelta: normalized package name match | MacPorts ports tree: archivers/xdelta/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Scoop - main/xdelta: normalized package name match | Scoop official bucket manifest trees: bucket/xdelta.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
- Debian apt - xdelta3 - 3.0.11-dfsg-1.2: installed executable or alias match | Debian stable package indexes: xdelta3 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Diff utility which works with binary files | http://xdelta.org/
- Ubuntu apt - xdelta3 - 3.0.11-dfsg-1.2: installed executable or alias match | Ubuntu 24.04 LTS package indexes: xdelta3 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Diff utility which works with binary files | http://xdelta.org/
- apk - xdelta3 - 3.1.0-r2: installed executable or alias match | Alpine Linux edge package indexes: xdelta3 from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | A diff utility which works with binary files | http://xdelta.org/
- apk - xdelta3-doc - 3.1.0-r2: installed executable or alias match | Alpine Linux edge package indexes: xdelta3-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | A diff utility which works with binary files (documentation) | http://xdelta.org/
- pacman - xdelta3 - 3.2.0-1: installed executable or alias match | Arch Linux sync databases: xdelta3 from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Diff utility for binary files | https://github.com/jmacd/xdelta


## Combined YAML source

View the package source record on GitHub. [combined/xdelta.yml](https://github.com/mxcl/pkgdb/blob/main/combined/xdelta.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
