mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Instead of using configparser and mysql.connector directly, change all Python scripts to use the config and db Python modules which are now accessible from a common location. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
55 lines
1.7 KiB
Python
Executable file
55 lines
1.7 KiB
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import pyalpm
|
|
import re
|
|
|
|
import aurweb.config
|
|
import aurweb.db
|
|
|
|
db_path = aurweb.config.get('aurblup', 'db-path')
|
|
sync_dbs = aurweb.config.get('aurblup', 'sync-dbs').split(' ')
|
|
servers = aurweb.config.get('aurblup', 'servers').split(' ')
|
|
|
|
|
|
def main():
|
|
blacklist = set()
|
|
providers = set()
|
|
repomap = dict()
|
|
|
|
h = pyalpm.Handle("/", db_path)
|
|
for sync_db in sync_dbs:
|
|
repo = h.register_syncdb(sync_db, pyalpm.SIG_DATABASE_OPTIONAL)
|
|
repo.servers = [server.replace("%s", sync_db) for server in servers]
|
|
t = h.init_transaction()
|
|
repo.update(False)
|
|
t.release()
|
|
|
|
for pkg in repo.pkgcache:
|
|
blacklist.add(pkg.name)
|
|
[blacklist.add(x) for x in pkg.replaces]
|
|
providers.add((pkg.name, pkg.name))
|
|
repomap[(pkg.name, pkg.name)] = repo.name
|
|
for provision in pkg.provides:
|
|
provisionname = re.sub(r'(<|=|>).*', '', provision)
|
|
providers.add((pkg.name, provisionname))
|
|
repomap[(pkg.name, provisionname)] = repo.name
|
|
|
|
conn = aurweb.db.Connection()
|
|
|
|
cur = conn.execute("SELECT Name, Provides FROM OfficialProviders")
|
|
oldproviders = set(cur.fetchall())
|
|
|
|
for pkg, provides in providers.difference(oldproviders):
|
|
repo = repomap[(pkg, provides)]
|
|
conn.execute("INSERT INTO OfficialProviders (Name, Repo, Provides) "
|
|
"VALUES (?, ?, ?)", [pkg, repo, provides])
|
|
for pkg, provides in oldproviders.difference(providers):
|
|
conn.execute("DELETE FROM OfficialProviders "
|
|
"WHERE Name = ? AND Provides = ?", [pkg, provides])
|
|
|
|
conn.commit()
|
|
conn.close()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|