public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-04-28 22:55 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-04-28 22:55 UTC (permalink / raw
  To: gentoo-commits

commit:     98ec6c12cb093677104e3458874b868aee546c22
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Apr 28 22:37:27 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Apr 28 22:50:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98ec6c12

net-im/biboumi: Version bump 9.0_pre20200419.

The last release is based on a release from 2018-05-02.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest                       |  1 +
 net-im/biboumi/biboumi-9.0_pre20200419.ebuild | 99 +++++++++++++++++++++++++++
 2 files changed, 100 insertions(+)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index 7da872e..cd0fc71 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1 +1,2 @@
 DIST biboumi-8.4.tar.xz 142576 BLAKE2B 3be5f8caf406c480a2750d76eacfe9191bccd8bd0fc2ba0ffe6352bf6f6527ab60f16eb25c9820c063af6c9ff4f1b125eb8d51d53bae4392a0d276e7ad488087 SHA512 69f7a47aaf2729a6bffb047201305cef4b87da952aa103d82e715585bf7b2e97fca8159ced1d74c4b01508c874c0db274d7b8349d1579ee3e69fc0ced2c260c2
+DIST biboumi-9.0_pre20200419.tar.bz2 150555 BLAKE2B 6c73abcd62c7448cfc990c7228b37c0eda57d05ee987ef5c9661ed2bf8b8376e253e9507c03151d7334b5bff7c8e6807188e5e806473deb79d96fb81212cfb1f SHA512 b86485c0aae5cca6b5909eec2159c9b52069aade3e399721826c02f297b6f3d57e0ddcab9df4f6aa32b0219ccfbf1c7c63c1f51e4b8ab051b6d1f4dbbb34789e

diff --git a/net-im/biboumi/biboumi-9.0_pre20200419.ebuild b/net-im/biboumi/biboumi-9.0_pre20200419.ebuild
new file mode 100644
index 0000000..3394340
--- /dev/null
+++ b/net-im/biboumi/biboumi-9.0_pre20200419.ebuild
@@ -0,0 +1,99 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake fcaps
+
+MY_COMMIT="2ef41e1afca824acc0cd0ac9a714016459a24d25"
+
+DESCRIPTION="XMPP gateway to IRC"
+HOMEPAGE="https://biboumi.louiz.org/"
+SRC_URI="https://lab.louiz.org/louiz/biboumi/-/archive/${MY_COMMIT}/biboumi-${MY_COMMIT}.tar.bz2 -> ${P}.tar.bz2"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
+
+DEPEND="
+	dev-libs/expat
+	virtual/libiconv
+	sys-apps/util-linux
+	sqlite? ( dev-db/sqlite )
+	postgres? ( dev-db/postgresql:* )
+	idn? ( net-dns/libidn )
+	udns? ( net-libs/udns )
+	ssl? ( dev-libs/botan:2 )
+	!ssl? ( dev-libs/libgcrypt )
+	systemd? ( sys-apps/systemd )
+"
+BDEPEND="dev-python/sphinx"
+RDEPEND="
+	${DEPEND}
+	acct-user/biboumi"
+
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+DOCS=( README.rst CHANGELOG.rst doc/user.rst )
+
+# Allow biboumi to run an identd on port 113.
+FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
+
+src_prepare() {
+	cmake_src_prepare
+
+	if ! use systemd; then		# Don't install biboumi.service.
+		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_BOTAN="$(usex ssl)"
+		-DWITH_LIBIDN="$(usex idn)"
+		-DWITH_SYSTEMD="$(usex systemd)"
+		-DWITH_UDNS="$(usex udns)"
+		-DWITH_SQLITE3="$(usex sqlite)"
+		-DWITH_POSTGRESQL="$(usex postgres)"
+
+		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
+		-DWITHOUT_UDNS="$(usex udns no yes)"
+		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
+	)							# The WITHOUT_* is really needed.
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+
+	cmake_build man
+}
+
+src_install() {
+	cmake_src_install
+
+	if ! use systemd; then
+		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	fi
+
+	if use logrotate; then
+		insinto etc/logrotate.d
+		if use systemd; then
+			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
+		else
+			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
+		fi
+	fi
+
+	diropts --owner=biboumi --group=biboumi --mode=750
+	if use sqlite; then
+		keepdir var/lib/biboumi
+	fi
+	keepdir var/log/biboumi
+
+	insinto etc/biboumi
+	insopts --group=biboumi --mode=640
+	newins conf/biboumi.cfg biboumi.cfg.example
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-05-10 23:39 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-05-10 23:39 UTC (permalink / raw
  To: gentoo-commits

commit:     032d27768588ecb476a7b5ffa256581f89a0665e
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Sun May 10 23:35:52 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun May 10 23:38:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=032d2776

net-im/biboumi: Version bump 9.0_pre20200509.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest                       |  1 +
 net-im/biboumi/biboumi-9.0_pre20200509.ebuild | 98 +++++++++++++++++++++++++++
 2 files changed, 99 insertions(+)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index 3e434ca..a722248 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,3 +1,4 @@
 DIST biboumi-8.4.tar.xz 142576 BLAKE2B 3be5f8caf406c480a2750d76eacfe9191bccd8bd0fc2ba0ffe6352bf6f6527ab60f16eb25c9820c063af6c9ff4f1b125eb8d51d53bae4392a0d276e7ad488087 SHA512 69f7a47aaf2729a6bffb047201305cef4b87da952aa103d82e715585bf7b2e97fca8159ced1d74c4b01508c874c0db274d7b8349d1579ee3e69fc0ced2c260c2
 DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
 DIST biboumi-9.0_pre20200419.tar.bz2 150555 BLAKE2B 6c73abcd62c7448cfc990c7228b37c0eda57d05ee987ef5c9661ed2bf8b8376e253e9507c03151d7334b5bff7c8e6807188e5e806473deb79d96fb81212cfb1f SHA512 b86485c0aae5cca6b5909eec2159c9b52069aade3e399721826c02f297b6f3d57e0ddcab9df4f6aa32b0219ccfbf1c7c63c1f51e4b8ab051b6d1f4dbbb34789e
+DIST biboumi-9.0_pre20200509.tar.bz2 153874 BLAKE2B 1ed805ebf5af1c82e350accf3375926c27c396880cedc7bceb7aa7066ac9b2958968562416dc9a9a56433e67db2dd47639f259c1a06ce939e082cfef68e0ea18 SHA512 52784f313da1bf0cfc61b7ad6e2feb5c86d55ee940026334713beb79f756e45fd78b3c1913e057ce59d8ab6db6b74de8d5bd8c866aef8ce02a56a4acc6ddcd83

diff --git a/net-im/biboumi/biboumi-9.0_pre20200509.ebuild b/net-im/biboumi/biboumi-9.0_pre20200509.ebuild
new file mode 100644
index 0000000..a06e5d9
--- /dev/null
+++ b/net-im/biboumi/biboumi-9.0_pre20200509.ebuild
@@ -0,0 +1,98 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake fcaps
+
+MY_COMMIT="0479bd031922f5eb9fd8f8873eec60dc380abfc3"
+
+DESCRIPTION="XMPP gateway to IRC"
+HOMEPAGE="https://biboumi.louiz.org/"
+SRC_URI="https://lab.louiz.org/louiz/biboumi/-/archive/${MY_COMMIT}/biboumi-${MY_COMMIT}.tar.bz2 -> ${P}.tar.bz2"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
+
+DEPEND="
+	dev-libs/expat
+	virtual/libiconv
+	sys-apps/util-linux
+	sqlite? ( dev-db/sqlite )
+	postgres? ( dev-db/postgresql:* )
+	idn? ( net-dns/libidn )
+	udns? ( net-libs/udns )
+	ssl? ( dev-libs/botan:2 )
+	!ssl? ( dev-libs/libgcrypt )
+	systemd? ( sys-apps/systemd )
+"
+BDEPEND="dev-python/sphinx"
+RDEPEND="
+	${DEPEND}
+	acct-user/biboumi"
+
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+DOCS=( README.rst CHANGELOG.rst doc/user.rst )
+
+# Allow biboumi to run an identd on port 113.
+FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
+
+src_prepare() {
+	cmake_src_prepare
+
+	if ! use systemd; then		# Don't install biboumi.service.
+		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_BOTAN="$(usex ssl)"
+		-DWITH_LIBIDN="$(usex idn)"
+		-DWITH_SYSTEMD="$(usex systemd)"
+		-DWITH_UDNS="$(usex udns)"
+		-DWITH_SQLITE3="$(usex sqlite)"
+		-DWITH_POSTGRESQL="$(usex postgres)"
+
+		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
+		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
+	)							# The WITHOUT_* is really needed.
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+
+	cmake_build man
+}
+
+src_install() {
+	cmake_src_install
+
+	if ! use systemd; then
+		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	fi
+
+	if use logrotate; then
+		insinto etc/logrotate.d
+		if use systemd; then
+			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
+		else
+			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
+		fi
+	fi
+
+	diropts --owner=biboumi --group=biboumi --mode=750
+	if use sqlite; then
+		keepdir var/lib/biboumi
+	fi
+	keepdir var/log/biboumi
+
+	insinto etc/biboumi
+	insopts --group=biboumi --mode=640
+	newins conf/biboumi.cfg biboumi.cfg.example
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-05-10 23:39 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-05-10 23:39 UTC (permalink / raw
  To: gentoo-commits

commit:     3aca34bde7a208d5e0279a3c9ce3bde31781c188
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Sun May 10 23:29:22 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun May 10 23:38:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3aca34bd

net-im/biboumi: Version bump 8.5.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest           |  1 +
 net-im/biboumi/biboumi-8.5.ebuild | 88 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 89 insertions(+)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index cd0fc71..3e434ca 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,2 +1,3 @@
 DIST biboumi-8.4.tar.xz 142576 BLAKE2B 3be5f8caf406c480a2750d76eacfe9191bccd8bd0fc2ba0ffe6352bf6f6527ab60f16eb25c9820c063af6c9ff4f1b125eb8d51d53bae4392a0d276e7ad488087 SHA512 69f7a47aaf2729a6bffb047201305cef4b87da952aa103d82e715585bf7b2e97fca8159ced1d74c4b01508c874c0db274d7b8349d1579ee3e69fc0ced2c260c2
+DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
 DIST biboumi-9.0_pre20200419.tar.bz2 150555 BLAKE2B 6c73abcd62c7448cfc990c7228b37c0eda57d05ee987ef5c9661ed2bf8b8376e253e9507c03151d7334b5bff7c8e6807188e5e806473deb79d96fb81212cfb1f SHA512 b86485c0aae5cca6b5909eec2159c9b52069aade3e399721826c02f297b6f3d57e0ddcab9df4f6aa32b0219ccfbf1c7c63c1f51e4b8ab051b6d1f4dbbb34789e

diff --git a/net-im/biboumi/biboumi-8.5.ebuild b/net-im/biboumi/biboumi-8.5.ebuild
new file mode 100644
index 0000000..1fa0194
--- /dev/null
+++ b/net-im/biboumi/biboumi-8.5.ebuild
@@ -0,0 +1,88 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake fcaps
+
+DESCRIPTION="XMPP gateway to IRC"
+HOMEPAGE="https://biboumi.louiz.org/"
+SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${PV}.tar.xz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
+
+DEPEND="
+	dev-libs/expat
+	virtual/libiconv
+	sys-apps/util-linux
+	sqlite? ( dev-db/sqlite )
+	postgres? ( dev-db/postgresql:* )
+	idn? ( net-dns/libidn )
+	udns? ( net-libs/udns )
+	ssl? ( dev-libs/botan:2 )
+	!ssl? ( dev-libs/libgcrypt )
+	systemd? ( sys-apps/systemd )
+"
+BDEPEND="app-text/pandoc"
+RDEPEND="
+	${DEPEND}
+	acct-user/biboumi"
+
+DOCS=( README.rst CHANGELOG.rst )
+
+# Allow biboumi to run an identd on port 113.
+FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
+
+src_prepare() {
+	cmake_src_prepare
+
+	if ! use systemd; then		# Don't install biboumi.service.
+		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_BOTAN="$(usex ssl)"
+		-DWITH_LIBIDN="$(usex idn)"
+		-DWITH_SYSTEMD="$(usex systemd)"
+		-DWITH_UDNS="$(usex udns)"
+		-DWITH_SQLITE3="$(usex sqlite)"
+		-DWITH_POSTGRESQL="$(usex postgres)"
+
+		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
+		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
+	)							# The WITHOUT_* is really needed.
+
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	if ! use systemd; then
+		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	fi
+
+	if use logrotate; then
+		insinto etc/logrotate.d
+		if use systemd; then
+			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
+		else
+			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
+		fi
+	fi
+
+	diropts --owner=biboumi --group=biboumi --mode=750
+	if use sqlite; then
+		keepdir var/lib/biboumi
+	fi
+	keepdir var/log/biboumi
+
+	insinto etc/biboumi
+	insopts --group=biboumi --mode=640
+	doins conf/biboumi.cfg
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-05-10 23:46 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-05-10 23:46 UTC (permalink / raw
  To: gentoo-commits

commit:     f47c33a30c0ba2d52fd3f620a3642d571fa95f58
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Sun May 10 23:44:03 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun May 10 23:44:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f47c33a3

net-im/biboumi: Add subslot for officially released versions.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/biboumi-8.4.ebuild | 2 +-
 net-im/biboumi/biboumi-8.5.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/biboumi/biboumi-8.4.ebuild b/net-im/biboumi/biboumi-8.4.ebuild
index 280f4b3..fb34587 100644
--- a/net-im/biboumi/biboumi-8.4.ebuild
+++ b/net-im/biboumi/biboumi-8.4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://biboumi.louiz.org/"
 SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${PV}.tar.xz"
 
 LICENSE="ZLIB"
-SLOT="0"
+SLOT="0/8"
 KEYWORDS="~amd64"
 IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
 

diff --git a/net-im/biboumi/biboumi-8.5.ebuild b/net-im/biboumi/biboumi-8.5.ebuild
index 1fa0194..23c875a 100644
--- a/net-im/biboumi/biboumi-8.5.ebuild
+++ b/net-im/biboumi/biboumi-8.5.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://biboumi.louiz.org/"
 SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${PV}.tar.xz"
 
 LICENSE="ZLIB"
-SLOT="0"
+SLOT="0/8"
 KEYWORDS="~amd64"
 IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-08-12 11:23 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-08-12 11:23 UTC (permalink / raw
  To: gentoo-commits

commit:     78a2d378602acf0f9a6b32d8c3c2909734f7699b
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Aug 12 11:22:42 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Aug 12 11:22:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78a2d378

net-im/biboumi: Delete old ebuilds.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest                       |  2 -
 net-im/biboumi/biboumi-8.4.ebuild             | 98 --------------------------
 net-im/biboumi/biboumi-9.0_pre20200419.ebuild | 99 ---------------------------
 3 files changed, 199 deletions(-)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index cacb063..121c007 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,5 +1,3 @@
-DIST biboumi-8.4.tar.xz 142576 BLAKE2B 3be5f8caf406c480a2750d76eacfe9191bccd8bd0fc2ba0ffe6352bf6f6527ab60f16eb25c9820c063af6c9ff4f1b125eb8d51d53bae4392a0d276e7ad488087 SHA512 69f7a47aaf2729a6bffb047201305cef4b87da952aa103d82e715585bf7b2e97fca8159ced1d74c4b01508c874c0db274d7b8349d1579ee3e69fc0ced2c260c2
 DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
-DIST biboumi-9.0_pre20200419.tar.bz2 150555 BLAKE2B 6c73abcd62c7448cfc990c7228b37c0eda57d05ee987ef5c9661ed2bf8b8376e253e9507c03151d7334b5bff7c8e6807188e5e806473deb79d96fb81212cfb1f SHA512 b86485c0aae5cca6b5909eec2159c9b52069aade3e399721826c02f297b6f3d57e0ddcab9df4f6aa32b0219ccfbf1c7c63c1f51e4b8ab051b6d1f4dbbb34789e
 DIST biboumi-9.0-rc1.tar.xz 161008 BLAKE2B f1cf02d714a03633bcc8737d319f1c1c232b17edd6961ae9478189e85773b0cf28844e2d6173a63704353a371506cf1f4bc72a032434199e19d85a2383e9e261 SHA512 893d01e0b9d9606920b0cdecb45dec8a01b56701413d4633805db3dd5c32cd3bd2342c31d043beb34ac73c664dd968adc1f5e90a555369d8e6c78c4034bd1f20
 DIST biboumi-9.0_pre20200509.tar.bz2 153874 BLAKE2B 1ed805ebf5af1c82e350accf3375926c27c396880cedc7bceb7aa7066ac9b2958968562416dc9a9a56433e67db2dd47639f259c1a06ce939e082cfef68e0ea18 SHA512 52784f313da1bf0cfc61b7ad6e2feb5c86d55ee940026334713beb79f756e45fd78b3c1913e057ce59d8ab6db6b74de8d5bd8c866aef8ce02a56a4acc6ddcd83

diff --git a/net-im/biboumi/biboumi-8.4.ebuild b/net-im/biboumi/biboumi-8.4.ebuild
deleted file mode 100644
index fb34587..0000000
--- a/net-im/biboumi/biboumi-8.4.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake fcaps
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${PV}.tar.xz"
-
-LICENSE="ZLIB"
-SLOT="0/8"
-KEYWORDS="~amd64"
-IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
-
-DEPEND="
-	dev-libs/expat
-	virtual/libiconv
-	sys-apps/util-linux
-	sqlite? ( dev-db/sqlite )
-	postgres? ( dev-db/postgresql:* )
-	idn? ( net-dns/libidn )
-	udns? ( net-libs/udns )
-	ssl? ( dev-libs/botan:2 )
-	!ssl? ( dev-libs/libgcrypt )
-	systemd? ( sys-apps/systemd )
-"
-BDEPEND="app-text/pandoc"
-RDEPEND="
-	${DEPEND}
-	acct-user/biboumi"
-
-DOCS=( README.rst CHANGELOG.rst )
-
-# Allow biboumi to run an identd on port 113.
-FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if ! use systemd; then		# Don't install biboumi.service.
-		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_BOTAN="$(usex ssl)"
-		-DWITH_LIBIDN="$(usex idn)"
-		-DWITH_SYSTEMD="$(usex systemd)"
-		-DWITH_UDNS="$(usex udns)"
-		-DWITH_SQLITE3="$(usex sqlite)"
-		-DWITH_POSTGRESQL="$(usex postgres)"
-
-		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
-		-DWITHOUT_UDNS="$(usex udns no yes)"
-		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
-	)							# The WITHOUT_* is really needed.
-
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-
-	# The man page is not generated by the build system.
-	mkdir "${S}/man" || die
-	pandoc --standalone --to=man "doc/biboumi.1.rst" \
-		   --output="${S}/man/biboumi.1" || die
-}
-
-src_install() {
-	cmake_src_install
-
-	if ! use systemd; then
-		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	fi
-
-	if use logrotate; then
-		insinto etc/logrotate.d
-		if use systemd; then
-			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
-		else
-			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
-		fi
-	fi
-
-	diropts --owner=biboumi --group=biboumi --mode=750
-	if use sqlite; then
-		keepdir var/lib/biboumi
-	fi
-	keepdir var/log/biboumi
-
-	insinto etc/biboumi
-	insopts --group=biboumi --mode=640
-	doins conf/biboumi.cfg
-}

diff --git a/net-im/biboumi/biboumi-9.0_pre20200419.ebuild b/net-im/biboumi/biboumi-9.0_pre20200419.ebuild
deleted file mode 100644
index 3394340..0000000
--- a/net-im/biboumi/biboumi-9.0_pre20200419.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake fcaps
-
-MY_COMMIT="2ef41e1afca824acc0cd0ac9a714016459a24d25"
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://lab.louiz.org/louiz/biboumi/-/archive/${MY_COMMIT}/biboumi-${MY_COMMIT}.tar.bz2 -> ${P}.tar.bz2"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
-
-DEPEND="
-	dev-libs/expat
-	virtual/libiconv
-	sys-apps/util-linux
-	sqlite? ( dev-db/sqlite )
-	postgres? ( dev-db/postgresql:* )
-	idn? ( net-dns/libidn )
-	udns? ( net-libs/udns )
-	ssl? ( dev-libs/botan:2 )
-	!ssl? ( dev-libs/libgcrypt )
-	systemd? ( sys-apps/systemd )
-"
-BDEPEND="dev-python/sphinx"
-RDEPEND="
-	${DEPEND}
-	acct-user/biboumi"
-
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-DOCS=( README.rst CHANGELOG.rst doc/user.rst )
-
-# Allow biboumi to run an identd on port 113.
-FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if ! use systemd; then		# Don't install biboumi.service.
-		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_BOTAN="$(usex ssl)"
-		-DWITH_LIBIDN="$(usex idn)"
-		-DWITH_SYSTEMD="$(usex systemd)"
-		-DWITH_UDNS="$(usex udns)"
-		-DWITH_SQLITE3="$(usex sqlite)"
-		-DWITH_POSTGRESQL="$(usex postgres)"
-
-		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
-		-DWITHOUT_UDNS="$(usex udns no yes)"
-		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
-	)							# The WITHOUT_* is really needed.
-
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-
-	cmake_build man
-}
-
-src_install() {
-	cmake_src_install
-
-	if ! use systemd; then
-		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	fi
-
-	if use logrotate; then
-		insinto etc/logrotate.d
-		if use systemd; then
-			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
-		else
-			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
-		fi
-	fi
-
-	diropts --owner=biboumi --group=biboumi --mode=750
-	if use sqlite; then
-		keepdir var/lib/biboumi
-	fi
-	keepdir var/log/biboumi
-
-	insinto etc/biboumi
-	insopts --group=biboumi --mode=640
-	newins conf/biboumi.cfg biboumi.cfg.example
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-08-12 11:23 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-08-12 11:23 UTC (permalink / raw
  To: gentoo-commits

commit:     c839121e5a1190851d4677d33b35539f0053a523
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Aug 12 11:16:50 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Aug 12 11:21:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c839121e

net-im/biboumi: Version bump 9.0_rc1.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest               |  1 +
 net-im/biboumi/biboumi-9.0_rc1.ebuild | 98 +++++++++++++++++++++++++++++++++++
 2 files changed, 99 insertions(+)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index a722248..cacb063 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,4 +1,5 @@
 DIST biboumi-8.4.tar.xz 142576 BLAKE2B 3be5f8caf406c480a2750d76eacfe9191bccd8bd0fc2ba0ffe6352bf6f6527ab60f16eb25c9820c063af6c9ff4f1b125eb8d51d53bae4392a0d276e7ad488087 SHA512 69f7a47aaf2729a6bffb047201305cef4b87da952aa103d82e715585bf7b2e97fca8159ced1d74c4b01508c874c0db274d7b8349d1579ee3e69fc0ced2c260c2
 DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
 DIST biboumi-9.0_pre20200419.tar.bz2 150555 BLAKE2B 6c73abcd62c7448cfc990c7228b37c0eda57d05ee987ef5c9661ed2bf8b8376e253e9507c03151d7334b5bff7c8e6807188e5e806473deb79d96fb81212cfb1f SHA512 b86485c0aae5cca6b5909eec2159c9b52069aade3e399721826c02f297b6f3d57e0ddcab9df4f6aa32b0219ccfbf1c7c63c1f51e4b8ab051b6d1f4dbbb34789e
+DIST biboumi-9.0-rc1.tar.xz 161008 BLAKE2B f1cf02d714a03633bcc8737d319f1c1c232b17edd6961ae9478189e85773b0cf28844e2d6173a63704353a371506cf1f4bc72a032434199e19d85a2383e9e261 SHA512 893d01e0b9d9606920b0cdecb45dec8a01b56701413d4633805db3dd5c32cd3bd2342c31d043beb34ac73c664dd968adc1f5e90a555369d8e6c78c4034bd1f20
 DIST biboumi-9.0_pre20200509.tar.bz2 153874 BLAKE2B 1ed805ebf5af1c82e350accf3375926c27c396880cedc7bceb7aa7066ac9b2958968562416dc9a9a56433e67db2dd47639f259c1a06ce939e082cfef68e0ea18 SHA512 52784f313da1bf0cfc61b7ad6e2feb5c86d55ee940026334713beb79f756e45fd78b3c1913e057ce59d8ab6db6b74de8d5bd8c866aef8ce02a56a4acc6ddcd83

diff --git a/net-im/biboumi/biboumi-9.0_rc1.ebuild b/net-im/biboumi/biboumi-9.0_rc1.ebuild
new file mode 100644
index 0000000..fbbc2b3
--- /dev/null
+++ b/net-im/biboumi/biboumi-9.0_rc1.ebuild
@@ -0,0 +1,98 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake fcaps
+
+MY_PV="${PV/_/-}"
+
+DESCRIPTION="XMPP gateway to IRC"
+HOMEPAGE="https://biboumi.louiz.org/"
+SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${MY_PV}.tar.xz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
+
+DEPEND="
+	dev-libs/expat
+	virtual/libiconv
+	sys-apps/util-linux
+	sqlite? ( dev-db/sqlite )
+	postgres? ( dev-db/postgresql:* )
+	idn? ( net-dns/libidn )
+	udns? ( net-libs/udns )
+	ssl? ( dev-libs/botan:2 )
+	!ssl? ( dev-libs/libgcrypt )
+	systemd? ( sys-apps/systemd )
+"
+BDEPEND="dev-python/sphinx"
+RDEPEND="
+	${DEPEND}
+	acct-user/biboumi"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+DOCS=( README.rst CHANGELOG.rst doc/user.rst )
+
+# Allow biboumi to run an identd on port 113.
+FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
+
+src_prepare() {
+	cmake_src_prepare
+
+	if ! use systemd; then		# Don't install biboumi.service.
+		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_BOTAN="$(usex ssl)"
+		-DWITH_LIBIDN="$(usex idn)"
+		-DWITH_SYSTEMD="$(usex systemd)"
+		-DWITH_UDNS="$(usex udns)"
+		-DWITH_SQLITE3="$(usex sqlite)"
+		-DWITH_POSTGRESQL="$(usex postgres)"
+
+		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
+		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
+	)							# The WITHOUT_* is really needed.
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+
+	cmake_build man
+}
+
+src_install() {
+	cmake_src_install
+
+	if ! use systemd; then
+		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	fi
+
+	if use logrotate; then
+		insinto etc/logrotate.d
+		if use systemd; then
+			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
+		else
+			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
+		fi
+	fi
+
+	diropts --owner=biboumi --group=biboumi --mode=750
+	if use sqlite; then
+		keepdir var/lib/biboumi
+	fi
+	keepdir var/log/biboumi
+
+	insinto etc/biboumi
+	insopts --group=biboumi --mode=640
+	newins conf/biboumi.cfg biboumi.cfg.example
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-09-23  0:30 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-09-23  0:30 UTC (permalink / raw
  To: gentoo-commits

commit:     5fa84d967356fd622df25f972776326edc74f62d
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Sep 23 00:29:09 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Sep 23 00:30:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5fa84d96

net-im/biboumi: Delete old ebuilds.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest                       |  1 -
 net-im/biboumi/biboumi-9.0_pre20200509.ebuild | 98 ---------------------------
 net-im/biboumi/biboumi-9.0_rc1.ebuild         | 98 ---------------------------
 3 files changed, 197 deletions(-)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index 5e343e1d..1a361d5b 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,4 +1,3 @@
 DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
 DIST biboumi-9.0-rc1.tar.xz 161008 BLAKE2B f1cf02d714a03633bcc8737d319f1c1c232b17edd6961ae9478189e85773b0cf28844e2d6173a63704353a371506cf1f4bc72a032434199e19d85a2383e9e261 SHA512 893d01e0b9d9606920b0cdecb45dec8a01b56701413d4633805db3dd5c32cd3bd2342c31d043beb34ac73c664dd968adc1f5e90a555369d8e6c78c4034bd1f20
 DIST biboumi-9.0.tar.xz 161192 BLAKE2B 27c19f5c44e23caae07bd579b01d663e73cd8b432203ac95ae77e651936eea7cc443f389e589acebe5b36c32e96f215fdf0a86c97193726d601b53b709a2d66e SHA512 cfaacd831b56031906922472275c55fd6f1a5307ebe54959d21e3799ad4612499e8beeb34e8736df9eabc9fec1a861d17567250d64f316ace47395fd6c8f3c18
-DIST biboumi-9.0_pre20200509.tar.bz2 153874 BLAKE2B 1ed805ebf5af1c82e350accf3375926c27c396880cedc7bceb7aa7066ac9b2958968562416dc9a9a56433e67db2dd47639f259c1a06ce939e082cfef68e0ea18 SHA512 52784f313da1bf0cfc61b7ad6e2feb5c86d55ee940026334713beb79f756e45fd78b3c1913e057ce59d8ab6db6b74de8d5bd8c866aef8ce02a56a4acc6ddcd83

diff --git a/net-im/biboumi/biboumi-9.0_pre20200509.ebuild b/net-im/biboumi/biboumi-9.0_pre20200509.ebuild
deleted file mode 100644
index a06e5d98..00000000
--- a/net-im/biboumi/biboumi-9.0_pre20200509.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake fcaps
-
-MY_COMMIT="0479bd031922f5eb9fd8f8873eec60dc380abfc3"
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://lab.louiz.org/louiz/biboumi/-/archive/${MY_COMMIT}/biboumi-${MY_COMMIT}.tar.bz2 -> ${P}.tar.bz2"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
-
-DEPEND="
-	dev-libs/expat
-	virtual/libiconv
-	sys-apps/util-linux
-	sqlite? ( dev-db/sqlite )
-	postgres? ( dev-db/postgresql:* )
-	idn? ( net-dns/libidn )
-	udns? ( net-libs/udns )
-	ssl? ( dev-libs/botan:2 )
-	!ssl? ( dev-libs/libgcrypt )
-	systemd? ( sys-apps/systemd )
-"
-BDEPEND="dev-python/sphinx"
-RDEPEND="
-	${DEPEND}
-	acct-user/biboumi"
-
-S="${WORKDIR}/${PN}-${MY_COMMIT}"
-
-DOCS=( README.rst CHANGELOG.rst doc/user.rst )
-
-# Allow biboumi to run an identd on port 113.
-FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if ! use systemd; then		# Don't install biboumi.service.
-		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_BOTAN="$(usex ssl)"
-		-DWITH_LIBIDN="$(usex idn)"
-		-DWITH_SYSTEMD="$(usex systemd)"
-		-DWITH_UDNS="$(usex udns)"
-		-DWITH_SQLITE3="$(usex sqlite)"
-		-DWITH_POSTGRESQL="$(usex postgres)"
-
-		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
-		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
-	)							# The WITHOUT_* is really needed.
-
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-
-	cmake_build man
-}
-
-src_install() {
-	cmake_src_install
-
-	if ! use systemd; then
-		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	fi
-
-	if use logrotate; then
-		insinto etc/logrotate.d
-		if use systemd; then
-			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
-		else
-			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
-		fi
-	fi
-
-	diropts --owner=biboumi --group=biboumi --mode=750
-	if use sqlite; then
-		keepdir var/lib/biboumi
-	fi
-	keepdir var/log/biboumi
-
-	insinto etc/biboumi
-	insopts --group=biboumi --mode=640
-	newins conf/biboumi.cfg biboumi.cfg.example
-}

diff --git a/net-im/biboumi/biboumi-9.0_rc1.ebuild b/net-im/biboumi/biboumi-9.0_rc1.ebuild
deleted file mode 100644
index fbbc2b39..00000000
--- a/net-im/biboumi/biboumi-9.0_rc1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake fcaps
-
-MY_PV="${PV/_/-}"
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${MY_PV}.tar.xz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
-
-DEPEND="
-	dev-libs/expat
-	virtual/libiconv
-	sys-apps/util-linux
-	sqlite? ( dev-db/sqlite )
-	postgres? ( dev-db/postgresql:* )
-	idn? ( net-dns/libidn )
-	udns? ( net-libs/udns )
-	ssl? ( dev-libs/botan:2 )
-	!ssl? ( dev-libs/libgcrypt )
-	systemd? ( sys-apps/systemd )
-"
-BDEPEND="dev-python/sphinx"
-RDEPEND="
-	${DEPEND}
-	acct-user/biboumi"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-DOCS=( README.rst CHANGELOG.rst doc/user.rst )
-
-# Allow biboumi to run an identd on port 113.
-FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if ! use systemd; then		# Don't install biboumi.service.
-		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_BOTAN="$(usex ssl)"
-		-DWITH_LIBIDN="$(usex idn)"
-		-DWITH_SYSTEMD="$(usex systemd)"
-		-DWITH_UDNS="$(usex udns)"
-		-DWITH_SQLITE3="$(usex sqlite)"
-		-DWITH_POSTGRESQL="$(usex postgres)"
-
-		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
-		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
-	)							# The WITHOUT_* is really needed.
-
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-
-	cmake_build man
-}
-
-src_install() {
-	cmake_src_install
-
-	if ! use systemd; then
-		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	fi
-
-	if use logrotate; then
-		insinto etc/logrotate.d
-		if use systemd; then
-			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
-		else
-			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
-		fi
-	fi
-
-	diropts --owner=biboumi --group=biboumi --mode=750
-	if use sqlite; then
-		keepdir var/lib/biboumi
-	fi
-	keepdir var/log/biboumi
-
-	insinto etc/biboumi
-	insopts --group=biboumi --mode=640
-	newins conf/biboumi.cfg biboumi.cfg.example
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2020-09-23  0:30 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2020-09-23  0:30 UTC (permalink / raw
  To: gentoo-commits

commit:     fb0c7ba4715a947972e4a3caf8895561c8d0b387
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Sep 23 00:27:27 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Sep 23 00:29:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb0c7ba4

net-im/biboumi: Version bump 9.9.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest           |  1 +
 net-im/biboumi/biboumi-9.0.ebuild | 99 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 100 insertions(+)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index 121c0079..5e343e1d 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,3 +1,4 @@
 DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
 DIST biboumi-9.0-rc1.tar.xz 161008 BLAKE2B f1cf02d714a03633bcc8737d319f1c1c232b17edd6961ae9478189e85773b0cf28844e2d6173a63704353a371506cf1f4bc72a032434199e19d85a2383e9e261 SHA512 893d01e0b9d9606920b0cdecb45dec8a01b56701413d4633805db3dd5c32cd3bd2342c31d043beb34ac73c664dd968adc1f5e90a555369d8e6c78c4034bd1f20
+DIST biboumi-9.0.tar.xz 161192 BLAKE2B 27c19f5c44e23caae07bd579b01d663e73cd8b432203ac95ae77e651936eea7cc443f389e589acebe5b36c32e96f215fdf0a86c97193726d601b53b709a2d66e SHA512 cfaacd831b56031906922472275c55fd6f1a5307ebe54959d21e3799ad4612499e8beeb34e8736df9eabc9fec1a861d17567250d64f316ace47395fd6c8f3c18
 DIST biboumi-9.0_pre20200509.tar.bz2 153874 BLAKE2B 1ed805ebf5af1c82e350accf3375926c27c396880cedc7bceb7aa7066ac9b2958968562416dc9a9a56433e67db2dd47639f259c1a06ce939e082cfef68e0ea18 SHA512 52784f313da1bf0cfc61b7ad6e2feb5c86d55ee940026334713beb79f756e45fd78b3c1913e057ce59d8ab6db6b74de8d5bd8c866aef8ce02a56a4acc6ddcd83

diff --git a/net-im/biboumi/biboumi-9.0.ebuild b/net-im/biboumi/biboumi-9.0.ebuild
new file mode 100644
index 00000000..6df3ce67
--- /dev/null
+++ b/net-im/biboumi/biboumi-9.0.ebuild
@@ -0,0 +1,99 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake fcaps
+
+MY_PV="${PV/_/-}"
+
+DESCRIPTION="XMPP gateway to IRC"
+HOMEPAGE="https://biboumi.louiz.org/"
+SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${MY_PV}.tar.xz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
+
+DEPEND="
+	dev-libs/expat
+	virtual/libiconv
+	sys-apps/util-linux
+	sqlite? ( dev-db/sqlite )
+	postgres? ( dev-db/postgresql:* )
+	idn? ( net-dns/libidn )
+	udns? ( net-libs/udns )
+	ssl? ( dev-libs/botan:2 )
+	!ssl? ( dev-libs/libgcrypt )
+	systemd? ( sys-apps/systemd )
+"
+BDEPEND="dev-python/sphinx"
+RDEPEND="
+	${DEPEND}
+	acct-user/biboumi
+"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+DOCS=( README.rst CHANGELOG.rst doc/user.rst )
+
+# Allow biboumi to run an identd on port 113.
+FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
+
+src_prepare() {
+	cmake_src_prepare
+
+	if ! use systemd; then		# Don't install biboumi.service.
+		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_BOTAN="$(usex ssl)"
+		-DWITH_LIBIDN="$(usex idn)"
+		-DWITH_SYSTEMD="$(usex systemd)"
+		-DWITH_UDNS="$(usex udns)"
+		-DWITH_SQLITE3="$(usex sqlite)"
+		-DWITH_POSTGRESQL="$(usex postgres)"
+
+		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
+		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
+	)							# The WITHOUT_* is really needed.
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+
+	cmake_build man
+}
+
+src_install() {
+	cmake_src_install
+
+	if ! use systemd; then
+		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	fi
+
+	if use logrotate; then
+		insinto etc/logrotate.d
+		if use systemd; then
+			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
+		else
+			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
+		fi
+	fi
+
+	diropts --owner=biboumi --group=biboumi --mode=750
+	if use sqlite; then
+		keepdir var/lib/biboumi
+	fi
+	keepdir var/log/biboumi
+
+	insinto etc/biboumi
+	insopts --group=biboumi --mode=640
+	newins conf/biboumi.cfg biboumi.cfg.example
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2021-08-30 13:40 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2021-08-30 13:40 UTC (permalink / raw
  To: gentoo-commits

commit:     d0fdabcc7a3c99d49d9da01ae7fc695bddab6cf6
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Aug 30 13:37:51 2021 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Aug 30 13:37:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d0fdabcc

net-im/biboumi: Remove old ebuilds.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/Manifest                  |   2 -
 net-im/biboumi/biboumi-8.5.ebuild        |  88 ---------------------------
 net-im/biboumi/biboumi-9.0_rc1-r1.ebuild | 100 -------------------------------
 3 files changed, 190 deletions(-)

diff --git a/net-im/biboumi/Manifest b/net-im/biboumi/Manifest
index 1a361d5ba..34c6c222d 100644
--- a/net-im/biboumi/Manifest
+++ b/net-im/biboumi/Manifest
@@ -1,3 +1 @@
-DIST biboumi-8.5.tar.xz 142576 BLAKE2B 0e9284aa757f43a8436a7df5f78962663ca8cbf9b9a24dd5ea9c978e3240274b6f817b00169b478332f28b5f50a96833e10b7a3feec5e16b96638ec94daeb843 SHA512 36aa8c66a720faa8d9f0bd76fcd4ee382b7d21f6822de2a03582d03e8e7e440a4a08b1ff21e876e70e6b5b1012973c9936d85faecf4781a5d78e7d8b206c3ef6
-DIST biboumi-9.0-rc1.tar.xz 161008 BLAKE2B f1cf02d714a03633bcc8737d319f1c1c232b17edd6961ae9478189e85773b0cf28844e2d6173a63704353a371506cf1f4bc72a032434199e19d85a2383e9e261 SHA512 893d01e0b9d9606920b0cdecb45dec8a01b56701413d4633805db3dd5c32cd3bd2342c31d043beb34ac73c664dd968adc1f5e90a555369d8e6c78c4034bd1f20
 DIST biboumi-9.0.tar.xz 161192 BLAKE2B 27c19f5c44e23caae07bd579b01d663e73cd8b432203ac95ae77e651936eea7cc443f389e589acebe5b36c32e96f215fdf0a86c97193726d601b53b709a2d66e SHA512 cfaacd831b56031906922472275c55fd6f1a5307ebe54959d21e3799ad4612499e8beeb34e8736df9eabc9fec1a861d17567250d64f316ace47395fd6c8f3c18

diff --git a/net-im/biboumi/biboumi-8.5.ebuild b/net-im/biboumi/biboumi-8.5.ebuild
deleted file mode 100644
index 23c875a9b..000000000
--- a/net-im/biboumi/biboumi-8.5.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake fcaps
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${PV}.tar.xz"
-
-LICENSE="ZLIB"
-SLOT="0/8"
-KEYWORDS="~amd64"
-IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
-
-DEPEND="
-	dev-libs/expat
-	virtual/libiconv
-	sys-apps/util-linux
-	sqlite? ( dev-db/sqlite )
-	postgres? ( dev-db/postgresql:* )
-	idn? ( net-dns/libidn )
-	udns? ( net-libs/udns )
-	ssl? ( dev-libs/botan:2 )
-	!ssl? ( dev-libs/libgcrypt )
-	systemd? ( sys-apps/systemd )
-"
-BDEPEND="app-text/pandoc"
-RDEPEND="
-	${DEPEND}
-	acct-user/biboumi"
-
-DOCS=( README.rst CHANGELOG.rst )
-
-# Allow biboumi to run an identd on port 113.
-FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if ! use systemd; then		# Don't install biboumi.service.
-		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_BOTAN="$(usex ssl)"
-		-DWITH_LIBIDN="$(usex idn)"
-		-DWITH_SYSTEMD="$(usex systemd)"
-		-DWITH_UDNS="$(usex udns)"
-		-DWITH_SQLITE3="$(usex sqlite)"
-		-DWITH_POSTGRESQL="$(usex postgres)"
-
-		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
-		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
-	)							# The WITHOUT_* is really needed.
-
-	cmake_src_configure
-}
-
-src_install() {
-	cmake_src_install
-
-	if ! use systemd; then
-		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	fi
-
-	if use logrotate; then
-		insinto etc/logrotate.d
-		if use systemd; then
-			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
-		else
-			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
-		fi
-	fi
-
-	diropts --owner=biboumi --group=biboumi --mode=750
-	if use sqlite; then
-		keepdir var/lib/biboumi
-	fi
-	keepdir var/log/biboumi
-
-	insinto etc/biboumi
-	insopts --group=biboumi --mode=640
-	doins conf/biboumi.cfg
-}

diff --git a/net-im/biboumi/biboumi-9.0_rc1-r1.ebuild b/net-im/biboumi/biboumi-9.0_rc1-r1.ebuild
deleted file mode 100644
index 93f74515e..000000000
--- a/net-im/biboumi/biboumi-9.0_rc1-r1.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake fcaps
-
-MY_PV="${PV/_/-}"
-
-DESCRIPTION="XMPP gateway to IRC"
-HOMEPAGE="https://biboumi.louiz.org/"
-SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${MY_PV}.tar.xz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
-
-DEPEND="
-	dev-libs/expat
-	virtual/libiconv
-	sys-apps/util-linux
-	sqlite? ( dev-db/sqlite )
-	postgres? ( dev-db/postgresql:* )
-	idn? ( net-dns/libidn )
-	udns? ( net-libs/udns )
-	ssl? ( dev-libs/botan:2 )
-	!ssl? ( dev-libs/libgcrypt )
-	systemd? ( sys-apps/systemd )
-"
-BDEPEND="dev-python/sphinx"
-RDEPEND="
-	${DEPEND}
-	acct-user/biboumi"
-
-PATCHES=( "${FILESDIR}/biboumi-9.0_rc1-split-cap-on-space.patch" )
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-DOCS=( README.rst CHANGELOG.rst doc/user.rst )
-
-# Allow biboumi to run an identd on port 113.
-FILECAPS=( cap_net_bind_service+ep usr/bin/biboumi )
-
-src_prepare() {
-	cmake_src_prepare
-
-	if ! use systemd; then		# Don't install biboumi.service.
-		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_BOTAN="$(usex ssl)"
-		-DWITH_LIBIDN="$(usex idn)"
-		-DWITH_SYSTEMD="$(usex systemd)"
-		-DWITH_UDNS="$(usex udns)"
-		-DWITH_SQLITE3="$(usex sqlite)"
-		-DWITH_POSTGRESQL="$(usex postgres)"
-
-		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
-		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
-	)							# The WITHOUT_* is really needed.
-
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-
-	cmake_build man
-}
-
-src_install() {
-	cmake_src_install
-
-	if ! use systemd; then
-		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
-	fi
-
-	if use logrotate; then
-		insinto etc/logrotate.d
-		if use systemd; then
-			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
-		else
-			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
-		fi
-	fi
-
-	diropts --owner=biboumi --group=biboumi --mode=750
-	if use sqlite; then
-		keepdir var/lib/biboumi
-	fi
-	keepdir var/log/biboumi
-
-	insinto etc/biboumi
-	insopts --group=biboumi --mode=640
-	newins conf/biboumi.cfg biboumi.cfg.example
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/
@ 2021-08-30 13:40 Ronny Gutbrod
  0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2021-08-30 13:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5a615ae4fac1588080cbe33bf9c719b71520c482
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Aug 30 13:35:17 2021 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Aug 30 13:35:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5a615ae4

net-im/biboumi: Prevent implicit suid by fcaps.

fcaps.eclass sets u+s with USE="-filecaps" by default.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/biboumi/biboumi-9.0-r1.ebuild | 99 ++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

diff --git a/net-im/biboumi/biboumi-9.0-r1.ebuild b/net-im/biboumi/biboumi-9.0-r1.ebuild
new file mode 100644
index 000000000..7b679f006
--- /dev/null
+++ b/net-im/biboumi/biboumi-9.0-r1.ebuild
@@ -0,0 +1,99 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake fcaps
+
+MY_PV="${PV/_/-}"
+
+DESCRIPTION="XMPP gateway to IRC"
+HOMEPAGE="https://biboumi.louiz.org/"
+SRC_URI="https://git.louiz.org/biboumi/snapshot/biboumi-${MY_PV}.tar.xz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+idn logrotate postgres +sqlite +ssl systemd udns"
+
+DEPEND="
+	dev-libs/expat
+	virtual/libiconv
+	sys-apps/util-linux
+	sqlite? ( dev-db/sqlite )
+	postgres? ( dev-db/postgresql:* )
+	idn? ( net-dns/libidn )
+	udns? ( net-libs/udns )
+	ssl? ( dev-libs/botan:2 )
+	!ssl? ( dev-libs/libgcrypt )
+	systemd? ( sys-apps/systemd )
+"
+BDEPEND="dev-python/sphinx"
+RDEPEND="
+	${DEPEND}
+	acct-user/biboumi
+"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+DOCS=( README.rst CHANGELOG.rst doc/user.rst )
+
+# Allow biboumi to run an identd on port 113.
+FILECAPS=( -m 755 cap_net_bind_service+ep usr/bin/biboumi )
+
+src_prepare() {
+	cmake_src_prepare
+
+	if ! use systemd; then		# Don't install biboumi.service.
+		sed -i '/DESTINATION lib\/systemd\/system/d' CMakeLists.txt || die
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DWITH_BOTAN="$(usex ssl)"
+		-DWITH_LIBIDN="$(usex idn)"
+		-DWITH_SYSTEMD="$(usex systemd)"
+		-DWITH_UDNS="$(usex udns)"
+		-DWITH_SQLITE3="$(usex sqlite)"
+		-DWITH_POSTGRESQL="$(usex postgres)"
+
+		-DWITHOUT_SYSTEMD="$(usex systemd no yes)"
+		-DWITHOUT_POSTGRESQL="$(usex postgres no yes)"
+	)							# The WITHOUT_* is really needed.
+
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+
+	cmake_build man
+}
+
+src_install() {
+	cmake_src_install
+
+	if ! use systemd; then
+		newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	fi
+
+	if use logrotate; then
+		insinto etc/logrotate.d
+		if use systemd; then
+			newins "${FILESDIR}/${PN}.logrotate.systemd" "${PN}"
+		else
+			newins "${FILESDIR}/${PN}.logrotate.openrc" "${PN}"
+		fi
+	fi
+
+	diropts --owner=biboumi --group=biboumi --mode=750
+	if use sqlite; then
+		keepdir var/lib/biboumi
+	fi
+	keepdir var/log/biboumi
+
+	insinto etc/biboumi
+	insopts --group=biboumi --mode=640
+	newins conf/biboumi.cfg biboumi.cfg.example
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-08-30 13:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-23  0:30 [gentoo-commits] repo/proj/guru:dev commit in: net-im/biboumi/ Ronny Gutbrod
  -- strict thread matches above, loose matches on Subject: below --
2021-08-30 13:40 Ronny Gutbrod
2021-08-30 13:40 Ronny Gutbrod
2020-09-23  0:30 Ronny Gutbrod
2020-08-12 11:23 Ronny Gutbrod
2020-08-12 11:23 Ronny Gutbrod
2020-05-10 23:46 Ronny Gutbrod
2020-05-10 23:39 Ronny Gutbrod
2020-05-10 23:39 Ronny Gutbrod
2020-04-28 22:55 Ronny Gutbrod

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox