public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/
@ 2021-08-05  2:58 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-08-05  2:58 UTC (permalink / raw
  To: gentoo-commits

commit:     6d9dc5f421ef28ce50750fb8ac4336750702bb8b
Author:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  5 02:56:24 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug  5 02:56:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9dc5f4

dev-util/fuzz: fix build with glibc-2.32, fix applying patchset

Closes: https://bugs.gentoo.org/738942
Acked-by: Robin Johnson <robbat2 <AT> gentoo.org>
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/fuzz/fuzz-0.6-r2.ebuild | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/dev-util/fuzz/fuzz-0.6-r2.ebuild b/dev-util/fuzz/fuzz-0.6-r2.ebuild
new file mode 100644
index 00000000000..92ef90211b3
--- /dev/null
+++ b/dev-util/fuzz/fuzz-0.6-r2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Stress-tests programs by giving them random input"
+HOMEPAGE="http://fuzz.sourceforge.net/"
+DEB_P="${PN}_${PV}"
+DEB_PR="7.3"
+SRC_URI="
+	mirror://sourceforge/${PN}/${P}.tar.gz
+	mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="sys-libs/readline:0="
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${WORKDIR}"/${DEB_P}-${DEB_PR}.diff )
+
+src_prepare() {
+	default
+	tc-export CC
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodoc NEWS README ChangeLog AUTHORS
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/
@ 2023-03-05  3:40 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2023-03-05  3:40 UTC (permalink / raw
  To: gentoo-commits

commit:     ce8343e708ea1199b4e7acac41c72cb05c6cdcf5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  5 03:19:08 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar  5 03:39:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce8343e7

dev-util/fuzz: fix configure w/ clang 16

Closes: https://bugs.gentoo.org/898764
Closes: https://bugs.gentoo.org/875440
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/fuzz/{fuzz-0.6-r2.ebuild => fuzz-0.6-r3.ebuild} | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/dev-util/fuzz/fuzz-0.6-r2.ebuild b/dev-util/fuzz/fuzz-0.6-r3.ebuild
similarity index 78%
rename from dev-util/fuzz/fuzz-0.6-r2.ebuild
rename to dev-util/fuzz/fuzz-0.6-r3.ebuild
index 92ef90211b32..a0ae9281e5d1 100644
--- a/dev-util/fuzz/fuzz-0.6-r2.ebuild
+++ b/dev-util/fuzz/fuzz-0.6-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-inherit toolchain-funcs
+inherit autotools toolchain-funcs
 
 DESCRIPTION="Stress-tests programs by giving them random input"
 HOMEPAGE="http://fuzz.sourceforge.net/"
@@ -11,13 +11,14 @@ DEB_P="${PN}_${PV}"
 DEB_PR="7.3"
 SRC_URI="
 	mirror://sourceforge/${PN}/${P}.tar.gz
-	mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz"
+	mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz
+"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-DEPEND="sys-libs/readline:0="
+DEPEND="sys-libs/readline:="
 RDEPEND="${DEPEND}"
 
 PATCHES=( "${WORKDIR}"/${DEB_P}-${DEB_PR}.diff )
@@ -25,6 +26,8 @@ PATCHES=( "${WORKDIR}"/${DEB_P}-${DEB_PR}.diff )
 src_prepare() {
 	default
 	tc-export CC
+	# Clang 16, bug #898764
+	eautoreconf
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/
@ 2021-11-22 14:12 Jakov Smolić
  0 siblings, 0 replies; 5+ messages in thread
From: Jakov Smolić @ 2021-11-22 14:12 UTC (permalink / raw
  To: gentoo-commits

commit:     c11f920d3db305be08bd2d07a1853ff665327991
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 22 13:57:07 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Nov 22 14:12:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11f920d

dev-util/fuzz: drop 0.6-r1

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-util/fuzz/fuzz-0.6-r1.ebuild | 33 ---------------------------------
 1 file changed, 33 deletions(-)

diff --git a/dev-util/fuzz/fuzz-0.6-r1.ebuild b/dev-util/fuzz/fuzz-0.6-r1.ebuild
deleted file mode 100644
index 88242637434a..000000000000
--- a/dev-util/fuzz/fuzz-0.6-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Stress-tests programs by giving them random input"
-HOMEPAGE="http://fuzz.sourceforge.net/"
-DEB_P="${PN}_${PV}"
-DEB_PR="7.3"
-SRC_URI="
-	mirror://sourceforge/${PN}/${P}.tar.gz
-	mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="sys-libs/readline:0="
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${DISTDIR}"/${DEB_P}-${DEB_PR}.diff.gz )
-
-src_prepare() {
-	default
-	tc-export CC
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodoc NEWS README ChangeLog AUTHORS
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/
@ 2017-01-12  0:00 Patrice Clement
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement @ 2017-01-12  0:00 UTC (permalink / raw
  To: gentoo-commits

commit:     4747f70c03ff5dffd321aad162e91068226b3af1
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 23:59:31 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 23:59:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4747f70c

dev-util/fuzz: clean up old.

Package-Manager: portage-2.3.0

 dev-util/fuzz/fuzz-0.6.ebuild | 32 --------------------------------
 1 file changed, 32 deletions(-)

diff --git a/dev-util/fuzz/fuzz-0.6.ebuild b/dev-util/fuzz/fuzz-0.6.ebuild
deleted file mode 100644
index 715a471..00000000
--- a/dev-util/fuzz/fuzz-0.6.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Stress-tests programs by giving them random input"
-HOMEPAGE="http://fuzz.sourceforge.net/"
-DEB_P="${PN}_${PV}"
-DEB_PR="7.3"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-		mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND=">=sys-libs/readline-4.3"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
-	unpack ${P}.tar.gz
-	cd "${S}"
-	epatch "${DISTDIR}"/${DEB_P}-${DEB_PR}.diff.gz
-	tc-export CC
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-	dodoc NEWS README ChangeLog AUTHORS
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/
@ 2017-01-12  0:00 Patrice Clement
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement @ 2017-01-12  0:00 UTC (permalink / raw
  To: gentoo-commits

commit:     1f12b73f2c7f921414161b103fd59c406d1abdf9
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 23:59:02 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 23:59:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f12b73f

dev-util/fuzz: EAPI 5 bump.

Package-Manager: portage-2.3.0

 dev-util/fuzz/fuzz-0.6-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/dev-util/fuzz/fuzz-0.6-r1.ebuild b/dev-util/fuzz/fuzz-0.6-r1.ebuild
new file mode 100644
index 00000000..1f30085
--- /dev/null
+++ b/dev-util/fuzz/fuzz-0.6-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit toolchain-funcs
+
+DESCRIPTION="Stress-tests programs by giving them random input"
+HOMEPAGE="http://fuzz.sourceforge.net/"
+DEB_P="${PN}_${PV}"
+DEB_PR="7.3"
+SRC_URI="
+	mirror://sourceforge/${PN}/${P}.tar.gz
+	mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="sys-libs/readline:0="
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${DISTDIR}"/${DEB_P}-${DEB_PR}.diff.gz )
+
+src_prepare() {
+	default
+	tc-export CC
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodoc NEWS README ChangeLog AUTHORS
+}


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

end of thread, other threads:[~2023-03-05  3:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-05  2:58 [gentoo-commits] repo/gentoo:master commit in: dev-util/fuzz/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-03-05  3:40 Sam James
2021-11-22 14:12 Jakov Smolić
2017-01-12  0:00 Patrice Clement
2017-01-12  0:00 Patrice Clement

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