From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/reiser4progs/
Date: Sun, 5 Jul 2020 20:34:32 +0000 (UTC) [thread overview]
Message-ID: <1593981229.d8ccd113cb5c7aaf898e8f8ca54553f896bb86d9.polynomial-c@gentoo> (raw)
commit: d8ccd113cb5c7aaf898e8f8ca54553f896bb86d9
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 5 20:33:49 2020 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sun Jul 5 20:33:49 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ccd113
sys-fs/reiser4progs: Bump to version 2.0.2
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-fs/reiser4progs/Manifest | 1 +
sys-fs/reiser4progs/reiser4progs-2.0.2.ebuild | 54 +++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/sys-fs/reiser4progs/Manifest b/sys-fs/reiser4progs/Manifest
index edb1ea07351..348fce19732 100644
--- a/sys-fs/reiser4progs/Manifest
+++ b/sys-fs/reiser4progs/Manifest
@@ -1,3 +1,4 @@
DIST reiser4progs-1.2.1.tar.gz 980203 BLAKE2B 8c9cb77458c083c50f34c17bddf4747b755b52b911a63835152ad584494c2738a5317c28e5b3f1e6bfdc49416f3715ca4fbbd9c8a428b5b484b54f8f4a861a58 SHA512 2caac5a98d672d68910c6df3e694a42365fa6273ae367c26126778c1fbe956aa502dac236d36c3302a5bf109468ad3447e645a6eab89c83f122dd1afe2aeda21
DIST reiser4progs-2.0.0.tar.gz 1019362 BLAKE2B 94d94697e427932b82634a756e7797ba7b061592c4ce946660f3c7750eb48ece7a5c0a265aa392a463c598212a87ec9fe769af88f680fa24adff36bd6db51128 SHA512 1993a38b2c4f339acb5d305b3b4c3360e57bf3df4684543f708bfd1062ecfb2435dd16e22f9555ab1317d77e95750cf9c2b2f81a91a109ad65aa30a5e7d815bd
DIST reiser4progs-2.0.1.tar.gz 1019909 BLAKE2B d415a32c0d75e311ca0ece734a1f95273403341c4e38eee9e036c5c83a95d6e3aaebae8e5b89c713bbe7630c5dd902438b582e7ab1197202f7f5027702c89a67 SHA512 c1f5ab1ef36e959fb03bee81ddc4ad62152d43867d3021fa41aa07eca64a16e8bf56f6cf27378e0df9f77f223fd3d334f13c015620cd16f0aa1b9e7718274d14
+DIST reiser4progs-2.0.2.tar.gz 994469 BLAKE2B ac680b901807c22b246ea5601b89d51fdd8ea12636bdacbddcdb191455c4ede50b116edd0d8d7398f99d6fb26ea9f44c5ffc561296ab3ee1c3ae0b5eade2e1ec SHA512 b7473c6ab4e3f3249b60081ac31e92c267a1408c32f82dc6d27e92297ac4e90263c129ef748891ca4c7cf31035ac723867f9bed649bae9ea1b73525278fdfdb3
diff --git a/sys-fs/reiser4progs/reiser4progs-2.0.2.ebuild b/sys-fs/reiser4progs/reiser4progs-2.0.2.ebuild
new file mode 100644
index 00000000000..fa83088da8f
--- /dev/null
+++ b/sys-fs/reiser4progs/reiser4progs-2.0.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib toolchain-funcs usr-ldscript
+
+DESCRIPTION="reiser4progs: mkfs, fsck, etc..."
+HOMEPAGE="https://sourceforge.net/projects/reiser4/"
+SRC_URI="mirror://sourceforge/reiser4/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 -sparc ~x86"
+IUSE="debug readline static static-libs"
+
+LIB_DEPEND=">=sys-libs/libaal-1.0.7:=[static-libs(+)]
+ readline? ( sys-libs/readline:0=[static-libs(+)] )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
+ static-libs? ( >=sys-libs/libaal-1.0.7:=[static-libs(+)] )"
+DEPEND="${RDEPEND}
+ static? ( ${LIB_DEPEND} )"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.0.7-readline-6.3.patch )
+
+src_prepare() {
+ printf '#!/bin/sh\ntrue\n' > run-ldconfig
+ # Delete hardcoded link/compile flags.
+ sed -i -r \
+ -e '/CFLAGS=/s: -static":":' \
+ -e '/CFLAGS/s: (-O[123s]|-g)\>::g' \
+ configure || die
+
+ default
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable static full-static)
+ $(use_enable static-libs static)
+ $(use_enable debug)
+ $(use_with readline)
+ --disable-Werror
+ --enable-libminimal
+ --sbindir=/sbin
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ gen_usr_ldscript -a reiser4{,-minimal} repair
+ find "${ED}" -type f -name "*.la" -delete || die
+}
next reply other threads:[~2020-07-05 20:34 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-05 20:34 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-12-24 13:25 [gentoo-commits] repo/gentoo:master commit in: sys-fs/reiser4progs/ Andreas Sturmlechner
2022-05-05 23:48 WANG Xuerui
2022-04-17 19:17 Sam James
2021-06-07 6:25 Sergei Trofimovich
2021-06-03 22:52 Sam James
2021-06-03 19:58 Sam James
2021-06-03 19:58 Sam James
2021-06-03 8:23 Sam James
2021-04-05 17:37 Lars Wendler
2021-03-22 19:55 Lars Wendler
2021-03-22 19:55 Lars Wendler
2020-12-27 12:49 Lars Wendler
2020-12-27 12:49 Lars Wendler
2020-12-02 23:21 Sam James
2020-08-19 9:33 Lars Wendler
2020-08-19 9:33 Lars Wendler
2020-07-05 20:34 Lars Wendler
2020-05-30 8:54 Lars Wendler
2020-03-22 11:01 Mikle Kolyada
2020-01-09 11:50 Agostino Sarubbo
2020-01-09 11:49 Agostino Sarubbo
2020-01-06 13:06 Agostino Sarubbo
2020-01-05 20:42 Sergei Trofimovich
2020-01-05 19:32 Sergei Trofimovich
2020-01-04 12:41 Lars Wendler
2020-01-04 12:41 Lars Wendler
2017-12-04 22:32 Lars Wendler
2017-11-27 23:07 Thomas Deutschmann
2016-12-24 9:28 Markus Meier
2016-12-21 9:51 Tobias Klausmann
2016-04-19 22:33 Manuel Rüger
2015-09-02 8:38 Lars Wendler
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=1593981229.d8ccd113cb5c7aaf898e8f8ca54553f896bb86d9.polynomial-c@gentoo \
--to=polynomial-c@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