Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/mcomix: ChangeLog mcomix-1.00.ebuild mcomix-0.99.ebuild mcomix-0.98.ebuild
Date: Sun, 26 May 2013 07:20:01
Message-Id: 20130526071954.D38B52171D@flycatcher.gentoo.org
1 dirtyepic 13/05/26 07:19:54
2
3 Modified: ChangeLog
4 Added: mcomix-1.00.ebuild
5 Removed: mcomix-0.99.ebuild mcomix-0.98.ebuild
6 Log:
7 Version bump. Port to distutils-r1 eclass. Drop unrar dependency and mention
8 it in postinst instead (bug #467138). Remove old.
9
10 Signed-off-by: Ryan Hill <dirtyepic@g.o>
11 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
12
13 Revision Changes Path
14 1.15 media-gfx/mcomix/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mcomix/ChangeLog?rev=1.15&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mcomix/ChangeLog?rev=1.15&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mcomix/ChangeLog?r1=1.14&r2=1.15
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/media-gfx/mcomix/ChangeLog,v
23 retrieving revision 1.14
24 retrieving revision 1.15
25 diff -u -r1.14 -r1.15
26 --- ChangeLog 1 Jan 2013 03:04:56 -0000 1.14
27 +++ ChangeLog 26 May 2013 07:19:54 -0000 1.15
28 @@ -1,6 +1,13 @@
29 # ChangeLog for media-gfx/mcomix
30 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/mcomix/ChangeLog,v 1.14 2013/01/01 03:04:56 dirtyepic Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/mcomix/ChangeLog,v 1.15 2013/05/26 07:19:54 dirtyepic Exp $
33 +
34 +*mcomix-1.00 (26 May 2013)
35 +
36 + 26 May 2013; Ryan Hill <dirtyepic@g.o> -mcomix-0.98.ebuild,
37 + -mcomix-0.99.ebuild, +mcomix-1.00.ebuild:
38 + Version bump. Port to distutils-r1 eclass. Drop unrar dependency and mention
39 + it in postinst instead (bug #467138). Remove old.
40
41 *mcomix-0.99-r1 (01 Jan 2013)
42
43
44
45
46 1.1 media-gfx/mcomix/mcomix-1.00.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mcomix/mcomix-1.00.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/mcomix/mcomix-1.00.ebuild?rev=1.1&content-type=text/plain
50
51 Index: mcomix-1.00.ebuild
52 ===================================================================
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/media-gfx/mcomix/mcomix-1.00.ebuild,v 1.1 2013/05/26 07:19:54 dirtyepic Exp $
56
57 EAPI="5"
58
59 PYTHON_COMPAT=( python2_6 python2_7 )
60 PYTHON_REQ_USE="sqlite"
61
62 inherit distutils-r1 eutils fdo-mime
63
64 DESCRIPTION="A fork of comix, a GTK image viewer for comic book archives."
65 HOMEPAGE="http://mcomix.sourceforge.net"
66 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
74 RDEPEND="${DEPEND}
75 >=dev-python/imaging-1.1.5[${PYTHON_USEDEP}]
76 >=dev-python/pygtk-2.14[${PYTHON_USEDEP}]
77 virtual/jpeg
78 x11-libs/gdk-pixbuf
79 !media-gfx/comix"
80
81 DOCS=( ChangeLog README )
82
83 python_install_all() {
84 distutils-r1_python_install_all
85 insinto /etc/gconf/schemas/
86 doins "${S}"/mime/comicbook.schemas
87 dobin "${S}"/mime/comicthumb
88 }
89
90 pkg_postinst() {
91 fdo-mime_mime_database_update
92 fdo-mime_desktop_database_update
93 echo
94 elog "Additional packages are required to open most common comic files:"
95 elog
96 elog " cbr: app-arch/unrar"
97 elog " cbz: app-arch/unzip"
98 elog
99 elog "You can also add support for 7z or LHA archives by installing"
100 elog "app-arch/p7zip or app-arch/lha."
101 echo
102 }
103
104 pkg_postrm() {
105 fdo-mime_mime_database_update
106 fdo-mime_desktop_database_update
107 }