[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/, dev-lang/fbc-bootstrap/files/

2021-09-07 Thread William Breathitt Gray
commit: ab34406a54287f558bebae70ebbfe9549db97b61
Author: William Breathitt Gray  gmail  com>
AuthorDate: Wed Sep  8 02:18:17 2021 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Wed Sep  8 02:28:51 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab34406a

dev-lang/fbc-bootstrap: Version bump to 1.08.1

Signed-off-by: William Breathitt Gray  gmail.com>

 dev-lang/fbc-bootstrap/Manifest|  1 +
 dev-lang/fbc-bootstrap/fbc-bootstrap-1.08.1.ebuild | 29 ++
 .../files/fbc-1.08.1-Pass-ltinfo-to-linker.patch   | 25 +++
 3 files changed, 55 insertions(+)

diff --git a/dev-lang/fbc-bootstrap/Manifest b/dev-lang/fbc-bootstrap/Manifest
index 934b90671..ecdea2877 100644
--- a/dev-lang/fbc-bootstrap/Manifest
+++ b/dev-lang/fbc-bootstrap/Manifest
@@ -1 +1,2 @@
 DIST FreeBASIC-1.07.3-source-bootstrap.tar.xz 10702984 BLAKE2B 
dbf68351c54d9a1ec6f5952e7867bc370fdc36db406c9a76d18f9e85757c26f3c954d91ce56593af9ceacf1e24e8038ba7cfeaa66a988923fd5d57d5f160584d
 SHA512 
59a06e633b2bf5054d2b5f7a9da7e539a51657a20d50ac2e055255dab30acc87e03596a53613e1d7f1ac74798d4919b5d7aa32b20a229c7725ebc1e53460b70e
+DIST FreeBASIC-1.08.1-source-bootstrap.tar.xz 12234408 BLAKE2B 
5e10e784843253b15b22103d653a16cbabddd143d5b51990c87d4f1082c4ebed9a704bb50d065103bf3381377850cfa561a7dbbd99d11163b507cfc94c2827c7
 SHA512 
603ef6389ef6a90894dcca7bb31876dae8d1f4014da2b92f6a89cb23665e36130fdd98ffeed6c2e9fa90e549c2fc54450fa55932d22b6eead453b4aa6d4785c2

diff --git a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.08.1.ebuild 
b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.08.1.ebuild
new file mode 100644
index 0..d713fdb56
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.08.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Bootstrap package for dev-lang/fbc"
+HOMEPAGE="https://www.freebasic.net";
+SRC_URI="https://github.com/freebasic/fbc/releases/download/${PV}/FreeBASIC-${PV}-source-bootstrap.tar.xz";
+
+LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+PATCHES=( "${FILESDIR}"/fbc-1.08.1-Pass-ltinfo-to-linker.patch )
+
+S="${WORKDIR}/FreeBASIC-${PV}-source-bootstrap"
+
+src_compile() {
+   emake bootstrap-minimal \
+   AR=$(tc-getAR) AS=$(tc-getAS) CC=$(tc-getCC) CFLAGS="${CFLAGS}" 
V=1
+}
+
+src_install() {
+   newbin bin/fbc fbc-bootstrap
+   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-includes
+   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-rtlib
+}

diff --git 
a/dev-lang/fbc-bootstrap/files/fbc-1.08.1-Pass-ltinfo-to-linker.patch 
b/dev-lang/fbc-bootstrap/files/fbc-1.08.1-Pass-ltinfo-to-linker.patch
new file mode 100644
index 0..6a57f34be
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/files/fbc-1.08.1-Pass-ltinfo-to-linker.patch
@@ -0,0 +1,25 @@
+From 5e209af787bf74327c0dcba1d75d6a5477dfb0cb Mon Sep 17 00:00:00 2001
+From: William Breathitt Gray 
+Date: Wed, 8 Sep 2021 11:27:39 +0900
+Subject: [PATCH] Pass -ltinfo to linker
+
+---
+ makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/makefile b/makefile
+index 04c5c3976..364dc9a0d 100644
+--- a/makefile
 b/makefile
+@@ -1368,7 +1368,7 @@ endif
+ # Use gcc to link fbc from the bootstrap .o's
+ # (assuming the rtlib was built already)
+ ifneq ($(filter darwin freebsd dragonfly linux netbsd openbsd 
solaris,$(TARGET_OS)),)
+-  BOOTSTRAP_LIBS := -lncurses -lm -pthread
++  BOOTSTRAP_LIBS := -ltinfo -lncurses -lm -pthread
+ endif
+ $(BOOTSTRAP_FBC): rtlib $(BOOTSTRAP_OBJ)
+   $(QUIET_LINK)$(CC) -o $@ $(libdir)/fbrt0.o bootstrap/$(FBTARGET)/*.o 
$(libdir)/libfb.a $(BOOTSTRAP_LIBS)
+-- 
+2.33.0
+



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/

2021-05-16 Thread Anna Vyalkova
commit: 418c3240b6ac98858198664c52f782929003ec6e
Author: Anna Vyalkova  sysrq  in>
AuthorDate: Sun May 16 12:22:33 2021 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sun May 16 14:05:01 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=418c3240

dev-lang/fbc-bootstrap: fix compiler vars

Closes: https://bugs.gentoo.org/784707
Signed-off-by: Anna Vyalkova  sysrq.in>

 dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild 
b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild
index 042a2..782dcab37 100644
--- a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild
+++ b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=7
 
+inherit toolchain-funcs
+
 DESCRIPTION="Bootstrap package for dev-lang/fbc"
 HOMEPAGE="https://www.freebasic.net";
 
SRC_URI="https://github.com/freebasic/fbc/releases/download/${PV}/FreeBASIC-${PV}-source-bootstrap.tar.xz";
@@ -16,7 +18,8 @@ PATCHES=( 
"${FILESDIR}"/fbc-1.07.0-Pass-ltinfo-to-linker.patch )
 S="${WORKDIR}/FreeBASIC-${PV}-source-bootstrap"
 
 src_compile() {
-   emake bootstrap-minimal
+   emake bootstrap-minimal \
+   AR=$(tc-getAR) AS=$(tc-getAS) CC=$(tc-getCC) CFLAGS="${CFLAGS}" 
V=1
 }
 
 src_install() {



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/

2021-05-05 Thread Alessandro Barbieri
commit: 1450838ebba16ce637dd4002bc917c2b34f4f406
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Wed May  5 07:29:41 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Wed May  5 07:32:54 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1450838e

dev-lang/fbc-bootstrap: m-n

Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-lang/fbc-bootstrap/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lang/fbc-bootstrap/metadata.xml 
b/dev-lang/fbc-bootstrap/metadata.xml
index a2056f3a9..c6372baf8 100644
--- a/dev-lang/fbc-bootstrap/metadata.xml
+++ b/dev-lang/fbc-bootstrap/metadata.xml
@@ -1,6 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
+   

This package is used only to boot strap dev-lang/fbc.
It is not meant to be used by end users directly.



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/

2021-04-29 Thread William Breathitt Gray
commit: a8c0c82417f73f98ede069c181eb4c8ec3cd7c4a
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Apr 29 12:05:19 2021 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Thu Apr 29 12:07:31 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a8c0c824

dev-lang/fbc-bootstrap: Remove William Breathitt Gray as maintainer

Signed-off-by: William Breathitt Gray  gmail.com>

 dev-lang/fbc-bootstrap/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-lang/fbc-bootstrap/metadata.xml 
b/dev-lang/fbc-bootstrap/metadata.xml
index 5ef896cc9..a2056f3a9 100644
--- a/dev-lang/fbc-bootstrap/metadata.xml
+++ b/dev-lang/fbc-bootstrap/metadata.xml
@@ -5,10 +5,6 @@
This package is used only to boot strap dev-lang/fbc.
It is not meant to be used by end users directly.

-   
-   vilhelm.g...@gmail.com
-   William Breathitt Gray
-   

https://github.com/freebasic/fbc/issues
https://www.freebasic.net



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/

2021-04-29 Thread William Breathitt Gray
commit: 55d3efc5a491601620c1646d3400fe5182e1b0c8
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Apr 29 11:59:12 2021 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Thu Apr 29 11:59:12 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=55d3efc5

dev-lang/fbc-bootstrap: Drop old version

Closes: https://bugs.gentoo.org/781005
Signed-off-by: William Breathitt Gray  gmail.com>

 dev-lang/fbc-bootstrap/Manifest|  1 -
 dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-lang/fbc-bootstrap/Manifest b/dev-lang/fbc-bootstrap/Manifest
index 0546ca882..934b90671 100644
--- a/dev-lang/fbc-bootstrap/Manifest
+++ b/dev-lang/fbc-bootstrap/Manifest
@@ -1,2 +1 @@
-DIST FreeBASIC-1.07.2-source-bootstrap.tar.xz 10700992 BLAKE2B 
e7016e5f58ae79086c0445bf6a09f33d4335af771422778be407e3351d583522e16f137763e471ba88e47b4318ab5bd2aec882ef5e5ff85cc334b0eccf27fdc5
 SHA512 
f381d14343496f68d3401ad1a66ff4fb1314270eddebb72ed2bc5624b856c4b29e7e14062f531a5158d892bb73d9aa80ff54fe7c260b4b8967b1330d26b2ecfc
 DIST FreeBASIC-1.07.3-source-bootstrap.tar.xz 10702984 BLAKE2B 
dbf68351c54d9a1ec6f5952e7867bc370fdc36db406c9a76d18f9e85757c26f3c954d91ce56593af9ceacf1e24e8038ba7cfeaa66a988923fd5d57d5f160584d
 SHA512 
59a06e633b2bf5054d2b5f7a9da7e539a51657a20d50ac2e055255dab30acc87e03596a53613e1d7f1ac74798d4919b5d7aa32b20a229c7725ebc1e53460b70e

diff --git a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild 
b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild
deleted file mode 100644
index 747c02a56..0
--- a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Bootstrap package for dev-lang/fbc"
-HOMEPAGE="https://www.freebasic.net";
-SRC_URI="https://github.com/freebasic/fbc/releases/download/${PV}/FreeBASIC-${PV}-source-bootstrap.tar.xz";
-
-LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=( "${FILESDIR}"/fbc-1.07.0-Pass-ltinfo-to-linker.patch )
-
-S="${WORKDIR}/FreeBASIC-${PV}-source-bootstrap"
-
-src_compile() {
-   emake bootstrap-minimal
-}
-
-src_install() {
-   newbin bin/fbc fbc-bootstrap
-   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-includes
-   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-rtlib
-}



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/

2021-04-11 Thread William Breathitt Gray
commit: 769628ffae68fd92b69e0e970bb3bc181a9f56b5
Author: William Breathitt Gray  gmail  com>
AuthorDate: Mon Apr 12 00:51:44 2021 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Mon Apr 12 00:54:25 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=769628ff

dev-lang/fbc-bootstrap: Version bump to 1.07.3

Signed-off-by: William Breathitt Gray  gmail.com>

 dev-lang/fbc-bootstrap/Manifest|  1 +
 dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-lang/fbc-bootstrap/Manifest b/dev-lang/fbc-bootstrap/Manifest
index 7b009089e..0546ca882 100644
--- a/dev-lang/fbc-bootstrap/Manifest
+++ b/dev-lang/fbc-bootstrap/Manifest
@@ -1 +1,2 @@
 DIST FreeBASIC-1.07.2-source-bootstrap.tar.xz 10700992 BLAKE2B 
e7016e5f58ae79086c0445bf6a09f33d4335af771422778be407e3351d583522e16f137763e471ba88e47b4318ab5bd2aec882ef5e5ff85cc334b0eccf27fdc5
 SHA512 
f381d14343496f68d3401ad1a66ff4fb1314270eddebb72ed2bc5624b856c4b29e7e14062f531a5158d892bb73d9aa80ff54fe7c260b4b8967b1330d26b2ecfc
+DIST FreeBASIC-1.07.3-source-bootstrap.tar.xz 10702984 BLAKE2B 
dbf68351c54d9a1ec6f5952e7867bc370fdc36db406c9a76d18f9e85757c26f3c954d91ce56593af9ceacf1e24e8038ba7cfeaa66a988923fd5d57d5f160584d
 SHA512 
59a06e633b2bf5054d2b5f7a9da7e539a51657a20d50ac2e055255dab30acc87e03596a53613e1d7f1ac74798d4919b5d7aa32b20a229c7725ebc1e53460b70e

diff --git a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild 
b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild
new file mode 100644
index 0..042a2
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Bootstrap package for dev-lang/fbc"
+HOMEPAGE="https://www.freebasic.net";
+SRC_URI="https://github.com/freebasic/fbc/releases/download/${PV}/FreeBASIC-${PV}-source-bootstrap.tar.xz";
+
+LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+PATCHES=( "${FILESDIR}"/fbc-1.07.0-Pass-ltinfo-to-linker.patch )
+
+S="${WORKDIR}/FreeBASIC-${PV}-source-bootstrap"
+
+src_compile() {
+   emake bootstrap-minimal
+}
+
+src_install() {
+   newbin bin/fbc fbc-bootstrap
+   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-includes
+   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-rtlib
+}



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc-bootstrap/, dev-lang/fbc-bootstrap/files/

2020-12-28 Thread William Breathitt Gray
commit: 4b1221ec3844153cdb4b251eb457053ed20dd42c
Author: William Breathitt Gray  gmail  com>
AuthorDate: Mon Dec 28 23:08:35 2020 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Mon Dec 28 23:14:01 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b1221ec

dev-lang/fbc-bootstrap: New package

Signed-off-by: William Breathitt Gray  gmail.com>

 dev-lang/fbc-bootstrap/Manifest|  1 +
 dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild | 26 ++
 .../files/fbc-1.07.0-Pass-ltinfo-to-linker.patch   | 25 +
 dev-lang/fbc-bootstrap/metadata.xml| 17 ++
 4 files changed, 69 insertions(+)

diff --git a/dev-lang/fbc-bootstrap/Manifest b/dev-lang/fbc-bootstrap/Manifest
new file mode 100644
index ..7b009089
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/Manifest
@@ -0,0 +1 @@
+DIST FreeBASIC-1.07.2-source-bootstrap.tar.xz 10700992 BLAKE2B 
e7016e5f58ae79086c0445bf6a09f33d4335af771422778be407e3351d583522e16f137763e471ba88e47b4318ab5bd2aec882ef5e5ff85cc334b0eccf27fdc5
 SHA512 
f381d14343496f68d3401ad1a66ff4fb1314270eddebb72ed2bc5624b856c4b29e7e14062f531a5158d892bb73d9aa80ff54fe7c260b4b8967b1330d26b2ecfc

diff --git a/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild 
b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild
new file mode 100644
index ..747c02a5
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/fbc-bootstrap-1.07.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Bootstrap package for dev-lang/fbc"
+HOMEPAGE="https://www.freebasic.net";
+SRC_URI="https://github.com/freebasic/fbc/releases/download/${PV}/FreeBASIC-${PV}-source-bootstrap.tar.xz";
+
+LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+PATCHES=( "${FILESDIR}"/fbc-1.07.0-Pass-ltinfo-to-linker.patch )
+
+S="${WORKDIR}/FreeBASIC-${PV}-source-bootstrap"
+
+src_compile() {
+   emake bootstrap-minimal
+}
+
+src_install() {
+   newbin bin/fbc fbc-bootstrap
+   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-includes
+   emake DESTDIR="${D}" prefix="/usr/share/freebasic-bootstrap" 
TARGET=${CHOST} install-rtlib
+}

diff --git 
a/dev-lang/fbc-bootstrap/files/fbc-1.07.0-Pass-ltinfo-to-linker.patch 
b/dev-lang/fbc-bootstrap/files/fbc-1.07.0-Pass-ltinfo-to-linker.patch
new file mode 100644
index ..72bd51fa
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/files/fbc-1.07.0-Pass-ltinfo-to-linker.patch
@@ -0,0 +1,25 @@
+From c62adcd85c4e9d8b793a7a4f71fc88f6fbb79798 Mon Sep 17 00:00:00 2001
+From: William Breathitt Gray 
+Date: Tue, 27 Aug 2019 20:41:07 +0900
+Subject: [PATCH] Pass -ltinfo to linker
+
+---
+ makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/makefile b/makefile
+index e093bb1..eb3f759 100644
+--- a/makefile
 b/makefile
+@@ -1109,7 +1109,7 @@ endif
+ # Use gcc to link fbc from the bootstrap .o's
+ # (assuming the rtlib was built already)
+ ifneq ($(filter darwin freebsd linux netbsd openbsd solaris,$(TARGET_OS)),)
+-  BOOTSTRAP_LIBS := -lncurses -lm -pthread
++  BOOTSTRAP_LIBS := -ltinfo -lncurses -lm -pthread
+ endif
+ $(BOOTSTRAP_FBC): rtlib $(BOOTSTRAP_OBJ)
+   $(QUIET_LINK)$(CC) -o $@ $(libdir)/fbrt0.o bootstrap/$(FBTARGET)/*.o 
$(libdir)/libfb.a $(BOOTSTRAP_LIBS)
+-- 
+2.22.1
+

diff --git a/dev-lang/fbc-bootstrap/metadata.xml 
b/dev-lang/fbc-bootstrap/metadata.xml
new file mode 100644
index ..5ef896cc
--- /dev/null
+++ b/dev-lang/fbc-bootstrap/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   This package is used only to boot strap dev-lang/fbc.
+   It is not meant to be used by end users directly.
+   
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   
+   
+   https://github.com/freebasic/fbc/issues
+   https://www.freebasic.net
+   freebasic/fbc
+   
+