public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tony Vroon" <chainsaw@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/rpm/
Date: Mon, 16 Jul 2018 13:40:24 +0000 (UTC)	[thread overview]
Message-ID: <1531748107.12c1bdd7ae9904e58156c2aa74e16dc83ee4e5f4.chainsaw@gentoo> (raw)

commit:     12c1bdd7ae9904e58156c2aa74e16dc83ee4e5f4
Author:     ktrace <coyote <AT> bks <DOT> tv>
AuthorDate: Sat Jul 14 22:21:41 2018 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Mon Jul 16 13:35:07 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12c1bdd7

app-arch/rpm: fix automagic, add USE "zstd"

 Fix automagic dependency on app-arch/zstd, add USE zstd

Bug: https://bugs.gentoo.org/658746
Closes: https://github.com/gentoo/gentoo/pull/9232
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9232
Closes: https://bugs.gentoo.org/658746

 app-arch/rpm/metadata.xml         |   6 ++
 app-arch/rpm/rpm-4.14.1-r1.ebuild | 133 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 139 insertions(+)

diff --git a/app-arch/rpm/metadata.xml b/app-arch/rpm/metadata.xml
index 7a38bb90096..e8a64db778c 100644
--- a/app-arch/rpm/metadata.xml
+++ b/app-arch/rpm/metadata.xml
@@ -2,4 +2,10 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<!-- maintainer-needed -->
+	<use>
+		<flag name="zstd">Enable support for ZSTD compression using <pkg>app-arch/zstd</pkg></flag>
+	</use>
+	<upstream>
+		<remote-id type="github">rpm-software-management/rpm</remote-id>
+	</upstream>
 </pkgmetadata>

diff --git a/app-arch/rpm/rpm-4.14.1-r1.ebuild b/app-arch/rpm/rpm-4.14.1-r1.ebuild
new file mode 100644
index 00000000000..1afa7aeae2c
--- /dev/null
+++ b/app-arch/rpm/rpm-4.14.1-r1.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit autotools flag-o-matic perl-module python-single-r1 eapi7-ver
+
+DESCRIPTION="Red Hat Package Management Utils"
+HOMEPAGE="http://www.rpm.org
+	https://github.com/rpm-software-management/rpm"
+SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 1-2).x/${P}.tar.bz2"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+# Tests are broken. See bug 657500
+RESTRICT="test"
+
+IUSE="acl caps doc lua nls python selinux test zstd"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+CDEPEND="!app-arch/rpm5
+	app-arch/libarchive
+	>=sys-libs/db-4.5:*
+	>=sys-libs/zlib-1.2.3-r1
+	>=app-arch/bzip2-1.0.1
+	>=dev-libs/popt-1.7
+	>=app-crypt/gnupg-1.2
+	dev-libs/elfutils
+	virtual/libintl
+	>=dev-lang/perl-5.8.8
+	dev-libs/nss
+	python? ( ${PYTHON_DEPS} )
+	nls? ( virtual/libintl )
+	lua? ( >=dev-lang/lua-5.1.0:*[deprecated] )
+	acl? ( virtual/acl )
+	caps? ( >=sys-libs/libcap-2.0 )
+	zstd? ( app-arch/zstd )
+"
+DEPEND="${CDEPEND}
+	nls? ( sys-devel/gettext )
+	doc? ( app-doc/doxygen )
+	virtual/pkgconfig
+	test? ( sys-apps/fakechroot )
+"
+RDEPEND="${CDEPEND}
+	selinux? ( sec-policy/selinux-rpm )
+"
+
+src_prepare() {
+	eapply "${FILESDIR}"/${PN}-4.11.0-autotools.patch
+	eapply "${FILESDIR}"/${PN}-4.8.1-db-path.patch
+	eapply "${FILESDIR}"/${PN}-4.9.1.2-libdir.patch
+
+	# fix #356769
+	sed -i 's:%{_var}/tmp:/var/tmp:' macros.in || die "Fixing tmppath failed"
+	# fix #492642
+	sed -i "s:@__PYTHON@:${PYTHON}:" macros.in || die "Fixing %__python failed"
+
+	eapply_user
+
+	eautoreconf
+
+	# Prevent automake maintainer mode from kicking in (#450448).
+	touch -r Makefile.am preinstall.am
+}
+
+src_configure() {
+	append-cppflags -I"${EPREFIX}/usr/include/nss" -I"${EPREFIX}/usr/include/nspr"
+	econf \
+		--without-selinux \
+		--with-external-db \
+		--with-crypto=nss \
+		$(use_enable python) \
+		$(use_with doc hackingdocs) \
+		$(use_enable nls) \
+		$(use_with lua) \
+		$(use_with caps cap) \
+		$(use_with acl) \
+		$(use_enable zstd zstd $(usex zstd yes no))
+}
+
+src_install() {
+	default
+
+	# remove la files
+	find "${ED}" -name '*.la' -delete || die
+
+	# fix symlinks to /bin/rpm (#349840)
+	for binary in rpmquery rpmverify;do
+		ln -sf rpm "${ED}"/usr/bin/${binary} || die
+	done
+
+	if ! use nls; then
+		rm -rf "${ED}"/usr/share/man/?? || die
+	fi
+
+	keepdir /usr/src/rpm/{SRPMS,SPECS,SOURCES,RPMS,BUILD}
+
+	dodoc CREDITS README*
+	if use doc; then
+		for docname in hacking librpm; do
+			docinto "html/${docname}"
+			dodoc -r "doc/${docname}/html/."
+		done
+	fi
+
+	# Fix perllocal.pod file collision
+	perl_delete_localpod
+}
+
+src_test() {
+	# Known to fail with FEATURES=usersandbox (bug #657500):
+	if has usersandbox $FEATURES ; then
+		ewarn "You are emerging ${P} with 'usersandbox' enabled." \
+			"Expect some test failures or emerge with 'FEATURES=-usersandbox'!"
+	fi
+
+	emake check
+}
+
+pkg_postinst() {
+	if [[ -f "${EROOT}"/var/lib/rpm/Packages ]] ; then
+		einfo "RPM database found... Rebuilding database (may take a while)..."
+		"${EROOT}"/usr/bin/rpmdb --rebuilddb --root="${EROOT}" || die
+	else
+		einfo "No RPM database found... Creating database..."
+		"${EROOT}"/usr/bin/rpmdb --initdb --root="${EROOT}" || die
+	fi
+}


             reply	other threads:[~2018-07-16 13:40 UTC|newest]

