* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2020-01-08 7:50 Jeroen Roovers
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers @ 2020-01-08 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 982f06df2e8283e4f3236a8bb651f2118926405b
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 8 07:50:29 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Jan 8 07:50:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982f06df
net-analyzer/bigeye: EAPI=7
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
net-analyzer/bigeye/Manifest | 1 +
net-analyzer/bigeye/bigeye-0.3-r4.ebuild | 41 ++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/net-analyzer/bigeye/Manifest b/net-analyzer/bigeye/Manifest
index 87b6d25400f..df77a02a017 100644
--- a/net-analyzer/bigeye/Manifest
+++ b/net-analyzer/bigeye/Manifest
@@ -1,2 +1,3 @@
DIST bigeye-0.3-gcc34.diff.bz2 2774 BLAKE2B 51b1c4702b65b3e6b484d17e500b00d26bd137c74a8eb16b8521ffa621263ef89b650f1bdc967c50a8e5200cc857d42597e1f93279ec4acd01efe8ad9802cae0 SHA512 8ed54aa7b95aac8703e2bf99fde985cbbe7e62f7a6b549e58b2b54856336c5560c450a8c6ad9cbcdcd6bf61c842797c1abca001cfca20ff82614d8c328cab4ba
+DIST bigeye-0.3-gcc34.patch.xz 2564 BLAKE2B 17508c780f339aa2409616aa2bd4e37c3e9f8ba48626e9a3782ea60da2989d4a8543c8a97cecef34554265385b13019d3bc04a05c8809870e0cba20c72a76bf8 SHA512 c7005975a7b798521f0d8f7b646f168ff215c1b5a760e303f7cad8bb78e2324e8303f77a724bc6902ef7ee525d7e6dd5ccfdf366c39abcc436fc6edf503205af
DIST bigeye-0.3.tgz 32462 BLAKE2B 509e958852d958f5fbb7197e567f8ebd1d7004027e4d8f3fe868d3af6719f76e445890a241d4438609b12695bd403fa246cec03b382a2c339d23c1456aa198e0 SHA512 73a146fd2f5df86a3d16dec05cf3f278393347f341a5cc319feccf6d23e1f2fe9d29070ac154a5b2336ade146843ab163e3545e9aefad1a0fa8903928d9b1ed0
diff --git a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
new file mode 100644
index 00000000000..e92408b8df4
--- /dev/null
+++ b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="network utility dump and simple honeypot utility"
+HOMEPAGE="http://violating.us/projects/bigeye/"
+SRC_URI="
+ http://violating.us/projects/bigeye/download/${P}.tgz
+ https://dev.gentoo.org/~jer/${P}-gcc34.patch.xz
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+PATCHES=(
+ "${WORKDIR}"/${P}-gcc34.patch
+ "${FILESDIR}"/${P}-overflow.patch
+)
+
+src_prepare() {
+ default
+ sed -i README \
+ -e "s|-- /messages/|-- /usr/share/bigeye/messages/|g" \
+ || die "sed README"
+}
+
+src_compile() {
+ $(tc-getCC) ${CFLAGS} ${LDFLAGS} src/bigeye.c src/emulate.c -o src/bigeye || die
+}
+
+src_install() {
+ dobin src/bigeye
+
+ insinto /usr/share/bigeye
+ doins sig.file
+ doins -r messages
+
+ dodoc README
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2020-02-10 18:27 Jeroen Roovers
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers @ 2020-02-10 18:27 UTC (permalink / raw
To: gentoo-commits
commit: 5bafe8c6a96dbadcf8867c0460d558dcbc2b2213
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 18:26:33 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 18:27:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bafe8c6
net-analyzer/bigeye: Set CFLAGS=-fno-common
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Closes: https://bugs.gentoo.org/show_bug.cgi?id=708996
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
net-analyzer/bigeye/bigeye-0.3-r4.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
index e92408b8df4..b349042d1de 100644
--- a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
+++ b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="network utility dump and simple honeypot utility"
HOMEPAGE="http://violating.us/projects/bigeye/"
@@ -27,6 +27,7 @@ src_prepare() {
}
src_compile() {
+ append-cflags -fcommon
$(tc-getCC) ${CFLAGS} ${LDFLAGS} src/bigeye.c src/emulate.c -o src/bigeye || die
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2020-11-27 0:07 Thomas Deutschmann
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Deutschmann @ 2020-11-27 0:07 UTC (permalink / raw
To: gentoo-commits
commit: 46b556e5f0a633767efb4b5dd22ed945d83f6dd6
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 27 00:04:23 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Nov 27 00:04:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46b556e5
net-analyzer/bigeye: x86 stable (bug #756952)
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-analyzer/bigeye/bigeye-0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
index b349042d1de..69b8a7cc386 100644
--- a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
+++ b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
PATCHES=(
"${WORKDIR}"/${P}-gcc34.patch
"${FILESDIR}"/${P}-overflow.patch
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2020-11-27 8:39 Agostino Sarubbo
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo @ 2020-11-27 8:39 UTC (permalink / raw
To: gentoo-commits
commit: daf3685d990a26996c3b7941ac43878784f6b5e5
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 27 08:37:26 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Nov 27 08:37:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf3685d
net-analyzer/bigeye: amd64 stable wrt bug #756952
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-analyzer/bigeye/bigeye-0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
index 69b8a7cc386..e9382d08ec4 100644
--- a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
+++ b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
PATCHES=(
"${WORKDIR}"/${P}-gcc34.patch
"${FILESDIR}"/${P}-overflow.patch
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2020-11-27 14:46 Aaron Bauman
0 siblings, 0 replies; 7+ messages in thread
From: Aaron Bauman @ 2020-11-27 14:46 UTC (permalink / raw
To: gentoo-commits
commit: 5336bfc66a4872f7f68ff9ecdf3ad7c3eeb297e2
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 27 14:37:52 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Nov 27 14:37:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5336bfc6
net-analyzer/bigeye: drop old
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
net-analyzer/bigeye/Manifest | 1 -
net-analyzer/bigeye/bigeye-0.3-r3.ebuild | 39 --------------------------------
2 files changed, 40 deletions(-)
diff --git a/net-analyzer/bigeye/Manifest b/net-analyzer/bigeye/Manifest
index df77a02a017..bcd16714fd0 100644
--- a/net-analyzer/bigeye/Manifest
+++ b/net-analyzer/bigeye/Manifest
@@ -1,3 +1,2 @@
-DIST bigeye-0.3-gcc34.diff.bz2 2774 BLAKE2B 51b1c4702b65b3e6b484d17e500b00d26bd137c74a8eb16b8521ffa621263ef89b650f1bdc967c50a8e5200cc857d42597e1f93279ec4acd01efe8ad9802cae0 SHA512 8ed54aa7b95aac8703e2bf99fde985cbbe7e62f7a6b549e58b2b54856336c5560c450a8c6ad9cbcdcd6bf61c842797c1abca001cfca20ff82614d8c328cab4ba
DIST bigeye-0.3-gcc34.patch.xz 2564 BLAKE2B 17508c780f339aa2409616aa2bd4e37c3e9f8ba48626e9a3782ea60da2989d4a8543c8a97cecef34554265385b13019d3bc04a05c8809870e0cba20c72a76bf8 SHA512 c7005975a7b798521f0d8f7b646f168ff215c1b5a760e303f7cad8bb78e2324e8303f77a724bc6902ef7ee525d7e6dd5ccfdf366c39abcc436fc6edf503205af
DIST bigeye-0.3.tgz 32462 BLAKE2B 509e958852d958f5fbb7197e567f8ebd1d7004027e4d8f3fe868d3af6719f76e445890a241d4438609b12695bd403fa246cec03b382a2c339d23c1456aa198e0 SHA512 73a146fd2f5df86a3d16dec05cf3f278393347f341a5cc319feccf6d23e1f2fe9d29070ac154a5b2336ade146843ab163e3545e9aefad1a0fa8903928d9b1ed0
diff --git a/net-analyzer/bigeye/bigeye-0.3-r3.ebuild b/net-analyzer/bigeye/bigeye-0.3-r3.ebuild
deleted file mode 100644
index 597005a1017..00000000000
--- a/net-analyzer/bigeye/bigeye-0.3-r3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="network utility dump and simple honeypot utility"
-HOMEPAGE="http://violating.us/projects/bigeye/"
-SRC_URI="http://violating.us/projects/bigeye/download/${P}.tgz
- mirror://gentoo/${P}-gcc34.diff.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-src_prepare() {
- epatch \
- "${WORKDIR}"/${P}-gcc34.diff \
- "${FILESDIR}"/${P}-overflow.patch
- sed -i README \
- -e "s|-- /messages/|-- /usr/share/bigeye/messages/|g" \
- || die "sed README"
-}
-
-src_compile() {
- cd src || die
- $(tc-getCC) ${CFLAGS} ${LDFLAGS} bigeye.c emulate.c -o bigeye || die
-}
-
-src_install() {
- dobin src/bigeye
-
- insinto /usr/share/bigeye
- doins sig.file
- doins -r messages
-
- dodoc README
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2021-10-19 19:09 Jakov Smolić
0 siblings, 0 replies; 7+ messages in thread
From: Jakov Smolić @ 2021-10-19 19:09 UTC (permalink / raw
To: gentoo-commits
commit: 8cdd83e507f8bf3dd0d10785994a83ccb1474ac8
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 19 18:59:49 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Oct 19 19:08:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cdd83e5
net-analyzer/bigeye: Update SRC_URI (again)
The archive can't be fetched from the primary SRC_URI, so I've added it to my
devspace
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-analyzer/bigeye/bigeye-0.3-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
index 4aa3965850e..f1e171347c5 100644
--- a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
+++ b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
@@ -7,7 +7,7 @@ inherit flag-o-matic toolchain-funcs
DESCRIPTION="network utility dump and simple honeypot utility"
HOMEPAGE="http://violating.us/projects/bigeye/"
SRC_URI="
- http://violating.us/projects/bigeye/download/${P}.tgz
+ https://dev.gentoo.org/~jsmolic/distfiles/${P}.tgz
https://dev.gentoo.org/~jsmolic/distfiles/${P}-gcc34.patch.xz
"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/
@ 2021-10-19 19:09 Jakov Smolić
0 siblings, 0 replies; 7+ messages in thread
From: Jakov Smolić @ 2021-10-19 19:09 UTC (permalink / raw
To: gentoo-commits
commit: 872a031099417028f542d22eb3bc5f9e24dfa876
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 19 18:58:18 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Oct 19 19:08:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=872a0310
net-analyzer/bigeye: Update SRC_URI
jer@ is retired and I've archived the distfiles in my devspace
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-analyzer/bigeye/bigeye-0.3-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
index e9382d08ec4..4aa3965850e 100644
--- a/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
+++ b/net-analyzer/bigeye/bigeye-0.3-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -8,7 +8,7 @@ DESCRIPTION="network utility dump and simple honeypot utility"
HOMEPAGE="http://violating.us/projects/bigeye/"
SRC_URI="
http://violating.us/projects/bigeye/download/${P}.tgz
- https://dev.gentoo.org/~jer/${P}-gcc34.patch.xz
+ https://dev.gentoo.org/~jsmolic/distfiles/${P}-gcc34.patch.xz
"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-10-19 19:09 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-27 8:39 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bigeye/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2021-10-19 19:09 Jakov Smolić
2021-10-19 19:09 Jakov Smolić
2020-11-27 14:46 Aaron Bauman
2020-11-27 0:07 Thomas Deutschmann
2020-02-10 18:27 Jeroen Roovers
2020-01-08 7:50 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox