Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/quitcount/
Date: Tue, 15 Dec 2015 07:15:58
Message-Id: 1450163712.7b52fc455b59a5f84acc45589b8e74c61d65ea5a.idella4@gentoo
1 commit: 7b52fc455b59a5f84acc45589b8e74c61d65ea5a
2 Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 15 06:14:22 2015 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 15 07:15:12 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b52fc45
7
8 x11-misc/quitcount: New ebuild submitted via buzilla bug #542072
9
10 A tiny system tray applet, author set as proxy maintainer under the
11 proxy-maintainers project, fixes the gentoo bug
12
13 Gentoo bug: #542072
14
15 Package-Manager: portage-2.2.24
16
17 x11-misc/quitcount/Manifest | 1 +
18 x11-misc/quitcount/metadata.xml | 10 ++++++++++
19 x11-misc/quitcount/quitcount-3.1.3.ebuild | 28 ++++++++++++++++++++++++++++
20 3 files changed, 39 insertions(+)
21
22 diff --git a/x11-misc/quitcount/Manifest b/x11-misc/quitcount/Manifest
23 new file mode 100644
24 index 0000000..3ad4252
25 --- /dev/null
26 +++ b/x11-misc/quitcount/Manifest
27 @@ -0,0 +1 @@
28 +DIST quitcount-3.1.3.tar.gz 403607 SHA256 d8c21bb0cf67d729d51a7921b86bb3ab75003253ba03b26d605ce5b48b33713a SHA512 92e088b8272657f14e60d91589963cfcefe84ead9f4d90aa3a77ac9612fe216f558e0378788edde7680a3dba131021bf72129fbc1291eca83cd232490f486f9f WHIRLPOOL 757deda35a4d8b9079dd5f333ce488e1f00b5c6af15da789cb1e210f61be2170b5509e34c899f4aecd6f745660fdcf7b1e4ee2244a071f7b512abd64078ef5c1
29
30 diff --git a/x11-misc/quitcount/metadata.xml b/x11-misc/quitcount/metadata.xml
31 new file mode 100644
32 index 0000000..e275ac6
33 --- /dev/null
34 +++ b/x11-misc/quitcount/metadata.xml
35 @@ -0,0 +1,10 @@
36 +<?xml version="1.0" encoding="UTF-8"?>
37 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
38 +<pkgmetadata>
39 + <herd>proxy-maintainers</herd>
40 + <maintainer>
41 + <email>Laurent Vivier</email>
42 + <name>laurent@×××××.com</name>
43 + <description>Proxied maintainer; set to assignee in all bugs</description>
44 + </maintainer>
45 +</pkgmetadata>
46
47 diff --git a/x11-misc/quitcount/quitcount-3.1.3.ebuild b/x11-misc/quitcount/quitcount-3.1.3.ebuild
48 new file mode 100644
49 index 0000000..af6a20e
50 --- /dev/null
51 +++ b/x11-misc/quitcount/quitcount-3.1.3.ebuild
52 @@ -0,0 +1,28 @@
53 +# Copyright 1999-2015 Gentoo Foundation
54 +# Distributed under the terms of the GNU General Public License v2
55 +# $Id$
56 +
57 +EAPI=5
58 +inherit gnome2-utils
59 +
60 +# The string in SRC_URI doesn't follow standard naming convention
61 +MV="3.1"
62 +DESCRIPTION="A simple applet that shows what you saved since you quit smoking."
63 +HOMEPAGE="http://quitcount.sourceforge.net/"
64 +SRC_URI="mirror://sourceforge/${PN}/${MV}/${P}.tar.gz"
65 +
66 +LICENSE="GPL-3"
67 +SLOT="0"
68 +KEYWORDS="~x86 ~amd64"
69 +DEPEND="x11-libs/gtk+:3
70 + >=dev-libs/glib-2.6:2"
71 +
72 +RDEPEND="${DEPEND}"
73 +
74 +pkg_postinst() {
75 + gnome2_icon_cache_update
76 +}
77 +
78 +pkg_postrm() {
79 + gnome2_icon_cache_update
80 +}