bencodetools: rename from libbencodetools, enable tests

This commit is contained in:
OPNA2608 2022-07-30 22:16:01 +02:00 committed by Rick van Schijndel
parent d17d1348c2
commit d6dbe27eb4
4 changed files with 11 additions and 6 deletions

View file

@ -6,7 +6,7 @@
, which , which
, makeWrapper , makeWrapper
, libao , libao
, libbencodetools , bencodetools
, sox , sox
, lame , lame
, flac , flac
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
libao libao
libbencodetools bencodetools
sox sox
lame lame
flac flac
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
]; ];
configureFlags = [ configureFlags = [
"--bencode-tools-prefix=${libbencodetools}" "--bencode-tools-prefix=${bencodetools}"
]; ];
enableParallelBuilding = true; enableParallelBuilding = true;

View file

@ -5,7 +5,7 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libbencodetools"; pname = "bencodetools";
version = "unstable-2022-05-11"; version = "unstable-2022-05-11";
src = fetchFromGitLab { src = fetchFromGitLab {
@ -27,6 +27,10 @@ stdenv.mkDerivation rec {
python3 python3
]; ];
# installCheck instead of check due to -install_name'd library on Darwin
doInstallCheck = stdenv.buildPlatform == stdenv.hostPlatform;
installCheckTarget = "check";
meta = with lib; { meta = with lib; {
description = "Collection of tools for manipulating bencoded data"; description = "Collection of tools for manipulating bencoded data";
homepage = "https://gitlab.com/heikkiorsila/bencodetools"; homepage = "https://gitlab.com/heikkiorsila/bencodetools";

View file

@ -700,6 +700,7 @@ mapAliases ({
letsencrypt = throw "'letsencrypt' has been renamed to/replaced by 'certbot'"; # Converted to throw 2022-02-22 letsencrypt = throw "'letsencrypt' has been renamed to/replaced by 'certbot'"; # Converted to throw 2022-02-22
libGL_driver = throw "'libGL_driver' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-02-22 libGL_driver = throw "'libGL_driver' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-02-22
libaudit = throw "'libaudit' has been renamed to/replaced by 'audit'"; # Converted to throw 2022-02-22 libaudit = throw "'libaudit' has been renamed to/replaced by 'audit'"; # Converted to throw 2022-02-22
libbencodetools = bencodetools; # Added 2022-07-30
libbluedevil = throw "'libbluedevil' (Qt4) is unmaintained and unused since 'kde4.bluedevil's removal in 2017"; # Added 2022-06-14 libbluedevil = throw "'libbluedevil' (Qt4) is unmaintained and unused since 'kde4.bluedevil's removal in 2017"; # Added 2022-06-14
libcanberra_gtk2 = throw "'libcanberra_gtk2' has been renamed to/replaced by 'libcanberra-gtk2'"; # Converted to throw 2022-02-22 libcanberra_gtk2 = throw "'libcanberra_gtk2' has been renamed to/replaced by 'libcanberra-gtk2'"; # Converted to throw 2022-02-22
libcanberra_gtk3 = throw "'libcanberra_gtk3' has been renamed to/replaced by 'libcanberra-gtk3'"; # Converted to throw 2022-02-22 libcanberra_gtk3 = throw "'libcanberra_gtk3' has been renamed to/replaced by 'libcanberra-gtk3'"; # Converted to throw 2022-02-22

View file

@ -17348,6 +17348,8 @@ with pkgs;
belr = callPackage ../development/libraries/belr { }; belr = callPackage ../development/libraries/belr { };
bencodetools = callPackage ../development/libraries/bencodetools { };
beignet = callPackage ../development/libraries/beignet { beignet = callPackage ../development/libraries/beignet {
inherit (llvmPackages_6) libllvm libclang; inherit (llvmPackages_6) libllvm libclang;
}; };
@ -18944,8 +18946,6 @@ with pkgs;
libbde = callPackage ../development/libraries/libbde { }; libbde = callPackage ../development/libraries/libbde { };
libbencodetools = callPackage ../development/libraries/libbencodetools { };
libbdplus = callPackage ../development/libraries/libbdplus { }; libbdplus = callPackage ../development/libraries/libbdplus { };
libblockdev = callPackage ../development/libraries/libblockdev { }; libblockdev = callPackage ../development/libraries/libblockdev { };