public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-01-04 13:34 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-01-04 13:34 UTC (permalink / raw
  To: gentoo-commits

commit:     aa0b0d773661a5dda6832b77fb5cff5e4adb8d6c
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Wed Jan  4 13:34:20 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Wed Jan  4 13:34:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa0b0d77

dev-cpp/dpp: new package, add 10.0.21

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest           |  2 ++
 dev-cpp/dpp/dpp-10.0.21.ebuild | 63 ++++++++++++++++++++++++++++++++++++++++++
 dev-cpp/dpp/metadata.xml       | 17 ++++++++++++
 3 files changed, 82 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
new file mode 100644
index 000000000..04fa1afc4
--- /dev/null
+++ b/dev-cpp/dpp/Manifest
@@ -0,0 +1,2 @@
+DIST dpp-10.0.21-fix-install.patch 4090 BLAKE2B b4177190fb620952619ed5a0e4147a9adde4871f00643129b1f1140152718816cbcc1099c25e0b350c65ede56c2c5f373aeaf6345c382ba953c3ad32e9e3f2fd SHA512 8dd9a5f7db0097bc7de8e0a50253bc144786786331e3cfbfb00884925c41746e7a81bd2f87254d3bcc8d72bb820415bd92013cd0968950533bffa382bc53f279
+DIST dpp-10.0.21.tar.gz 13706441 BLAKE2B e7e68d4d121d17ad840790f14375ddc4e3c95c56ced03a90667b8b838205f3e46162bc9d60ea33d50a619335c7395318a9dd47583eddca3e73481879fe35f393 SHA512 a335886cdde5772b5602426e68c50d91e921cd127bcb918066c450b39fc5b0cf87ae692096140e76176d87265bd0d9de1fbb9d808a1f217dc2c8ef27210ad57f

diff --git a/dev-cpp/dpp/dpp-10.0.21.ebuild b/dev-cpp/dpp/dpp-10.0.21.ebuild
new file mode 100644
index 000000000..f8bb48f57
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.21.ebuild
@@ -0,0 +1,63 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+	https://patch-diff.githubusercontent.com/raw/brainboxdotcc/DPP/pull/591.patch -> ${P}-fix-install.patch
+"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+	# Backport of the installation fixes, remove after 10.0.21
+	"${DISTDIR}/${P}-fix-install.patch"
+)
+
+S="${WORKDIR}/DPP-${PV}"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT=$(usex voice)
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+	)
+
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	# Installation fix, remove after 10.0.21
+	mv \
+		"${ED}"/usr/$(get_libdir)/cmake/dpp/libdpp-config.cmake \
+		"${ED}"/usr/$(get_libdir)/cmake/dpp/dpp-config.cmake \
+		|| die "Failed to fix libdpp.cmake file name"
+}

diff --git a/dev-cpp/dpp/metadata.xml b/dev-cpp/dpp/metadata.xml
new file mode 100644
index 000000000..fe0768594
--- /dev/null
+++ b/dev-cpp/dpp/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>nex+b-g-o@nexadn.de</email>
+		<name>Adrian Schollmeyer</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>samuel@seals-are-bouncy.tech</email>
+	</maintainer>
+	<use>
+		<flag name="voice">Enable voice-chat support</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">brainboxdotcc/dpp</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-01-04 19:39 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-01-04 19:39 UTC (permalink / raw
  To: gentoo-commits

commit:     2a10ec15530b05bf1bad246780258ef22c06391e
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Wed Jan  4 19:39:31 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Wed Jan  4 19:39:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a10ec15

