mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-misc/ipv6calc: drop 2.2.0, 3.1.1, 3.2.0, 4.0.0, 4.0.1
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
@@ -1,5 +1 @@
|
||||
DIST ipv6calc-2.2.0.tar.gz 1546946 BLAKE2B 90dc600c1e83affd6138bfc73ac77160e35d2f745213059ed2b0f36d7a9049a7a659d0419e6f684661247c7714d3e9886fe0a6782f5dd35895c46f2583310dcd SHA512 6e9acde56e245ffae0903305659881eb763524336da285d5048b655728c7d7b031ae7b4190f01f663e3d7134defbb8987c8f47ddd75bf8c8368ec1b918ee42e3
|
||||
DIST ipv6calc-3.1.1.tar.gz 1634300 BLAKE2B 941df0c0d649cf5879e1abfde1e4c0f41fcdbe4cb945552df42b9a39ec317dda7e25c85711f103e024bc3774e46f52d3754e6e0b004b098baeac3d863d3ec38e SHA512 0cf726fec47a592168bb0715dd96c16033fe85e1c462530ef6898236cf89199fede81a9ffc78b3210c9e007da03279c7d45aa00a7a9a7f00f5f9bc82b7cc1695
|
||||
DIST ipv6calc-3.2.0.tar.gz 1645414 BLAKE2B b74406a867b03e22244c1890133ce9553c40b5a737bd1711783e94b7f3afc43cfcff26e12583552a4c0fcc9ecd51174fb20844bddac22732d08e995de9e0f5ef SHA512 f7cd3d8820acd06c016e6f439129516d61300ba1660fe3acfec319f4dbd73de77f0a339bef31fd42bb0a4ab2e68d0e4771b1526f3217d3504cb4605d7b9b0195
|
||||
DIST ipv6calc-4.0.0.tar.gz 1682616 BLAKE2B 5a26f6c4c8a9a2ea49c8762690c18e523ebde370817e71ae56f1cda211324695f046e85bba56f0b19e17869d72adb0ee8739fdbd4e8c4503d4a286107212eda4 SHA512 939dfcbe68c6e110acfe23f6f221471bda03ad165f5785bbc9aabd03b3192ab3cdb99df458db79edfa3c3d2f3202f1f2f189b7a9fd9a5ae27a7084de2fbd907d
|
||||
DIST ipv6calc-4.0.1.tar.gz 1705407 BLAKE2B 599573570df946f3362e213e481b8016b037de6263ed53aa61fd39b69810b2cf05a9c76408904bac4b076a4061091be8adbd6d5648a1f5bdc5d021ebd5123acb SHA512 6e60f4808b2622235ea9c43c99868798e7014fbee7dc51349cfe2ba28badcc767d45f9e30dc14d3b78c4a88ef2ff80083b4b0be64e93ed17b17817995364b3ce
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
https://bugs.gentoo.org/708056
|
||||
|
||||
From 8c7eea58f2034113ae91ff7adc2bda72465b7d1a Mon Sep 17 00:00:00 2001
|
||||
From: Peter Bieringer <pb@bieringer.de>
|
||||
Date: Fri, 24 Jan 2020 07:15:55 +0100
|
||||
Subject: [PATCH] ipv6logconv/ipv6logconv.{h,c}: fix multiple definition of
|
||||
'cache_lru_limit'
|
||||
|
||||
--- a/ipv6logconv/ipv6logconv.c
|
||||
+++ b/ipv6logconv/ipv6logconv.c
|
||||
@@ -58,7 +58,7 @@ static void lineparser(const long int outputtype);
|
||||
/* LRU cache */
|
||||
|
||||
#define CACHE_LRU_SIZE 200
|
||||
-
|
||||
+int cache_lru_limit;
|
||||
static int cache_lru_max = 0;
|
||||
static int cache_lru_last = 0;
|
||||
static char cache_lru_key_token[CACHE_LRU_SIZE][NI_MAXHOST];
|
||||
--- a/ipv6logconv/ipv6logconv.h
|
||||
+++ b/ipv6logconv/ipv6logconv.h
|
||||
@@ -20,8 +20,7 @@
|
||||
#define DEBUG_ipv6logconv_general 0x00000001l
|
||||
#define DEBUG_ipv6logconv_processing 0x00000002l
|
||||
|
||||
-/* prototyping */
|
||||
-int cache_lru_limit;
|
||||
+extern int cache_lru_limit;
|
||||
|
||||
extern int feature_reg;
|
||||
extern int feature_ieee;
|
||||
--
|
||||
2.27.0
|
||||
|
||||
@@ -1,69 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
DESCRIPTION="IPv6 address calculator"
|
||||
HOMEPAGE="https://www.deepspace6.net/projects/ipv6calc.html"
|
||||
SRC_URI="https://github.com/pbiering/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="geoip test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/openssl:=
|
||||
geoip? ( >=dev-libs/geoip-1.4.7 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-perl/Digest-SHA1 )
|
||||
"
|
||||
|
||||
PATCHES=("${FILESDIR}"/${P}-gcc-10.patch)
|
||||
|
||||
#dev-perl/URI is needed for web interface, that is not installed now
|
||||
|
||||
src_configure() {
|
||||
# These options are broken. You can't disable them. That's
|
||||
# okay because we want then force enabled.
|
||||
# --disable-db-as-registry
|
||||
# --disable-db-cc-registry
|
||||
if use geoip; then
|
||||
myconf=$(use_enable geoip)
|
||||
myconf+=" --with-geoip-db=${EPREFIX}/usr/share/GeoIP"
|
||||
fi
|
||||
econf \
|
||||
--disable-bundled-getopt \
|
||||
--disable-bundled-md5 \
|
||||
--enable-shared \
|
||||
--enable-dynamic-load \
|
||||
--enable-db-ieee \
|
||||
--enable-db-ipv4 \
|
||||
--enable-db-ipv6 \
|
||||
--disable-dbip \
|
||||
--disable-dbip2 \
|
||||
--disable-external \
|
||||
--disable-ip2location \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake distclean
|
||||
# Disable default CFLAGS (-O2 and -g)
|
||||
emake DEFAULT_CFLAGS=""
|
||||
}
|
||||
|
||||
src_test() {
|
||||
if [[ ${EUID} -eq 0 ]]; then
|
||||
# Disable tests that fail as root
|
||||
echo true > ipv6logstats/test_ipv6logstats.sh
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc ChangeLog CREDITS README TODO USAGE
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
DESCRIPTION="IPv6 address calculator"
|
||||
HOMEPAGE="https://www.deepspace6.net/projects/ipv6calc.html"
|
||||
SRC_URI="https://github.com/pbiering/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="geoip test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/openssl:=
|
||||
geoip? ( >=dev-libs/geoip-1.4.7 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-perl/Digest-SHA1 )
|
||||
"
|
||||
|
||||
#dev-perl/URI is needed for web interface, that is not installed now
|
||||
|
||||
src_configure() {
|
||||
# These options are broken. You can't disable them. That's
|
||||
# okay because we want then force enabled.
|
||||
# --disable-db-as-registry
|
||||
# --disable-db-cc-registry
|
||||
if use geoip; then
|
||||
myconf=$(use_enable geoip)
|
||||
myconf+=" --with-geoip-db=${EPREFIX}/usr/share/GeoIP"
|
||||
fi
|
||||
econf \
|
||||
--disable-bundled-getopt \
|
||||
--disable-bundled-md5 \
|
||||
--enable-shared \
|
||||
--enable-dynamic-load \
|
||||
--enable-db-ieee \
|
||||
--enable-db-ipv4 \
|
||||
--enable-db-ipv6 \
|
||||
--disable-dbip \
|
||||
--disable-dbip2 \
|
||||
--disable-external \
|
||||
--disable-ip2location \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake distclean
|
||||
# Disable default CFLAGS (-O2 and -g)
|
||||
emake DEFAULT_CFLAGS=""
|
||||
}
|
||||
|
||||
src_test() {
|
||||
if [[ ${EUID} -eq 0 ]]; then
|
||||
# Disable tests that fail as root
|
||||
echo true > ipv6logstats/test_ipv6logstats.sh
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc ChangeLog CREDITS README TODO USAGE
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
DESCRIPTION="IPv6 address calculator"
|
||||
HOMEPAGE="https://www.deepspace6.net/projects/ipv6calc.html"
|
||||
SRC_URI="https://github.com/pbiering/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="geoip test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/openssl:=
|
||||
geoip? ( >=dev-libs/geoip-1.4.7 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-perl/Digest-SHA1 )
|
||||
"
|
||||
|
||||
#dev-perl/URI is needed for web interface, that is not installed now
|
||||
|
||||
src_configure() {
|
||||
# These options are broken. You can't disable them. That's
|
||||
# okay because we want then force enabled.
|
||||
# --disable-db-as-registry
|
||||
# --disable-db-cc-registry
|
||||
if use geoip; then
|
||||
myconf=$(use_enable geoip)
|
||||
myconf+=" --with-geoip-db=${EPREFIX}/usr/share/GeoIP"
|
||||
fi
|
||||
econf \
|
||||
--disable-bundled-getopt \
|
||||
--disable-bundled-md5 \
|
||||
--enable-shared \
|
||||
--enable-dynamic-load \
|
||||
--enable-db-ieee \
|
||||
--enable-db-ipv4 \
|
||||
--enable-db-ipv6 \
|
||||
--disable-dbip \
|
||||
--disable-dbip2 \
|
||||
--disable-external \
|
||||
--disable-ip2location \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake distclean
|
||||
# Disable default CFLAGS (-O2 and -g)
|
||||
emake DEFAULT_CFLAGS=""
|
||||
}
|
||||
|
||||
src_test() {
|
||||
if [[ ${EUID} -eq 0 ]]; then
|
||||
# Disable tests that fail as root
|
||||
echo true > ipv6logstats/test_ipv6logstats.sh
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc ChangeLog CREDITS README TODO USAGE
|
||||
}
|
||||
@@ -1,75 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
DESCRIPTION="IPv6 address calculator"
|
||||
HOMEPAGE="https://www.deepspace6.net/projects/ipv6calc.html"
|
||||
SRC_URI="https://github.com/pbiering/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="cgi geoip test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
cgi? (
|
||||
dev-perl/URI
|
||||
dev-perl/Digest-SHA1
|
||||
)
|
||||
dev-libs/openssl:=
|
||||
geoip? ( >=dev-libs/geoip-1.4.7 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-perl/Digest-SHA1 )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
# These options are broken. You can't disable them. That's
|
||||
# okay because we want then force enabled.
|
||||
# --disable-db-as-registry
|
||||
# --disable-db-cc-registry
|
||||
local myeconfargs=(
|
||||
--disable-bundled-getopt
|
||||
--disable-bundled-md5
|
||||
--enable-shared
|
||||
--enable-dynamic-load
|
||||
--enable-db-ieee
|
||||
--enable-db-ipv4
|
||||
--enable-db-ipv6
|
||||
--disable-dbip
|
||||
--disable-dbip2
|
||||
--disable-external
|
||||
--disable-ip2location
|
||||
--enable-openssl-evp-md5
|
||||
--enable-openssl-md5
|
||||
$(use_enable geoip)
|
||||
$(use_enable cgi mod_ipv6calc )
|
||||
)
|
||||
|
||||
if use geoip; then
|
||||
myeconfargs+=( "--with-geoip-db=${EPREFIX}/usr/share/GeoIP" )
|
||||
fi
|
||||
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake distclean
|
||||
# Disable default CFLAGS (-O2 and -g)
|
||||
emake DEFAULT_CFLAGS=""
|
||||
}
|
||||
|
||||
src_test() {
|
||||
if [[ ${EUID} -eq 0 ]]; then
|
||||
# Disable tests that fail as root
|
||||
echo true > ipv6logstats/test_ipv6logstats.sh
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc ChangeLog CREDITS README TODO USAGE
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
DESCRIPTION="IPv6 address calculator"
|
||||
HOMEPAGE="https://www.deepspace6.net/projects/ipv6calc.html"
|
||||
SRC_URI="https://github.com/pbiering/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="cgi geoip test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
cgi? (
|
||||
dev-perl/URI
|
||||
dev-perl/Digest-SHA1
|
||||
)
|
||||
dev-libs/openssl:=
|
||||
geoip? ( >=dev-libs/geoip-1.4.7 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-perl/Digest-SHA1 )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
# These options are broken. You can't disable them. That's
|
||||
# okay because we want then force enabled.
|
||||
# --disable-db-as-registry
|
||||
# --disable-db-cc-registry
|
||||
local myeconfargs=(
|
||||
--disable-compiler-warning-to-error
|
||||
--disable-bundled-getopt
|
||||
--disable-bundled-md5
|
||||
--enable-shared
|
||||
--enable-dynamic-load
|
||||
--enable-db-ieee
|
||||
--enable-db-ipv4
|
||||
--enable-db-ipv6
|
||||
--disable-dbip
|
||||
--disable-dbip2
|
||||
--disable-external
|
||||
--disable-ip2location
|
||||
--enable-openssl-evp-md5
|
||||
--enable-openssl-md5
|
||||
$(use_enable geoip)
|
||||
$(use_enable cgi mod_ipv6calc )
|
||||
)
|
||||
|
||||
if use geoip; then
|
||||
myeconfargs+=( "--with-geoip-db=${EPREFIX}/usr/share/GeoIP" )
|
||||
fi
|
||||
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake distclean
|
||||
# Disable default CFLAGS (-O2 and -g)
|
||||
emake DEFAULT_CFLAGS=""
|
||||
}
|
||||
|
||||
src_test() {
|
||||
if [[ ${EUID} -eq 0 ]]; then
|
||||
# Disable tests that fail as root
|
||||
echo true > ipv6logstats/test_ipv6logstats.sh
|
||||
fi
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc ChangeLog CREDITS README TODO USAGE
|
||||
}
|
||||
Reference in New Issue
Block a user