summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-10-05 00:40:13 +0000
committerMike Frysinger <vapier@gentoo.org>2010-10-05 00:40:13 +0000
commit793d1a869a46f452b4f06f25f9371c5b23a52b9e (patch)
tree98a070bb8da9353e4b88fee5b3d62b0c70791b47 /dev-embedded
parentVersion bump (diff)
downloadgentoo-2-793d1a869a46f452b4f06f25f9371c5b23a52b9e.tar.gz
gentoo-2-793d1a869a46f452b4f06f25f9371c5b23a52b9e.tar.bz2
gentoo-2-793d1a869a46f452b4f06f25f9371c5b23a52b9e.zip
old
Diffstat (limited to 'dev-embedded')
-rw-r--r--dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch83
-rw-r--r--dev-embedded/gputils/files/gputils-0.13.4-mapping.patch23
-rw-r--r--dev-embedded/gputils/gputils-0.12.4.ebuild23
-rw-r--r--dev-embedded/gputils/gputils-0.13.3.ebuild23
-rw-r--r--dev-embedded/gputils/gputils-0.13.4-r1.ebuild30
-rw-r--r--dev-embedded/gputils/gputils-0.13.4.ebuild21
-rw-r--r--dev-embedded/gputils/gputils-0.13.5.ebuild31
-rw-r--r--dev-embedded/gputils/gputils-0.13.6.ebuild24
8 files changed, 0 insertions, 258 deletions
diff --git a/dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch b/dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch
deleted file mode 100644
index d457c4b4febc..000000000000
--- a/dev-embedded/gputils/files/gputils-0.13.4-duplicate-label.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-diff -ur gputils-0.13.4.orig/ChangeLog gputils-0.13.4/ChangeLog
---- gputils-0.13.4.orig/ChangeLog 2006-08-20 00:24:14.000000000 +0200
-+++ gputils-0.13.4/ChangeLog 2007-03-27 23:44:01.000000000 +0200
-@@ -1,3 +1,6 @@
-+2006-12-16 Scott Dattalo <scott@dattalo.com>
-+ * [gpasm] Patch from David Barnett to fix 'Duplicate Label' bug.
-+
- 2006-08-19 Craig Franklin <craigfranklin@users.sourceforge.net>
- * gputils 0.13.4 Released.
- * [gputils] Updated header files and linker scripts.
-diff -ur gputils-0.13.4.orig/gpasm/evaluate.c gputils-0.13.4/gpasm/evaluate.c
---- gputils-0.13.4.orig/gpasm/evaluate.c 2006-08-19 16:06:41.000000000 +0200
-+++ gputils-0.13.4/gpasm/evaluate.c 2007-03-27 23:49:38.000000000 +0200
-@@ -433,7 +433,8 @@
- if (strcmp(p->value.symbol, "$") == 0) {
- char buffer[BUFSIZ];
-
-- snprintf(buffer, sizeof(buffer), "_$_%06x", state.org << _16bit_core);
-+ snprintf(buffer, sizeof(buffer), "_%s_%06x", state.obj.new_sec_name,
-+ state.org << _16bit_core);
- set_global(buffer, state.org << _16bit_core, PERMANENT, gvt_static);
- s = get_symbol(state.stTop, buffer);
- } else {
-diff -ur gputils-0.13.4.orig/gpasm/Makefile.in gputils-0.13.4/gpasm/Makefile.in
---- gputils-0.13.4.orig/gpasm/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/gpasm/Makefile.in 2007-03-27 23:45:34.000000000 +0200
-@@ -15,6 +15,8 @@
- @SET_MAKE@
-
-
-+SOURCES = $(libgpasm_a_SOURCES) $(gpasm_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/gplink/Makefile.in gputils-0.13.4/gplink/Makefile.in
---- gputils-0.13.4.orig/gplink/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/gplink/Makefile.in 2007-03-27 23:50:19.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(gplink_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/gputils/Makefile.in gputils-0.13.4/gputils/Makefile.in
---- gputils-0.13.4.orig/gputils/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/gputils/Makefile.in 2007-03-27 23:50:53.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(gpdasm_SOURCES) $(gplib_SOURCES) $(gpstrip_SOURCES) $(gpvc_SOURCES) $(gpvo_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/libgputils/Makefile.in gputils-0.13.4/libgputils/Makefile.in
---- gputils-0.13.4.orig/libgputils/Makefile.in 2006-08-20 00:20:43.000000000 +0200
-+++ gputils-0.13.4/libgputils/Makefile.in 2007-03-27 23:51:45.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(libgputils_a_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
-diff -ur gputils-0.13.4.orig/libiberty/Makefile.in gputils-0.13.4/libiberty/Makefile.in
---- gputils-0.13.4.orig/libiberty/Makefile.in 2006-08-20 00:20:44.000000000 +0200
-+++ gputils-0.13.4/libiberty/Makefile.in 2007-03-27 23:52:36.000000000 +0200
-@@ -14,6 +14,8 @@
-
- @SET_MAKE@
-
-+SOURCES = $(libiberty_a_SOURCES)
-+
- srcdir = @srcdir@
- top_srcdir = @top_srcdir@
- VPATH = @srcdir@
diff --git a/dev-embedded/gputils/files/gputils-0.13.4-mapping.patch b/dev-embedded/gputils/files/gputils-0.13.4-mapping.patch
deleted file mode 100644
index fc940e34c08d..000000000000
--- a/dev-embedded/gputils/files/gputils-0.13.4-mapping.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ur gputils-0.13.4.orig/gplink/lst.c gputils-0.13.4/gplink/lst.c
---- gputils-0.13.4.orig/gplink/lst.c 2005-01-03 23:21:20.000000000 +0100
-+++ gputils-0.13.4/gplink/lst.c 2007-03-28 00:07:16.000000000 +0200
-@@ -101,9 +101,9 @@
- if ((line->symbol == symbol) &&
- (line->line_number == line_number)) {
- if (section != line_section) {
-- /* switching sections, so update was_org with the new section
-+ /* switching sections, so update was_org with the new
- address */
-- state.lst.was_org = section->address >> state.byte_addr;
-+ state.lst.was_org = line->address >> state.byte_addr;
- line_section = section;
- }
- return line;
-@@ -179,6 +179,7 @@
- data & 0xffff,
- dasmbuf,
- linebuf);
-+ state.lst.was_org = org;
- cod_lst_line(COD_NORMAL_LST_LINE);
- org++;
- if (num_words != 1) {
diff --git a/dev-embedded/gputils/gputils-0.12.4.ebuild b/dev-embedded/gputils/gputils-0.12.4.ebuild
deleted file mode 100644
index 9a777447f3b0..000000000000
--- a/dev-embedded/gputils/gputils-0.12.4.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gputils/gputils-0.12.4.ebuild,v 1.6 2009/09/23 16:39:34 patrick Exp $
-
-DESCRIPTION="Collection of tools including assembler, linker and librarian for PIC microcontrollers"
-HOMEPAGE="http://gputils.sourceforge.net/"
-SRC_URI="mirror://sourceforge/gputils/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc ppc amd64"
-IUSE=""
-
-DEPEND="sys-devel/gcc
- sys-devel/flex
- sys-devel/bison"
-RDEPEND=""
-
-src_install() {
- emake DESTDIR=${D} install || die
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
- dodoc doc/gputils.ps doc/gputils.lyx doc/gputils.pdf
-}
diff --git a/dev-embedded/gputils/gputils-0.13.3.ebuild b/dev-embedded/gputils/gputils-0.13.3.ebuild
deleted file mode 100644
index 95a953798a59..000000000000
--- a/dev-embedded/gputils/gputils-0.13.3.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gputils/gputils-0.13.3.ebuild,v 1.2 2009/09/23 16:39:34 patrick Exp $
-
-DESCRIPTION="Collection of tools including assembler, linker and librarian for PIC microcontrollers"
-HOMEPAGE="http://gputils.sourceforge.net/"
-SRC_URI="mirror://sourceforge/gputils/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~sparc ~ppc ~amd64"
-IUSE=""
-
-DEPEND="sys-devel/gcc
- sys-devel/flex
- sys-devel/bison"
-RDEPEND=""
-
-src_install() {
- emake DESTDIR=${D} install || die
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
- dodoc doc/gputils.ps doc/gputils.lyx doc/gputils.pdf
-}
diff --git a/dev-embedded/gputils/gputils-0.13.4-r1.ebuild b/dev-embedded/gputils/gputils-0.13.4-r1.ebuild
deleted file mode 100644
index 27c143b759c1..000000000000
--- a/dev-embedded/gputils/gputils-0.13.4-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gputils/gputils-0.13.4-r1.ebuild,v 1.1 2007/03/27 22:25:26 calchan Exp $
-
-inherit eutils
-
-DESCRIPTION="Collection of tools including assembler, linker and librarian for PIC microcontrollers."
-HOMEPAGE="http://gputils.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch "${FILESDIR}/${P}-duplicate-label.patch" || die "Patching failed"
- epatch "${FILESDIR}/${P}-mapping.patch" || die "Patching failed"
-}
-
-src_install() {
- emake DESTDIR=${D} install || die "Installation failed"
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO doc/gputils.ps
- insinto /usr/share/doc/${PF}/
- doins doc/gputils.pdf
-}
diff --git a/dev-embedded/gputils/gputils-0.13.4.ebuild b/dev-embedded/gputils/gputils-0.13.4.ebuild
deleted file mode 100644
index ca659f6ce068..000000000000
--- a/dev-embedded/gputils/gputils-0.13.4.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gputils/gputils-0.13.4.ebuild,v 1.1 2006/09/19 16:39:35 calchan Exp $
-
-DESCRIPTION="Collection of tools including assembler, linker and librarian for PIC microcontrollers."
-HOMEPAGE="http://gputils.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_install() {
- emake DESTDIR=${D} install || die "Installation failed"
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO doc/gputils.ps
- insinto /usr/share/doc/${PF}/
- doins doc/gputils.pdf
-}
diff --git a/dev-embedded/gputils/gputils-0.13.5.ebuild b/dev-embedded/gputils/gputils-0.13.5.ebuild
deleted file mode 100644
index 623abc9a725d..000000000000
--- a/dev-embedded/gputils/gputils-0.13.5.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gputils/gputils-0.13.5.ebuild,v 1.1 2007/11/28 21:05:54 calchan Exp $
-
-inherit eutils
-
-DESCRIPTION="Collection of tools including assembler, linker and librarian for PIC microcontrollers."
-HOMEPAGE="http://gputils.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
- http://dev.gentoo.org/~calchan/distfiles/${P}-maxrom.patch.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch "${FILESDIR}/${PN}-0.13.4-mapping.patch" || die "Patching failed"
- epatch "../${P}-maxrom.patch" || die "Patching failed"
-}
-
-src_install() {
- emake DESTDIR=${D} install || die "Installation failed"
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO doc/gputils.ps
- insinto /usr/share/doc/${PF}/
- doins doc/gputils.pdf
-}
diff --git a/dev-embedded/gputils/gputils-0.13.6.ebuild b/dev-embedded/gputils/gputils-0.13.6.ebuild
deleted file mode 100644
index f7a99dd042af..000000000000
--- a/dev-embedded/gputils/gputils-0.13.6.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gputils/gputils-0.13.6.ebuild,v 1.1 2008/05/18 19:15:55 calchan Exp $
-
-inherit eutils
-
-DESCRIPTION="Collection of tools including assembler, linker and librarian for PIC microcontrollers."
-HOMEPAGE="http://gputils.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_install() {
- emake DESTDIR="${D}" install || die "Installation failed"
- dodoc AUTHORS ChangeLog INSTALL NEWS README TODO doc/gputils.ps
- insinto /usr/share/doc/${PF}/
- doins doc/gputils.pdf
-}