public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/dev86: dev86-0.16.19.ebuild ChangeLog
@ 2012-11-02 19:03 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2012-11-02 19:03 UTC (permalink / raw
  To: gentoo-commits

vapier      12/11/02 19:03:28

  Modified:             ChangeLog
  Added:                dev86-0.16.19.ebuild
  Log:
  Version bump.  Include fix from Debian for ncc #354351 by Joerg Neikes.  Fix stripping errors #413275 by Michele Ciacci.  Also fix up libdir handling as bcc had /usr/lib/gcc/ hardcoded.
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.24                 sys-devel/dev86/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	6 Aug 2012 02:28:35 -0000	1.23
+++ ChangeLog	2 Nov 2012 19:03:28 -0000	1.24
@@ -1,6 +1,14 @@
 # ChangeLog for sys-devel/dev86
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v 1.23 2012/08/06 02:28:35 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v 1.24 2012/11/02 19:03:28 vapier Exp $
+
+*dev86-0.16.19 (02 Nov 2012)
+
+  02 Nov 2012; Mike Frysinger <vapier@gentoo.org> +dev86-0.16.19.ebuild,
+  +files/dev86-0.16.19-fortify.patch, +files/dev86-0.16.19-memmove.patch:
+  Version bump.  Include fix from Debian for ncc #354351 by Joerg Neikes.  Fix
+  stripping errors #413275 by Michele Ciacci.  Also fix up libdir handling as
+  bcc had /usr/lib/gcc/ hardcoded.
 
   06 Aug 2012; Rick Farina <zerochaos@gentoo.org> dev86-0.16.18.ebuild:
   fixed multilib-strict QA violation



1.1                  sys-devel/dev86/dev86-0.16.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?rev=1.1&content-type=text/plain

Index: dev86-0.16.19.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v 1.1 2012/11/02 19:03:28 vapier Exp $

EAPI="4"

inherit eutils multilib

DESCRIPTION="Bruce's C compiler - Simple C compiler to generate 8086 code"
HOMEPAGE="http://www.debath.co.uk/"
SRC_URI="http://www.debath.co.uk/dev86/Dev86src-${PV}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="sys-devel/bin86"
DEPEND="${RDEPEND}
	dev-util/gperf"

STRIP_MASK="/usr/*/bcc/lib*.a /usr/*/i386/libc.a"

src_prepare() {
	# elksemu doesn't compile under amd64
	if use amd64; then
		einfo "Not compiling elksemu on amd64"
		sed -i \
			-e 's,alt-libs elksemu,alt-libs,' \
			-e 's,install-lib install-emu,install-lib,' \
			makefile.in || die
	fi

	epatch "${FILESDIR}"/dev86-pic.patch
	epatch "${FILESDIR}"/${PN}-0.16.19-fortify.patch
	epatch "${FILESDIR}"/${PN}-0.16.19-memmove.patch #354351
	sed -i \
		-e "s:-O2 -g:${CFLAGS}:" \
		-e '/INEXE=/s:-s::' \
		makefile.in || die
	sed -i \
		-e "s:/lib/:/$(get_libdir)/:" \
		bcc/bcc.c || die
	sed -i -e '/INSTALL_OPTS=/s:-s::' bin86/Makefile || die
	sed -i -e '/install -m 755 -s/s:-s::' dis88/Makefile || die
}

src_compile() {
	# Don't mess with CPPFLAGS as they tend to break compilation
	# (bug #343655).
	CPPFLAGS=""

	# First `make` is also a config, so set all the path vars here
	emake -j1 \
		DIST="${D}" \
		CC="$(tc-getCC)" \
		LIBDIR="/usr/$(get_libdir)/bcc" \
		INCLDIR="/usr/$(get_libdir)/bcc"

	export PATH=${S}/bin:${PATH}
	cd bin
	ln -s ncc bcc
	cd ..
	cd bootblocks
	ln -s ../bcc/version.h .
	emake DIST="${D}"
}

src_install() {
	emake -j1 install-all DIST="${D}"
	dobin bootblocks/makeboot
	# remove all the stuff supplied by bin86
	cd "${D}"
	rm usr/bin/{as,ld,nm,objdump,size}86 || die
	rm usr/man/man1/{as,ld}86.1 || die
	dodir /usr/share/man
	mv usr/man usr/share/
}





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/dev86: dev86-0.16.19.ebuild ChangeLog
@ 2013-02-25 11:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-25 11:14 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/25 11:14:21

  Modified:             dev86-0.16.19.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #457478
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  sys-devel/dev86/dev86-0.16.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?r1=1.1&r2=1.2

Index: dev86-0.16.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dev86-0.16.19.ebuild	2 Nov 2012 19:03:28 -0000	1.1
+++ dev86-0.16.19.ebuild	25 Feb 2013 11:14:21 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v 1.1 2012/11/02 19:03:28 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v 1.2 2013/02/25 11:14:21 ago Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="sys-devel/bin86"



1.26                 sys-devel/dev86/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	28 Nov 2012 10:41:09 -0000	1.25
+++ ChangeLog	25 Feb 2013 11:14:21 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/dev86
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v 1.25 2012/11/28 10:41:09 polynomial-c Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v 1.26 2013/02/25 11:14:21 ago Exp $
+
+  25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dev86-0.16.19.ebuild:
+  Stable for amd64, wrt bug #457478
 
   28 Nov 2012; Lars Wendler <polynomial-c@gentoo.org> metadata.xml:
   Dropped myself as maintainer.





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/dev86: dev86-0.16.19.ebuild ChangeLog
@ 2013-02-25 11:39 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-25 11:39 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/25 11:39:33

  Modified:             dev86-0.16.19.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #457478
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sys-devel/dev86/dev86-0.16.19.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild?r1=1.2&r2=1.3

Index: dev86-0.16.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dev86-0.16.19.ebuild	25 Feb 2013 11:14:21 -0000	1.2
+++ dev86-0.16.19.ebuild	25 Feb 2013 11:39:32 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v 1.2 2013/02/25 11:14:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/dev86-0.16.19.ebuild,v 1.3 2013/02/25 11:39:32 ago Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="sys-devel/bin86"



1.27                 sys-devel/dev86/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/dev86/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	25 Feb 2013 11:14:21 -0000	1.26
+++ ChangeLog	25 Feb 2013 11:39:32 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/dev86
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v 1.26 2013/02/25 11:14:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/dev86/ChangeLog,v 1.27 2013/02/25 11:39:32 ago Exp $
+
+  25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dev86-0.16.19.ebuild:
+  Stable for x86, wrt bug #457478
 
   25 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dev86-0.16.19.ebuild:
   Stable for amd64, wrt bug #457478





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

end of thread, other threads:[~2013-02-25 11:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-25 11:14 [gentoo-commits] gentoo-x86 commit in sys-devel/dev86: dev86-0.16.19.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-02-25 11:39 Agostino Sarubbo (ago)
2012-11-02 19:03 Mike Frysinger (vapier)

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