Gentoo Archives: gentoo-commits

From: Rafael Martins <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/blogc/
Date: Sat, 30 Apr 2016 02:04:59
Message-Id: 1461981848.5a92d76ca34b4da290828a39ef7997ec0cb2e25e.rafaelmartins@gentoo
1 commit: 5a92d76ca34b4da290828a39ef7997ec0cb2e25e
2 Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 02:04:08 2016 +0000
4 Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 02:04:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a92d76c
7
8 app-text/blogc: version bump.
9
10 Package-Manager: portage-2.2.26
11
12 app-text/blogc/Manifest | 2 +-
13 .../{blogc-0.8.1.ebuild => blogc-0.9.0.ebuild} | 28 ++++++++++++++--------
14 2 files changed, 19 insertions(+), 11 deletions(-)
15
16 diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest
17 index 9f7cc02..b0c57ee 100644
18 --- a/app-text/blogc/Manifest
19 +++ b/app-text/blogc/Manifest
20 @@ -1 +1 @@
21 -DIST blogc-0.8.1.tar.xz 270704 SHA256 06b9367ff6992a0aac447d74b1df13c35f58f7ac06ee331260462ce3a402864f SHA512 2a8f00401a3f119532dfadde5bf62f455ea229fab75ca5219493aec7cc502a29e62226e88a663441f317b065053284dd78303bd8c423aff5d46cff20c3a2c6d7 WHIRLPOOL f68aa583780d7b4a1b7dc97c9bf617792780322fc766bfa2bc45f74965e1f98a7d7161bd2175b0d68c2564e3914e24513db603b7dd0f0e99979cb816cd4a0ac8
22 +DIST blogc-0.9.0.tar.xz 265340 SHA256 e5d21deb3793e5863c32c87bd51522cde7749b144a486ab37c5be007d3b3e968 SHA512 3068f8b666b87d168a0cf893d4c913461bb403588fef0cd4d53d006c3c0e880592c71d5e4f6d622c930b05b67b1ad77b53af18cba5c183fc3357d97b8af27f39 WHIRLPOOL 1932625f1330391a5e403bd65183c02106b446743c5fa61a7e552c35c511f18a9dff548c932e401c6c62e6bed2f78ce48efe5cf7a38bb7e679b9fc9ceb68c3cd
23
24 diff --git a/app-text/blogc/blogc-0.8.1.ebuild b/app-text/blogc/blogc-0.9.0.ebuild
25 similarity index 68%
26 rename from app-text/blogc/blogc-0.8.1.ebuild
27 rename to app-text/blogc/blogc-0.9.0.ebuild
28 index 4a8d832..538dbb3 100644
29 --- a/app-text/blogc/blogc-0.8.1.ebuild
30 +++ b/app-text/blogc/blogc-0.9.0.ebuild
31 @@ -12,32 +12,39 @@ if [[ ${PV} = *9999* ]]; then
32 fi
33
34 DESCRIPTION="A blog compiler"
35 -HOMEPAGE="http://blogc.org/"
36 +HOMEPAGE="https://blogc.rgm.io/"
37
38 SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz"
39 KEYWORDS="~amd64 ~x86"
40 if [[ ${PV} = *9999* ]]; then
41 SRC_URI=""
42 KEYWORDS=""
43 - RDEPEND="=dev-libs/squareball-9999"
44 - DEPEND="${RDEPEND}
45 - app-text/ronn"
46 -else
47 - RDEPEND=">=dev-libs/squareball-0.2.0"
48 - DEPEND="${RDEPEND}"
49 + DEPEND="app-text/ronn"
50 fi
51
52 LICENSE="BSD"
53 SLOT="0"
54 -IUSE="test"
55 +IUSE="git httpd test"
56 +
57 +CDEPEND="
58 + httpd? (
59 + dev-libs/libevent
60 + sys-apps/file )"
61 +
62 +RDEPEND="${CDEPEND}
63 + git? (
64 + dev-vcs/git )
65 + !dev-vcs/blogc-git-receiver
66 + !www-servers/blogc-runserver"
67
68 DEPEND="${DEPEND}
69 + ${CDEPEND}
70 virtual/pkgconfig
71 test? (
72 dev-util/cmocka )"
73
74 src_prepare() {
75 - [[ ${PV} = *9999* ]] && AT_NO_RECURSIVE=1 eautoreconf
76 + [[ ${PV} = *9999* ]] && eautoreconf
77 eapply_user
78 default
79 }
80 @@ -51,7 +58,8 @@ src_configure() {
81 fi
82 econf \
83 $(use_enable test tests) \
84 + $(use_enable git git-receiver) \
85 + $(use_enable httpd runserver) \
86 --disable-valgrind \
87 - --with-squareball=system \
88 ${myconf}
89 }