diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-21 18:41:43 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-21 22:05:42 +0200 |
commit | 16765d553233e50b326456393108729b1f3828bf (patch) | |
tree | 66b695fe8595d0212723267eeb775b4dc234dd63 /upgrading/4.2.0.txt | |
parent | 4411a55ec9a131619e8e8f33c2fe2b8d3da21ee2 (diff) | |
download | aur-16765d553233e50b326456393108729b1f3828bf.tar.gz aur-16765d553233e50b326456393108729b1f3828bf.tar.xz |
Track providers in the official repositories
Maintain a list of virtual provisions of packages from the official
binary package repositories. The list can be updated using the aurblup
script, e.g. via a cronjob.
This allows for adding proper links to package dependencies: If an AUR
package depends on a package from the official repositories (or on a
name provided by a package from the official repositories), add a link
to the corresponding archweb package details page. If an AUR package
depends on another AUR package (or on a name provided by another AUR
package), add a link to the corresponding aurweb package details page.
Otherwise, just display the name and do not add a link at all.
Fixes FS#46549.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'upgrading/4.2.0.txt')
-rw-r--r-- | upgrading/4.2.0.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/upgrading/4.2.0.txt b/upgrading/4.2.0.txt new file mode 100644 index 00000000..37cbeae1 --- /dev/null +++ b/upgrading/4.2.0.txt @@ -0,0 +1,11 @@ +1. Add a new table to store providers from official packages: + +---- +CREATE TABLE OfficialProviders ( + ID INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, + Name VARCHAR(64) NOT NULL, + Provides VARCHAR(64) NOT NULL, + PRIMARY KEY (ID) +) ENGINE = InnoDB; +CREATE UNIQUE INDEX ProviderNameProvides ON OfficialProviders (Name, Provides); +---- |