From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/inspircd/
Date: Sat, 20 May 2023 12:32:39 +0000 (UTC) [thread overview]
Message-ID: <1684585905.cf7172c92a94e732f4a2fd05d88e7ace19e158ac.juippis@gentoo> (raw)
commit: cf7172c92a94e732f4a2fd05d88e7ace19e158ac
Author: Wade Cline <wadecline <AT> hotmail <DOT> com>
AuthorDate: Mon May 8 06:14:14 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat May 20 12:31:45 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf7172c9
net-irc/inspircd: add 3.16.0
Signed-off-by: Wade Cline <wadecline <AT> hotmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30927
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-irc/inspircd/Manifest | 2 +
net-irc/inspircd/inspircd-3.16.0.ebuild | 113 ++++++++++++++++++++++++++++++++
2 files changed, 115 insertions(+)
diff --git a/net-irc/inspircd/Manifest b/net-irc/inspircd/Manifest
index 1a6c4bb927de..2de3a2a36cee 100644
--- a/net-irc/inspircd/Manifest
+++ b/net-irc/inspircd/Manifest
@@ -1,2 +1,4 @@
DIST inspircd-3.15.0-fix-build-paths.patch.bz2 4733 BLAKE2B 72bc94f8feb5620ce8bd735dd84a5805b086855af39ca204b2159c41f951fd8285e01aca69f9ef1c1b546060eb46a5b6a42c66e8831ab9289663429a8b0371fc SHA512 8d021f04b861d5b3a7bfd19f8b49e34498f1bdda02fda967d78b35af8329819a37a446db42c8c1f7c8543b3fa533dcff214b92b5393cd380a1d47fd32cdf0679
DIST inspircd-3.15.0.tar.gz 874629 BLAKE2B 50dd2cdba497e85da6d72c22f612cae5944f2a654783d6edc673e956a33132c539ab71bc7ab9647468bd96cc3e2c73031a300e39df0753886af8ac532d07b696 SHA512 32d10cd7f6a06c79720c138fc4aff3c8db667754c7a2fe3ad7c07a1e56604bedcf17e3dd5d5f54a6fd49b37414acd57b97afc1d4accbf3e5fbd92b483fe6c394
+DIST inspircd-3.16.0-fix-build-paths.patch.bz2 4737 BLAKE2B 40099378213c5a5b65e7c856255a0dc70a8e026f9b868ab6b79656478b7ba3193bc18c8861c0909936ba56b73b1c3cb8a8dd5e2f435573e480c505d173966e85 SHA512 be8e37107e3c12b7175c02b0e1628fe932284f247c14ed39a9bc8a7212d3d79dd070bf7472b6b47f084388ef5bf28118f5f2a6282e2363d970918147a9a558e3
+DIST inspircd-3.16.0.tar.gz 877665 BLAKE2B 0a07dd00c9092a263a0eab9934ea1a2675aee72438803a4e4d2376a3b622f51211f9586f9300282dde7009fbae583164d1c6892f69cb031e9714a0d410df09b1 SHA512 dfbdb306e79d9a7788cf6c474bfd1d0ce34ea6b3b08e2ab880985d272028a61a6d6257b7b573554f3edd5a51b8d3a29c364beca78caeddd79b251df11e369479
diff --git a/net-irc/inspircd/inspircd-3.16.0.ebuild b/net-irc/inspircd/inspircd-3.16.0.ebuild
new file mode 100644
index 000000000000..7df864d182dd
--- /dev/null
+++ b/net-irc/inspircd/inspircd-3.16.0.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd toolchain-funcs
+
+DESCRIPTION="Inspire IRCd - The Stable, High-Performance Modular IRCd"
+HOMEPAGE="https://www.inspircd.org/"
+SRC_URI="
+ https://github.com/inspircd/inspircd/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://github.com/clinew/gentoo-distfiles/raw/master/inspircd-${PV}-fix-build-paths.patch.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="argon2 debug gnutls ldap maxminddb mbedtls mysql pcre pcre2 postgres re2 regex-posix regex-stdlib sqlite ssl sslrehashsignal tre"
+
+RDEPEND="
+ acct-group/inspircd
+ acct-user/inspircd
+ dev-lang/perl
+ argon2? ( app-crypt/argon2 )
+ gnutls? ( net-libs/gnutls:= dev-libs/libgcrypt:0 )
+ ldap? ( net-nds/openldap:= )
+ maxminddb? ( dev-libs/libmaxminddb:= )
+ mbedtls? ( net-libs/mbedtls:= )
+ mysql? ( dev-db/mysql-connector-c:= )
+ pcre? ( dev-libs/libpcre )
+ pcre2? ( dev-libs/libpcre2 )
+ postgres? ( dev-db/postgresql:= )
+ re2? ( dev-libs/re2:= )
+ sqlite? ( >=dev-db/sqlite-3.0 )
+ ssl? ( dev-libs/openssl:= )
+ tre? ( dev-libs/tre )"
+DEPEND="${RDEPEND}"
+
+DOCS=( docs/. .configure/apparmor )
+PATCHES=( "${WORKDIR}"/${P}-fix-build-paths.patch )
+
+src_configure() {
+ local extras=""
+
+ use argon2 && extras+="argon2,"
+ use gnutls && extras+="ssl_gnutls,"
+ use ldap && extras+="ldap,"
+ use maxminddb && extras+="geo_maxmind,"
+ use mbedtls && extras+="ssl_mbedtls,"
+ use mysql && extras+="mysql,"
+ use pcre && extras+="regex_pcre,"
+ use pcre2 && extras+="regex_pcre2,"
+ use postgres && extras+="pgsql,"
+ use re2 && extras+="regex_re2,"
+ use regex-posix && extras+="regex_posix,"
+ use regex-stdlib && extras+="regex_stdlib,"
+ use sqlite && extras+="sqlite3,"
+ use ssl && extras+="ssl_openssl,"
+ use sslrehashsignal && extras+="sslrehashsignal,"
+ use tre && extras+="regex_tre,"
+
+ # The first configuration run enables certain "extra" InspIRCd
+ # modules, the second run generates the actual makefile.
+ if [[ -n "${extras}" ]]; then
+ ./configure --enable-extras=${extras%,}
+ fi
+
+ local myconf=(
+ --disable-auto-extras
+ --disable-ownership
+ --system
+ --uid ${PN}
+ --gid ${PN}
+ --binary-dir="/usr/bin"
+ --data-dir="/var/lib/${PN}/data"
+ --example-dir="/usr/share/doc/${PV}"
+ --manual-dir="/usr/share/man"
+ --module-dir="/usr/$(get_libdir)/${PN}/modules")
+ CXX="$(tc-getCXX)" ./configure "${myconf[@]}"
+}
+
+src_compile() {
+ emake LDFLAGS="${LDFLAGS}" CXXFLAGS="${CXXFLAGS}" $(usev debug INSPIRCD_DEBUG=2) INSPIRCD_VERBOSE=1
+}
+
+src_install() {
+ default
+
+ insinto "/usr/include/${PN}"
+ doins -r include/.
+
+ newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+ newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+ systemd_dounit .configure/inspircd.service
+
+ keepdir "/var/log/${PN}"
+ insinto "/etc/logrotate.d"
+ newins .configure/logrotate "${PN}"
+
+ diropts -o"${PN}" -g"${PN}" -m0700
+ keepdir "/var/lib/${PN}/data"
+
+ rmdir "${ED}"/run{/inspircd,} || die
+}
+
+pkg_postinst() {
+ if [[ -z "${REPLACING_VERSIONS}" ]]; then
+ # This is a new installation
+ elog "You will find example configuration files under "
+ elog "/usr/share/doc/${PN}"
+ elog "Read the ${PN}.conf.example file carefully before "
+ elog "starting the service."
+ fi
+}
next reply other threads:[~2023-05-20 12:32 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-20 12:32 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-08-25 20:27 [gentoo-commits] repo/gentoo:master commit in: net-irc/inspircd/ Eli Schwartz
2024-08-13 14:57 Arthur Zamarin
2024-08-13 14:57 Arthur Zamarin
2024-08-13 12:41 Joonas Niilola
2024-08-13 12:41 Joonas Niilola
2024-08-13 12:41 Joonas Niilola
2024-07-29 8:14 Joonas Niilola
2024-07-08 5:54 Viorel Munteanu
2023-09-15 4:53 Arthur Zamarin
2023-08-22 5:57 Joonas Niilola
2023-08-22 5:57 Joonas Niilola
2023-07-14 6:50 Joonas Niilola
2023-07-14 6:50 Joonas Niilola
2023-03-08 13:43 Joonas Niilola
2023-02-22 7:51 Joonas Niilola
2023-02-22 6:09 Sam James
2023-01-16 10:26 Viorel Munteanu
2023-01-16 10:26 Viorel Munteanu
2023-01-04 5:23 Sam James
2023-01-04 5:23 Sam James
2022-10-05 0:03 Ionen Wolkens
2022-09-12 13:40 Joonas Niilola
2022-09-05 1:25 Sam James
2022-08-30 5:53 Joonas Niilola
2022-08-30 5:53 Joonas Niilola
2022-07-23 9:13 Joonas Niilola
2022-05-17 11:39 Ionen Wolkens
2022-05-17 11:39 Ionen Wolkens
2022-03-23 5:14 Sam James
2022-03-23 0:14 Sam James
2022-02-09 11:25 Sam James
2022-02-07 9:05 Jakov Smolić
2022-02-07 9:05 Jakov Smolić
2022-02-06 7:40 Sam James
2022-02-05 6:34 Sam James
2022-01-03 18:45 Florian Schmaus
2021-10-27 7:07 Sam James
2021-10-20 7:02 Agostino Sarubbo
2021-10-20 6:56 Agostino Sarubbo
2021-09-10 7:22 Joonas Niilola
2021-09-10 7:22 Joonas Niilola
2021-09-10 7:22 Joonas Niilola
2021-06-21 22:26 Sam James
2021-05-28 12:05 Agostino Sarubbo
2021-05-28 12:02 Agostino Sarubbo
2021-04-26 19:11 Sam James
2021-04-26 19:11 Sam James
2021-01-01 22:19 Andreas Sturmlechner
2020-11-25 7:43 Agostino Sarubbo
2020-11-24 12:57 Agostino Sarubbo
2020-11-22 3:52 Sam James
2020-11-22 3:52 Sam James
2020-11-05 8:12 Joonas Niilola
2020-11-05 8:12 Joonas Niilola
2020-05-04 17:26 Joonas Niilola
2020-05-04 17:26 Joonas Niilola
2020-05-04 17:26 Joonas Niilola
2020-05-04 17:26 Joonas Niilola
2020-04-09 12:38 Joonas Niilola
2020-02-08 16:25 David Seifert
2019-11-26 12:27 Agostino Sarubbo
2019-11-26 10:18 Thomas Deutschmann
2019-11-14 6:26 Joonas Niilola
2019-11-14 6:26 Joonas Niilola
2019-09-01 11:50 Joonas Niilola
2019-08-23 10:03 Agostino Sarubbo
2018-09-30 20:07 Michał Górny
2018-04-19 20:03 Mikle Kolyada
2018-04-17 22:09 Thomas Deutschmann
2017-10-03 20:53 Patrice Clement
2017-06-16 14:45 Patrice Clement
2017-06-11 8:05 Michael Palimaka
2017-03-04 5:52 Michael Palimaka
2017-03-03 9:02 Agostino Sarubbo
2016-01-23 8:26 Michael Palimaka
2016-01-22 13:02 Ian Delaney
2015-09-23 10:03 Agostino Sarubbo
2015-09-23 10:02 Agostino Sarubbo
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=1684585905.cf7172c92a94e732f4a2fd05d88e7ace19e158ac.juippis@gentoo \
--to=juippis@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