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; 3+ 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] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2024-09-18  3:25 Sam James
  0 siblings, 0 replies; 3+ 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] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/candy/
@ 2025-01-08  7:53 Yixun Lan
  0 siblings, 0 replies; 3+ 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] 3+ messages in thread

end of thread, other threads:[~2025-01-08  7:53 UTC | newest]

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

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