Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:graveyard commit in: app-emacs/thumbs/files/, app-emacs/thumbs/
Date: Tue, 05 Nov 2019 08:27:25
Message-Id: 1569334178.b86704a0f60b53b1227352335140f4ad5f34d758.ulm@gentoo
1 commit: b86704a0f60b53b1227352335140f4ad5f34d758
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 24 14:09:38 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 24 14:09:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=b86704a0
7
8 thumbs removed 2019-09-24 bug 692882
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 app-emacs/thumbs/Manifest | 1 +
13 app-emacs/thumbs/files/50thumbs-gentoo.el | 11 +++++++++++
14 app-emacs/thumbs/metadata.xml | 9 +++++++++
15 app-emacs/thumbs/thumbs-2.0-r1.ebuild | 19 +++++++++++++++++++
16 4 files changed, 40 insertions(+)
17
18 diff --git a/app-emacs/thumbs/Manifest b/app-emacs/thumbs/Manifest
19 new file mode 100644
20 index 0000000..955f5c1
21 --- /dev/null
22 +++ b/app-emacs/thumbs/Manifest
23 @@ -0,0 +1 @@
24 +DIST thumbs-2.0.el.bz2 6521 BLAKE2B f37154658fdc660698a28ac01d0b266ff6cc4f86f30d93a9e0929e565a6666ccd168d861122d5ff893073f9aaa4a3c7412a3f96758b044faad11f13ec7000533 SHA512 d4bca861ed5db620a2319659e255bef14241a68067be994402d2d36bb7fe34ab5a22b6b76dea5631aa5288d03caadb3a8163a8ecf439144d8d50cc410cfe078d
25
26 diff --git a/app-emacs/thumbs/files/50thumbs-gentoo.el b/app-emacs/thumbs/files/50thumbs-gentoo.el
27 new file mode 100644
28 index 0000000..12627d3
29 --- /dev/null
30 +++ b/app-emacs/thumbs/files/50thumbs-gentoo.el
31 @@ -0,0 +1,11 @@
32 +(add-to-list 'load-path "@SITELISP@")
33 +(autoload 'thumbs-find-thumb "thumbs" "Display the thumbnail for IMG." t)
34 +(autoload 'thumbs-show-all-from-dir "thumbs"
35 + "Make a preview buffer for all images in DIR." t)
36 +(autoload 'thumbs-dired-show-marked "thumbs"
37 + "In Dired, make a thumbs buffer with all marked files." t)
38 +(autoload 'thumbs-dired-show-all "thumbs"
39 + "In dired, make a thumbs buffer with all files in current directory." t)
40 +(defalias 'thumbs 'thumbs-show-all-from-dir)
41 +(autoload 'thumbs-dired-setroot "thumbs"
42 + "In dired, Call the setroot program on the image at point." t)
43
44 diff --git a/app-emacs/thumbs/metadata.xml b/app-emacs/thumbs/metadata.xml
45 new file mode 100644
46 index 0000000..c918cde
47 --- /dev/null
48 +++ b/app-emacs/thumbs/metadata.xml
49 @@ -0,0 +1,9 @@
50 +<?xml version="1.0" encoding="UTF-8"?>
51 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
52 +<pkgmetadata>
53 +<maintainer type="project">
54 + <email>gnu-emacs@g.o</email>
55 + <name>Gentoo GNU Emacs project</name>
56 +</maintainer>
57 +<stabilize-allarches/>
58 +</pkgmetadata>
59
60 diff --git a/app-emacs/thumbs/thumbs-2.0-r1.ebuild b/app-emacs/thumbs/thumbs-2.0-r1.ebuild
61 new file mode 100644
62 index 0000000..85ffa76
63 --- /dev/null
64 +++ b/app-emacs/thumbs/thumbs-2.0-r1.ebuild
65 @@ -0,0 +1,19 @@
66 +# Copyright 1999-2017 Gentoo Foundation
67 +# Distributed under the terms of the GNU General Public License v2
68 +
69 +EAPI=4
70 +
71 +inherit elisp
72 +
73 +DESCRIPTION="Emacs thumbnail previewer for image files"
74 +HOMEPAGE="https://www.emacswiki.org/emacs/ThumbsMode"
75 +SRC_URI="mirror://gentoo/${P}.el.bz2"
76 +
77 +LICENSE="GPL-2"
78 +SLOT="0"
79 +KEYWORDS="amd64 ~ppc sparc x86"
80 +IUSE=""
81 +
82 +RDEPEND="virtual/imagemagick-tools"
83 +
84 +SITEFILE="50${PN}-gentoo.el"