Skip to content

Commit

Permalink
RPM: 4.13.0-rc1 -> 4.13.0.1 (#24910)
Browse files Browse the repository at this point in the history
  • Loading branch information
armijnhemel authored and Mic92 committed Apr 15, 2017
1 parent b7d2ffe commit fed7d4a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pkgs/tools/package-management/rpm/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig, autoreconfHook }:
{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig, binutils, autoreconfHook }:

stdenv.mkDerivation rec {
name = "rpm-4.13.0-rc1";
name = "rpm-${version}";
version = "4.13.0.1";

src = fetchurl {
url = "http://www.rpm.org/releases/testing/rpm-4.13.0-rc1.tar.bz2";
sha256 = "097mc0kkrf09c01hrgi71df7maahmvayfgsvspnxigvl3xysv8hp";
url = "http://ftp.rpm.org/releases/rpm-4.13.x/rpm-${version}.tar.bz2";
sha256 = "27fc7ba7d419622b1ce34d6507aa70b0808bc344021d298072a0c2ec165f9b0d";
};

outputs = [ "out" "dev" "man" ];

buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig autoreconfHook ];

# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements
propagatedBuildInputs = [ popt elfutils nss db bzip2 libarchive ];
propagatedBuildInputs = [ popt elfutils nss db bzip2 libarchive binutils ];

NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss";

Expand All @@ -25,6 +26,8 @@ stdenv.mkDerivation rec {
"--sharedstatedir=/com"
];

patches = [ ./rpm-4.13.0.1-bfd-config.patch ];

postPatch = ''
# For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here
substituteInPlace configure.ac --replace 'python''${PYTHON_VERSION}' ${python.executable}
Expand Down
11 changes: 11 additions & 0 deletions pkgs/tools/package-management/rpm/rpm-4.13.0.1-bfd-config.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
diff -ru rpm-4.13.0.1/tools/sepdebugcrcfix.c rpm-4.13.0.1.new/tools/sepdebugcrcfix.c
--- rpm-4.13.0.1/tools/sepdebugcrcfix.c 2017-02-16 10:40:09.988649399 +0100
+++ rpm-4.13.0.1.new/tools/sepdebugcrcfix.c 2017-04-15 00:02:21.151359876 +0200
@@ -28,6 +28,7 @@
#include <error.h>
#include <libelf.h>
#include <gelf.h>
+#include <config.h>
#include <bfd.h>

#define _(x) x

0 comments on commit fed7d4a

Please sign in to comment.