Thread overview: 120+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-16 13:40 Tony Vroon [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-21 16:48 [gentoo-commits] repo/gentoo:master commit in: app-arch/rpm/ Sam James
2025-01-21 16:48 Sam James
2025-01-21 16:48 Sam James
2024-11-23 16:10 Sam James
2024-10-06 13:30 Arthur Zamarin
2024-07-12  6:21 Ionen Wolkens
2024-05-28 13:19 Sam James
2024-05-28 12:35 Sam James
2024-05-28 12:29 Michał Górny
2024-05-28 12:11 Michał Górny
2024-04-23  5:25 Viorel Munteanu
2024-04-23  5:25 Viorel Munteanu
2024-04-23  5:25 Viorel Munteanu
2024-04-05  5:38 Sam James
2024-04-05  5:16 Arthur Zamarin
2024-03-23  5:59 Arthur Zamarin
2024-03-23  5:59 Sam James
2024-03-23  5:59 Sam James
2024-02-24  7:08 Sam James
2024-02-02  3:58 Sam James
2024-01-03  9:11 WANG Xuerui
2023-12-23 16:54 Jakov Smolić
2023-12-22  7:50 Joonas Niilola
2023-12-15  6:24 Sam James
2023-11-29 14:09 Arthur Zamarin
2023-09-22 17:46 Arthur Zamarin
2023-09-22 12:14 Arthur Zamarin
2023-09-22  9:47 Arthur Zamarin
2023-09-22  9:15 Arthur Zamarin
2023-09-22  9:15 Arthur Zamarin
2023-08-13  6:49 Sam James
2023-02-23 13:53 Andrew Ammerlaan
2022-11-29 15:58 WANG Xuerui
2022-10-25 21:55 John Helmert III
2022-10-25 12:49 Sam James
2022-10-25  9:08 Sam James
2022-10-22  7:31 Agostino Sarubbo
2022-10-21 19:07 Arthur Zamarin
2022-10-21 19:07 Arthur Zamarin
2022-10-21 19:07 Arthur Zamarin
2022-10-21 17:55 John Helmert III
2022-10-14  6:56 Agostino Sarubbo
2022-10-14  6:55 Agostino Sarubbo
2022-10-14  6:55 Agostino Sarubbo
2022-10-14  4:36 Arthur Zamarin
2022-10-13 23:04 Sam James
2022-10-13 22:37 Sam James
2022-09-23  5:41 Sam James
2022-07-05  1:13 Sam James
2022-03-06 23:39 Sam James
2022-03-06  9:18 Sam James
2021-12-06 18:37 Arthur Zamarin
2021-12-06 15:20 Sam James
2021-12-05 18:39 Sam James
2021-12-05 18:31 Sam James
2021-12-05  4:06 Sam James
2021-10-16  7:33 Sam James
2021-10-14 10:54 Sam James
2021-10-14 10:54 Sam James
2021-10-14 10:36 Sam James
2021-07-16 23:32 Marek Szuba
2021-07-12 12:43 Marek Szuba
2021-06-25 12:32 Marek Szuba
2021-05-15 19:12 Sam James
2021-05-14  8:56 Sam James
2021-05-14  8:56 Sam James
2021-05-13 21:15 Sam James
2021-05-13 16:24 Sam James
2021-05-13 16:24 Sam James
2021-04-07  5:24 Sam James
2021-04-07  1:58 Sam James
2021-04-07  1:58 Sam James
2021-03-31 14:08 Agostino Sarubbo
2021-03-26 23:52 Sam James
2021-03-26 21:38 Sam James
2021-03-26 21:38 Sam James
2021-03-26 21:36 Sam James
2021-03-26 21:36 Sam James
2020-12-07 13:12 Marek Szuba
2020-12-03 22:58 Marek Szuba
2020-08-24 22:24 Matt Turner
2020-08-13 20:25 Michał Górny
2020-05-26  3:10 Mike Gilbert
2020-05-12  8:54 Mikle Kolyada
2020-05-12  8:54 Mikle Kolyada
2020-05-07 13:18 Michał Górny
2020-05-03  2:44 Mike Gilbert
2020-04-21 10:13 Mart Raudsepp
2020-04-20  9:50 Agostino Sarubbo
2020-04-20  9:48 Agostino Sarubbo
2020-04-20  9:46 Agostino Sarubbo
2020-04-20  9:29 Agostino Sarubbo
2020-04-15  2:32 Mike Gilbert
2019-08-23 15:07 Mike Gilbert
2019-06-18  0:35 Aaron Bauman
2019-01-29 12:10 Mikle Kolyada
2018-12-03 15:22 Craig Andrews
2018-10-20 11:39 Pacho Ramos
2018-10-20 11:39 Pacho Ramos
2018-10-18 11:45 Tobias Klausmann
2018-10-14 13:02 Pacho Ramos
2018-07-16 13:40 Tony Vroon
2018-07-09  1:29 Thomas Deutschmann
2018-06-24 20:25 Sergei Trofimovich
2018-06-24 19:41 Sergei Trofimovich
2018-06-18  1:42 Virgil Dupras
2018-06-13 22:58 Mart Raudsepp
2018-06-12  9:52 Sergei Trofimovich
2018-06-11 17:58 Markus Meier
2018-06-08 20:22 Virgil Dupras
2018-06-08 10:40 Agostino Sarubbo
2018-06-07 23:59 Virgil Dupras
2018-06-06 21:41 Thomas Deutschmann
2018-06-06 12:10 Agostino Sarubbo
2018-06-06  2:16 Virgil Dupras
2018-05-13 10:44 Mart Raudsepp
2017-12-10 14:16 David Seifert
2017-06-22 14:24 Alexis Ballier
2016-08-07  7:04 Pacho Ramos

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=1531748107.12c1bdd7ae9904e58156c2aa74e16dc83ee4e5f4.chainsaw@gentoo \
    --to=chainsaw@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