public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/fbc/
Date: Tue, 12 Nov 2024 13:20:54 +0000 (UTC)	[thread overview]
Message-ID: <1731315965.5b622670fa88f565836139bf411dc0a2ae30ed85.davidroman@gentoo> (raw)

commit:     5b622670fa88f565836139bf411dc0a2ae30ed85
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Mon Nov 11 09:06:05 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Nov 11 09:06:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b622670

dev-lang/fbc: drop 1.07.3, 1.08.1

Closes: https://bugs.gentoo.org/785355 (obsolete)
Closes: https://bugs.gentoo.org/816111 (obsolete)
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-lang/fbc/Manifest          |  2 --
 dev-lang/fbc/fbc-1.07.3.ebuild | 61 ------------------------------------------
 dev-lang/fbc/fbc-1.08.1.ebuild | 61 ------------------------------------------
 3 files changed, 124 deletions(-)

diff --git a/dev-lang/fbc/Manifest b/dev-lang/fbc/Manifest
index a38cae25e..942f36541 100644
--- a/dev-lang/fbc/Manifest
+++ b/dev-lang/fbc/Manifest
@@ -1,3 +1 @@
-DIST fbc-1.07.3.tar.gz 9035460 BLAKE2B c0356c36ebd455954993ce5d4a983d06c33abc5bf0a059a44832d441514643c7d08e40268a7b3b9a0cba21368058199be395cc28dd7f87df23d576f78aece276 SHA512 6040248c433db3191678209401ff4a643c500d967d67352f1aeca347648056b0a2cdef25bbb7532fec0351a13984c72e80cb7b00faf3ead6c219422955d148fb
-DIST fbc-1.08.1.tar.gz 9395903 BLAKE2B 303def97f5e1c77f4941c6d08ed251b296dbc97f7e549f863feddd2775cf390962cda42e1751c647c560299f02ea60d29b312301faa78fbd6bba6ae8ab75f220 SHA512 1c56f4e1a56e0cfc309e5748e83a2ee98fe97a509e6fd3a7f51b1805a4cc40fefc3884b4434a62404c05001c84fdfa8b4e3debbfdb188ab42652a7a4020baea6
 DIST fbc-1.10.1.tar.gz 10136808 BLAKE2B 4f5568c5ae1e107c3b6c3cddc20504ef98ef2e222ae01fdd5c73b081a6036d908d423bfa74b1b108bfa4b768a3810dc727b4b952f6ac30532acf443e8bc0b689 SHA512 6980356a66c757667cc37cc686ae80f7975ea9a50cfeeb45270d9e53e8e5640be95005469263cd4a75381d202d3e6b722c6462cb26d21580cde09efd6d833d30

diff --git a/dev-lang/fbc/fbc-1.07.3.ebuild b/dev-lang/fbc/fbc-1.07.3.ebuild
deleted file mode 100644
index 4c2681646..000000000
--- a/dev-lang/fbc/fbc-1.07.3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A free/open source, multi-platform BASIC compiler."
-HOMEPAGE="https://www.freebasic.net"
-SRC_URI="https://github.com/freebasic/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gpm libffi opengl X"
-
-DEPEND="
-	sys-libs/ncurses:=
-	gpm? ( sys-libs/gpm )
-	libffi? ( dev-libs/libffi )
-	opengl? ( virtual/opengl )
-	X? (
-		x11-libs/libX11
-		x11-libs/libXext
-		x11-libs/libXpm
-		x11-libs/libXrandr
-		x11-libs/libXrender
-	)
-"
-RDEPEND="${DEPEND}"
-BDEPEND="|| (
-		dev-lang/fbc
-		dev-lang/fbc-bootstrap )"
-
-DOCS="${S}/doc/fbc.1"
-
-src_compile() {
-	local xcflags=(
-		$(usex gpm "" "-DDISABLE_GPM")
-		$(usex libffi "" " -DDISABLE_FFI")
-		$(usex opengl "" " -DDISABLE_OPENGL")
-		$(usex X "" " -DDISABLE_X11")
-	)
-
-	local fbc="fbc"
-	local fbcflags=""
-	# fbc requires a space after the -Wl option
-	local fblflags="${LDFLAGS//-Wl,/-Wl }"
-
-	if has_version -b dev-lang/fbc-bootstrap; then
-		fbc="fbc-bootstrap"
-		fbcflags="-prefix ${EPREFIX}/usr/share/freebasic-bootstrap"
-		fblflags+=" -prefix ${EPREFIX}/usr/share/freebasic-bootstrap"
-	fi
-
-	# Build fbc
-	emake CFLAGS="${CFLAGS} ${xcflags[*]} -I/usr/$(get_libdir)/libffi/include" FBC="${fbc}" FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}" TARGET="${CHOST}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" prefix="/usr" TARGET="${CHOST}" install
-	einstalldocs
-}

