Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsixel: libsixel-1.4.12.ebuild ChangeLog libsixel-1.4.7.ebuild
Date: Sat, 27 Jun 2015 12:15:24
Message-Id: 20150627121514.1DD25730@oystercatcher.gentoo.org
1 hattya 15/06/27 12:15:14
2
3 Modified: ChangeLog
4 Added: libsixel-1.4.12.ebuild
5 Removed: libsixel-1.4.7.ebuild
6 Log:
7 new upstream release
8
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
10
11 Revision Changes Path
12 1.12 media-libs/libsixel/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 17 Apr 2015 14:20:39 -0000 1.11
25 +++ ChangeLog 27 Jun 2015 12:15:14 -0000 1.12
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/libsixel
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v 1.11 2015/04/17 14:20:39 hattya Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v 1.12 2015/06/27 12:15:14 hattya Exp $
31 +
32 +*libsixel-1.4.12 (27 Jun 2015)
33 +
34 + 27 Jun 2015; Akinori Hattori <hattya@g.o> +libsixel-1.4.12.ebuild,
35 + -libsixel-1.4.7.ebuild:
36 + new upstream release
37
38 *libsixel-1.4.11 (17 Apr 2015)
39
40
41
42
43 1.1 media-libs/libsixel/libsixel-1.4.12.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/libsixel-1.4.12.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/libsixel-1.4.12.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libsixel-1.4.12.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/libsixel-1.4.12.ebuild,v 1.1 2015/06/27 12:15:14 hattya Exp $
53
54 EAPI="5"
55
56 inherit bash-completion-r1
57
58 DESCRIPTION="A lightweight, fast implementation of DEC SIXEL graphics codec"
59 HOMEPAGE="https://github.com/saitoha/libsixel"
60 SRC_URI="https://github.com/saitoha/libsixel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="MIT public-domain"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="curl gd gtk jpeg png zsh-completion"
66
67 RDEPEND="curl? ( net-misc/curl )
68 gd? ( media-libs/gd )
69 gtk? ( x11-libs/gdk-pixbuf:2 )
70 jpeg? ( virtual/jpeg:0 )
71 png? ( media-libs/libpng:0 )
72 zsh-completion? ( app-shells/zsh )"
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig"
75
76 src_configure() {
77 econf \
78 --with-bashcompletiondir=$(get_bashcompdir) \
79 $(use_with curl libcurl) \
80 $(use_with gd) \
81 $(use_with gtk gdk-pixbuf2) \
82 $(use_with jpeg) \
83 $(use_with png)
84 }
85
86 src_test() {
87 emake test
88 }
89
90 src_install() {
91 default
92
93 docompress -x /usr/share/doc/${PF}/images
94 dodoc -r images
95
96 use zsh-completion || rm -rf "${ED}"/usr/share/zsh
97 }