summaryrefslogtreecommitdiff
path: root/media-gfx/cropgui
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-03-19 11:37:34 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-03-19 11:37:34 +0000
commitb7b97785ebbb2f11d24d14dab8b81ed274f4ce6a (patch)
tree9fd110f9fc996e8a4213eeda994a8c112491b86d /media-gfx/cropgui
parent066d27181e9a797ad9f8fc43b49fc9a10ff2f707 (diff)
gentoo resync : 19.03.2019
Diffstat (limited to 'media-gfx/cropgui')
-rw-r--r--media-gfx/cropgui/Manifest1
-rw-r--r--media-gfx/cropgui/files/cropgui-0.1.1-PIL.patch29
2 files changed, 0 insertions, 30 deletions
diff --git a/media-gfx/cropgui/Manifest b/media-gfx/cropgui/Manifest
index c965315c07c5..77ec2c08c730 100644
--- a/media-gfx/cropgui/Manifest
+++ b/media-gfx/cropgui/Manifest
@@ -1,4 +1,3 @@
-AUX cropgui-0.1.1-PIL.patch 994 BLAKE2B 36d75764382c598c0bb58668d8c5e3882f58e8999c694d9466f2d48f86fe2da44e7ed075f50fef3988e719203b757bf13c08c5952050fdb7561f6c9128414315 SHA512 5bbe9ff690f055c9257096ea457874f3f3b4838eb0bfa3134ce1ee468922ef15f6f8ac00344aba2f229e0ce81d3d55e9d22db97d06dfd15151ea491a19ff5414
AUX cropgui-0.2-PIL.patch 831 BLAKE2B 936d4de690a45d9213f7337c1f2adc72dc39b370a9327bcb23f8d527c02397bb01e8ffe581eed734e4b99e2827c713e97e11bd6449623dade81ead6f4a3ce028 SHA512 b2b4be9f04c26906f998d5c693722d58e2d40270dcf41cb6027206adbbfeed0133858be7fbd44f846a83b23cd4da3f286fbb188b2547103a7320bcee0b35fa15
AUX cropgui-0.2-tobytes.patch 1590 BLAKE2B e83066d2c80d4351d557d91e4d662515419b68579e07834d95da66a12b20bb891b913224c54bb6d4befba4a5a1c86989fbb0392d0e5e53fffaae1ada82ae3947 SHA512 2824a75de26eb200f991c759235a9da9ba5a61bc5f315e679920f1481b6826230432d91f2b710882463c8d8fb5856d001aa9d209de2a6d31fa027683cd57cd75
DIST cropgui-0.2.tar.gz 842734 BLAKE2B 4a09fef84634cc07d81580f9652826dd4e388c27d9db33fb63e8f7c9ac2341cb532b81894fcab624df2495865af6f6580b03c871ed7d138bf5c7d2fc02386a7b SHA512 d6a9feea8c5de57455d0f7247465108d5a931f773f4df0c91629400bcc2c958c76559a84b6cde45709bcc8936ff7f5e2b3553897a14fbec14a9f032065ce83ba
diff --git a/media-gfx/cropgui/files/cropgui-0.1.1-PIL.patch b/media-gfx/cropgui/files/cropgui-0.1.1-PIL.patch
deleted file mode 100644
index 88f7ffbfed81..000000000000
--- a/media-gfx/cropgui/files/cropgui-0.1.1-PIL.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Только в cropgui: cropgui-0.1.1-PIL.patch
-diff -ru cropgui.orig/cropgui_common.py cropgui/cropgui_common.py
---- cropgui.orig/cropgui_common.py 2009-07-24 06:15:12.000000000 +0400
-+++ cropgui/cropgui_common.py 2013-05-28 21:48:24.000000000 +0400
-@@ -13,9 +13,9 @@
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--import Image
--import ImageFilter
--import ImageDraw
-+from PIL import Image
-+from PIL import ImageFilter
-+from PIL import ImageDraw
- import subprocess
- import threading
- import Queue
-diff -ru cropgui.orig/filechooser.py cropgui/filechooser.py
---- cropgui.orig/filechooser.py 2009-07-24 06:15:12.000000000 +0400
-+++ cropgui/filechooser.py 2013-05-28 21:50:16.000000000 +0400
-@@ -8,7 +8,7 @@
- import gobject
-
- import os
--import Image
-+from PIL import Image
-
- HIGH_WATER, LOW_WATER = 25, 5
- image_cache = {}