From: "Bernard Cafarelli" <voyageur@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/plus42/
Date: Fri, 20 Dec 2024 08:13:44 +0000 (UTC) [thread overview]
Message-ID: <1734682415.331bbfbf684f08fba7e924db80b45c0eb0c66c2a.voyageur@gentoo> (raw)
commit: 331bbfbf684f08fba7e924db80b45c0eb0c66c2a
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 07:56:14 2024 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 08:13:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331bbfbf
app-emulation/plus42: drop 1.1.11, 1.1.12
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
app-emulation/plus42/Manifest | 2 --
app-emulation/plus42/plus42-1.1.11.ebuild | 49 -------------------------------
app-emulation/plus42/plus42-1.1.12.ebuild | 49 -------------------------------
3 files changed, 100 deletions(-)
diff --git a/app-emulation/plus42/Manifest b/app-emulation/plus42/Manifest
index 35c0aa29dcf1..b60808122e92 100644
--- a/app-emulation/plus42/Manifest
+++ b/app-emulation/plus42/Manifest
@@ -1,5 +1,3 @@
-DIST plus42-upstream-1.1.11.tgz 7613219 BLAKE2B edd390be71318fbe351e997e3cedb2bf145fea89ed39ac91726c712d1906a28860f515de5bb657d0447d496d7469c6c01b185f6396c9227e120cbb8ea078bca3 SHA512 082042319ee9f58fc6c3fe86e9b15d03e17ae6e3d30441df2e953d71fe670f8004ff25da8986fb6f89fd4f6823a473fbfa620560e6051aa2a3bfebd9fbbd67a2
-DIST plus42-upstream-1.1.12.tgz 7613262 BLAKE2B 983388034eca0bfceb4d2ca129a7fad5192e642e6bb05365bb883b7cb9a7bc571181b28214c2d4a9efd97a87d2836f95e4755e33f7a98bcc8bba0b5a97e4f226 SHA512 b0502d3132e49fc29d3e5b6b9d9fe4d6de52ebf5a44937a3847932993563e7ba12cca72dfa6d505acaa5eb95ffd5692df4b10b35075e846a17a9a621f31df225
DIST plus42-upstream-1.1.13.tgz 7613465 BLAKE2B 88940160f2d5aa9c06b9b19b12a4bc747ef7c9e354075ca144997cffda42f7a07f3da602385b9e574402fa957463dce4bf3ba1237c11fa34d99bb3ed36249a67 SHA512 ff1f80be13337debf98e1a3e157e4bd5f017acde27e716254496606af8b4ffd967f8a03dc4e263e6fdf4ec62acf46fd5981297c0b29748b7dc0320969b14fa5b
DIST plus42-upstream-1.1.14.tgz 7613616 BLAKE2B 9d0ff8205188460e8f1a5bd539425954a82202ffb8f62beb76b81838d7f3ff325f5f20fffeadf5ceef750dc662b9f1673b94dc9f61297da55c7d0a36e7a8a574 SHA512 e2edcfeac9c464e9c22dc114392be81a5f70d2327d6787585a1b6038e665236119a031e9e6bf380c08e0147c77149df518335b3fdca238ed9684a4254b5f5af7
DIST plus42-upstream-1.1.16.tgz 7620137 BLAKE2B e403386ee121292fb4561352f7ba8db3e9ecf39506df643a7de21a3b54b29eb3f866e0d236eb70c1fc112c98a91cdd3f3bac5bafd3329c94ed420950bcf5b9ef SHA512 cac03b6431d9137d4ec1904fe5945b45d0c29219dbf820f0159a98fbfc81f2b7c638307b09424ad79b4322c250056d6c7b87c915ea2ee034bbf8f7276ad82a62
diff --git a/app-emulation/plus42/plus42-1.1.11.ebuild b/app-emulation/plus42/plus42-1.1.11.ebuild
deleted file mode 100644
index 3916a804001b..000000000000
--- a/app-emulation/plus42/plus42-1.1.11.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-MY_PV="${PN}-upstream-${PV}"
-
-DESCRIPTION="An Enhanced HP-42S Calculator Simulator"
-HOMEPAGE="https://thomasokken.com/plus42/"
-SRC_URI="https://thomasokken.com/plus42/upstream/${MY_PV}.tgz"
-S=${WORKDIR}/${MY_PV}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa"
-
-DEPEND="app-accessibility/at-spi2-core
- x11-libs/cairo
- x11-libs/gdk-pixbuf
- x11-libs/gtk+:3
- alsa? ( media-libs/alsa-lib )"
-RDEPEND="${DEPEND}"
-
-DOCS=( CREDITS HISTORY README )
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.0.9-fix-makefile.patch"
- "${FILESDIR}/${PN}-1.0.12-fix-build-intel-lib.patch"
-)
-
-src_prepare() {
- default
-}
-
-src_compile() {
- local myconf
- use alsa && myconf="AUDIO_ALSA=yes"
- emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" ${myconf} -C gtk
- emake -C gtk clean
- emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" BCD_MATH=1 ${myconf} -C gtk
-}
-
-src_install() {
- default
- dobin gtk/plus42bin gtk/plus42dec
-}
diff --git a/app-emulation/plus42/plus42-1.1.12.ebuild b/app-emulation/plus42/plus42-1.1.12.ebuild
deleted file mode 100644
index 3916a804001b..000000000000
--- a/app-emulation/plus42/plus42-1.1.12.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-MY_PV="${PN}-upstream-${PV}"
-
-DESCRIPTION="An Enhanced HP-42S Calculator Simulator"
-HOMEPAGE="https://thomasokken.com/plus42/"
-SRC_URI="https://thomasokken.com/plus42/upstream/${MY_PV}.tgz"
-S=${WORKDIR}/${MY_PV}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa"
-
-DEPEND="app-accessibility/at-spi2-core
- x11-libs/cairo
- x11-libs/gdk-pixbuf
- x11-libs/gtk+:3
- alsa? ( media-libs/alsa-lib )"
-RDEPEND="${DEPEND}"
-
-DOCS=( CREDITS HISTORY README )
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.0.9-fix-makefile.patch"
- "${FILESDIR}/${PN}-1.0.12-fix-build-intel-lib.patch"
-)
-
-src_prepare() {
- default
-}
-
-src_compile() {
- local myconf
- use alsa && myconf="AUDIO_ALSA=yes"
- emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" ${myconf} -C gtk
- emake -C gtk clean
- emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" BCD_MATH=1 ${myconf} -C gtk
-}
-
-src_install() {
- default
- dobin gtk/plus42bin gtk/plus42dec
-}
next reply other threads:[~2024-12-20 8:13 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-20 8:13 Bernard Cafarelli [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-23 22:15 [gentoo-commits] repo/gentoo:master commit in: app-emulation/plus42/ Bernard Cafarelli
2025-02-03 11:17 Bernard Cafarelli
2025-02-03 11:17 Bernard Cafarelli
2024-12-23 12:27 Bernard Cafarelli
2024-12-20 8:13 Bernard Cafarelli
2024-11-28 12:15 Bernard Cafarelli
2024-11-12 9:13 Bernard Cafarelli
2024-06-14 10:47 Bernard Cafarelli
2024-05-25 20:03 Bernard Cafarelli
2024-05-25 20:03 Bernard Cafarelli
2024-05-02 7:03 Bernard Cafarelli
2024-04-06 10:03 Bernard Cafarelli
2024-04-06 10:03 Bernard Cafarelli
2024-01-29 9:44 Bernard Cafarelli
2023-12-20 8:52 Bernard Cafarelli
2023-12-20 8:52 Bernard Cafarelli
2023-11-07 14:51 Bernard Cafarelli
2023-08-16 22:08 Bernard Cafarelli
2023-08-16 22:08 Bernard Cafarelli
2023-04-13 11:06 Bernard Cafarelli
2023-01-02 10:54 Bernard Cafarelli
2023-01-02 10:54 Bernard Cafarelli
2022-11-13 22:39 Bernard Cafarelli
2022-09-23 19:27 Bernard Cafarelli
2022-06-10 21:53 Bernard Cafarelli
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=1734682415.331bbfbf684f08fba7e924db80b45c0eb0c66c2a.voyageur@gentoo \
--to=voyageur@gentoo.org \
--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