diff --git a/dev-lang/fbc/fbc-1.08.1.ebuild b/dev-lang/fbc/fbc-1.08.1.ebuild
deleted file mode 100644
index 4c2681646..000000000
--- a/dev-lang/fbc/fbc-1.08.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A free/open source, multi-platform BASIC compiler."
-HOMEPAGE="https://www.freebasic.net"
-SRC_URI="https://github.com/freebasic/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gpm libffi opengl X"
-
-DEPEND="
-	sys-libs/ncurses:=
-	gpm? ( sys-libs/gpm )
-	libffi? ( dev-libs/libffi )
-	opengl? ( virtual/opengl )
-	X? (
-		x11-libs/libX11
-		x11-libs/libXext
-		x11-libs/libXpm
-		x11-libs/libXrandr
-		x11-libs/libXrender
-	)
-"
-RDEPEND="${DEPEND}"
-BDEPEND="|| (
-		dev-lang/fbc
-		dev-lang/fbc-bootstrap )"
-
-DOCS="${S}/doc/fbc.1"
-
-src_compile() {
-	local xcflags=(
-		$(usex gpm "" "-DDISABLE_GPM")
-		$(usex libffi "" " -DDISABLE_FFI")
-		$(usex opengl "" " -DDISABLE_OPENGL")
-		$(usex X "" " -DDISABLE_X11")
-	)
-
-	local fbc="fbc"
-	local fbcflags=""
-	# fbc requires a space after the -Wl option
-	local fblflags="${LDFLAGS//-Wl,/-Wl }"
-
-	if has_version -b dev-lang/fbc-bootstrap; then
-		fbc="fbc-bootstrap"
-		fbcflags="-prefix ${EPREFIX}/usr/share/freebasic-bootstrap"
-		fblflags+=" -prefix ${EPREFIX}/usr/share/freebasic-bootstrap"
-	fi
-
-	# Build fbc
-	emake CFLAGS="${CFLAGS} ${xcflags[*]} -I/usr/$(get_libdir)/libffi/include" FBC="${fbc}" FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}" TARGET="${CHOST}"
-}
-
-src_install() {
-	emake DESTDIR="${D}" prefix="/usr" TARGET="${CHOST}" install
-	einstalldocs
-}


             reply	other threads:[~2024-11-12 13:20 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-12 13:20 David Roman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-12 13:20 [gentoo-commits] repo/proj/guru:master commit in: dev-lang/fbc/ David Roman
2021-09-08 15:20 Arthur Zamarin
2021-05-05  8:33 Andrew Ammerlaan
2021-04-30  7:45 Andrew Ammerlaan
2021-04-30  7:45 Andrew Ammerlaan
2021-04-12  5:38 Theo Anderson
2020-12-28 23:22 Andrew Ammerlaan
2020-12-27 12:48 Andrew Ammerlaan
2020-03-09 17:55 Andrew Ammerlaan
2019-05-19 15:42 Ralph Seichter
2019-05-14 16:05 Ralph Seichter
2019-04-29 14:11 Ralph Seichter
2019-04-29 14:11 Ralph Seichter
2019-04-29 14:11 Ralph Seichter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1731315965.5b622670fa88f565836139bf411dc0a2ae30ed85.davidroman@gentoo \
    --to=davidroman96@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox