From 9b09ff673954c459218e2c664386286ca68aae51 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 24 Jul 2021 23:55:26 +0200 Subject: [PATCH] gnu: esmtp: Always assume that -lesmtp will work. libesmtp 1.1.0 removed the libesmtp-config helper in favour of pkg-config. This does not use that (I lack the chops and the patience). Assume that the build environment has everything set up for us, which is true on Guix. --- configure.ac | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 9252ec2..7ccf71a 100644 --- a/configure.ac +++ b/configure.ac @@ -32,15 +32,8 @@ then AC_CHECK_HEADER(libesmtp.h, ,[AC_MSG_ERROR([libesmtp.h not found in $with_libesmtp])]) fi AC_MSG_CHECKING(for libESMTP) -if libesmtp-config --version > /dev/null 2>&1 -then - AC_MSG_RESULT(yes) - CFLAGS="$CFLAGS `libesmtp-config --cflags`" - LIBS="$LIBS `libesmtp-config --libs`" -else - AC_MSG_RESULT(no) - AC_MSG_ERROR(libESMTP library not found) -fi +AC_MSG_RESULT(assumed) +LIBS="$LIBS -lesmtp" jrf_FUNC_GETOPT -- 2.32.0 d=ffd1da975f2b8b4f7d9b3272a4b67f9d1167e750'>refslogtreecommitdiff
path: root/tests/gem.scm
AgeCommit message (Expand)Author
2023-05-31tests: Use quasiquoted 'match' patterns for package sexps....Turns out it's easier to read. * tests/cpan.scm ("cpan->guix-package"): Use a quasiquoted pattern. * tests/elpa.scm (eval-test-with-elpa): Likewise. * tests/gem.scm ("gem->guix-package") ("gem->guix-package with a specific version") ("gem-recursive-import") ("gem-recursive-import with a specific version"): Likewise. * tests/hexpm.scm ("hexpm-recursive-import"): Likewise. * tests/opam.scm ("opam->guix-package"): Likewise. * tests/pypi.scm ("pypi->guix-package, no wheel") ("pypi->guix-package, wheels") ("pypi->guix-package, no usable requirement file.") ("pypi->guix-package, package name contains \"-\" followed by digits"): Likewise. * tests/texlive.scm ("texlive->guix-package"): Likewise. Ludovic Courtès
2023-05-31import: gem: Updater provides input list....* guix/import/gem.scm (import-release): Add 'inputs' field. * tests/gem.scm ("package-latest-release"): New test. Ludovic Courtès
2023-05-31import: gem: Factorize "bundler" special case for name mapping....* guix/import/gem.scm (ruby-package-name): Add "bundler" special case. (gem->guix-package): Adjust accordingly. * tests/gem.scm ("gem-recursive-import") ("gem-recursive-import with a specific version"): Remove "ruby-bundler" from the expected packages. Ludovic Courtès
2022-09-17import: gem: Support importing a specific version of a gem....* guix/import/gem.scm: (rubygems-fetch, gem->guix-package) (gem-recursive-import): Fix to fetch the specified version of the gem. * guix/scripts/import/gem.scm (show-help): Update the help message. (guix-import-gem): Modify so the version number to be passed to subsequent procedures. * tests/gem.scm: Add tests. * doc/guix.texi (Invoking guix import): Document. Signed-off-by: Christopher Baines <mail@cbaines.net> Taiju HIGASHI