Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsixel/
Date: Mon, 06 Feb 2017 13:41:41
Message-Id: 1486388334.d1e3b5b20d7936525b9ec21ebcb1e6306c96410c.hattya@gentoo
1 commit: d1e3b5b20d7936525b9ec21ebcb1e6306c96410c
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 6 13:38:54 2017 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 13:38:54 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1e3b5b2
7
8 media-libs/libsixel: drop old
9
10 Package-Manager: portage-2.3.3
11
12 media-libs/libsixel/Manifest | 1 -
13 media-libs/libsixel/libsixel-1.6.1.ebuild | 48 -------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/media-libs/libsixel/Manifest b/media-libs/libsixel/Manifest
17 index 5580dd9..a5462e9 100644
18 --- a/media-libs/libsixel/Manifest
19 +++ b/media-libs/libsixel/Manifest
20 @@ -1,2 +1 @@
21 -DIST libsixel-1.6.1.tar.gz 4745924 SHA256 dfb03e764ff535fcb789f45487b5a284c8998e8202907eb3abc47385f88299ae SHA512 163799d864551c1d53823bf8f976afe20a825cc039361a636e5f08444c67a682c1fd297d83e5830d993ee703502e99cd31e6bb2f009933c1de89efb6c5429178 WHIRLPOOL 3b4e2fde4de40925f2975bbac234e856c1fe87fa2673782a501faa76f2375d69b8f501848cca4366ad5c2fa534decb6f67284cc3b326d83e982091d454ca599a
22 DIST libsixel-1.7.2.tar.gz 4760634 SHA256 8e6af162314728d13dfa87b6b3c795a3807032a0df25a0ce6c7ad9c24ab5c12a SHA512 9716ec45ba29cab6603896f717a6b21111ebacb48744009c8c032d6fd8dbb8f7444f27bc9f5c6f419a771544582ce5828e6b1870ea2cc37d917030c4c88de091 WHIRLPOOL 2061cf7dc15198bee8df0c3cd83b8810e60af4c6d33ad2e3bb5d119437a44c0c331ed7882a5d7ad5f5ec8cdc98a8eee0d19560c1f612a98ce56e728c0d755d7e
23
24 diff --git a/media-libs/libsixel/libsixel-1.6.1.ebuild b/media-libs/libsixel/libsixel-1.6.1.ebuild
25 deleted file mode 100644
26 index 2aa1813..00000000
27 --- a/media-libs/libsixel/libsixel-1.6.1.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI="6"
35 -
36 -inherit bash-completion-r1
37 -
38 -DESCRIPTION="A lightweight, fast implementation of DEC SIXEL graphics codec"
39 -HOMEPAGE="https://github.com/saitoha/libsixel"
40 -SRC_URI="https://github.com/saitoha/libsixel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT public-domain"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~ia64 ~x86"
45 -IUSE="curl gd gtk jpeg png"
46 -
47 -RDEPEND="curl? ( net-misc/curl )
48 - gd? ( media-libs/gd )
49 - gtk? ( x11-libs/gdk-pixbuf:2 )
50 - jpeg? ( virtual/jpeg:0 )
51 - png? ( media-libs/libpng:0 )"
52 -DEPEND="${RDEPEND}
53 - virtual/pkgconfig"
54 -
55 -src_configure() {
56 - econf \
57 - $(use_with curl libcurl) \
58 - $(use_with gd) \
59 - $(use_with gtk gdk-pixbuf2) \
60 - $(use_with jpeg) \
61 - $(use_with png) \
62 - --disable-python \
63 - --with-bashcompletiondir=$(get_bashcompdir)
64 -}
65 -
66 -src_test() {
67 - emake test
68 -}
69 -
70 -src_install() {
71 - default
72 -
73 - cd images
74 - docompress -x /usr/share/doc/${PF}/images
75 - docinto images
76 - dodoc egret.jpg map{8,16}.png snake.jpg vimperator3.png
77 -}