dev-cpp/dpp: add 10.0.22

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest           |  1 +
 dev-cpp/dpp/dpp-10.0.22.ebuild | 47 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index 04fa1afc4..e250f4a89 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -1,2 +1,3 @@
 DIST dpp-10.0.21-fix-install.patch 4090 BLAKE2B b4177190fb620952619ed5a0e4147a9adde4871f00643129b1f1140152718816cbcc1099c25e0b350c65ede56c2c5f373aeaf6345c382ba953c3ad32e9e3f2fd SHA512 8dd9a5f7db0097bc7de8e0a50253bc144786786331e3cfbfb00884925c41746e7a81bd2f87254d3bcc8d72bb820415bd92013cd0968950533bffa382bc53f279
 DIST dpp-10.0.21.tar.gz 13706441 BLAKE2B e7e68d4d121d17ad840790f14375ddc4e3c95c56ced03a90667b8b838205f3e46162bc9d60ea33d50a619335c7395318a9dd47583eddca3e73481879fe35f393 SHA512 a335886cdde5772b5602426e68c50d91e921cd127bcb918066c450b39fc5b0cf87ae692096140e76176d87265bd0d9de1fbb9d808a1f217dc2c8ef27210ad57f
+DIST dpp-10.0.22.tar.gz 13712205 BLAKE2B b935b763f87bfd1058e72f8d297fda136f532a03a5b9f3a6e3471f0ce64988c9615105fb1eb9b19192844cdaab9d332f355dfc22f8bcdbf977eec3eb5f0b8df3 SHA512 6c71673b47d559ef4f04b30cd72a3bd0a31b72ffe6d73dd17470a7e754eba75d21218ebd247702441db45549e5dcea9b200f3d435dd3a9af76fda90740ca4f1a

diff --git a/dev-cpp/dpp/dpp-10.0.22.ebuild b/dev-cpp/dpp/dpp-10.0.22.ebuild
new file mode 100644
index 000000000..6efc34565
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.22.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/DPP-${PV}"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT=$(usex voice)
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-02-17 17:03 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-02-17 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     c8ccb401adf4032534687e3045b58b79a7b4c880
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Fri Feb 17 17:03:15 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Fri Feb 17 17:03:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c8ccb401

dev-cpp/dpp: revbump all versions

The changes from the last commit change the build result, so a revbump
is necessary.

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/{dpp-10.0.21.ebuild => dpp-10.0.21-r1.ebuild} | 0
 dev-cpp/dpp/{dpp-10.0.22.ebuild => dpp-10.0.22-r1.ebuild} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-cpp/dpp/dpp-10.0.21.ebuild b/dev-cpp/dpp/dpp-10.0.21-r1.ebuild
similarity index 100%
rename from dev-cpp/dpp/dpp-10.0.21.ebuild
rename to dev-cpp/dpp/dpp-10.0.21-r1.ebuild

