media-video/griffith: remove unused patch
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Tue, 27 Dec 2016 20:03:09 +0000 (21:03 +0100)
committerDavid Seifert <soap@gentoo.org>
Wed, 4 Jan 2017 10:14:43 +0000 (12:14 +0200)
Closes: https://github.com/gentoo/gentoo/pull/3255

media-video/griffith/files/griffith-0.12.1-sqlalchemy-0.7.patch [deleted file]

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 (file)
index d3e6a5b..0000000
+++ /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
-