Gentoo Archives: gentoo-commits

From: Jonas Stein <jstein@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libdsk/
Date: Wed, 02 Feb 2022 19:54:21
Message-Id: 1643831636.202cc98830ee3af38f41a776f6fd53461e14e6c1.jstein@gentoo
1 commit: 202cc98830ee3af38f41a776f6fd53461e14e6c1
2 Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 19:53:36 2022 +0000
4 Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 19:53:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=202cc988
7
8 app-emulation/libdsk: bump to 1.5.18
9
10 Version bump fixes critical bug in 1.5.8 with potential data loss.
11 Eapi bump to EAPI=8
12 Bug: https://bugs.gentoo.org/832575
13 Package-Manager: Portage-3.0.30, Repoman-3.0.3
14 Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>
15
16 app-emulation/libdsk/Manifest | 1 +
17 app-emulation/libdsk/libdsk-1.5.18.ebuild | 25 +++++++++++++++++++++++++
18 2 files changed, 26 insertions(+)
19
20 diff --git a/app-emulation/libdsk/Manifest b/app-emulation/libdsk/Manifest
21 index 948efc2aaff9..152f86adda37 100644
22 --- a/app-emulation/libdsk/Manifest
23 +++ b/app-emulation/libdsk/Manifest
24 @@ -1 +1,2 @@
25 +DIST libdsk-1.5.18.tar.gz 1295474 BLAKE2B 36dd2a0c5a53899b721dc46848c79a36b80ebb30d8210eacf7462d5785c607f00b69ca26ea4ec35bd3e03f5203043e6aa0687b2212672b274305e9f5aad8ce6e SHA512 5d845084f6c7791813be7c2afcd34a52cebb217ddcdafe1953fcbd55ce5b7df944e2b3abd253d2a7cd376e6e111f9d6f2e0b6474ceb84a5b5f4dcb5609922d4e
26 DIST libdsk-1.5.8.tar.gz 1212684 BLAKE2B 52a2687d8ade0378096215d362df21b6eb477b3304910bb98c56264fb05bec6ad2d2b7254dd132fe50e60d5179b4875a1a91088f8ed93f68886054bf1df060f4 SHA512 6bb332dcd58b88272130a950ed686852f66a1e97030aaa280db3bc65a7f82513d57055c2cc3e653e1e06843c453e46a52ce280b45b42c0bb671d1e0f6d7c9520
27
28 diff --git a/app-emulation/libdsk/libdsk-1.5.18.ebuild b/app-emulation/libdsk/libdsk-1.5.18.ebuild
29 new file mode 100644
30 index 000000000000..d03d23077384
31 --- /dev/null
32 +++ b/app-emulation/libdsk/libdsk-1.5.18.ebuild
33 @@ -0,0 +1,25 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +DESCRIPTION="LIBDSK is a library for accessing discs and disc image files"
40 +HOMEPAGE="https://www.seasip.info/Unix/LibDsk/"
41 +SRC_URI="https://www.seasip.info/Unix/LibDsk/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="doc"
47 +
48 +#PATCHES=( "${FILESDIR}"/${P}-include-sysmacros.patch )
49 +DOCS=( doc/${PN}.{txt,pdf} )
50 +
51 +src_configure() {
52 + econf --disable-static
53 +}
54 +
55 +src_install() {
56 + default
57 + find "${ED}" -name '*.la' -delete || die
58 +}