diff --git a/dev-cpp/dpp/dpp-10.0.22.ebuild b/dev-cpp/dpp/dpp-10.0.22-r1.ebuild
similarity index 100%
rename from dev-cpp/dpp/dpp-10.0.22.ebuild
rename to dev-cpp/dpp/dpp-10.0.22-r1.ebuild


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-03-05 13:11 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-03-05 13:11 UTC (permalink / raw
  To: gentoo-commits

commit:     a99f948f52719e7d608508dfb4ca50eebd6835ec
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Sun Mar  5 13:05:15 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Sun Mar  5 13:11:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a99f948f

dev-cpp/dpp: add 10.0.23

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest           |  1 +
 dev-cpp/dpp/dpp-10.0.23.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index 73ec513e5..b708f9f0c 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -1,4 +1,5 @@
 DIST dpp-10.0.21-fix-install.patch 4090 BLAKE2B b4177190fb620952619ed5a0e4147a9adde4871f00643129b1f1140152718816cbcc1099c25e0b350c65ede56c2c5f373aeaf6345c382ba953c3ad32e9e3f2fd SHA512 8dd9a5f7db0097bc7de8e0a50253bc144786786331e3cfbfb00884925c41746e7a81bd2f87254d3bcc8d72bb820415bd92013cd0968950533bffa382bc53f279
 DIST dpp-10.0.21.tar.gz 13706441 BLAKE2B e7e68d4d121d17ad840790f14375ddc4e3c95c56ced03a90667b8b838205f3e46162bc9d60ea33d50a619335c7395318a9dd47583eddca3e73481879fe35f393 SHA512 a335886cdde5772b5602426e68c50d91e921cd127bcb918066c450b39fc5b0cf87ae692096140e76176d87265bd0d9de1fbb9d808a1f217dc2c8ef27210ad57f
 DIST dpp-10.0.22.tar.gz 13712205 BLAKE2B b935b763f87bfd1058e72f8d297fda136f532a03a5b9f3a6e3471f0ce64988c9615105fb1eb9b19192844cdaab9d332f355dfc22f8bcdbf977eec3eb5f0b8df3 SHA512 6c71673b47d559ef4f04b30cd72a3bd0a31b72ffe6d73dd17470a7e754eba75d21218ebd247702441db45549e5dcea9b200f3d435dd3a9af76fda90740ca4f1a
+DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee06216c19a730f236cd44c7e4da1c6b801f2b10a493df253626a4af9b8132aa155c7f585fe3de35eaa5c5cf4df SHA512 18bbb7d2c1385d179cac9ded31d1b11e8d24f172e7ffe2ba79071203e1e2f277657e21d660b18ee4b849bc093d350f4bc5401702400084b56c3ebd6f03ce28df
 DIST dpp-890014-rework-compiler-flags.patch 6670 BLAKE2B f23ad8f7347841aa924b82b706fbdc5ff5ceac9e90e6c01c28f13117619235a057648e30cdb92d5e3401c228c7497e8804e894d2dfd5d3591e2860746acfcaa2 SHA512 c5777efab36187b59ac8c0d5177752c4f605e584b0f3f2435bf210f792879df0461d64332725e4c47e19f026b3b11eeb2d243425bab9f888cf239dafbedc3890

diff --git a/dev-cpp/dpp/dpp-10.0.23.ebuild b/dev-cpp/dpp/dpp-10.0.23.ebuild
new file mode 100644
index 000000000..d5cee490c
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.23.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="
+	${RDEPEND}
+
+	dev-cpp/nlohmann_json
+"
+
+S="${WORKDIR}/DPP-${PV}"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT="$(usex voice)"
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+		-DDPP_USE_EXTERNAL_JSON=true
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-05-23  7:09 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-05-23  7:09 UTC (permalink / raw
  To: gentoo-commits

commit:     341eedd816f21787a9ceafb8eee8cf34becc1c88
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Tue May 23 07:09:36 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Tue May 23 07:09:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=341eedd8

dev-cpp/dpp: drop 10.0.22-r1

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest              |  2 --
 dev-cpp/dpp/dpp-10.0.22-r1.ebuild | 53 ---------------------------------------
 2 files changed, 55 deletions(-)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index 215249a84..9d2026d05 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -1,4 +1,2 @@
-DIST dpp-10.0.22.tar.gz 13712205 BLAKE2B b935b763f87bfd1058e72f8d297fda136f532a03a5b9f3a6e3471f0ce64988c9615105fb1eb9b19192844cdaab9d332f355dfc22f8bcdbf977eec3eb5f0b8df3 SHA512 6c71673b47d559ef4f04b30cd72a3bd0a31b72ffe6d73dd17470a7e754eba75d21218ebd247702441db45549e5dcea9b200f3d435dd3a9af76fda90740ca4f1a
 DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee06216c19a730f236cd44c7e4da1c6b801f2b10a493df253626a4af9b8132aa155c7f585fe3de35eaa5c5cf4df SHA512 18bbb7d2c1385d179cac9ded31d1b11e8d24f172e7ffe2ba79071203e1e2f277657e21d660b18ee4b849bc093d350f4bc5401702400084b56c3ebd6f03ce28df
 DIST dpp-10.0.24.tar.gz 13739463 BLAKE2B 0531d9d14b943302293aac62a3972a4628487332107b77ca6d09ae39ae8a9d1cfeceae1a656790cc8699932af9c5d46a0ae5bc26885a9c29cc970388cdb60f3f SHA512 2f1e5415c121d5f19d2abb1b389512ad22c3cac6779ed897403d430b2c4e62c758ab25d46a3fd02538add711073fadd616a690b4981f3782e46c18ff05d116dc
-DIST dpp-890014-rework-compiler-flags.patch 6670 BLAKE2B f23ad8f7347841aa924b82b706fbdc5ff5ceac9e90e6c01c28f13117619235a057648e30cdb92d5e3401c228c7497e8804e894d2dfd5d3591e2860746acfcaa2 SHA512 c5777efab36187b59ac8c0d5177752c4f605e584b0f3f2435bf210f792879df0461d64332725e4c47e19f026b3b11eeb2d243425bab9f888cf239dafbedc3890

diff --git a/dev-cpp/dpp/dpp-10.0.22-r1.ebuild b/dev-cpp/dpp/dpp-10.0.22-r1.ebuild
deleted file mode 100644
index bf42bca13..000000000
--- a/dev-cpp/dpp/dpp-10.0.22-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Lightweight C++ Discord bot library"
-HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
-SRC_URI="
-	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
-	https://patch-diff.githubusercontent.com/raw/brainboxdotcc/DPP/pull/596.patch -> ${PN}-890014-rework-compiler-flags.patch
-"
-
-LICENSE="Apache-2.0"
-# DPP is extremely ABI instable due to frequent changes in the Discord API
-# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="voice"
-
-RDEPEND="
-	dev-libs/openssl:=
-	sys-libs/zlib:=
-
-	voice? (
-		dev-libs/libsodium:=
-		media-libs/opus
-	)
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/DPP-${PV}"
-
-DOCS=( "README.md" "SECURITY.md" )
-
-PATCHES=(
-	# Backport of the compiler flag setting fixes, remove after 10.0.22, https://bugs.gentoo.org/890014
-	"${DISTDIR}/${PN}-890014-rework-compiler-flags.patch"
-)
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_SHARED_LIBS=true
-		-DBUILD_VOICE_SUPPORT=$(usex voice)
-		-DRUN_LDCONFIG=false
-		# Tests require network access
-		-DDPP_BUILD_TEST=false
-		-DDPP_NO_VCPKG=true
-	)
-
-	cmake_src_configure
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-05-23  7:09 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-05-23  7:09 UTC (permalink / raw
  To: gentoo-commits

commit:     6662846f63168a15ca5f968349287c102d7f4f95
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Tue May 23 07:09:15 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Tue May 23 07:09:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6662846f

dev-cpp/dpp: add 10.0.24

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest           |  1 +
 dev-cpp/dpp/dpp-10.0.24.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index c2b6eba10..215249a84 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -1,3 +1,4 @@
 DIST dpp-10.0.22.tar.gz 13712205 BLAKE2B b935b763f87bfd1058e72f8d297fda136f532a03a5b9f3a6e3471f0ce64988c9615105fb1eb9b19192844cdaab9d332f355dfc22f8bcdbf977eec3eb5f0b8df3 SHA512 6c71673b47d559ef4f04b30cd72a3bd0a31b72ffe6d73dd17470a7e754eba75d21218ebd247702441db45549e5dcea9b200f3d435dd3a9af76fda90740ca4f1a
 DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee06216c19a730f236cd44c7e4da1c6b801f2b10a493df253626a4af9b8132aa155c7f585fe3de35eaa5c5cf4df SHA512 18bbb7d2c1385d179cac9ded31d1b11e8d24f172e7ffe2ba79071203e1e2f277657e21d660b18ee4b849bc093d350f4bc5401702400084b56c3ebd6f03ce28df
+DIST dpp-10.0.24.tar.gz 13739463 BLAKE2B 0531d9d14b943302293aac62a3972a4628487332107b77ca6d09ae39ae8a9d1cfeceae1a656790cc8699932af9c5d46a0ae5bc26885a9c29cc970388cdb60f3f SHA512 2f1e5415c121d5f19d2abb1b389512ad22c3cac6779ed897403d430b2c4e62c758ab25d46a3fd02538add711073fadd616a690b4981f3782e46c18ff05d116dc
 DIST dpp-890014-rework-compiler-flags.patch 6670 BLAKE2B f23ad8f7347841aa924b82b706fbdc5ff5ceac9e90e6c01c28f13117619235a057648e30cdb92d5e3401c228c7497e8804e894d2dfd5d3591e2860746acfcaa2 SHA512 c5777efab36187b59ac8c0d5177752c4f605e584b0f3f2435bf210f792879df0461d64332725e4c47e19f026b3b11eeb2d243425bab9f888cf239dafbedc3890

diff --git a/dev-cpp/dpp/dpp-10.0.24.ebuild b/dev-cpp/dpp/dpp-10.0.24.ebuild
new file mode 100644
index 000000000..d5cee490c
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.24.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="
+	${RDEPEND}
+
+	dev-cpp/nlohmann_json
+"
+
+S="${WORKDIR}/DPP-${PV}"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT="$(usex voice)"
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+		-DDPP_USE_EXTERNAL_JSON=true
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-09-16 21:47 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-09-16 21:47 UTC (permalink / raw
  To: gentoo-commits

commit:     990e51b9ab285980924bc7722f9d39ad6ed2dde3
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Sat Sep 16 21:46:15 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Sat Sep 16 21:46:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=990e51b9

dev-cpp/dpp: add 10.0.25

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest           |  1 +
 dev-cpp/dpp/dpp-10.0.25.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index 9d2026d05c..a2a062479b 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -1,2 +1,3 @@
 DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee06216c19a730f236cd44c7e4da1c6b801f2b10a493df253626a4af9b8132aa155c7f585fe3de35eaa5c5cf4df SHA512 18bbb7d2c1385d179cac9ded31d1b11e8d24f172e7ffe2ba79071203e1e2f277657e21d660b18ee4b849bc093d350f4bc5401702400084b56c3ebd6f03ce28df
 DIST dpp-10.0.24.tar.gz 13739463 BLAKE2B 0531d9d14b943302293aac62a3972a4628487332107b77ca6d09ae39ae8a9d1cfeceae1a656790cc8699932af9c5d46a0ae5bc26885a9c29cc970388cdb60f3f SHA512 2f1e5415c121d5f19d2abb1b389512ad22c3cac6779ed897403d430b2c4e62c758ab25d46a3fd02538add711073fadd616a690b4981f3782e46c18ff05d116dc
+DIST dpp-10.0.25.tar.gz 14312767 BLAKE2B 52263024ad615198fe901f3cc79290e1b88c4e44c22c318fb7df2e9a3d4069611282b18650602f29f40bff3b042b16d0b8a47b8d3ff9c5b5ea89fa9514777609 SHA512 49cb6fedcb75d3dd146243f46f9e34cfe79e1c9a6ae76fc69c8c6935d9a10ccf562452311085791674ff659913befe1dc6f8a191b518d45151cb23d779396572

diff --git a/dev-cpp/dpp/dpp-10.0.25.ebuild b/dev-cpp/dpp/dpp-10.0.25.ebuild
new file mode 100644
index 0000000000..d5cee490cc
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.25.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="
+	${RDEPEND}
+
+	dev-cpp/nlohmann_json
+"
+
+S="${WORKDIR}/DPP-${PV}"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT="$(usex voice)"
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+		-DDPP_USE_EXTERNAL_JSON=true
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2023-12-28 20:16 Adrian Schollmeyer
  0 siblings, 0 replies; 12+ messages in thread
From: Adrian Schollmeyer @ 2023-12-28 20:16 UTC (permalink / raw
  To: gentoo-commits

commit:     b526f9f01cd27635814a258eb4a53fb34eaa9ec0
Author:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
AuthorDate: Thu Dec 28 20:16:38 2023 +0000
Commit:     Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
CommitDate: Thu Dec 28 20:16:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b526f9f0

dev-cpp/dpp: add 10.0.29

Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>

 dev-cpp/dpp/Manifest           |  1 +
 dev-cpp/dpp/dpp-10.0.29.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index a2a062479b..2fbae9794b 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -1,3 +1,4 @@
 DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee06216c19a730f236cd44c7e4da1c6b801f2b10a493df253626a4af9b8132aa155c7f585fe3de35eaa5c5cf4df SHA512 18bbb7d2c1385d179cac9ded31d1b11e8d24f172e7ffe2ba79071203e1e2f277657e21d660b18ee4b849bc093d350f4bc5401702400084b56c3ebd6f03ce28df
 DIST dpp-10.0.24.tar.gz 13739463 BLAKE2B 0531d9d14b943302293aac62a3972a4628487332107b77ca6d09ae39ae8a9d1cfeceae1a656790cc8699932af9c5d46a0ae5bc26885a9c29cc970388cdb60f3f SHA512 2f1e5415c121d5f19d2abb1b389512ad22c3cac6779ed897403d430b2c4e62c758ab25d46a3fd02538add711073fadd616a690b4981f3782e46c18ff05d116dc
 DIST dpp-10.0.25.tar.gz 14312767 BLAKE2B 52263024ad615198fe901f3cc79290e1b88c4e44c22c318fb7df2e9a3d4069611282b18650602f29f40bff3b042b16d0b8a47b8d3ff9c5b5ea89fa9514777609 SHA512 49cb6fedcb75d3dd146243f46f9e34cfe79e1c9a6ae76fc69c8c6935d9a10ccf562452311085791674ff659913befe1dc6f8a191b518d45151cb23d779396572
+DIST dpp-10.0.29.tar.gz 15560520 BLAKE2B 491730da342e2db08e061ec71d5488be3c23addc4ef5ae537631a83d3a461a53f34033da72d387f8202c45d529d39ff6bcc70e8a69f94006b2e1fb607aed2d23 SHA512 fcb9b8181827fc63fb2f9aff44e697d18a0bfd94714888492a63a04e0112f42f9506bfab8181e822aa5ce85e6b6a8aa44e0774baeac3e52c3f41348cbf55a76a

diff --git a/dev-cpp/dpp/dpp-10.0.29.ebuild b/dev-cpp/dpp/dpp-10.0.29.ebuild
new file mode 100644
index 0000000000..d5cee490cc
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.29.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="
+	${RDEPEND}
+
+	dev-cpp/nlohmann_json
+"
+
+S="${WORKDIR}/DPP-${PV}"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT="$(usex voice)"
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+		-DDPP_USE_EXTERNAL_JSON=true
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2024-06-04  7:03 Filip Hoffmann
  0 siblings, 0 replies; 12+ messages in thread
From: Filip Hoffmann @ 2024-06-04  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     7c532767cd17e89226e9d9619d28c04ea43a7feb
Author:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
AuthorDate: Tue Jun  4 06:58:18 2024 +0000
Commit:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
CommitDate: Tue Jun  4 06:58:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7c532767

dev-cpp/dpp: add coroutine support via USE flag

Signed-off-by: Filip Hoffmann <folosp2 <AT> gmail.com>

 dev-cpp/dpp/dpp-10.0.30.ebuild | 3 ++-
 dev-cpp/dpp/metadata.xml       | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-cpp/dpp/dpp-10.0.30.ebuild b/dev-cpp/dpp/dpp-10.0.30.ebuild
index 04c891383..6904bfef4 100644
--- a/dev-cpp/dpp/dpp-10.0.30.ebuild
+++ b/dev-cpp/dpp/dpp-10.0.30.ebuild
@@ -18,7 +18,7 @@ LICENSE="Apache-2.0"
 # See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="voice"
+IUSE="voice coro"
 
 RDEPEND="
 	dev-libs/openssl:=
@@ -46,6 +46,7 @@ src_configure() {
 		-DDPP_BUILD_TEST=false
 		-DDPP_NO_VCPKG=true
 		-DDPP_USE_EXTERNAL_JSON=true
+		-DDPP_CORO="$(usex coro)"
 	)
 
 	cmake_src_configure

diff --git a/dev-cpp/dpp/metadata.xml b/dev-cpp/dpp/metadata.xml
index fe0768594..1316324eb 100644
--- a/dev-cpp/dpp/metadata.xml
+++ b/dev-cpp/dpp/metadata.xml
@@ -10,6 +10,7 @@
 	</maintainer>
 	<use>
 		<flag name="voice">Enable voice-chat support</flag>
+		<flag name="coro">Enable coroutine support</flag>
 	</use>
 	<upstream>
 		<remote-id type="github">brainboxdotcc/dpp</remote-id>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2024-06-04  7:03 Filip Hoffmann
  0 siblings, 0 replies; 12+ messages in thread
From: Filip Hoffmann @ 2024-06-04  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     f16b93e42facee8d09f213e2e988289ab0f98b26
Author:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
AuthorDate: Tue Jun  4 06:56:44 2024 +0000
Commit:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
CommitDate: Tue Jun  4 06:56:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f16b93e4

dev-cpp/dpp: add 10.0.30

Signed-off-by: Filip Hoffmann <folosp2 <AT> gmail.com>

 dev-cpp/dpp/Manifest           |  1 +
 dev-cpp/dpp/dpp-10.0.30.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-cpp/dpp/Manifest b/dev-cpp/dpp/Manifest
index 2fbae9794..493816edf 100644
--- a/dev-cpp/dpp/Manifest
+++ b/dev-cpp/dpp/Manifest
@@ -2,3 +2,4 @@ DIST dpp-10.0.23.tar.gz 13721815 BLAKE2B abbe6849025270554f8462dcbef6adefff412ee
 DIST dpp-10.0.24.tar.gz 13739463 BLAKE2B 0531d9d14b943302293aac62a3972a4628487332107b77ca6d09ae39ae8a9d1cfeceae1a656790cc8699932af9c5d46a0ae5bc26885a9c29cc970388cdb60f3f SHA512 2f1e5415c121d5f19d2abb1b389512ad22c3cac6779ed897403d430b2c4e62c758ab25d46a3fd02538add711073fadd616a690b4981f3782e46c18ff05d116dc
 DIST dpp-10.0.25.tar.gz 14312767 BLAKE2B 52263024ad615198fe901f3cc79290e1b88c4e44c22c318fb7df2e9a3d4069611282b18650602f29f40bff3b042b16d0b8a47b8d3ff9c5b5ea89fa9514777609 SHA512 49cb6fedcb75d3dd146243f46f9e34cfe79e1c9a6ae76fc69c8c6935d9a10ccf562452311085791674ff659913befe1dc6f8a191b518d45151cb23d779396572
 DIST dpp-10.0.29.tar.gz 15560520 BLAKE2B 491730da342e2db08e061ec71d5488be3c23addc4ef5ae537631a83d3a461a53f34033da72d387f8202c45d529d39ff6bcc70e8a69f94006b2e1fb607aed2d23 SHA512 fcb9b8181827fc63fb2f9aff44e697d18a0bfd94714888492a63a04e0112f42f9506bfab8181e822aa5ce85e6b6a8aa44e0774baeac3e52c3f41348cbf55a76a
+DIST dpp-10.0.30.tar.gz 15726421 BLAKE2B 647571d5c7434c3b5636a66a3365d2af8b2d11c81165666d3df2b2ad36d4b61b683a8e3c7ef304fba96a4ac365365272fffa3f0d7d05f697dfe48ba7f972ced6 SHA512 4842e5e688893275e524f998bdcac1d308165a02c280f69eaa898aa8f9986a97fe687e20e3428f30777c49f1feb47905da462bbdba8c9a5ea00067e560208f91

diff --git a/dev-cpp/dpp/dpp-10.0.30.ebuild b/dev-cpp/dpp/dpp-10.0.30.ebuild
new file mode 100644
index 000000000..04c891383
--- /dev/null
+++ b/dev-cpp/dpp/dpp-10.0.30.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Lightweight C++ Discord bot library"
+HOMEPAGE="https://dpp.dev/ https://github.com/brainboxdotcc/DPP"
+SRC_URI="
+	https://github.com/brainboxdotcc/DPP/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+"
+
+S="${WORKDIR}/DPP-${PV}"
+
+LICENSE="Apache-2.0"
+# DPP is extremely ABI instable due to frequent changes in the Discord API
+# See https://github.com/brainboxdotcc/DPP/issues/207#issuecomment-1007030157
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="voice"
+
+RDEPEND="
+	dev-libs/openssl:=
+	sys-libs/zlib:=
+
+	voice? (
+		dev-libs/libsodium:=
+		media-libs/opus
+	)
+"
+DEPEND="
+	${RDEPEND}
+
+	dev-cpp/nlohmann_json
+"
+
+DOCS=( "README.md" "SECURITY.md" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED_LIBS=true
+		-DBUILD_VOICE_SUPPORT="$(usex voice)"
+		-DRUN_LDCONFIG=false
+		# Tests require network access
+		-DDPP_BUILD_TEST=false
+		-DDPP_NO_VCPKG=true
+		-DDPP_USE_EXTERNAL_JSON=true
+	)
+
+	cmake_src_configure
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2024-06-04  7:03 Filip Hoffmann
  0 siblings, 0 replies; 12+ messages in thread
From: Filip Hoffmann @ 2024-06-04  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     d47e831359fc4ec7d5de2a62796a9788450f098f
Author:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
AuthorDate: Tue Jun  4 06:59:35 2024 +0000
Commit:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
CommitDate: Tue Jun  4 06:59:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d47e8313

dev-cpp/dpp: fix copyright header

Signed-off-by: Filip Hoffmann <folosp2 <AT> gmail.com>

 dev-cpp/dpp/dpp-10.0.30.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/dpp/dpp-10.0.30.ebuild b/dev-cpp/dpp/dpp-10.0.30.ebuild
index 6904bfef4..bcd016558 100644
--- a/dev-cpp/dpp/dpp-10.0.30.ebuild
+++ b/dev-cpp/dpp/dpp-10.0.30.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/
@ 2024-06-04  7:03 Filip Hoffmann
  0 siblings, 0 replies; 12+ messages in thread
From: Filip Hoffmann @ 2024-06-04  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     bb131bb149bdd812601c3494a57e6017b63f61e6
Author:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
AuthorDate: Tue Jun  4 07:03:21 2024 +0000
Commit:     Filip Hoffmann <folosp2 <AT> gmail <DOT> com>
CommitDate: Tue Jun  4 07:03:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bb131bb1

dev-cpp/dpp: add myself as a maintainer

Signed-off-by: Filip Hoffmann <folosp2 <AT> gmail.com>

 dev-cpp/dpp/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-cpp/dpp/metadata.xml b/dev-cpp/dpp/metadata.xml
index 1316324eb..bfac80863 100644
--- a/dev-cpp/dpp/metadata.xml
+++ b/dev-cpp/dpp/metadata.xml
@@ -8,6 +8,10 @@
 	<maintainer type="person">
 		<email>samuel@seals-are-bouncy.tech</email>
 	</maintainer>
+	<maintainer type="person">
+		<name>Filip Hoffmann</name>
+		<email>folosp2@gmail.com</email>
+	</maintainer>
 	<use>
 		<flag name="voice">Enable voice-chat support</flag>
 		<flag name="coro">Enable coroutine support</flag>


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

end of thread, other threads:[~2024-06-04  7:04 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-17 17:03 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/dpp/ Adrian Schollmeyer
  -- strict thread matches above, loose matches on Subject: below --
2024-06-04  7:03 Filip Hoffmann
2024-06-04  7:03 Filip Hoffmann
2024-06-04  7:03 Filip Hoffmann
2024-06-04  7:03 Filip Hoffmann
2023-12-28 20:16 Adrian Schollmeyer
2023-09-16 21:47 Adrian Schollmeyer
2023-05-23  7:09 Adrian Schollmeyer
2023-05-23  7:09 Adrian Schollmeyer
2023-03-05 13:11 Adrian Schollmeyer
2023-01-04 19:39 Adrian Schollmeyer
2023-01-04 13:34 Adrian Schollmeyer

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