public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2017-12-24 14:44 Anthony G. Basile
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile @ 2017-12-24 14:44 UTC (permalink / raw
  To: gentoo-commits

commit:     b7dabea6d086f59e1d1b899709cb62bc2a4ddab9
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 24 14:44:17 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Dec 24 14:44:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7dabea6

sys-devel/bin86: fix build on x86 musl, bump to EAPI=6

ld/bindef.h uses brain-dead #ifdef logic in deciding whether
to include <a.out.h> on x86.  By undefining __linux__ we fix
this on musl systems.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 sys-devel/bin86/bin86-0.16.21.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-devel/bin86/bin86-0.16.21.ebuild b/sys-devel/bin86/bin86-0.16.21.ebuild
index 3c587b03ca5..189d5bc75ed 100644
--- a/sys-devel/bin86/bin86-0.16.21.ebuild
+++ b/sys-devel/bin86/bin86-0.16.21.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="6"
 
 inherit toolchain-funcs eutils
 
@@ -15,6 +15,7 @@ KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_prepare() {
+	use elibc_musl && CPPFLAGS="${CPPFLAGS} -U__linux__"
 	sed -i \
 		-e '/^PREFIX/s:=.*:=$(DESTDIR)/usr:' \
 		-e '/^MANDIR/s:)/man/man1:)/share/man/man1:' \
@@ -23,6 +24,7 @@ src_prepare() {
 		-e "/^LDFLAGS/s:=.*:=${LDFLAGS}:" \
 		Makefile || die
 	epatch "${FILESDIR}"/${PN}-0.16.17-amd64-build.patch
+	eapply_user
 	tc-export CC
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2020-04-28  5:43 Lars Wendler
  0 siblings, 0 replies; 8+ messages in thread
From: Lars Wendler @ 2020-04-28  5:43 UTC (permalink / raw
  To: gentoo-commits

commit:     9e7e3d355dd66a695c0f69a511cd9c03c7e08a8a
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 28 05:42:51 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 05:42:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e7e3d35

sys-devel/bin86: Don't use colons as sed delimiter

Closes: https://bugs.gentoo.org/710340
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 sys-devel/bin86/bin86-0.16.20-r2.ebuild | 12 ++++++------
 sys-devel/bin86/bin86-0.16.21.ebuild    | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/sys-devel/bin86/bin86-0.16.20-r2.ebuild b/sys-devel/bin86/bin86-0.16.20-r2.ebuild
index 9e0088919ee..ae8685567e4 100644
--- a/sys-devel/bin86/bin86-0.16.20-r2.ebuild
+++ b/sys-devel/bin86/bin86-0.16.20-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -17,11 +17,11 @@ IUSE=""
 
 src_prepare() {
 	sed -i \
-		-e '/^PREFIX/s:=.*:=$(DESTDIR)/usr:' \
-		-e '/^MANDIR/s:)/man/man1:)/share/man/man1:' \
-		-e '/^INSTALL_OPTS/s:-s::' \
-		-e "/^CFLAGS/s:=.*:=${CFLAGS} -D_POSIX_SOURCE ${CPPFLAGS}:" \
-		-e "/^LDFLAGS/s:=.*:=${LDFLAGS}:" \
+		-e '/^PREFIX/s|=.*|=$(DESTDIR)/usr|' \
+		-e '/^MANDIR/s|)/man/man1|)/share/man/man1|' \
+		-e '/^INSTALL_OPTS/s|-s||' \
+		-e "/^CFLAGS/s|=.*|=${CFLAGS} -D_POSIX_SOURCE ${CPPFLAGS}|" \
+		-e "/^LDFLAGS/s|=.*|=${LDFLAGS}|" \
 		Makefile || die
 	epatch "${FILESDIR}"/${PN}-0.16.17-amd64-build.patch \
 		"${DISTDIR}"/${P}-fix_lilo_build.patch

diff --git a/sys-devel/bin86/bin86-0.16.21.ebuild b/sys-devel/bin86/bin86-0.16.21.ebuild
index 3e67dfb8467..ad7a6449a56 100644
--- a/sys-devel/bin86/bin86-0.16.21.ebuild
+++ b/sys-devel/bin86/bin86-0.16.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -17,11 +17,11 @@ IUSE=""
 src_prepare() {
 	use elibc_musl && CPPFLAGS="${CPPFLAGS} -U__linux__"
 	sed -i \
-		-e '/^PREFIX/s:=.*:=$(DESTDIR)/usr:' \
-		-e '/^MANDIR/s:)/man/man1:)/share/man/man1:' \
-		-e '/^INSTALL_OPTS/s:-s::' \
-		-e "/^CFLAGS/s:=.*:=${CFLAGS} -D_POSIX_SOURCE ${CPPFLAGS}:" \
-		-e "/^LDFLAGS/s:=.*:=${LDFLAGS}:" \
+		-e '/^PREFIX/s|=.*|=$(DESTDIR)/usr|' \
+		-e '/^MANDIR/s|)/man/man1|)/share/man/man1|' \
+		-e '/^INSTALL_OPTS/s|-s||' \
+		-e "/^CFLAGS/s|=.*|=${CFLAGS} -D_POSIX_SOURCE ${CPPFLAGS}|" \
+		-e "/^LDFLAGS/s|=.*|=${LDFLAGS}|" \
 		Makefile || die
 	epatch "${FILESDIR}"/${PN}-0.16.17-amd64-build.patch
 	eapply_user


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2021-03-28  7:14 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2021-03-28  7:14 UTC (permalink / raw
  To: gentoo-commits

commit:     e896b332bf5b0849529864cae2165287e636cec8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 07:11:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 07:11:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e896b332

sys-devel/bin86: Keyword 0.16.21 arm, #600508

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-devel/bin86/bin86-0.16.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/bin86/bin86-0.16.21.ebuild b/sys-devel/bin86/bin86-0.16.21.ebuild
index ad7a6449a56..448c25c7d01 100644
--- a/sys-devel/bin86/bin86-0.16.21.ebuild
+++ b/sys-devel/bin86/bin86-0.16.21.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="6"
@@ -11,7 +11,7 @@ SRC_URI="http://v3.sk/~lkundrak/dev86/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 IUSE=""
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2021-04-05  1:26 Mike Gilbert
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Gilbert @ 2021-04-05  1:26 UTC (permalink / raw
  To: gentoo-commits

commit:     b4f763a9a88a307821e022e7d10220fd5aa6fc22
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  5 01:26:06 2021 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Apr  5 01:26:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4f763a9

sys-devel/bin86: maintainer needed

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 sys-devel/bin86/metadata.xml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/sys-devel/bin86/metadata.xml b/sys-devel/bin86/metadata.xml
index b6943a7745a..e3d90415dc5 100644
--- a/sys-devel/bin86/metadata.xml
+++ b/sys-devel/bin86/metadata.xml
@@ -1,14 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-	<email>base-system@gentoo.org</email>
-	<name>Gentoo Base System</name>
-</maintainer>
-<!--
-	If anyone from base-system wants to be secondary, by all means just add
-	yourself, and send me (boo) a mail telling me that you've done so.
--->
+<!-- maintainer-needed -->
 <upstream>
 	<remote-id type="github">lkundrak/dev86</remote-id>
 </upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2021-04-18 17:55 Andreas Sturmlechner
  0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2021-04-18 17:55 UTC (permalink / raw
  To: gentoo-commits

commit:     4b77de62487edd2520a14dac58f6bf1f26e99b7e
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 18 11:00:18 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 17:55:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b77de62

sys-devel/bin86: Drop 0.16.20-r2, EAPI5--

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sys-devel/bin86/Manifest                |  2 --
 sys-devel/bin86/bin86-0.16.20-r2.ebuild | 34 ---------------------------------
 2 files changed, 36 deletions(-)

diff --git a/sys-devel/bin86/Manifest b/sys-devel/bin86/Manifest
index 0472fcac8a2..636937dc79f 100644
--- a/sys-devel/bin86/Manifest
+++ b/sys-devel/bin86/Manifest
@@ -1,3 +1 @@
-DIST bin86-0.16.20-fix_lilo_build.patch 3488 BLAKE2B 1a0f4240156ab36579e2e49fbfb5b4c9f9fc165dcf3b1bc1f6ca770ebf7a6dfde2d1672968522b56f59787c3a2528d7c35b402753470ff3ab92da42b26e80cfa SHA512 f307438ced09e34ce5c552f808a9d1ae09bb9bbaceee4e1e07021f810470dfb07d21a30d1447295b2d023ccf56f158f4b7f3d80d478b1d7e3e4b79b13b8e760c
-DIST bin86-0.16.20.tar.gz 154107 BLAKE2B f51a189fed52713d5cdccc880596aea9f6a5dd4a8eb6eabf2ad2600a5da520b3ec765b512261bc6ffe33ce0c9d23c5491c8c34481795d24dcec2c91e04fc5d22 SHA512 c567ad5f9241d9ed768410f988266d4ff952fd4767d033552b100a2643db69ee9d4b5929a1b40c3018db7037b0efc7b47db84fa1f561bc39f01e640b1a3bacfc
 DIST bin86-0.16.21.tar.gz 154283 BLAKE2B 6c88a5cf86623130f6ed45cefb9ee9293d8888f4d0e5712d96a24a6fe84bbe5002869761e9c39bb20c8af74e3fe76cf65632ef43e55d81d0e5cb9212f3cae56a SHA512 e80e06965fbdcf13100aae4690071d01a6efe74aed7ff8f14e5892c6803393a1b5acda1296e0f0e1837dfb73e0edd02e9cccfeabbeabe1b68fa6b6b85ced1f56

diff --git a/sys-devel/bin86/bin86-0.16.20-r2.ebuild b/sys-devel/bin86/bin86-0.16.20-r2.ebuild
deleted file mode 100644
index 00a5699a86d..00000000000
--- a/sys-devel/bin86/bin86-0.16.20-r2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit toolchain-funcs epatch
-
-DESCRIPTION="Assembler and loader used to create kernel bootsector"
-HOMEPAGE="http://v3.sk/~lkundrak/dev86/"
-SRC_URI="http://v3.sk/~lkundrak/dev86/${P}.tar.gz
-	https://github.com/lkundrak/dev86/commit/2c95336f19eeff761ecb858c5a2a58484bb3ceeb.patch -> ${PN}-0.16.20-fix_lilo_build.patch"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE=""
-
-src_prepare() {
-	sed -i \
-		-e '/^PREFIX/s|=.*|=$(DESTDIR)/usr|' \
-		-e '/^MANDIR/s|)/man/man1|)/share/man/man1|' \
-		-e '/^INSTALL_OPTS/s|-s||' \
-		-e "/^CFLAGS/s|=.*|=${CFLAGS} -D_POSIX_SOURCE ${CPPFLAGS}|" \
-		-e "/^LDFLAGS/s|=.*|=${LDFLAGS}|" \
-		Makefile || die
-	epatch "${FILESDIR}"/${PN}-0.16.17-amd64-build.patch \
-		"${DISTDIR}"/${P}-fix_lilo_build.patch
-	tc-export CC
-}
-
-src_install() {
-	dodir /usr/bin /usr/share/man/man1
-	default
-}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2022-02-20  5:27 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-02-20  5:27 UTC (permalink / raw
  To: gentoo-commits

commit:     9f1ff8c0ad1e5f0682a8aedf1fcbfa450c1c65f4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 20 05:10:27 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 20 05:25:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f1ff8c0

sys-devel/bin86: drop 0.16.21

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-devel/bin86/bin86-0.16.21.ebuild | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/sys-devel/bin86/bin86-0.16.21.ebuild b/sys-devel/bin86/bin86-0.16.21.ebuild
deleted file mode 100644
index b21fcec3bf49..000000000000
--- a/sys-devel/bin86/bin86-0.16.21.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs epatch
-
-DESCRIPTION="Assembler and loader used to create kernel bootsector"
-HOMEPAGE="http://v3.sk/~lkundrak/dev86/"
-SRC_URI="http://v3.sk/~lkundrak/dev86/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-IUSE=""
-
-src_prepare() {
-	use elibc_musl && CPPFLAGS="${CPPFLAGS} -U__linux__"
-	sed -i \
-		-e '/^PREFIX/s|=.*|=$(DESTDIR)/usr|' \
-		-e '/^MANDIR/s|)/man/man1|)/share/man/man1|' \
-		-e '/^INSTALL_OPTS/s|-s||' \
-		-e "/^CFLAGS/s|=.*|=${CFLAGS} -D_POSIX_SOURCE ${CPPFLAGS}|" \
-		-e "/^LDFLAGS/s|=.*|=${LDFLAGS}|" \
-		Makefile || die
-	epatch "${FILESDIR}"/${PN}-0.16.17-amd64-build.patch
-	eapply_user
-	tc-export CC
-}
-
-src_install() {
-	dodir /usr/bin /usr/share/man/man1
-	default
-}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2023-11-17  4:05 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-11-17  4:05 UTC (permalink / raw
  To: gentoo-commits

commit:     7253bef41058531d9f1f230a496bd962f1ae4eb9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 17 04:05:13 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 04:05:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7253bef4

sys-devel/bin86: Stabilize 0.16.21-r2 amd64, #917360

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-devel/bin86/bin86-0.16.21-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/bin86/bin86-0.16.21-r2.ebuild b/sys-devel/bin86/bin86-0.16.21-r2.ebuild
index ec61c436cb97..c7be6fd8af00 100644
--- a/sys-devel/bin86/bin86-0.16.21-r2.ebuild
+++ b/sys-devel/bin86/bin86-0.16.21-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://v3.sk/~lkundrak/dev86/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 
 PATCHES=( "${FILESDIR}"/${PN}-0.16.21-amd64-build.patch
 		  "${FILESDIR}"/${PN}-0.16.21-fix-build-for-clang16.patch


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

* [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/
@ 2023-11-17  4:05 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-11-17  4:05 UTC (permalink / raw
  To: gentoo-commits

commit:     c64ddbb6db35b3d53c6975549888e95454ce7772
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 17 04:05:12 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 04:05:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c64ddbb6

sys-devel/bin86: Stabilize 0.16.21-r2 x86, #917360

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-devel/bin86/bin86-0.16.21-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/bin86/bin86-0.16.21-r2.ebuild b/sys-devel/bin86/bin86-0.16.21-r2.ebuild
index 4cabadfd2b2a..ec61c436cb97 100644
--- a/sys-devel/bin86/bin86-0.16.21-r2.ebuild
+++ b/sys-devel/bin86/bin86-0.16.21-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://v3.sk/~lkundrak/dev86/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 
 PATCHES=( "${FILESDIR}"/${PN}-0.16.21-amd64-build.patch
 		  "${FILESDIR}"/${PN}-0.16.21-fix-build-for-clang16.patch


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

end of thread, other threads:[~2023-11-17  4:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-28  5:43 [gentoo-commits] repo/gentoo:master commit in: sys-devel/bin86/ Lars Wendler
  -- strict thread matches above, loose matches on Subject: below --
2023-11-17  4:05 Sam James
2023-11-17  4:05 Sam James
2022-02-20  5:27 Sam James
2021-04-18 17:55 Andreas Sturmlechner
2021-04-05  1:26 Mike Gilbert
2021-03-28  7:14 Sam James
2017-12-24 14:44 Anthony G. Basile

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