From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/ncdc/
Date: Tue, 31 May 2022 04:07:09 +0000 (UTC) [thread overview]
Message-ID: <1653970018.c45c35fd29bc2fbffd05ccb2a5f93f312ebe64ce.sam@gentoo> (raw)
commit: c45c35fd29bc2fbffd05ccb2a5f93f312ebe64ce
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 03:57:38 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 31 04:06:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c45c35fd
net-p2p/ncdc: add 1.23
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-p2p/ncdc/Manifest | 1 +
net-p2p/ncdc/{ncdc-9999.ebuild => ncdc-1.23.ebuild} | 17 ++++++++++-------
net-p2p/ncdc/ncdc-9999.ebuild | 15 +++++++++------
3 files changed, 20 insertions(+), 13 deletions(-)
diff --git a/net-p2p/ncdc/Manifest b/net-p2p/ncdc/Manifest
index e3553ce01161..7fd4e557d289 100644
--- a/net-p2p/ncdc/Manifest
+++ b/net-p2p/ncdc/Manifest
@@ -1 +1,2 @@
DIST ncdc-1.22.1.tar.gz 371572 BLAKE2B 22125062a42f77e8a7a8afc699523b27a2b7ec566891676ca13b415e93cdae8e2d8d38f303070c7f098408f537266404a875b9ed7f9931a39933916a0ba576ab SHA512 b084ee28a799705009600c450016719ebb992cb0bf7e026513f4cd7e93b2566e7bf8e352eec92f3d69612ce06c930587759d7f7d20d14ee9fe1d5c4b8c4393af
+DIST ncdc-1.23.tar.gz 378384 BLAKE2B 0558b8b51f9cda81ec553171f76a0f6c29a1a67e6f69c5cc2c181428f3bb1db2ecd5a9c2f0c609dac53323ad62e478171121572f0a9d707d9d6d9e9727441873 SHA512 c1b2098df517631a64b24efaeb328a796ed716dca08b61248bb39bba866055ce1e017f33cc594197824476ec65ada53b13bfb56878b5b8aa330288017ad15df2
diff --git a/net-p2p/ncdc/ncdc-9999.ebuild b/net-p2p/ncdc/ncdc-1.23.ebuild
similarity index 80%
copy from net-p2p/ncdc/ncdc-9999.ebuild
copy to net-p2p/ncdc/ncdc-1.23.ebuild
index f6cebc9b3c0a..dea5357e9c22 100644
--- a/net-p2p/ncdc/ncdc-9999.ebuild
+++ b/net-p2p/ncdc/ncdc-1.23.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
DESCRIPTION="ncurses directconnect client"
HOMEPAGE="https://dev.yorhel.nl/ncdc"
-if [[ "${PV}" == *9999 ]] ; then
+if [[ ${PV} == *9999 ]] ; then
inherit autotools git-r3
EGIT_REPO_URI="git://g.blicky.net/ncdc.git"
else
@@ -22,8 +22,8 @@ IUSE="geoip"
RDEPEND="
app-arch/bzip2
dev-db/sqlite:3
- dev-libs/glib:2
- net-libs/gnutls:=
+ >=dev-libs/glib-2.32:2
+ >=net-libs/gnutls-3:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
geoip? (
@@ -38,16 +38,19 @@ BDEPEND="
src_prepare() {
default
- [[ "${PV}" == *9999 ]] && eautoreconf
+
+ [[ ${PV} == *9999 ]] && eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_with geoip)
)
- if [[ "${PV}" == *9999 ]] ; then
+
+ if [[ ${PV} == *9999 ]] ; then
myeconfargs+=( --enable-git-version )
fi
+
econf "${myeconfargs[@]}"
}
diff --git a/net-p2p/ncdc/ncdc-9999.ebuild b/net-p2p/ncdc/ncdc-9999.ebuild
index f6cebc9b3c0a..e001c6590371 100644
--- a/net-p2p/ncdc/ncdc-9999.ebuild
+++ b/net-p2p/ncdc/ncdc-9999.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
DESCRIPTION="ncurses directconnect client"
HOMEPAGE="https://dev.yorhel.nl/ncdc"
-if [[ "${PV}" == *9999 ]] ; then
+if [[ ${PV} == *9999 ]] ; then
inherit autotools git-r3
EGIT_REPO_URI="git://g.blicky.net/ncdc.git"
else
@@ -22,7 +22,7 @@ IUSE="geoip"
RDEPEND="
app-arch/bzip2
dev-db/sqlite:3
- dev-libs/glib:2
+ >=dev-libs/glib-2.32:2
net-libs/gnutls:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
@@ -38,16 +38,19 @@ BDEPEND="
src_prepare() {
default
- [[ "${PV}" == *9999 ]] && eautoreconf
+
+ [[ ${PV} == *9999 ]] && eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_with geoip)
)
- if [[ "${PV}" == *9999 ]] ; then
+
+ if [[ ${PV} == *9999 ]] ; then
myeconfargs+=( --enable-git-version )
fi
+
econf "${myeconfargs[@]}"
}
next reply other threads:[~2022-05-31 4:07 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-31 4:07 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-01 15:41 [gentoo-commits] repo/gentoo:master commit in: net-p2p/ncdc/ Andreas K. Hüttel
2024-10-07 6:24 Sam James
2024-10-07 6:24 Sam James
2024-08-11 5:44 Joonas Niilola
2024-08-11 5:44 Joonas Niilola
2024-08-10 7:30 Joonas Niilola
2024-03-29 7:40 Joonas Niilola
2024-03-29 7:40 Joonas Niilola
2023-01-14 19:17 Sam James
2023-01-13 14:50 Sam James
2023-01-13 14:50 Sam James
2022-12-13 18:28 Viorel Munteanu
2022-12-13 18:28 Viorel Munteanu
2022-12-13 18:28 Viorel Munteanu
2022-12-13 18:28 Viorel Munteanu
2021-07-17 21:30 David Seifert
2021-01-04 3:31 Sam James
2020-11-02 11:50 Lars Wendler
2020-11-02 11:50 Lars Wendler
2020-11-02 11:50 Lars Wendler
2020-11-02 11:50 Lars Wendler
2019-04-08 12:40 Lars Wendler
2019-02-20 13:18 Mikle Kolyada
2019-02-20 13:16 Mikle Kolyada
2019-02-15 0:18 Thomas Deutschmann
2018-04-15 11:34 David Seifert
2017-03-09 13:40 Michael Weber
2017-03-09 13:40 Michael Weber
2016-05-10 11:08 Patrice Clement
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1653970018.c45c35fd29bc2fbffd05ccb2a5f93f312ebe64ce.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox