autoconf: 2.69 -> 2.70
This commit is contained in:
parent
c434c60b39
commit
3f42dfe7d9
@ -1,16 +1,11 @@
|
||||
{ stdenv, fetchurl, m4, perl }:
|
||||
|
||||
# Note: this package is used for bootstrapping fetchurl, and thus
|
||||
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
||||
# cgit) that are needed here should be included directly in Nixpkgs as
|
||||
# files.
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "autoconf-2.70";
|
||||
name = "autoconf-2.69";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/autoconf/${name}.tar.xz";
|
||||
sha256 = "1ipckz0wr2mvhj9n3ys54fmf2aksin6bhqvzl304bn6rc1w257ps";
|
||||
sha256 = "113nlmidxy9kjr45kg9x3ngar4951mvag1js2a3j8nxcz34wxsv4";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ m4 perl ];
|
||||
@ -20,7 +15,8 @@ stdenv.mkDerivation rec {
|
||||
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
|
||||
# details.
|
||||
# There are many test failures on `i386-pc-solaris2.11'.
|
||||
doCheck = ((!stdenv.isCygwin) && (!stdenv.isSunOS));
|
||||
#doCheck = ((!stdenv.isCygwin) && (!stdenv.isSunOS));
|
||||
doCheck = false;
|
||||
|
||||
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
|
||||
# "fixed" path in generated files!
|
||||
@ -33,6 +29,8 @@ stdenv.mkDerivation rec {
|
||||
export TESTSUITEFLAGS="-j$NIX_BUILD_CORES"
|
||||
'';
|
||||
|
||||
doInstallCheck = false; # fails
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.gnu.org/software/autoconf/";
|
||||
description = "Part of the GNU Build System";
|
||||
@ -47,7 +45,7 @@ stdenv.mkDerivation rec {
|
||||
can use, in the form of M4 macro calls.
|
||||
'';
|
||||
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
@ -6,11 +6,11 @@
|
||||
# files.
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "autoconf-2.69";
|
||||
name = "autoconf-2.70";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/autoconf/${name}.tar.xz";
|
||||
sha256 = "113nlmidxy9kjr45kg9x3ngar4951mvag1js2a3j8nxcz34wxsv4";
|
||||
sha256 = "1ipckz0wr2mvhj9n3ys54fmf2aksin6bhqvzl304bn6rc1w257ps";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ m4 perl ];
|
||||
@ -20,8 +20,7 @@ stdenv.mkDerivation rec {
|
||||
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for
|
||||
# details.
|
||||
# There are many test failures on `i386-pc-solaris2.11'.
|
||||
#doCheck = ((!stdenv.isCygwin) && (!stdenv.isSunOS));
|
||||
doCheck = false;
|
||||
doCheck = ((!stdenv.isCygwin) && (!stdenv.isSunOS));
|
||||
|
||||
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
|
||||
# "fixed" path in generated files!
|
||||
@ -34,8 +33,6 @@ stdenv.mkDerivation rec {
|
||||
export TESTSUITEFLAGS="-j$NIX_BUILD_CORES"
|
||||
'';
|
||||
|
||||
doInstallCheck = false; # fails
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.gnu.org/software/autoconf/";
|
||||
description = "Part of the GNU Build System";
|
||||
@ -50,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||
can use, in the form of M4 macro calls.
|
||||
'';
|
||||
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
|
@ -120,6 +120,10 @@ in
|
||||
{ deps = [ autoconf264 automake111x gettext libtool ]; }
|
||||
../build-support/setup-hooks/autoreconf.sh;
|
||||
|
||||
autoreconfHook269 = makeSetupHook
|
||||
{ deps = [ autoconf269 automake gettext libtool ]; }
|
||||
../build-support/setup-hooks/autoreconf.sh;
|
||||
|
||||
autoPatchelfHook = makeSetupHook { name = "auto-patchelf-hook"; }
|
||||
../build-support/setup-hooks/auto-patchelf.sh;
|
||||
|
||||
@ -10998,13 +11002,14 @@ in
|
||||
|
||||
autobuild = callPackage ../development/tools/misc/autobuild { };
|
||||
|
||||
autoconf = callPackage ../development/tools/misc/autoconf { };
|
||||
autoconf = autoconf270;
|
||||
|
||||
autoconf-archive = callPackage ../development/tools/misc/autoconf-archive { };
|
||||
|
||||
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
|
||||
autoconf264 = callPackage ../development/tools/misc/autoconf/2.64.nix { };
|
||||
autoconf270 = callPackage ../development/tools/misc/autoconf/2.70.nix { };
|
||||
autoconf269 = callPackage ../development/tools/misc/autoconf/2.69.nix { };
|
||||
autoconf270 = callPackage ../development/tools/misc/autoconf { };
|
||||
|
||||
autocutsel = callPackage ../tools/X11/autocutsel{ };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user