Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/liquid_feedback_core/
Date: Wed, 13 Nov 2019 19:59:01
Message-Id: 1573675126.5e8263a9d74dce4fc779627d3f3a5947b8fdd364.bman@gentoo
1 commit: 5e8263a9d74dce4fc779627d3f3a5947b8fdd364
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 13 19:52:49 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 13 19:58:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8263a9
7
8 www-apps/liquid_feedback_core: drop old EAPI
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 www-apps/liquid_feedback_core/Manifest | 1 -
13 .../liquid_feedback_core-2.2.3.ebuild | 41 ----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/www-apps/liquid_feedback_core/Manifest b/www-apps/liquid_feedback_core/Manifest
17 index d6437334ad6..39220e88882 100644
18 --- a/www-apps/liquid_feedback_core/Manifest
19 +++ b/www-apps/liquid_feedback_core/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST liquid_feedback_core-v2.2.3.tar.gz 124770 BLAKE2B ea020095572b2fe9f8c48206c192360f590f20be7cc213ec7dac509416e0b8419b32cc91a0a527a0e39d3f373fcc11250e666dfcd73534fde1320f5da58306a4 SHA512 a87af2b4ba218289b679a1ffb5751d29eed0d368233e431123c8ce98c1eab5bf62f516e4beb3177ecb302c9062c86b6f908cff3155783dcfcb2d279804079a87
22 DIST liquid_feedback_core-v2.2.6.tar.gz 127440 BLAKE2B d62ecd8c9947259a7213f92ecaf1491a5e858ff2fdaff5e020fc4ec0c433297d8a7701a812de200130a1ed7f08ded1d9f31d42de7fffa2981361efee0e31646c SHA512 6f680398a7d2e529e642dc94ba16bc1b33d25459ddbf629c06387391ef13c0e212a108cc337cd2bc29505f4f6436b6e92994e63eaa09fe1c07733d2821d9b7f1
23 DIST liquid_feedback_core-v3.0.4.tar.gz 142983 BLAKE2B 05e8c1630a8fa3932b4fc291843dd0c45e2333940394a0632309c9041dc850cc894a6cb54fb840329f67812ebcde5d540c338cf27a88ad428aaa066329725409 SHA512 baea8a61c94e640557d0169b6171247ff0303ff1a9c8b587c6769e367cf56805c1a1e660aadf7178d984182be6dde326770240b3ffeda42139c4a94445a2bbf8
24
25 diff --git a/www-apps/liquid_feedback_core/liquid_feedback_core-2.2.3.ebuild b/www-apps/liquid_feedback_core/liquid_feedback_core-2.2.3.ebuild
26 deleted file mode 100644
27 index e3b9b16d3f0..00000000000
28 --- a/www-apps/liquid_feedback_core/liquid_feedback_core-2.2.3.ebuild
29 +++ /dev/null
30 @@ -1,41 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=4
35 -
36 -inherit eutils toolchain-funcs
37 -
38 -MY_P=${PN}-v${PV}
39 -
40 -DESCRIPTION="Internet platforms for proposition development and decision making"
41 -HOMEPAGE="http://www.public-software-group.org/liquid_feedback"
42 -SRC_URI="http://www.public-software-group.org/pub/projects/liquid_feedback/backend/v${PV}/${MY_P}.tar.gz"
43 -
44 -LICENSE="HPND CC-BY-2.5"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -IUSE=""
48 -
49 -RDEPEND="dev-db/postgresql"
50 -DEPEND="${RDEPEND}"
51 -
52 -S=${WORKDIR}/${MY_P}
53 -
54 -src_prepare() {
55 - epatch "${FILESDIR}"/${PN}-2.2.3-gentoo.patch
56 -}
57 -
58 -src_compile() {
59 - emake \
60 - CC="$(tc-getCC)" \
61 - CFLAGS="${CFLAGS}" \
62 - CPPFLAGS="-I $(pg_config --includedir)" \
63 - LDFLAGS="${LDFLAGS} -L $(pg_config --libdir)"
64 -}
65 -
66 -src_install() {
67 - dobin lf_update lf_update_suggestion_order lf_export
68 - insinto /usr/share/${PN}
69 - doins -r {core,init,demo,test}.sql update
70 - dodoc README "${FILESDIR}"/postinstall-en.txt
71 -}