public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2024-09-12 12:12 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2024-09-12 12:12 UTC (permalink / raw
  To: gentoo-commits

commit:     7f5d4c75a6e10b7ec7d7f371940f342c10b5a7b1
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 12:09:43 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 12:11:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5d4c75

net-vpn/candy: add 5.10.4

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest            |  1 +
 net-vpn/candy/candy-5.10.4.ebuild | 42 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 5c32f1d0d2a1..8be113b96228 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1 +1,2 @@
 DIST candy-5.10.3.gh.tar.gz 115258 BLAKE2B 70d698d69fbb0a28adeb1ba515a1a1f6986c083d3a04b688bfd5b7ead98941bac46af47cd745b74928fc56466ebe3fa7d570f7ecaa1716b2eac948d9eaf52fe2 SHA512 c56ab81f599c5fbf72c509265b3fc0189a17e36b8738e536f21702585e7994c706a277d8c1dbf8b68e7f3609518fec0b4daccc0b180d375463e898bb7d41bbdc
+DIST candy-5.10.4.gh.tar.gz 115673 BLAKE2B d150cdf06cd003f0d42e176538a204b8c4cab114bde2c363162a8a75d22e7911abf6a0944a142d6be5ee49116dc24b61d20588390dff7496b51995079ed05457 SHA512 09653777c4653c786d03d8a2141988e1b6f33f0b81b46815d3c13e7d7ca40957d15d654a7d58dd72f02574197183e9198563e871ab4d23f228f87a81cccd0b2d

diff --git a/net-vpn/candy/candy-5.10.4.ebuild b/net-vpn/candy/candy-5.10.4.ebuild
new file mode 100644
index 000000000000..36c322c1a7fa
--- /dev/null
+++ b/net-vpn/candy/candy-5.10.4.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2024 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
+	dev-libs/openssl:0=
+	dev-libs/spdlog
+	dev-libs/libfmt
+"
+RDEPEND="
+	${DEPEND}
+"
+
+src_install(){
+	cmake_src_install
+	default
+
+	insinto /etc
+	doins candy.cfg
+
+	systemd_dounit candy.service
+	systemd_dounit candy@.service
+	newinitd candy.initd candy
+
+	readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2024-09-18  3:25 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-09-18  3:25 UTC (permalink / raw
  To: gentoo-commits

commit:     92f29da26bba1390bbeb522055476cfa8370e61b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 18 03:24:51 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 18 03:24:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92f29da2

net-vpn/candy: subscribe to spdlog subslot (and others)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-vpn/candy/{candy-5.10.3.ebuild => candy-5.10.3-r1.ebuild} | 8 ++++----
 net-vpn/candy/{candy-5.10.4.ebuild => candy-5.10.4-r1.ebuild} | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-vpn/candy/candy-5.10.3.ebuild b/net-vpn/candy/candy-5.10.3-r1.ebuild
similarity index 90%
rename from net-vpn/candy/candy-5.10.3.ebuild
rename to net-vpn/candy/candy-5.10.3-r1.ebuild
index 9460dccd05c1..b2396261c0bd 100644
--- a/net-vpn/candy/candy-5.10.3.ebuild
+++ b/net-vpn/candy/candy-5.10.3-r1.ebuild
@@ -14,10 +14,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm64"
 
 DEPEND="
-	dev-libs/poco
-	dev-libs/openssl
-	dev-libs/spdlog
-	dev-libs/libfmt
+	dev-libs/poco:=
+	dev-libs/openssl:=
+	dev-libs/spdlog:=
+	dev-libs/libfmt:=
 "
 RDEPEND="
 	${DEPEND}

diff --git a/net-vpn/candy/candy-5.10.4.ebuild b/net-vpn/candy/candy-5.10.4-r1.ebuild
similarity index 90%
rename from net-vpn/candy/candy-5.10.4.ebuild
rename to net-vpn/candy/candy-5.10.4-r1.ebuild
index 36c322c1a7fa..b2396261c0bd 100644
--- a/net-vpn/candy/candy-5.10.4.ebuild
+++ b/net-vpn/candy/candy-5.10.4-r1.ebuild
@@ -14,10 +14,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm64"
 
 DEPEND="
-	dev-libs/poco
-	dev-libs/openssl:0=
-	dev-libs/spdlog
-	dev-libs/libfmt
+	dev-libs/poco:=
+	dev-libs/openssl:=
+	dev-libs/spdlog:=
+	dev-libs/libfmt:=
 "
 RDEPEND="
 	${DEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-01-08  7:53 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-01-08  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     498161e277b0f8c07a0a3cc07370083bfa119b23
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  8 07:31:52 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Jan  8 07:53:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498161e2

net-vpn/candy: add 5.10.6, drop 5.10.3-r1

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest                                        | 2 +-
 net-vpn/candy/{candy-5.10.3-r1.ebuild => candy-5.10.6.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 8be113b96228..25844b5787f6 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1,2 @@
-DIST candy-5.10.3.gh.tar.gz 115258 BLAKE2B 70d698d69fbb0a28adeb1ba515a1a1f6986c083d3a04b688bfd5b7ead98941bac46af47cd745b74928fc56466ebe3fa7d570f7ecaa1716b2eac948d9eaf52fe2 SHA512 c56ab81f599c5fbf72c509265b3fc0189a17e36b8738e536f21702585e7994c706a277d8c1dbf8b68e7f3609518fec0b4daccc0b180d375463e898bb7d41bbdc
 DIST candy-5.10.4.gh.tar.gz 115673 BLAKE2B d150cdf06cd003f0d42e176538a204b8c4cab114bde2c363162a8a75d22e7911abf6a0944a142d6be5ee49116dc24b61d20588390dff7496b51995079ed05457 SHA512 09653777c4653c786d03d8a2141988e1b6f33f0b81b46815d3c13e7d7ca40957d15d654a7d58dd72f02574197183e9198563e871ab4d23f228f87a81cccd0b2d
+DIST candy-5.10.6.gh.tar.gz 341627 BLAKE2B 5b72e07b808e57b448c197c9fe34e7ffff1cde3de6e8fd702ef76f45fc97d97e86db8f049fa6562d18e551f9e0f9daa9d50a36a0cda92757bcf700406fa494e0 SHA512 8f20776d53f60812cf2f1775fe7c439f5dc65b20efe0a87928ad9a067118310f1adf8e5ca3a470c5abf86ddb5fe7a825c3f1e8270590afcc6da57fdad92d09b3

diff --git a/net-vpn/candy/candy-5.10.3-r1.ebuild b/net-vpn/candy/candy-5.10.6.ebuild
similarity index 95%
rename from net-vpn/candy/candy-5.10.3-r1.ebuild
rename to net-vpn/candy/candy-5.10.6.ebuild
index b2396261c0bd..5322bf2b14e1 100644
--- a/net-vpn/candy/candy-5.10.3-r1.ebuild
+++ b/net-vpn/candy/candy-5.10.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2024 Gentoo Authors
+# Copyright 2024-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-05-30  4:33 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-05-30  4:33 UTC (permalink / raw
  To: gentoo-commits

commit:     b828f7d37e4c2adb517a2eb07ae2ea93ce1f6b6d
Author:     Xin Yang <yangmame <AT> icloud <DOT> com>
AuthorDate: Thu May 29 12:37:14 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri May 30 04:29:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b828f7d3

net-vpn/candy: add 6.0.1, drop 5.10.4-r1

Closes: https://github.com/gentoo/gentoo/pull/42326
Signed-off-by: Xin Yang <yangmame <AT> icloud.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest                                       | 2 +-
 net-vpn/candy/{candy-5.10.4-r1.ebuild => candy-6.0.1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 25844b5787f6..d0aed1f008e4 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1,2 @@
-DIST candy-5.10.4.gh.tar.gz 115673 BLAKE2B d150cdf06cd003f0d42e176538a204b8c4cab114bde2c363162a8a75d22e7911abf6a0944a142d6be5ee49116dc24b61d20588390dff7496b51995079ed05457 SHA512 09653777c4653c786d03d8a2141988e1b6f33f0b81b46815d3c13e7d7ca40957d15d654a7d58dd72f02574197183e9198563e871ab4d23f228f87a81cccd0b2d
 DIST candy-5.10.6.gh.tar.gz 341627 BLAKE2B 5b72e07b808e57b448c197c9fe34e7ffff1cde3de6e8fd702ef76f45fc97d97e86db8f049fa6562d18e551f9e0f9daa9d50a36a0cda92757bcf700406fa494e0 SHA512 8f20776d53f60812cf2f1775fe7c439f5dc65b20efe0a87928ad9a067118310f1adf8e5ca3a470c5abf86ddb5fe7a825c3f1e8270590afcc6da57fdad92d09b3
+DIST candy-6.0.1.gh.tar.gz 338190 BLAKE2B acef012b5c6bd4d412b0b1a1f0539f8c2bb9fe307f27a9a0963f0760333df77bbd239822fad705d2eefc8812ff1297075f9c96fad0033d970fbb3ffd60afb5f0 SHA512 7fc30b0347ddf862cd9bf163c23cf3ae9505cab5c154c6bff5048a009c5511455fe03f9391107ed456eb3c82e8eaeb1489184a17ef1420a14c57f8fbdfe3df84

diff --git a/net-vpn/candy/candy-5.10.4-r1.ebuild b/net-vpn/candy/candy-6.0.1.ebuild
similarity index 95%
rename from net-vpn/candy/candy-5.10.4-r1.ebuild
rename to net-vpn/candy/candy-6.0.1.ebuild
index b2396261c0bd..5322bf2b14e1 100644
--- a/net-vpn/candy/candy-5.10.4-r1.ebuild
+++ b/net-vpn/candy/candy-6.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2024 Gentoo Authors
+# Copyright 2024-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-06-02 13:08 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-06-02 13:08 UTC (permalink / raw
  To: gentoo-commits

commit:     38318e4d7bd35da9a26655f4c379e2cdeabc2bb2
Author:     Xin Yang <yangmame <AT> icloud <DOT> com>
AuthorDate: Fri May 30 16:22:50 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Jun  2 13:04:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38318e4d

net-vpn/candy: add 6.0.4, drop 6.0.1

Closes: https://github.com/gentoo/gentoo/pull/42356
Signed-off-by: Xin Yang <yangmame <AT> icloud.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest                                   | 2 +-
 net-vpn/candy/{candy-6.0.1.ebuild => candy-6.0.4.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index d0aed1f008e4..06ed7a0a2622 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1,2 @@
 DIST candy-5.10.6.gh.tar.gz 341627 BLAKE2B 5b72e07b808e57b448c197c9fe34e7ffff1cde3de6e8fd702ef76f45fc97d97e86db8f049fa6562d18e551f9e0f9daa9d50a36a0cda92757bcf700406fa494e0 SHA512 8f20776d53f60812cf2f1775fe7c439f5dc65b20efe0a87928ad9a067118310f1adf8e5ca3a470c5abf86ddb5fe7a825c3f1e8270590afcc6da57fdad92d09b3
-DIST candy-6.0.1.gh.tar.gz 338190 BLAKE2B acef012b5c6bd4d412b0b1a1f0539f8c2bb9fe307f27a9a0963f0760333df77bbd239822fad705d2eefc8812ff1297075f9c96fad0033d970fbb3ffd60afb5f0 SHA512 7fc30b0347ddf862cd9bf163c23cf3ae9505cab5c154c6bff5048a009c5511455fe03f9391107ed456eb3c82e8eaeb1489184a17ef1420a14c57f8fbdfe3df84
+DIST candy-6.0.4.gh.tar.gz 338217 BLAKE2B 7fb9b842fff0611e21f3a539ded4e0080b685ffe5c41731a0b77ac12754a5b8f99497ebe3ed7acb964fe0e90ca9cd6cdee7cb6d5d69c256aa7c174c5251450af SHA512 807d3b9bce3d675d7da9aedcaf940bd25eef8154e20fec79e53800d972983a667be624947e5dae8005cb0d63607f8d9d5e90f66488d2541be38e79c7728c5f7a

diff --git a/net-vpn/candy/candy-6.0.1.ebuild b/net-vpn/candy/candy-6.0.4.ebuild
similarity index 100%
rename from net-vpn/candy/candy-6.0.1.ebuild
rename to net-vpn/candy/candy-6.0.4.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-07-19 11:14 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-07-19 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     3599a763627eda682c9eb341e69802142373dfcf
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 19 11:05:40 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Jul 19 11:14:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3599a763

net-vpn/candy: drop 5.10.6

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest            |  1 -
 net-vpn/candy/candy-5.10.6.ebuild | 42 ---------------------------------------
 2 files changed, 43 deletions(-)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index be898d1a6df0..7f597ea5a908 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,3 +1,2 @@
-DIST candy-5.10.6.gh.tar.gz 341627 BLAKE2B 5b72e07b808e57b448c197c9fe34e7ffff1cde3de6e8fd702ef76f45fc97d97e86db8f049fa6562d18e551f9e0f9daa9d50a36a0cda92757bcf700406fa494e0 SHA512 8f20776d53f60812cf2f1775fe7c439f5dc65b20efe0a87928ad9a067118310f1adf8e5ca3a470c5abf86ddb5fe7a825c3f1e8270590afcc6da57fdad92d09b3
 DIST candy-6.0.4.gh.tar.gz 338217 BLAKE2B 7fb9b842fff0611e21f3a539ded4e0080b685ffe5c41731a0b77ac12754a5b8f99497ebe3ed7acb964fe0e90ca9cd6cdee7cb6d5d69c256aa7c174c5251450af SHA512 807d3b9bce3d675d7da9aedcaf940bd25eef8154e20fec79e53800d972983a667be624947e5dae8005cb0d63607f8d9d5e90f66488d2541be38e79c7728c5f7a
 DIST candy-6.1.1.gh.tar.gz 337323 BLAKE2B 37b8629e0c84f82cf5d91a394d63d1f25747d4d659eab3849d24cbff8a006db82d31a17907bab3481f4dd77aaadc822bb34027337e30f63a916ae141a57d5e8c SHA512 2124e545d32f7424315b613ad13c5792dc97c5833c905e5ca65e3b7e400f51c86847dc9ec16e015933b41b6ab2c98f2e26f9bfc82d1284cbfc45a9c8708586e3

diff --git a/net-vpn/candy/candy-5.10.6.ebuild b/net-vpn/candy/candy-5.10.6.ebuild
deleted file mode 100644
index 5322bf2b14e1..000000000000
--- a/net-vpn/candy/candy-5.10.6.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2024-2025 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:=
-	dev-libs/openssl:=
-	dev-libs/spdlog:=
-	dev-libs/libfmt:=
-"
-RDEPEND="
-	${DEPEND}
-"
-
-src_install(){
-	cmake_src_install
-	default
-
-	insinto /etc
-	doins candy.cfg
-
-	systemd_dounit candy.service
-	systemd_dounit candy@.service
-	newinitd candy.initd candy
-
-	readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-07-19 11:14 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-07-19 11:14 UTC (permalink / raw
  To: gentoo-commits

commit:     72f894fc034ceecc2ddfb862611480deddb63900
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 19 10:52:17 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Jul 19 11:14:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f894fc

net-vpn/candy: add 6.1.1

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest           |  1 +
 net-vpn/candy/candy-6.1.1.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 06ed7a0a2622..be898d1a6df0 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1,3 @@
 DIST candy-5.10.6.gh.tar.gz 341627 BLAKE2B 5b72e07b808e57b448c197c9fe34e7ffff1cde3de6e8fd702ef76f45fc97d97e86db8f049fa6562d18e551f9e0f9daa9d50a36a0cda92757bcf700406fa494e0 SHA512 8f20776d53f60812cf2f1775fe7c439f5dc65b20efe0a87928ad9a067118310f1adf8e5ca3a470c5abf86ddb5fe7a825c3f1e8270590afcc6da57fdad92d09b3
 DIST candy-6.0.4.gh.tar.gz 338217 BLAKE2B 7fb9b842fff0611e21f3a539ded4e0080b685ffe5c41731a0b77ac12754a5b8f99497ebe3ed7acb964fe0e90ca9cd6cdee7cb6d5d69c256aa7c174c5251450af SHA512 807d3b9bce3d675d7da9aedcaf940bd25eef8154e20fec79e53800d972983a667be624947e5dae8005cb0d63607f8d9d5e90f66488d2541be38e79c7728c5f7a
+DIST candy-6.1.1.gh.tar.gz 337323 BLAKE2B 37b8629e0c84f82cf5d91a394d63d1f25747d4d659eab3849d24cbff8a006db82d31a17907bab3481f4dd77aaadc822bb34027337e30f63a916ae141a57d5e8c SHA512 2124e545d32f7424315b613ad13c5792dc97c5833c905e5ca65e3b7e400f51c86847dc9ec16e015933b41b6ab2c98f2e26f9bfc82d1284cbfc45a9c8708586e3

diff --git a/net-vpn/candy/candy-6.1.1.ebuild b/net-vpn/candy/candy-6.1.1.ebuild
new file mode 100644
index 000000000000..5322bf2b14e1
--- /dev/null
+++ b/net-vpn/candy/candy-6.1.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2024-2025 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:=
+	dev-libs/openssl:=
+	dev-libs/spdlog:=
+	dev-libs/libfmt:=
+"
+RDEPEND="
+	${DEPEND}
+"
+
+src_install(){
+	cmake_src_install
+	default
+
+	insinto /etc
+	doins candy.cfg
+
+	systemd_dounit candy.service
+	systemd_dounit candy@.service
+	newinitd candy.initd candy
+
+	readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-10-10 14:04 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-10-10 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     352f6f4872a73e1c367e86cafddf965a52fd8b87
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 10 14:03:19 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Oct 10 14:03:19 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=352f6f48

net-vpn/candy: add 6.1.2

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest           |  1 +
 net-vpn/candy/candy-6.1.2.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 7f597ea5a908..90a8c59a41fe 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,2 +1,3 @@
 DIST candy-6.0.4.gh.tar.gz 338217 BLAKE2B 7fb9b842fff0611e21f3a539ded4e0080b685ffe5c41731a0b77ac12754a5b8f99497ebe3ed7acb964fe0e90ca9cd6cdee7cb6d5d69c256aa7c174c5251450af SHA512 807d3b9bce3d675d7da9aedcaf940bd25eef8154e20fec79e53800d972983a667be624947e5dae8005cb0d63607f8d9d5e90f66488d2541be38e79c7728c5f7a
 DIST candy-6.1.1.gh.tar.gz 337323 BLAKE2B 37b8629e0c84f82cf5d91a394d63d1f25747d4d659eab3849d24cbff8a006db82d31a17907bab3481f4dd77aaadc822bb34027337e30f63a916ae141a57d5e8c SHA512 2124e545d32f7424315b613ad13c5792dc97c5833c905e5ca65e3b7e400f51c86847dc9ec16e015933b41b6ab2c98f2e26f9bfc82d1284cbfc45a9c8708586e3
+DIST candy-6.1.2.gh.tar.gz 337474 BLAKE2B 86041405cf2263215beaaeed5f34b9c69ef0641bb97d8f0ed357c9e24d340ab44aff36ae39ead6664f660dc2e8877c29e3627dc1b2fc0aa1258ffbd9c8a0f409 SHA512 0384371e12ae3aadc026a4f3f9c0129e896bc610d1da799ee6658c74a4ca24f058f4ee4f833261c5a8ae55a32e406081fd035a98de21ac561eb85259a944db4e

diff --git a/net-vpn/candy/candy-6.1.2.ebuild b/net-vpn/candy/candy-6.1.2.ebuild
new file mode 100644
index 000000000000..5322bf2b14e1
--- /dev/null
+++ b/net-vpn/candy/candy-6.1.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2024-2025 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:=
+	dev-libs/openssl:=
+	dev-libs/spdlog:=
+	dev-libs/libfmt:=
+"
+RDEPEND="
+	${DEPEND}
+"
+
+src_install(){
+	cmake_src_install
+	default
+
+	insinto /etc
+	doins candy.cfg
+
+	systemd_dounit candy.service
+	systemd_dounit candy@.service
+	newinitd candy.initd candy
+
+	readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-10-10 14:04 Yixun Lan
  0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2025-10-10 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     8339744845870d966355ae29b2427ad5eb7e2063
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 10 14:03:45 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Oct 10 14:03:45 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83397448

net-vpn/candy: drop 6.0.4

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 net-vpn/candy/Manifest           |  1 -
 net-vpn/candy/candy-6.0.4.ebuild | 42 ----------------------------------------
 2 files changed, 43 deletions(-)

diff --git a/net-vpn/candy/Manifest b/net-vpn/candy/Manifest
index 90a8c59a41fe..6572a75858f1 100644
--- a/net-vpn/candy/Manifest
+++ b/net-vpn/candy/Manifest
@@ -1,3 +1,2 @@
-DIST candy-6.0.4.gh.tar.gz 338217 BLAKE2B 7fb9b842fff0611e21f3a539ded4e0080b685ffe5c41731a0b77ac12754a5b8f99497ebe3ed7acb964fe0e90ca9cd6cdee7cb6d5d69c256aa7c174c5251450af SHA512 807d3b9bce3d675d7da9aedcaf940bd25eef8154e20fec79e53800d972983a667be624947e5dae8005cb0d63607f8d9d5e90f66488d2541be38e79c7728c5f7a
 DIST candy-6.1.1.gh.tar.gz 337323 BLAKE2B 37b8629e0c84f82cf5d91a394d63d1f25747d4d659eab3849d24cbff8a006db82d31a17907bab3481f4dd77aaadc822bb34027337e30f63a916ae141a57d5e8c SHA512 2124e545d32f7424315b613ad13c5792dc97c5833c905e5ca65e3b7e400f51c86847dc9ec16e015933b41b6ab2c98f2e26f9bfc82d1284cbfc45a9c8708586e3
 DIST candy-6.1.2.gh.tar.gz 337474 BLAKE2B 86041405cf2263215beaaeed5f34b9c69ef0641bb97d8f0ed357c9e24d340ab44aff36ae39ead6664f660dc2e8877c29e3627dc1b2fc0aa1258ffbd9c8a0f409 SHA512 0384371e12ae3aadc026a4f3f9c0129e896bc610d1da799ee6658c74a4ca24f058f4ee4f833261c5a8ae55a32e406081fd035a98de21ac561eb85259a944db4e

diff --git a/net-vpn/candy/candy-6.0.4.ebuild b/net-vpn/candy/candy-6.0.4.ebuild
deleted file mode 100644
index 5322bf2b14e1..000000000000
--- a/net-vpn/candy/candy-6.0.4.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2024-2025 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:=
-	dev-libs/openssl:=
-	dev-libs/spdlog:=
-	dev-libs/libfmt:=
-"
-RDEPEND="
-	${DEPEND}
-"
-
-src_install(){
-	cmake_src_install
-	default
-
-	insinto /etc
-	doins candy.cfg
-
-	systemd_dounit candy.service
-	systemd_dounit candy@.service
-	newinitd candy.initd candy
-
-	readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-}


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

end of thread, other threads:[~2025-10-10 14:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-19 11:14 [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/ Yixun Lan
  -- strict thread matches above, loose matches on Subject: below --
2025-10-10 14:04 Yixun Lan
2025-10-10 14:04 Yixun Lan
2025-07-19 11:14 Yixun Lan
2025-06-02 13:08 Yixun Lan
2025-05-30  4:33 Yixun Lan
2025-01-08  7:53 Yixun Lan
2024-09-18  3:25 Sam James
2024-09-12 12:12 Yixun Lan

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