From: "Michael Weber" <xmw@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/girara/
Date: Sat, 9 Jan 2016 01:04:26 +0000 (UTC) [thread overview]
Message-ID: <1452301463.9a3a4c9e52e110a25991773aa06bc06402992685.xmw@gentoo> (raw)
commit: 9a3a4c9e52e110a25991773aa06bc06402992685
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 9 00:59:57 2016 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Sat Jan 9 01:04:23 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3a4c9e
dev-libs/girara: Version bump.
Package-Manager: portage-2.2.26
dev-libs/girara/Manifest | 1 +
dev-libs/girara/girara-0.2.5.ebuild | 65 +++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/dev-libs/girara/Manifest b/dev-libs/girara/Manifest
index a160b88..dfcd5d7 100644
--- a/dev-libs/girara/Manifest
+++ b/dev-libs/girara/Manifest
@@ -1,3 +1,4 @@
DIST girara-0.2.2.tar.gz 72553 SHA256 6382dfdf1cc7ddfedf3d1ece5a7f07590c49b4932184ee8dec6d2bd121e66653 SHA512 216f737843523542697f995c08792adfaa0961414b7002d9b2740cc54f6fc94e61cbf06d5a71fa3e56637ad7594fe8c7cf5abb96784ff492c8305c2a7848ec8d WHIRLPOOL 4301b58585a11df21de19ca01b5a2f6c894e607106113860b3b562da1e986cb558ee6a062e40ea3b4a20d9b224a9289683c4098c30619edfa8cce3f82a2b0221
DIST girara-0.2.3.tar.gz 74107 SHA256 b07fcce509a27c5917a997eb08cc5c8da20e9013f59ae89367ff048f2eae0ede SHA512 143a56e394838e255db1e6b95969023d74aa768b88f8b487c6f0f6d92753e0fdb43bfdca8423e161aeb7eae3abcd5777d45540ec5ec615fe72fb667418206c33 WHIRLPOOL 1d714a860aa5d4d2095c37450767544650996d0c06dba64a6cc221dea8352e293cb47de49ac5474e5abb71dc74f1621315e2561fd5d67088c85d138d0e7e1e2e
DIST girara-0.2.4.tar.gz 74660 SHA256 2ee04e4c0e700d455ebaf92f804355f948754e7d3751d409db6595419e6ece5e SHA512 9e22c6beb1d85a84db7b014da12fe425dced36e5ef9cd5828303d438642e09943fc9ae150b925f8b8ea5bd4e8bf8803ee964ce400e67b3ea314a4dec0a4643b4 WHIRLPOOL 8a5323805656b8066c01798527d12de25cead2d3d670f6423e0615ca5bdca5ca829816e404a425c8a3c359afa50f339a88dddb243a63b939a2e383f61ab33c0d
+DIST girara-0.2.5.tar.gz 75215 SHA256 5cf4f2d044385b189ed8e9efcae8532db1f2d63a240a1e226f3491c996aba892 SHA512 62f497d0bcab0765946d141b5c9bd79459e526e385da32f69311e810c9142e570de41521b98df8e08b44e0e34326db370f5b5ed4cb02bbdc2124febe6c2cce45 WHIRLPOOL 2b1555969784c996fff495f73e9d2514c66d426c478a4e51e48ecb51402a4c9fba0e66865d2f924108731507cac402f988eec781b32ccca3215b11c589e01f2e
diff --git a/dev-libs/girara/girara-0.2.5.ebuild b/dev-libs/girara/girara-0.2.5.ebuild
new file mode 100644
index 0000000..9840587
--- /dev/null
+++ b/dev-libs/girara/girara-0.2.5.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib toolchain-funcs
+[[ ${PV} == 9999* ]] && inherit git-2
+
+DESCRIPTION="A library that implements a user interface that focuses on simplicity and minimalism"
+HOMEPAGE="http://pwmt.org/projects/girara/"
+if ! [[ ${PV} == 9999* ]]; then
+SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
+fi
+EGIT_REPO_URI="git://git.pwmt.org/${PN}.git"
+EGIT_BRANCH="develop"
+
+LICENSE="ZLIB"
+SLOT="3"
+if ! [[ ${PV} == 9999* ]]; then
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+else
+KEYWORDS=""
+fi
+IUSE="libnotify static-libs"
+
+RDEPEND=">=dev-libs/glib-2.28
+ >=x11-libs/gtk+-3.4:3
+ dev-libs/json-c
+ !<${CATEGORY}/${PN}-0.1.6
+ libnotify? ( >=x11-libs/libnotify-0.7 )"
+DEPEND="${RDEPEND}
+ sys-devel/gettext
+ virtual/pkgconfig"
+
+pkg_setup() {
+ mygiraraconf=(
+ WITH_LIBNOTIFY=$(usex libnotify 1 0)
+ PREFIX="${EPREFIX}"/usr
+ LIBDIR='${PREFIX}'/$(get_libdir)
+ CC="$(tc-getCC)"
+ SFLAGS=''
+ VERBOSE=1
+ DESTDIR="${D}"
+ )
+}
+
+src_prepare() {
+ # Remove 'static' and 'install-static' targets
+ if ! use static-libs; then
+ sed -i \
+ -e '/^${PROJECT}:/s:static::' \
+ -e '/^install:/s:install-static::' \
+ Makefile || die
+ fi
+}
+
+src_compile() {
+ emake "${mygiraraconf[@]}"
+}
+
+src_install() {
+ emake "${mygiraraconf[@]}" install
+ dodoc AUTHORS
+}
next reply other threads:[~2016-01-09 1:04 UTC|newest]
Thread overview: 92+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-09 1:04 Michael Weber [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-01-09 1:33 [gentoo-commits] repo/gentoo:master commit in: dev-libs/girara/ Michael Weber
2016-07-31 16:58 Maxim Koltsov
2017-01-12 14:06 Patrice Clement
2017-01-23 1:40 Michael Weber
2017-01-29 19:51 Michael Weber
2017-02-23 13:27 Michael Weber
2017-07-15 15:17 Tobias Klausmann
2017-08-20 19:16 Thomas Deutschmann
2018-01-28 16:19 Michael Weber
2018-01-28 16:19 Michael Weber
2018-04-12 0:54 Thomas Deutschmann
2018-04-14 17:24 Aaron Bauman
2018-04-15 11:34 David Seifert
2018-07-22 16:28 Mikle Kolyada
2018-10-07 21:51 Mikle Kolyada
2018-10-07 21:51 Mikle Kolyada
2018-10-07 21:55 Mikle Kolyada
2018-10-08 9:01 Mikle Kolyada
2018-10-08 15:19 Mikle Kolyada
2018-10-08 19:03 Mikle Kolyada
2018-11-10 23:30 Mikle Kolyada
2018-11-17 14:02 Mikle Kolyada
2018-11-25 10:57 Mikle Kolyada
2018-11-25 12:14 Mikle Kolyada
2018-12-09 23:51 Thomas Deutschmann
2018-12-11 9:58 Mikle Kolyada
2018-12-23 9:24 Mikle Kolyada
2018-12-27 18:26 Mikle Kolyada
2019-02-08 14:50 Mikle Kolyada
2019-04-28 18:15 Mikle Kolyada
2019-09-13 11:09 Mikle Kolyada
2019-09-13 11:24 Mikle Kolyada
2019-10-27 18:09 Mikle Kolyada
2019-11-04 8:02 Mikle Kolyada
2020-01-08 13:17 Mikle Kolyada
2020-01-08 13:18 Mikle Kolyada
2020-05-02 19:47 Thomas Deutschmann
2020-08-24 11:58 Mikle Kolyada
2020-09-16 1:23 Sam James
2020-09-18 7:29 Agostino Sarubbo
2020-09-18 7:45 Agostino Sarubbo
2020-09-18 8:26 Agostino Sarubbo
2021-01-04 1:44 Sam James
2021-01-04 3:31 Sam James
2021-01-09 16:22 Sam James
2021-01-10 13:16 Sam James
2021-08-05 14:02 Yixun Lan
2021-10-16 20:54 Piotr Karbowski
2021-12-05 4:17 Sam James
2021-12-05 18:32 Sam James
2021-12-06 15:23 Sam James
2022-03-27 23:20 Piotr Karbowski
2022-05-05 3:54 Sam James
2022-05-05 3:54 Sam James
2022-06-02 12:02 Jakov Smolić
2023-01-30 21:53 Piotr Karbowski
2023-03-05 10:51 Piotr Karbowski
2023-03-05 16:35 Arthur Zamarin
2023-03-06 13:05 Arthur Zamarin
2023-03-07 15:45 Sam James
2023-03-19 22:57 Piotr Karbowski
2023-05-02 15:21 Arthur Zamarin
2023-05-02 17:29 Arthur Zamarin
2023-05-02 17:35 Sam James
2023-08-09 18:14 Piotr Karbowski
2023-09-29 7:17 Arthur Zamarin
2023-09-29 7:17 Arthur Zamarin
2023-09-29 7:17 Arthur Zamarin
2023-09-29 7:17 Arthur Zamarin
2023-12-09 21:22 Sam James
2023-12-09 21:22 Sam James
2023-12-10 7:51 Joonas Niilola
2023-12-10 7:51 Joonas Niilola
2023-12-11 5:56 Joonas Niilola
2024-01-21 4:02 Sam James
2024-01-21 4:02 Sam James
2024-01-23 6:50 Joonas Niilola
2024-01-23 6:54 Joonas Niilola
2024-01-28 17:34 Matt Turner
2024-02-23 11:43 Sam James
2024-02-24 7:08 Sam James
2024-02-24 7:14 Joonas Niilola
2024-05-27 13:24 Joonas Niilola
2024-08-29 13:19 Joonas Niilola
2024-12-30 17:26 Sam James
2025-02-04 14:17 Sam James
2025-03-02 8:21 Sam James
2025-03-10 2:54 Sam James
2025-03-10 2:54 Sam James
2025-03-10 2:54 Sam James
2025-03-10 2:54 Sam James
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=1452301463.9a3a4c9e52e110a25991773aa06bc06402992685.xmw@gentoo \
--to=xmw@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