public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/cbatticon/
Date: Fri, 30 Dec 2016 14:34:58 +0000 (UTC)	[thread overview]
Message-ID: <1483108465.eb7409afefccb5c1b37dc1f2081f9ab8e93e9373.jer@gentoo> (raw)

commit:     eb7409afefccb5c1b37dc1f2081f9ab8e93e9373
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 30 14:34:25 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Fri Dec 30 14:34:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb7409af

x11-misc/cbatticon: Version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-misc/cbatticon/Manifest               |  1 +
 x11-misc/cbatticon/cbatticon-1.6.5.ebuild | 50 +++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/x11-misc/cbatticon/Manifest b/x11-misc/cbatticon/Manifest
index 4668327..08621c7 100644
--- a/x11-misc/cbatticon/Manifest
+++ b/x11-misc/cbatticon/Manifest
@@ -1,3 +1,4 @@
 DIST cbatticon-1.3.2.tar.gz 12749 SHA256 40f5b80e9a405ce79ecca74bcd72778372729b2add63a9c4e3386908cfb8ad4c SHA512 492b0e9e16b7a14a8bf184d213af7c7366a2cd8bfe9fe91e935e95a72e8f5213029d8b32512961f142da9db3832dd5fa98f291223b0d473a133132614ed926aa WHIRLPOOL 78cc260cc9060931cea9b9fa87e0be81b33f74641cd09a4592911612ae78e3c0ee80c4e2f045c186f030f389946264e1468451068c4fe319d9247d30f227d9b5
 DIST cbatticon-1.6.3.tar.gz 23327 SHA256 39fcb49815c5fc54a39f45ca8c0618fda6b6aa73e9301589a22668fcfd1242ba SHA512 6eb0aee5e189dac05835d3e94bfe8cffc3b036e4b0ed65ddefbe0d3c4641d250209b3f875dd196bd3887e176ee8229027a9ef7aa5af865ddce918cf746bc2586 WHIRLPOOL cf6f7c3e627f70e100d9cd4bff836b2a86126ca6e8cb12208e4edcc139692a07a8adb1f7499ed662cacf38d9982dc05a7b882cd6e05097ae0080e529436f1ec5
 DIST cbatticon-1.6.4.tar.gz 27458 SHA256 1d773d678fe7160d1af7ba7cbfe66ccbabefa10e2bf387334a341f4c94de6e08 SHA512 049f0aee12718995daa6753a19a94e3b3837d2991b4ac230aa4be1e34e487de2ac5d461e2fb5d60b6e39e7a8ae739e2216051dba8edf78293294c99b81107073 WHIRLPOOL 5676e75ab1215d650d10bb17ea318da14f8974833007f4847960660315907c8adef445c78321a1ab6570001e012c478ddc3b1c4310d1c569567b6c9071a77dc9
+DIST cbatticon-1.6.5.tar.gz 27951 SHA256 bbc70d77b2fd5c14a65b3f1d14d064b0b8c9966b521b3e295fa7d487950bff77 SHA512 5e1648cf3b31fe42aefd0a5e79c4e5dc22c3ce4b6f594f0933229494ca6f2e28e44a7e078ef839de1df0b8c1ba494fce8a58866ad70d056799320f4dea32713b WHIRLPOOL f9cdf706f632a01c2bea2353cc7171d3d568aed0964bd2f2159f1c68d18bd5b374b449581d334ff96deceb32c7d1bf9aeb235d66490a83bb60a1901b5fe16492

diff --git a/x11-misc/cbatticon/cbatticon-1.6.5.ebuild b/x11-misc/cbatticon/cbatticon-1.6.5.ebuild
new file mode 100644
index 00000000..c3983a8
--- /dev/null
+++ b/x11-misc/cbatticon/cbatticon-1.6.5.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils toolchain-funcs
+
+DESCRIPTION="A lightweight and fast battery icon that sits in your system tray"
+HOMEPAGE="https://github.com/ColinJones/cbatticon"
+SRC_URI="https://github.com/ColinJones/cbatticon/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libnotify"
+
+RDEPEND="
+	dev-libs/glib:2
+	x11-libs/gtk+:3
+	libnotify? ( x11-libs/libnotify )
+"
+DEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+"
+
+src_prepare() {
+	default
+
+	strip-linguas -i .
+}
+
+src_compile() {
+	tc-export CC
+	emake \
+		$(usex libnotify WITH_NOTIFY=1 WITH_NOTIFY=0) \
+		V=1 \
+		VERSION="${PF}" \
+		WITH_GTK3=1
+}
+
+src_install() {
+	emake \
+		DESTDIR="${D}" \
+		LANGUAGES="${LINGUAS}" \
+		V=1 VERSION="${PF}" \
+		install
+
+	dodoc Changelog
+}


             reply	other threads:[~2016-12-30 17:03 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-30 14:34 Jeroen Roovers [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-16 22:52 [gentoo-commits] repo/gentoo:master commit in: x11-misc/cbatticon/ Marek Szuba
2022-08-15 22:30 Sam James
2022-06-01 23:43 Marek Szuba
2022-03-15 23:37 Marek Szuba
2022-03-15 23:37 Marek Szuba
2022-02-17 12:07 Marek Szuba
2021-10-12  7:42 Marek Szuba
2021-04-27 11:05 Marek Szuba
2020-12-17 12:53 Sam James
2020-11-29 23:43 Marek Szuba
2020-11-29 23:37 Marek Szuba
2020-11-29 23:31 Marek Szuba
2020-11-29 22:52 Marek Szuba
2019-10-08 15:16 Jeroen Roovers
2019-10-08 15:16 Jeroen Roovers
2019-06-17  9:40 Jeroen Roovers
2018-04-11 18:20 Jeroen Roovers
2018-04-11 18:20 Jeroen Roovers
2017-10-07 10:28 Jeroen Roovers
2017-08-18 19:27 Jeroen Roovers
2016-12-30 14:34 Jeroen Roovers
2016-03-30  5:08 Jeroen Roovers
2016-03-30  5:08 Jeroen Roovers
2016-02-10 16:05 Jeroen Roovers
2015-08-14 20:34 Julian Ospald

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1483108465.eb7409afefccb5c1b37dc1f2081f9ab8e93e9373.jer@gentoo \
    --to=jer@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox