repo/gentoo:master commit in: net-vpn/candy/
"Yixun Lan" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786020307.8f983a0b7e8a015fbec180f21260c365d83e9878.dlan@gentoo> |
commit: 8f983a0b7e8a015fbec180f21260c365d83e9878
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 5 10:22:45 2026 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Aug 6 12:45:07 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f983a0b
net-vpn/candy: add 6.1.10
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
net-vpn/candy/Manifest | 1 +
net-vpn/candy/candy-6.1.10.ebuild | 41 +++++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 24ff4a71abad..64a5aa57a4fd 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1,3 @@
+DIST candy-6.1.10.gh.tar.gz 346235 BLAKE2B 5820abfa6da252f2ec2afaab5e7454e1a1d79d3f5ef4baeeb547c5789254c2adc55569c8fdcb85354b3e7efe5cb574901476d23d3c296b06cbf14818d31458b4 SHA512 e4afa1a0b8e03d60f58b171c17401595fb610a68d6df19bf34f9892f5b3775633016543f3eaf23f3d25dc5ca54eedad5f63cc384012dff533efb46d8841b585d
DIST candy-6.1.7.gh.tar.gz 338183 BLAKE2B 2c51c36b157cfbbff77f1065cdccd4eaaf73d9b3431071e9650d049863c0a2f1e67dec441c211aa677c9ba90f63e7154148b6e779b89481a83b1ce59e1682b36 SHA512 0bb58ffe4911730eec1ec6bcd9af4794be22444f162cc100964feb16db142c3def4a75170e97a985ef9bf3cc4ecef366fcdbcb1f7bdd2a583dd8a7c9f58c2361
DIST candy-6.1.8.gh.tar.gz 338319 BLAKE2B df9be732e9d0c6f5a3e1a3f6c5fe33ac4d9f631427b936d92f95c22c4256205333d3d3361a9ec713c66efee2efe548bacb36253e799ca0a381813ebedf5b021d SHA512 02c4b767f6bb5c79626696d0469d2fee5ed9c85eedbc202440fae27be2525ab39b38e91a8440bab8a8ca54946dd1b70dfdf3d560fc7f9063353bcde554968ad6
diff --git a/net-vpn/candy/candy-6.1.10.ebuild b/net-vpn/candy/candy-6.1.10.ebuild
new file mode 100644
index 000000000000..858938899898
--- /dev/null
+++ b/net-vpn/candy/candy-6.1.10.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2024-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake systemd readme.gentoo-r1
+
+DESCRIPTION="A reliable, low-latency, and anti-censorship virtual private network"
+HOMEPAGE="https://github.com/lanthora/candy"
+SRC_URI="https://github.com/lanthora/candy/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+DEPEND="
+ dev-libs/poco:=[crypt,net,util,xml]
+ dev-libs/openssl:=
+ dev-libs/libfmt:=
+"
+RDEPEND="
+ ${DEPEND}
+"
+
+src_install(){
+ cmake_src_install
+ default
+
+ insinto /etc
+ doins candy.cfg
+
+ systemd_dounit candy.service
+ systemd_dounit [email protected]
+ newinitd candy.initd candy
+
+ readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}