From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/fms/
Date: Wed, 1 Feb 2023 19:27:17 +0000 (UTC) [thread overview]
Message-ID: <1675279599.2325db9f8d7f957d7189d30fc8880a8f43f26816.asturm@gentoo> (raw)
commit: 2325db9f8d7f957d7189d30fc8880a8f43f26816
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 28 18:31:08 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Feb 1 19:26:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2325db9f
net-p2p/fms: drop 0.3.82-r1, 0.3.83
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-p2p/fms/Manifest | 2 -
net-p2p/fms/fms-0.3.82-r1.ebuild | 97 -------------------------------------
net-p2p/fms/fms-0.3.83.ebuild | 101 ---------------------------------------
3 files changed, 200 deletions(-)
diff --git a/net-p2p/fms/Manifest b/net-p2p/fms/Manifest
index 557cd4fb9ecb..acba217e0e9b 100644
--- a/net-p2p/fms/Manifest
+++ b/net-p2p/fms/Manifest
@@ -1,3 +1 @@
-DIST fms-src-0.3.82.zip 4786920 BLAKE2B c18630b8b1b8871290f1d66c4638b99c110e0f49bef11517aa83760274707fd5d0b53c053ea3b38a0c35018de4a4b6f3dd426499228997bac377bb1f04f784fb SHA512 2a72cbc7e23eb16cc12bd373944d1da090030602a09d0c1cf2fd8688a7b1a98ff649f1d0aa8b525b65987394d81acbb9b7558fcb21cea90a7646067a16600673
-DIST fms-src-0.3.83.zip 4813813 BLAKE2B 07b28fa1ef151ca75e547515c8771fc425aa78003980f20134c4d3b670ccaa4c20b24dc0517194dd4675d9b3b8c8f84e929a94921945d156ae5b0b898a7fad56 SHA512 140f76f4a5c0582c3df031e4001f8870c761249d3af0226acefc9ee646973c9dee4f65ab8964ae43a6ec29de735bea0155603f596ec5a07ff7458d0ffd2ee4d3
DIST fms-src-0.3.84.zip 4913007 BLAKE2B ec96d26ea5fedaf2109c0b1aa00d1dfa82e5b45bfe7db8a58cab9f682c16f41b05a2d3e51a4ece2a148101d36472499d1592d9dab66dd544402e8cc8cc37a5ff SHA512 e3fe163e3aefafbdeebeb67601bb940db2015eb8d8ca334f9bcfc41c86b704fc450e039f1301106c299011ef02d5fb7c28b97782bf3252d320adf3bac230b744
diff --git a/net-p2p/fms/fms-0.3.82-r1.ebuild b/net-p2p/fms/fms-0.3.82-r1.ebuild
deleted file mode 100644
index ca07782f8477..000000000000
--- a/net-p2p/fms/fms-0.3.82-r1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit edos2unix cmake
-
-DESCRIPTION="A spam-resistant message board application for Freenet"
-# FMS only has a homepage within freenet, so the closest is a wiki linking to it
-HOMEPAGE="https://github.com/freenet/wiki/wiki/FMS"
-SRC_URI="https://dev.gentoo.org/~tommy/distfiles/${PN}-src-${PV}.zip"
-S="${WORKDIR}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="frost ssl"
-
-CDEPEND="
- acct-group/freenet
- acct-user/freenet
-"
-
-RDEPEND="
- ${CDEPEND}
- dev-db/sqlite:3=
- dev-libs/poco
- frost? ( net-libs/mbedtls:0= )
- ssl? ( net-libs/mbedtls:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- ${CDEPEND}
- app-arch/unzip
- virtual/libiconv
-"
-
-PATCHES=( "${FILESDIR}/${PN}-use-system-libs4.patch" )
-
-DOCS=( "readme.txt" )
-
-src_prepare() {
- # Convert encoding due applied patch
- edos2unix src/http/pages/showfilepage.cpp
- edos2unix CMakeLists.txt
-
- # Remove bundled libs
- rm -fr libs || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DDO_CHARSET_CONVERSION="ON"
- -DFCP_SSL_SUPPORT="$(usex ssl 'ON' 'OFF')"
- -DFROST_SUPPORT="$(usex frost 'ON' 'OFF')"
- -DI_HAVE_READ_THE_README="ON"
- -DUSE_BUNDLED_SQLITE="OFF"
- )
-
- cmake_src_configure
-}
-
-src_install() {
- dobin "${BUILD_DIR}"/fms
-
- insinto /var/freenet/fms
- doins *.htm
- doins -r fonts images styles translations
-
- fperms -R o-rwx /var/freenet/fms
- fowners -R freenet:freenet /var/freenet/fms
-
- newinitd "${FILESDIR}/fms.initd" fms
-
- einstalldocs
-}
-
-pkg_postinst() {
- if ! has_version 'net-p2p/freenet' ; then
- ewarn "FMS needs a freenet node to upload and download messages."
- ewarn "Please make sure to have a node you can connect to"
- ewarn "or install net-p2p/freenet to get FMS working."
- fi
-
- einfo "By default, the FMS NNTP server will listen on port 1119,"
- einfo "and the web configuration interface will be running at"
- einfo "http://localhost:8080."
- einfo "For more information, read the installed readme.txt."
-
- if use frost; then
- einfo
- einfo "You need to enable frost on the configuration page"
- einfo "and restart FMS for frost support."
- fi
-}
diff --git a/net-p2p/fms/fms-0.3.83.ebuild b/net-p2p/fms/fms-0.3.83.ebuild
deleted file mode 100644
index 4923e8506423..000000000000
--- a/net-p2p/fms/fms-0.3.83.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit edos2unix cmake
-
-DESCRIPTION="A spam-resistant message board application for Freenet"
-# FMS only has a homepage within freenet, so the closest is a wiki linking to it
-HOMEPAGE="https://github.com/freenet/wiki/wiki/FMS"
-SRC_URI="https://dev.gentoo.org/~tommy/distfiles/${PN}-src-${PV}.zip"
-S="${WORKDIR}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="frost ssl"
-
-CDEPEND="
- acct-group/freenet
- acct-user/freenet
-"
-
-RDEPEND="
- ${CDEPEND}
- dev-db/sqlite:3=
- dev-libs/poco
- frost? ( net-libs/mbedtls:0= )
- ssl? ( net-libs/mbedtls:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- ${CDEPEND}
- app-arch/unzip
- virtual/libiconv
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-use-system-libs4.patch"
- "${FILESDIR}/${P}-fix-for-mbedtls-3.patch"
-)
-
-DOCS=( "readme.txt" )
-
-src_prepare() {
- # Convert encoding due applied patch
- edos2unix src/http/pages/showfilepage.cpp
- edos2unix CMakeLists.txt
- edos2unix include/freenet/fcpv2.h
-
- # Remove bundled libs
- rm -fr libs || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DDO_CHARSET_CONVERSION="ON"
- -DFCP_SSL_SUPPORT="$(usex ssl 'ON' 'OFF')"
- -DFROST_SUPPORT="$(usex frost 'ON' 'OFF')"
- -DI_HAVE_READ_THE_README="ON"
- -DUSE_BUNDLED_SQLITE="OFF"
- )
-
- cmake_src_configure
-}
-
-src_install() {
- dobin "${BUILD_DIR}"/fms
-
- insinto /var/freenet/fms
- doins *.htm
- doins -r fonts images styles translations
-
- fperms -R o-rwx /var/freenet/fms
- fowners -R freenet:freenet /var/freenet/fms
-
- newinitd "${FILESDIR}/fms.initd" fms
-
- einstalldocs
-}
-
-pkg_postinst() {
- if ! has_version 'net-p2p/freenet' ; then
- ewarn "FMS needs a freenet node to upload and download messages."
- ewarn "Please make sure to have a node you can connect to"
- ewarn "or install net-p2p/freenet to get FMS working."
- fi
-
- einfo "By default, the FMS NNTP server will listen on port 1119,"
- einfo "and the web configuration interface will be running at"
- einfo "http://localhost:8080."
- einfo "For more information, read the installed readme.txt."
-
- if use frost; then
- einfo
- einfo "You need to enable frost on the configuration page"
- einfo "and restart FMS for frost support."
- fi
-}
next reply other threads:[~2023-02-01 19:27 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-01 19:27 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-05 15:27 [gentoo-commits] repo/gentoo:master commit in: net-p2p/fms/ Arthur Zamarin
2023-06-04 16:19 Arthur Zamarin
2023-01-21 13:40 Thomas Sachau
2021-10-29 8:59 Thomas Sachau
2021-04-12 1:14 Sam James
2020-03-27 17:36 Thomas Sachau
2020-03-18 18:01 Thomas Sachau
2020-03-18 18:01 Thomas Sachau
2020-02-09 8:30 Thomas Sachau
2020-02-09 8:30 Thomas Sachau
2019-12-30 10:40 Thomas Sachau
2019-12-30 10:40 Thomas Sachau
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=1675279599.2325db9f8d7f957d7189d30fc8880a8f43f26816.asturm@gentoo \
--to=asturm@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