public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/reiserfsprogs/
Date: Wed, 26 Jul 2017 09:51:23 +0000 (UTC)	[thread overview]
Message-ID: <1501062656.849d1e468bf6204e0b3d9b1de4d339fc94b51f35.polynomial-c@gentoo> (raw)

commit:     849d1e468bf6204e0b3d9b1de4d339fc94b51f35
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 26 08:46:36 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Jul 26 09:50:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=849d1e46

sys-fs/reiserfsprogs: Bump to version 3.6.27

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-fs/reiserfsprogs/Manifest                    |  1 +
 sys-fs/reiserfsprogs/reiserfsprogs-3.6.27.ebuild | 49 ++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/sys-fs/reiserfsprogs/Manifest b/sys-fs/reiserfsprogs/Manifest
index 2a0b3dcca3b..ac46a4ab097 100644
--- a/sys-fs/reiserfsprogs/Manifest
+++ b/sys-fs/reiserfsprogs/Manifest
@@ -1,3 +1,4 @@
 DIST reiserfsprogs-3.6.24.tar.xz 316444 SHA256 7e44fefe557d68a642191428210f3d64d80283b9ad0e45c24130f6ce936b0760 SHA512 183cda8c1bef375a9e90b6bfcbbbe7cc901f12890be29551e74950c723b0ae565786be86f69cba2a5d8b2f9014d22f6f3bdf277d666d4b6bea15406cb2803a42 WHIRLPOOL 1046b9ca94e733a1b90c220a122d41cb933522e39244b6c6de987de1eefe9a2712a3a7dbaf5de64f2c76de1eb9b43c3fe0650fc3ac11929951956a91ea92e571
 DIST reiserfsprogs-3.6.25.tar.xz 448984 SHA256 fb1199405af8b8af609e9e97054de8f0d05b6cc2b6727713db92ed5e2919d20d SHA512 247ca392d227680fb24e94cd490319e77e82d00d7d357516690d2cab6f0bbe8b35879f8a25ed5046bd3a7a3e1f2b140a8a82404043aa0e7f6f60f57d069857ae WHIRLPOOL d467ae27729a2777fd04578ae62327d71cf34404f9e70c717b07ef385c6d7f830546e3a07b34e9a8ca70cfd0cbdecedec2dd3720129e0c4d9131ad2d9ead3f32
 DIST reiserfsprogs-3.6.26.tar.xz 357276 SHA256 7d4b2ed2d6fc40d944f288099233f350b653e0f6567e9f12e958731eebd94685 SHA512 366f326d25fc5940ebc37b2b340607d2234296dfa42795e584cda670597e8dd859633499e6ab87ae8d53cd31b293ddbb15113944a17bfd601baa494abb02a9fa WHIRLPOOL 635013a7dfc832e4d34810e4f0533978dc26d3fc8794a7c2f04c2f0afceb0233244876ef6c39e132f1e42a23c473fb2bb42c3b82c26e15212af27ecc15ab6138
+DIST reiserfsprogs-3.6.27.tar.xz 449176 SHA256 0e95b67fa7746a3c2d59145e9b9c2feb4a6be52853e83b497b182eae508e62e3 SHA512 bc524aa1ad7f8502238761fd185bfb8473048947bd579e2803c73371928c6b245e0d90bd9d458f4bebcbf163892dbc9f4bae65aec68ebbaa436be7451c13f50c WHIRLPOOL 56987d2dfbc31068c2670f792ef0dc0bea6d5539773bd079ae7a67c4641d62ad2decd6e9ddbd4d69a23eb8401e1babcf62fe503313d27cd0b6dc3c37354e9653

diff --git a/sys-fs/reiserfsprogs/reiserfsprogs-3.6.27.ebuild b/sys-fs/reiserfsprogs/reiserfsprogs-3.6.27.ebuild
new file mode 100644
index 00000000000..218e8b2202e
--- /dev/null
+++ b/sys-fs/reiserfsprogs/reiserfsprogs-3.6.27.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools flag-o-matic
+
+DESCRIPTION="Reiserfs Utilities"
+HOMEPAGE="https://www.kernel.org/pub/linux/utils/fs/reiserfs/"
+SRC_URI="mirror://kernel/linux/utils/fs/reiserfs/${P}.tar.xz
+	mirror://kernel/linux/kernel/people/jeffm/${PN}/v${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="static-libs"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-3.6.25-no_acl.patch"
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	append-flags -std=gnu89 #427300
+	local myeconfargs=(
+		--bindir="${EPREFIX}/bin"
+		--libdir="${EPREFIX}/$(get_libdir)"
+		--sbindir="${EPREFIX}/sbin"
+		$(use_enable static-libs static)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	dodir /usr/$(get_libdir)
+	mv "${D}"/$(get_libdir)/pkgconfig "${D}"/usr/$(get_libdir) || die
+
+	if use static-libs ; then
+		mv "${D}"/$(get_libdir)/*a "${D}"/usr/$(get_libdir) || die
+		gen_usr_ldscript libreiserfscore.so
+	else
+		find "${D}" -type f \( -name "*.a" -o -name "*.la" \) -delete
+	fi
+}


             reply	other threads:[~2017-07-26  9:51 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-26  9:51 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-05-05 23:48 [gentoo-commits] repo/gentoo:master commit in: sys-fs/reiserfsprogs/ WANG Xuerui
2021-09-10 20:16 Matt Turner
2021-08-03 11:03 Sam James
2021-04-30 19:03 Andreas Sturmlechner
2020-12-02 23:21 Sam James
2020-08-31  9:23 Yixun Lan
2019-10-05 18:56 Michał Górny
2019-10-04 18:49 Matt Turner
2019-05-12  7:53 Sergei Trofimovich
2018-12-29 10:43 Mikle Kolyada
2018-12-08 12:04 Mikle Kolyada
2018-12-08 10:42 Mikle Kolyada
2018-12-08  9:58 Mikle Kolyada
2018-12-08  9:44 Sergei Trofimovich
2018-12-08  9:36 Sergei Trofimovich
2018-03-28 14:11 Lars Wendler
2018-03-28  9:55 Sergei Trofimovich
2017-10-09 17:38 Sergei Trofimovich
2017-07-11  4:45 Markus Meier
2017-06-30  8:22 Sergei Trofimovich
2017-06-28 13:19 Agostino Sarubbo
2017-06-26 22:57 Lars Wendler
2016-06-14  9:43 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=1501062656.849d1e468bf6204e0b3d9b1de4d339fc94b51f35.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