diff options
author | 2024-02-20 08:32:56 +0100 | |
---|---|---|
committer | 2024-02-20 08:33:09 +0100 | |
commit | 5e5f9e054b630fedfeb33d87b0db4e4cd6e2b5c0 (patch) | |
tree | 5062c79ef69e2feab37d33bbbfcd75071555dd22 /www-apps/liquid_feedback_core | |
parent | dev-python/networkx: Remove old (diff) | |
download | gentoo-5e5f9e054b630fedfeb33d87b0db4e4cd6e2b5c0.tar.gz gentoo-5e5f9e054b630fedfeb33d87b0db4e4cd6e2b5c0.tar.bz2 gentoo-5e5f9e054b630fedfeb33d87b0db4e4cd6e2b5c0.zip |
www-apps/liquid_feedback_core: drop 2.2.6, 3.0.4, 3.2.2
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'www-apps/liquid_feedback_core')
7 files changed, 0 insertions, 222 deletions
diff --git a/www-apps/liquid_feedback_core/Manifest b/www-apps/liquid_feedback_core/Manifest index c6a235edc4b7..f397c4a9d85a 100644 --- a/www-apps/liquid_feedback_core/Manifest +++ b/www-apps/liquid_feedback_core/Manifest @@ -1,4 +1 @@ -DIST liquid_feedback_core-v2.2.6.tar.gz 127440 BLAKE2B d62ecd8c9947259a7213f92ecaf1491a5e858ff2fdaff5e020fc4ec0c433297d8a7701a812de200130a1ed7f08ded1d9f31d42de7fffa2981361efee0e31646c SHA512 6f680398a7d2e529e642dc94ba16bc1b33d25459ddbf629c06387391ef13c0e212a108cc337cd2bc29505f4f6436b6e92994e63eaa09fe1c07733d2821d9b7f1 -DIST liquid_feedback_core-v3.0.4.tar.gz 142983 BLAKE2B 05e8c1630a8fa3932b4fc291843dd0c45e2333940394a0632309c9041dc850cc894a6cb54fb840329f67812ebcde5d540c338cf27a88ad428aaa066329725409 SHA512 baea8a61c94e640557d0169b6171247ff0303ff1a9c8b587c6769e367cf56805c1a1e660aadf7178d984182be6dde326770240b3ffeda42139c4a94445a2bbf8 -DIST liquid_feedback_core-v3.2.2.tar.gz 162505 BLAKE2B dc6e9d0b8d1e596150520e068e7743a6e839f7e6ffc3c605d090973a179652858c037c4f12c75774d158adfc60484d1ac321350fa7f8d16329043051ae2cd98c SHA512 60a3548008235822e83c6614e990d87200b342d8e5c5fd1ca1f6092bc48d918f9dbfcc130039f4acf2956a19100cc96187ac1c7f5174f7e69a45f651643ab1d9 DIST liquid_feedback_core-v4.2.2.tar.gz 226473 BLAKE2B 4df49d1e1734c72ac439f772dfa1bf2b10d6cfb739f323735c39b2ed1c28ae19a26a00ad5fb3c55ead74e8d35773bbb39112936f5a4bf3321cd5f1847f7721a2 SHA512 f2542c3c38aa22cd7b8de4a47afb51e851f7f8e4b791d7bf90648e2e8abc6f71f687386f6aa028717c4ef042f3e3366b5458933e43dcf51476b3514f858eb20d diff --git a/www-apps/liquid_feedback_core/files/liquid_feedback_core-2.2.3-gentoo.patch b/www-apps/liquid_feedback_core/files/liquid_feedback_core-2.2.3-gentoo.patch deleted file mode 100644 index bd5874583e3a..000000000000 --- a/www-apps/liquid_feedback_core/files/liquid_feedback_core-2.2.3-gentoo.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -1,16 +1,10 @@ - all:: lf_update lf_update_suggestion_order - --lf_update: lf_update.c -- cc -Wall -O2 \ -- -I "`pg_config --includedir`" \ -- -L "`pg_config --libdir`" \ -- -o lf_update lf_update.c -lpq -- --lf_update_suggestion_order: lf_update_suggestion_order.c -- cc -Wall -O2 \ -- -I "`pg_config --includedir`" \ -- -L "`pg_config --libdir`" \ -- -o lf_update_suggestion_order lf_update_suggestion_order.c -lpq -+CPPFLAGS=-I `pg_config --includedir` -+LDFLAGS=-L `pg_config --libdir` -+CFLAGS=-Wall -O2 -+CC=cc -+LDLIBS=-lpq - - clean:: - rm -f lf_update lf_update_suggestion_order diff --git a/www-apps/liquid_feedback_core/files/liquid_feedback_core-3.2.2-gentoo.patch b/www-apps/liquid_feedback_core/files/liquid_feedback_core-3.2.2-gentoo.patch deleted file mode 100644 index 541464723f83..000000000000 --- a/www-apps/liquid_feedback_core/files/liquid_feedback_core-3.2.2-gentoo.patch +++ /dev/null @@ -1,51 +0,0 @@ ---- a/lf_update_issue_order.c 2021-04-10 18:32:19.101947834 +0200 -+++ b/lf_update_issue_order.c 2021-04-10 18:36:07.377117090 +0200 -@@ -1,3 +1,5 @@ -+#define _GNU_SOURCE -+ - #include <stdlib.h> - #include <stdio.h> - #include <string.h> -@@ -417,7 +419,7 @@ - logging = 1; - } - for (i=argb; i<argc; i++) len += strlen(argv[i]) + 1; -- conninfo = malloc(len * sizeof(char)); -+ conninfo = malloc(len * sizeof(char) + 1); - if (!conninfo) { - fprintf(stderr, "Error: Could not allocate memory for conninfo string.\n"); - abort(); ---- a/lf_update_suggestion_order.c 2021-04-10 18:38:31.138743181 +0200 -+++ b/lf_update_suggestion_order.c 2021-04-10 18:39:29.851786017 +0200 -@@ -1,3 +1,5 @@ -+#define _GNU_SOURCE -+ - #include <stdlib.h> - #include <stdio.h> - #include <string.h> -@@ -474,7 +476,7 @@ - logging = 1; - } - for (i=argb; i<argc; i++) len += strlen(argv[i]) + 1; -- conninfo = malloc(len * sizeof(char)); -+ conninfo = malloc(len * sizeof(char) + 1); - if (!conninfo) { - fprintf(stderr, "Error: Could not allocate memory for conninfo string.\n"); - abort(); ---- a/lf_update.c 2021-04-10 18:40:48.036510216 +0200 -+++ b/lf_update.c 2021-04-10 18:55:46.869758233 +0200 -@@ -1,3 +1,5 @@ -+#define _GNU_SOURCE -+ - #include <stdlib.h> - #include <stdio.h> - #include <string.h> -@@ -51,7 +53,7 @@ - { - size_t len = 0; - for (i=1; i<argc; i++) len += strlen(argv[i]) + 1; -- conninfo = malloc(len * sizeof(char)); -+ conninfo = malloc(len * sizeof(char) + 1); - if (!conninfo) { - fprintf(stderr, "Error: Could not allocate memory for conninfo string\n"); - return 1; diff --git a/www-apps/liquid_feedback_core/files/postinstall-en.txt b/www-apps/liquid_feedback_core/files/postinstall-en.txt deleted file mode 100644 index e1eb550eeea1..000000000000 --- a/www-apps/liquid_feedback_core/files/postinstall-en.txt +++ /dev/null @@ -1,22 +0,0 @@ -To use Liquid Feedback you have to follow these -simple steps, which have to be done as the postgres system user (or -which ever is the database superuser): - -$ createuser -d liquid_feedback - -$ psql -postgres=# ALTER USER liquid_feedback WITH PASSWORD 'the_new_password'; - -$ createdb -U liquid_feedback liquid_feedback -$ psql -U liquid_feedback liquid_feedback -liquid_feedback=# \i /usr/share/liquid_feedback_core/core.sql -INSERT INTO system_setting (member_ttl) VALUES ('1 year'); -INSERT INTO contingent (polling, time_frame, text_entry_limit, initiative_limit) VALUES (false, '1 hour', 20, 6); -INSERT INTO contingent (polling, time_frame, text_entry_limit, initiative_limit) VALUES (false, '1 day', 80, 12); -INSERT INTO contingent (polling, time_frame, text_entry_limit, initiative_limit) VALUES (true, '1 hour', 200, 60); -INSERT INTO contingent (polling, time_frame, text_entry_limit, initiative_limit) VALUES (true, '1 day', 800, 120); - -and Create an invite code for an admin user: - -$ psql -U liquid_feedback liquid_feedback -liquid_feedback=# INSERT INTO member (invite_code, admin) VALUES ('sesam', true); diff --git a/www-apps/liquid_feedback_core/liquid_feedback_core-2.2.6.ebuild b/www-apps/liquid_feedback_core/liquid_feedback_core-2.2.6.ebuild deleted file mode 100644 index a847294716dd..000000000000 --- a/www-apps/liquid_feedback_core/liquid_feedback_core-2.2.6.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_P=${PN}-v${PV} - -DESCRIPTION="Internet platforms for proposition development and decision making" -HOMEPAGE="https://www.public-software-group.org/liquid_feedback" -SRC_URI="https://www.public-software-group.org/pub/projects/liquid_feedback/backend/v${PV}/${MY_P}.tar.gz" - -LICENSE="HPND CC-BY-2.5" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="dev-db/postgresql:=" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -PATCHES=( "${FILESDIR}"/${PN}-2.2.3-gentoo.patch ) - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - CPPFLAGS="-I $(pg_config --includedir)" \ - LDFLAGS="${LDFLAGS} -L $(pg_config --libdir)" -} - -src_install() { - dobin lf_update lf_update_suggestion_order lf_export - insinto /usr/share/${PN} - doins -r {core,init,demo,test}.sql update - dodoc README "${FILESDIR}"/postinstall-en.txt -} - -pkg_postinst() { - elog "If you just upgraded, remember to update database schema" - elog "with the scripts in /usr/share/${PN}/update" -} diff --git a/www-apps/liquid_feedback_core/liquid_feedback_core-3.0.4.ebuild b/www-apps/liquid_feedback_core/liquid_feedback_core-3.0.4.ebuild deleted file mode 100644 index 98e769144c7e..000000000000 --- a/www-apps/liquid_feedback_core/liquid_feedback_core-3.0.4.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_P=${PN}-v${PV} - -DESCRIPTION="Internet platforms for proposition development and decision making" -HOMEPAGE="https://www.public-software-group.org/liquid_feedback" -SRC_URI="https://www.public-software-group.org/pub/projects/liquid_feedback/backend/v${PV}/${MY_P}.tar.gz" - -LICENSE="HPND CC-BY-2.5" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="dev-db/postgresql:=" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -PATCHES=( "${FILESDIR}"/${PN}-3.0.4-gentoo.patch ) - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - CPPFLAGS="-I $(pg_config --includedir)" \ - LDFLAGS="${LDFLAGS} -L $(pg_config --libdir)" -} - -src_install() { - dobin lf_update lf_update_suggestion_order lf_export - insinto /usr/share/${PN} - doins -r {core,init,demo,test}.sql update - dodoc README "${FILESDIR}"/postinstall-en.txt -} diff --git a/www-apps/liquid_feedback_core/liquid_feedback_core-3.2.2.ebuild b/www-apps/liquid_feedback_core/liquid_feedback_core-3.2.2.ebuild deleted file mode 100644 index a5264bbe9822..000000000000 --- a/www-apps/liquid_feedback_core/liquid_feedback_core-3.2.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_P=${PN}-v${PV} - -DESCRIPTION="Internet platforms for proposition development and decision making" -HOMEPAGE="https://www.public-software-group.org/liquid_feedback" -SRC_URI="https://www.public-software-group.org/pub/projects/liquid_feedback/backend/v${PV}/${MY_P}.tar.gz" - -LICENSE="HPND CC-BY-2.5" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="dev-db/postgresql:=" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}"/${PN}-3.0.4-gentoo.patch - "${FILESDIR}"/${P}-gentoo.patch -) - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - CPPFLAGS="-I $(pg_config --includedir)" \ - LDFLAGS="${LDFLAGS} -L $(pg_config --libdir)" -} - -src_install() { - dobin lf_update lf_update_suggestion_order lf_export - insinto /usr/share/${PN} - doins -r {core,init,demo,test}.sql update - dodoc README "${FILESDIR}"/postinstall-en.txt -} |