Re: CVES Listing issue.

2020-02-23 Thread Eli Schwartz
On 2/24/20 12:48 AM, Vijay Kumar Kamannavar wrote: > Hello Team, > > https://security.archlinux.org/issues/all is not listing all CVES. This mailing list is not related to the https://security.archlinux.org website. It is only for development of the https://aur.archlinux.org website. You could

CVES Listing issue.

2020-02-23 Thread Vijay Kumar Kamannavar
Hello Team, https://security.archlinux.org/issues/all is not listing all CVES. Thanks, Vijay

Re: [PATCH] migrate the database schema to SQLAlchemy

2020-02-23 Thread Lukas Fleischer
On Sat, 22 Feb 2020 at 23:28:25, Frédéric Mangano-Tarumi wrote: > Lukas Fleischer [2020-02-22 22:43:31 +0100] > > > +5) Create a new MySQL database and a user and import the aurweb SQL > > > schema: > > > + > > > +$ python -m aurweb.initdb > > > + > > > > I noticed that this step is slightly

[PATCH 2/2] Disable Alembic support on test databases

2020-02-23 Thread Frédéric Mangano-Tarumi
--- aurweb/initdb.py | 12 +--- test/setup.sh| 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/aurweb/initdb.py b/aurweb/initdb.py index c02fb961..91777f7e 100644 --- a/aurweb/initdb.py +++ b/aurweb/initdb.py @@ -36,14 +36,17 @@ def run(args): # Ensure

[PATCH] Change the extension of TAP test suites to .t

2020-02-23 Thread Frédéric Mangano-Tarumi
This is the common convention for TAP, and makes harnesses like prove automatically detect them. Plus, test suites don’t have to be shell scripts anymore. --- test/Makefile| 2 +- test/{t1100-git-auth.sh => t1100-git-auth.t} | 0

Re: [PATCH] Set up Alembic for database migrations

2020-02-23 Thread Frédéric Mangano-Tarumi
Frédéric Mangano-Tarumi [2020-02-22 22:31:26 +0100] > diff --git a/aurweb/initdb.py b/aurweb/initdb.py > index e3e96503..c02fb961 100644 > --- a/aurweb/initdb.py > +++ b/aurweb/initdb.py > @@ -31,10 +33,17 @@ def feed_initial_data(conn): > > > def run(args): > +# Ensure Alembic is fine