From d574ad447b51cc9ed0ac445a2d668b592424677d Mon Sep 17 00:00:00 2001 From: Mamoru TASAKA Date: Nov 11 2019 04:24:28 +0000 Subject: (20191111) replaced by mcomix3, which ported comix / mcomix to python3 --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 7151b18..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -comix-4.0.4.tar.gz diff --git a/comix-4.0.4-PIL6-version-deprecation.patch b/comix-4.0.4-PIL6-version-deprecation.patch deleted file mode 100644 index 2161cf2..0000000 --- a/comix-4.0.4-PIL6-version-deprecation.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- comix-4.0.4/install.py.version 2019-07-30 13:45:43.853075929 +0900 -+++ comix-4.0.4/install.py 2019-07-30 13:51:09.093809043 +0900 -@@ -241,13 +241,13 @@ def check_dependencies(): - required_found = False - try: - from PIL import Image -- assert Image.VERSION >= '1.1.5' -+ assert Image.__version__ >= '1.1.5' - print ' Python Imaging Library ....... OK' - except ImportError: - print ' !!! Python Imaging Library ... Not found' - required_found = False - except AssertionError: -- print ' !!! Python Imaging Library ... version', Image.VERSION, -+ print ' !!! Python Imaging Library ... version', Image.__version__, - print 'found' - print ' !!! Python Imaging Library 1.1.5 or higher is required' - required_found = False ---- comix-4.0.4/src/comix.py.version 2019-07-30 13:45:43.853075929 +0900 -+++ comix-4.0.4/src/comix.py 2019-07-30 13:51:16.054880611 +0900 -@@ -50,11 +50,11 @@ except ImportError: - - try: - from PIL import Image -- assert Image.VERSION >= '1.1.5' -+ assert Image.__version__ >= '1.1.5' - except AssertionError: - print "You don't have the required version of the Python Imaging", - print 'Library (PIL) installed.' -- print 'Installed PIL version is: %s' % Image.VERSION -+ print 'Installed PIL version is: %s' % Image.__version__ - print 'Required PIL version is: 1.1.5 or higher' - sys.exit(1) - except ImportError: diff --git a/comix-4.0.4-archive-directory-removed.patch b/comix-4.0.4-archive-directory-removed.patch deleted file mode 100644 index b248f39..0000000 --- a/comix-4.0.4-archive-directory-removed.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- comix-4.0.4/src/filehandler.py.missing 2009-01-12 05:54:42.000000000 +0900 -+++ comix-4.0.4/src/filehandler.py 2010-03-18 02:56:06.000000000 +0900 -@@ -466,7 +466,14 @@ - archive in that archive's directory listing, sorted alphabetically. - """ - arch_dir = os.path.dirname(self._base_path) -- files = os.listdir(arch_dir) -+ # arch_dir may not exist, for example the archive being currently opened -+ # was in somoe removable media. -+ try: -+ files = os.listdir(arch_dir) -+ except OSError: -+ self._window.statusbar.set_message( -+ _('Could not open %s: No such directory.') % arch_dir) -+ return - files.sort(locale.strcoll) - try: - current_index = files.index(os.path.basename(self._base_path)) -@@ -483,7 +490,14 @@ - archive in that archive's directory listing, sorted alphabetically. - """ - arch_dir = os.path.dirname(self._base_path) -- files = os.listdir(arch_dir) -+ # arch_dir may not exist, for example the archive being currently opened -+ # was in somoe removable media. -+ try: -+ files = os.listdir(arch_dir) -+ except OSError: -+ self._window.statusbar.set_message( -+ _('Could not open %s: No such directory.') % arch_dir) -+ return - files.sort(locale.strcoll) - try: - current_index = files.index(os.path.basename(self._base_path)) diff --git a/comix-4.0.4-gettext-usrmove.patch b/comix-4.0.4-gettext-usrmove.patch deleted file mode 100644 index 586f693..0000000 --- a/comix-4.0.4-gettext-usrmove.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- comix-4.0.4/src/comix.py.usrmove 2009-03-07 01:54:01.000000000 +0900 -+++ comix-4.0.4/src/comix.py 2012-06-29 17:17:13.548321002 +0900 -@@ -94,6 +94,7 @@ - gettext.install('comix', os.path.join(base_dir, 'messages'), - unicode=True) - else: -+ base_dir = '/usr' - gettext.install('comix', os.path.join(base_dir, 'share/locale'), - unicode=True) - diff --git a/comix-4.0.4-import-PIL-for-Image.patch b/comix-4.0.4-import-PIL-for-Image.patch deleted file mode 100644 index 8056c0e..0000000 --- a/comix-4.0.4-import-PIL-for-Image.patch +++ /dev/null @@ -1,131 +0,0 @@ -Index: comix-4.0.4/install.py -=================================================================== ---- comix-4.0.4.orig/install.py -+++ comix-4.0.4/install.py -@@ -240,7 +240,7 @@ def check_dependencies(): - print ' !!! PyGTK .................... Not found' - required_found = False - try: -- import Image -+ from PIL import Image - assert Image.VERSION >= '1.1.5' - print ' Python Imaging Library ....... OK' - except ImportError: -Index: comix-4.0.4/mime/comicthumb -=================================================================== ---- comix-4.0.4.orig/mime/comicthumb -+++ comix-4.0.4/mime/comicthumb -@@ -22,7 +22,7 @@ import tarfile - import subprocess - - try: -- import Image -+ from PIL import Image - except ImportError: - print '! Could not import the Image module (PIL).' - print __doc__ -Index: comix-4.0.4/src/comix.py -=================================================================== ---- comix-4.0.4.orig/src/comix.py -+++ comix-4.0.4/src/comix.py -@@ -49,7 +49,7 @@ except ImportError: - sys.exit(1) - - try: -- import Image -+ from PIL import Image - assert Image.VERSION >= '1.1.5' - except AssertionError: - print "You don't have the required version of the Python Imaging", -Index: comix-4.0.4/src/histogram.py -=================================================================== ---- comix-4.0.4.orig/src/histogram.py -+++ comix-4.0.4/src/histogram.py -@@ -1,9 +1,9 @@ - """histogram.py - Draw histograms (RGB) from pixbufs.""" - - import gtk --import Image --import ImageDraw --import ImageOps -+from PIL import Image -+from PIL import ImageDraw -+from PIL import ImageOps - - import image - -Index: comix-4.0.4/src/image.py -=================================================================== ---- comix-4.0.4.orig/src/image.py -+++ comix-4.0.4/src/image.py -@@ -1,10 +1,10 @@ - """image.py - Various image manipulations.""" - - import gtk --import Image --import ImageEnhance --import ImageOps --import ImageStat -+from PIL import Image -+from PIL import ImageEnhance -+from PIL import ImageOps -+from PIL import ImageStat - - from preferences import prefs - -Index: comix-4.0.4/src/library.py -=================================================================== ---- comix-4.0.4.orig/src/library.py -+++ comix-4.0.4/src/library.py -@@ -8,8 +8,8 @@ from xml.sax.saxutils import escape as x - import gtk - import gobject - import pango --import Image --import ImageDraw -+from PIL import Image -+from PIL import ImageDraw - - import archive - import encoding -Index: comix-4.0.4/src/thumbbar.py -=================================================================== ---- comix-4.0.4.orig/src/thumbbar.py -+++ comix-4.0.4/src/thumbbar.py -@@ -4,8 +4,8 @@ import urllib - - import gtk - import gobject --import Image --import ImageDraw -+from PIL import Image -+from PIL import ImageDraw - - import image - from preferences import prefs -Index: comix-4.0.4/src/thumbnail.py -=================================================================== ---- comix-4.0.4.orig/src/thumbnail.py -+++ comix-4.0.4/src/thumbnail.py -@@ -15,7 +15,7 @@ import shutil - import tempfile - - import gtk --import Image -+from PIL import Image - - import archive - import constants -Index: comix-4.0.4/src/thumbremover.py -=================================================================== ---- comix-4.0.4.orig/src/thumbremover.py -+++ comix-4.0.4/src/thumbremover.py -@@ -7,7 +7,7 @@ import urllib - - import gtk - import pango --import Image -+from PIL import Image - - import encoding - import labels diff --git a/comix-4.0.4-pathname2url-utf8.patch b/comix-4.0.4-pathname2url-utf8.patch deleted file mode 100644 index c0e01d5..0000000 --- a/comix-4.0.4-pathname2url-utf8.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- comix-4.0.4/src/thumbnail.py.p2url 2008-12-13 01:04:28.000000000 +0900 -+++ comix-4.0.4/src/thumbnail.py 2012-11-28 18:19:07.687627250 +0900 -@@ -154,6 +154,9 @@ - - - def _path_to_thumbpath(path, dst_dir): -+ # https://bugzilla.redhat.com/show_bug.cgi?id=877604 -+ if isinstance(path, unicode): -+ path = path.encode("utf-8") - uri = 'file://' + pathname2url(os.path.normpath(path)) - return _uri_to_thumbpath(uri, dst_dir) - diff --git a/comix-4.0.4-thumb-imaging_error.patch b/comix-4.0.4-thumb-imaging_error.patch deleted file mode 100644 index 8fd790e..0000000 --- a/comix-4.0.4-thumb-imaging_error.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- comix-4.0.4/mime/comicthumb.debug1 2008-11-10 07:17:46.000000000 +0900 -+++ comix-4.0.4/mime/comicthumb 2010-03-18 17:54:12.000000000 +0900 -@@ -196,6 +196,9 @@ - extractor = Extractor(in_path) - files = extractor.get_files() - chosen = guess_cover(files) -+ # No files may be chosen -+ if not chosen: -+ sys.exit(1) - fd = extractor.extract(chosen) - im = Image.open(fd) - if im.size[0] > im.size[1]: -@@ -206,7 +209,14 @@ - y = size - x = max(1, x) - y = max(1, y) -- im.thumbnail((x, y), Image.ANTIALIAS) -- im = im.convert('RGB') -- im.save(out_path, 'PNG') -+ -+ # FIXME -+ # If some error occurs, simply ignore. -+ try: -+ im.thumbnail((x, y), Image.ANTIALIAS) -+ im = im.convert('RGB') -+ im.save(out_path, 'PNG') -+ except: -+ sys.exit(1) -+ - sys.exit(0) diff --git a/comix-4.0.4-tobytes.patch b/comix-4.0.4-tobytes.patch deleted file mode 100644 index 8210b71..0000000 --- a/comix-4.0.4-tobytes.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- comix-4.0.4/src/image.py.tobytes 2015-12-11 15:24:35.785881231 +0900 -+++ comix-4.0.4/src/image.py 2015-12-11 15:27:21.442228743 +0900 -@@ -169,7 +169,7 @@ - - def pil_to_pixbuf(image): - """Return a pixbuf created from the PIL .""" -- imagestr = image.tostring() -+ imagestr = getattr(image, "tobytes", getattr(image, "tostring"))() - IS_RGBA = image.mode == 'RGBA' - return gtk.gdk.pixbuf_new_from_data(imagestr, gtk.gdk.COLORSPACE_RGB, - IS_RGBA, 8, image.size[0], image.size[1], diff --git a/comix.spec b/comix.spec deleted file mode 100644 index 592bedf..0000000 --- a/comix.spec +++ /dev/null @@ -1,347 +0,0 @@ -# This package depends on automagic byte compilation -# https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation_phase_2 -%global _python_bytecompile_extra 1 - -# To create svn tarball use: -# svn co https://comix.svn.sourceforge.net/svnroot/comix/trunk -# mv trunk comix-%%mainver -# tar czf comix-%%mainver-%%alphatag.tar.gz comix-%%mainver - -%define mainver 4.0.4 -%undefine alphatag -%define comix4 1 - -%define fedorarel 11 - -Name: comix -Version: %{mainver} -Release: %{?ifalpha:0.}%{fedorarel}%{?ifalpha:.%alphatag}%{?dist} -Summary: A user-friendly, customizable image viewer - -URL: http://comix.sourceforge.net/ -License: GPLv2+ -%if 0%{?ifalpha} -Source0: %{name}-%{mainver}-%{alphatag}.tar.gz -%else -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz -%endif -# The directory of the archive being currently opened may not exist -# bug 542752, 555534 -Patch1: comix-4.0.4-archive-directory-removed.patch -# Handle some error cases in comicthumb -# bug 568167, 572434 -Patch2: comix-4.0.4-thumb-imaging_error.patch -# Fix handling of exec path for finding gettext catalog file -# wrt usrmove -Patch3: comix-4.0.4-gettext-usrmove.patch -# Prevent crash when non-utf8 path name is given to thumbnail file -# (bug 877604) -Patch4: comix-4.0.4-pathname2url-utf8.patch -# Don't import Image directory and import PIL instead for -# F-19 Pillow conversion -# (bug 895175) -Patch5: comix-4.0.4-import-PIL-for-Image.patch -# Pillow F-23 3.0.0 API change that tostring is removed -# (bug 1290632) -Patch6: comix-4.0.4-tobytes.patch -# Pillow 6 removes PIL.VERSION usage -Patch7: comix-4.0.4-PIL6-version-deprecation.patch - -BuildArch: noarch -BuildRequires: python2-devel -BuildRequires: gettext -BuildRequires: pygtk2 -BuildRequires: python2-imaging -BuildRequires: desktop-file-utils -BuildRequires: %{_bindir}/jpegtran -# The following BR is really needed for gconf2 macros -BuildRequires: GConf2 -Requires: pygtk2 -Requires: python2-imaging -Requires: %{_bindir}/jpegtran -Requires(pre): GConf2 -Requires(preun): GConf2 -Requires(post): GConf2 - -%description -Comix is a user-friendly, customizable image viewer. -It is specifically designed to handle comic books, but -also serves as a generic viewer. It reads images in ZIP, -RAR or tar archives (also gzip or bzip2 compressed) as -well as plain image files. It is written in Python and -uses GTK+ through the PyGTK bindings. - -%prep -%setup -q -n %{name}-%{version}%{?ifalpha:-%alphatag} -%patch1 -p1 -b .missing -%patch2 -p1 -b .debug1 -%patch3 -p1 -b .usrmove -%patch4 -p1 -b .p2url -%patch5 -p1 -b .pil -%patch6 -p1 -b .tobytes -%if 0%{?fedora} >= 31 -%patch7 -p1 -b .version -%endif - -%{__mkdir_p} TMPBIN -cd TMPBIN -%{__ln_s} -f /bin/true update-mime-database -%{__ln_s} -f /bin/true gconftool-2 -cd .. - -%build -%{__sed} -i -e 's|shutil.copy|shutil.copy2|' install.py - -%{__sed} -e 's|\r||g' COPYING > COPYING.tmp && \ - ( touch -r COPYING COPYING.tmp ; %{__mv} -f COPYING.tmp COPYING ) -%{__rm} -f COPYING.tmp - -# embed Fedora EVR -%{__sed} -i -e "/^VERSION/s|^\(.*\)$|\1\nVERSION_fedora = '%{version}-%{release}'|" \ - src/constants.py -%{__sed} -i -e "s|constants\.VERSION|constants.VERSION_fedora|" \ - src/about.py - -for dir in messages/*/LC*/ -do - msgfmt --statistics -o $dir/comix.mo $dir/comix.po -done - -grep -rl "/usr/bin/env python$" . | \ - xargs sed -i 's|/usr/bin/env python|/usr/bin/python2|' - -%install -%{__rm} -rf $RPM_BUILD_ROOT -%{__mkdir_p} $RPM_BUILD_ROOT%{_prefix} -export PATH=$(pwd)/TMPBIN:${PATH} - -%{__python2} install.py \ - --dir \ - $RPM_BUILD_ROOT%{_prefix} \ - install - -desktop-file-install \ -%if 0%{?fedora} < 19 - --vendor fedora \ -%endif - --delete-original \ - --remove-category Application \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications/ \ - $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop - -%{__rm} -rf $RPM_BUILD_ROOT%{_datadir}/mime/ -%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mime/packages -%{__install} -c -p -m644 mime/comix.xml \ - $RPM_BUILD_ROOT%{_datadir}/mime/packages/%{name}.xml - -%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas -%{__install} -c -p -m644 mime/comicbook.schemas \ - $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas/%{name}.schemas - -%find_lang %{name} - -%pre -%gconf_schema_prepare %{name} - -%post -%gconf_schema_upgrade %{name} - -%preun -%gconf_schema_remove %{name} - -%files -f %{name}.lang -%doc COPYING ChangeLog README - -%{_sysconfdir}/gconf/schemas/%{name}.schemas - -%{_bindir}/* - -%{_datadir}/applications/*%{name}.desktop -%{_datadir}/mime/packages/%{name}.xml - -%{_mandir}/man1/* - -%{_datadir}/icons/hicolor/*/apps/%{name}* -%{_datadir}/icons/hicolor/*/mimetypes/application-x-*.png - -%dir %{_datadir}/%{name}/ -%{_datadir}/%{name}/images/ -%{_datadir}/%{name}/src/ - - -%changelog -* Tue Jul 30 2019 Mamoru TASAKA - 4.0.4-11 -- Patch for PIL 6 VERSION usage deprecation - -* Wed Jul 24 2019 Fedora Release Engineering - 4.0.4-10.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Feb 1 2019 Mamoru TASAKA - 4.0.4-10 -- Speficy python version explicitly - -* Thu Jan 31 2019 Fedora Release Engineering - 4.0.4-9.8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jul 12 2018 Fedora Release Engineering - 4.0.4-9.7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 4.0.4-9.6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sun Jan 07 2018 Igor Gnatenko - 4.0.4-9.5 -- Remove obsolete scriptlets - -* Fri Dec 15 2017 Iryna Shcherbina - 4.0.4-9.4 -- Update Python 2 dependency declarations to new packaging standards - (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) - -* Wed Jul 26 2017 Fedora Release Engineering - 4.0.4-9.3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 4.0.4-9.2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 4.0.4-9.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Dec 11 2015 Mamoru TASAKA - 4.0.4-9 -- Follow Pillow F-23 3.0.0 API change that tostring is removed - (bug 1290632) - -* Wed Jun 17 2015 Fedora Release Engineering - 4.0.4-8.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Sep 09 2014 Rex Dieter 4.0.4-8 -- update scriptlets (icon/mime mostly) - -* Sat Jun 07 2014 Fedora Release Engineering - 4.0.4-7.2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Aug 03 2013 Fedora Release Engineering - 4.0.4-7.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sat Feb 9 2013 Mamoru TASAKA - 4.0.4-7 -- F-19: kill vendorization of desktop file (fpc#247) - -* Tue Jan 15 2013 Mamoru TASAKA - 4.0.4-6 -- Don't import Image directly and import PIL instead for - F-19 Pillow conversion - Patch from Toshio Kuratomi - (bug 895175) - -* Tue Dec 4 2012 Mamoru TASAKA - 4.0.4-5 -- Prevent crash when non-utf8 path name is given to thumbnail file - (bug 877604) - -* Wed Jul 18 2012 Fedora Release Engineering - 4.0.4-4.1 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Jun 29 2012 Mamoru Tasaka - 4.0.4-4 -- Fix handling of exec path for detecting gettext catalog - wrt usrmove - -* Thu Jan 12 2012 Fedora Release Engineering - 4.0.4-3.3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Feb 08 2011 Fedora Release Engineering - 4.0.4-3.2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Fri Jul 23 2010 Mamoru Tasaka -- F-14: rebuild for python 2.7 - -* Thu Mar 18 2010 Mamoru Tasaka - 4.0.4-3 -- Handle the error when the media where opened archive existed - is removed (bug 542752, 555534) -- Handle some error cases in comicthumb (bug 568167, 572434) -- Remove macros no longer used, spec file cleanup -- GConf2 scriptlets update - -* Sat Jul 25 2009 Mamoru Tasaka - 4.0.4-2 -- F-12: Mass rebuild - -* Wed Apr 8 2009 Mamoru Tasaka - 4.0.4-1 -- 4.0.4, remove upsteamed patch -- Embed Fedora EVR to src/about.py - -* Sat Feb 28 2009 Mamoru Tasaka - 4.0.3-3 -- Use upstreamed patch for filechooser issue - -* Tue Feb 24 2009 Mamoru Tasaka - 4.0.3-2 -- F-11: Mass rebuild - -* Mon Feb 23 2009 Mamoru Tasaka - 4.0.3-1 -- 4.0.3 -- Modify icon cache updating scriptlets to follow latest guidelines -- Patch for filechooser.py to prevent file choice failure - -* Tue Jan 27 2009 Mamoru Tasaka - 4.0.3-0.1.rc1 -- 4.0.3 rc1 - -* Sun Jan 4 2009 Mamoru Tasaka - 4.0.2-1 -- 4.0.2 - -* Mon Dec 15 2008 Mamoru Tasaka - 4.0.1-1 -- 4.0.1 - -* Sat Dec 13 2008 Mamoru Tasaka - 4.0.1-0.1.rc1 -- 4.0.1 rc1 -- "flip with wheel" feature merged into upstream - -* Fri Dec 5 2008 Mamoru Tasaka - 4.0.0-2 -- Add "flip with wheel" function - -* Thu Dec 4 2008 Mamoru Tasaka - 4.0.0-1 -- 4.0.0 - -* Mon Dec 1 2008 Mamoru Tasaka - 4.0-0.2.rc1 -- 4.0.0 rc1 -- Update ja.po - -* Fri Oct 3 2008 Mamoru Tasaka - 4.0-0.1.svn199_trunk -- 4.0 branch, rev 199 - -* Thu Jul 10 2008 Mamoru Tasaka - 3.6.5-1 -- 3.6.5 (2 patches applied upstream) - -* Thu Apr 3 2008 Mamoru Tasaka - 3.6.4-6 -- Second patch for bug 430635 - Use tempfile.mkdtemp() for multiple user race condition - (tagged as CVE-2008-1796) - -* Wed Apr 2 2008 Mamoru Tasaka - 3.6.4-4 -- First patch for bug 430635 - Replace os.popen() with subprocess.Popen() to handle hostile filename - properly (CVE-2008-1568) - -* Wed Dec 5 2007 Mamoru Tasaka - 3.6.4-3 -- Fix icon path in desktop file for desktop-file-utils 0.14+ - -* Mon Aug 20 2007 Mamoru Tasaka - 3.6.4-2 -- Now %%_sysconfdir/gconf{,/schemas} are owned by GConf2 (#233756) - -* Fri Aug 3 2007 Mamoru Tasaka - 3.6.4-1.dist.1 -- License update - -* Mon May 28 2007 Mamoru Tasaka - 3.6.4-1 -- 3.6.4 - -* Sat Mar 17 2007 Mamoru Tasaka - 3.6.3-1 -- 3.6.3 - -* Wed Jan 31 2007 Mamoru Tasaka - 3.6.2-2 -- Surely remove ja.po, upstream included it. - -* Wed Jan 31 2007 Mamoru Tasaka - 3.6.2-1 -- 3.6.2 - -* Wed Jan 31 2007 Mamoru Tasaka - 3.6.1-2 -- Add Japanese translation - -* Thu Oct 19 2006 Mamoru Tasaka - 3.6.1-1 -- 3.6.1 - -* Fri Oct 06 2006 Mamoru Tasaka - 3.6-2 -- Specify URL. - -* Fri Oct 06 2006 Mamoru Tasaka - 3.6-1 -- Initial packaging, importing to Fedora extras. diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..0584112 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +(20191111) replaced by mcomix3, which ported comix / mcomix to python3 diff --git a/sources b/sources deleted file mode 100644 index 5fc039c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -029227a77b122f7080ee0280d41bee78 comix-4.0.4.tar.gz