diff options
author | 2016-12-27 21:03:09 +0100 | |
---|---|---|
committer | 2017-01-04 12:14:43 +0200 | |
commit | 7bae02551670dc6a88fc360f32335d4557e1a06b (patch) | |
tree | d4914bcfb54f8ef132e6cfbb060c5436fbfb4713 /media-video/griffith | |
parent | media-gfx/wally: remove unused patch (diff) | |
download | gentoo-7bae02551670dc6a88fc360f32335d4557e1a06b.tar.gz gentoo-7bae02551670dc6a88fc360f32335d4557e1a06b.tar.bz2 gentoo-7bae02551670dc6a88fc360f32335d4557e1a06b.zip |
media-video/griffith: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3255
Diffstat (limited to 'media-video/griffith')
-rw-r--r-- | media-video/griffith/files/griffith-0.12.1-sqlalchemy-0.7.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/media-video/griffith/files/griffith-0.12.1-sqlalchemy-0.7.patch b/media-video/griffith/files/griffith-0.12.1-sqlalchemy-0.7.patch deleted file mode 100644 index d3e6a5b6e182..000000000000 --- a/media-video/griffith/files/griffith-0.12.1-sqlalchemy-0.7.patch +++ /dev/null @@ -1,39 +0,0 @@ -Index: griffith-0.12.1/lib/add.py -=================================================================== ---- griffith-0.12.1.orig/lib/add.py -+++ griffith-0.12.1/lib/add.py -@@ -26,7 +26,7 @@ import logging - import os - - import gtk --from sqlalchemy.exceptions import IntegrityError -+from sqlalchemy.exc import IntegrityError - - import quick_filter - import db -Index: griffith-0.12.1/lib/db/tables.py -=================================================================== ---- griffith-0.12.1.orig/lib/db/tables.py -+++ griffith-0.12.1/lib/db/tables.py -@@ -64,7 +64,7 @@ movies = Table('movies', metadata, - Column('poster_md5', ForeignKey(posters.c.md5sum)), - Column('loaned', Boolean, nullable=False, default=False), - Column('seen', Boolean, nullable=False, default=False), -- Column('rating', SmallInteger(2)), -+ Column('rating', SmallInteger), - Column('color', SmallInteger), - Column('cond', SmallInteger), # MySQL will not accept name "condition" - Column('layers', SmallInteger), -Index: griffith-0.12.1/lib/sql.py -=================================================================== ---- griffith-0.12.1.orig/lib/sql.py -+++ griffith-0.12.1/lib/sql.py -@@ -29,7 +29,7 @@ import logging - import os.path - - from sqlalchemy import create_engine, or_, and_, not_, exists, asc, desc --from sqlalchemy.exceptions import OperationalError -+from sqlalchemy.exc import OperationalError - from sqlalchemy.orm import sessionmaker, scoped_session - from sqlalchemy.sql.expression import Update, Delete - |