Displaying 20 results from an estimated 1000 matches similar to: "[PATCH] Build and test Perl bindings out-of-tree."
2013 May 28
3
[PATCH 1/2] Revert "perl: Fix build and test to work with separated builds."
This reverts commit 4ea016dae96ed4fc3ca6d057f17fde9697f0e627.
---
.gitignore | 1 -
configure.ac | 2 --
perl/Makefile.PL.in | 6 +++---
perl/Makefile.am | 14 ++------------
perl/run-perl-tests | 21 +++++++++++++++++++++
perl/run-perl-tests.in | 21 ---------------------
run.in | 4 ++--
7 files changed, 28 insertions(+), 41
2013 May 28
0
[PATCH 2/2] perl: Use symlink hack from hivex
---
perl/Makefile.am | 1 +
1 file changed, 1 insertion(+)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index 7b8f5d3..1eb0469 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -67,6 +67,7 @@ all: Makefile-pl src_deps
$(MAKE) -f Makefile-pl
Makefile-pl: Makefile.PL
+ -[ $(srcdir) != $(builddir) ] && cp -rsu $(abs_srcdir)/. $(builddir)/.
perl Makefile.PL
2011 Nov 23
1
[PATCH] run script: Don't overwrite LD_LIBRARY_PATH and PERL5LIB
This change allows the run scripts of virt-v2v and libguestfs to be chained.
---
run.in | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/run.in b/run.in
index 9388398..7cef715 100755
--- a/run.in
+++ b/run.in
@@ -37,9 +37,19 @@ b=@abs_builddir@
export TMPDIR="$b"
# Set local environment relative to this script.
-export
2015 Oct 23
1
[PATCH v3] perl: Switch to using Module::Build.
version 3:
- Split requires into configure_requires/etc.
- Use lists for extra_compiler_flags, extra_linker_flags.
- Suppress .packlist file.
- Set the release_status field.
Rich.
2012 Jan 10
1
[PATCH] Prepend local library path to LD_LIBRARY_PATH for tests, instead of replacing it
Overwriting LD_LIBRARY_PATH broke some tests when running with fakeroot.
---
align/Makefile.am | 2 +-
cat/Makefile.am | 2 +-
clone/Makefile.am | 2 +-
df/Makefile.am | 2 +-
edit/Makefile.am | 2 +-
fish/Makefile.am | 2 +-
haskell/Makefile.am | 2 +-
ocaml/Makefile.am |
2013 Dec 07
0
[PATCH 2/2] Fix virt-builder tests for out-of-tree build
---
builder/test-virt-builder-list.sh | 4 ++--
builder/test-virt-builder.sh | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/builder/test-virt-builder-list.sh b/builder/test-virt-builder-list.sh
index 11305a9..ff16abe 100755
--- a/builder/test-virt-builder-list.sh
+++ b/builder/test-virt-builder-list.sh
@@ -21,9 +21,9 @@
export LANG=C
set -e
-abs_srcdir=$(cd
2015 Oct 21
1
[PATCH hivex] build: pass $(MAKE) to run-perl-tests
Instead of hardcoding "make" in run-perl-tests, pass the actual name of
make from the Makefile; the default is still "make", mostly to use the
script without having to set $MAKE.
---
perl/Makefile.am | 4 +++-
perl/run-perl-tests | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index a0ae863..4632719 100644
---
2015 Oct 23
1
[PATCH] perl: Switch to using Module::Build.
Switch from 'ExtUtils::MakeMaker' to 'Module::Build'.
There's not really a huge difference here. The interfacing gymnastics
that we have to do to make Makefile.am and Module::Build talk to each
other is probably a little bit simpler.
I compared the output of 'make install' before and after, and there's
not much difference. 'perllocal.pod' is not
2019 Mar 11
2
CPAN not working, or is it?
On Monday 11 March 2019 14:28:38 Pete Biggs wrote:
> > However, as I went for bigger modules, anything that had dependences
> > were then failing as the dependencie were installed OK but then did not
> > appear to be available.
> A number of things you can do. The sort of recommended way is to
> package the perl modules into an RPM and install them that way (so that
>
2020 Apr 06
1
[v2v PATCH] tests: fix location to generated images
Some of the libvirt XMLs for tests refer to a generated phony disk
image, and so far the relative path used worked almost by chance.
(For each disk, the path to it was ../test-data/etc, and since the
overlay pointing to it is stored directly in $LIBGUESTFS_CACHEDIR,
which is $buildir/tmp, then the relative path was resolved.)
Instead, have configure place the right top-level directory in those
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
* .gitignore: Ignore RPM specfile & coverage data
* Build.PL: Generate specfile during build
* autobuild.sh: Build control file
* virt-v2v.spec.PL: RPM specfile
* MANIFEST.SKIP: Ignore test coverage data
---
.gitignore | 3 +
Build.PL | 3 +-
MANIFEST | 3 +
MANIFEST.SKIP | 1 +
autobuild.sh | 65 ++++++++++++++++++++++
virt-v2v.spec.PL | 160
2015 Oct 23
1
[PATCH v2] perl: Switch to using Module::Build.
version 2:
- Fixed handling of clean & distclean.
- Use 'all-local' instead of 'all'.
- Don't use abs_* paths in Build.PL.in.
Rich.
2011 Dec 02
1
[PATCH] build: Make valgrind tests append all output into a single log file
---
extratests/Makefile.am | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/extratests/Makefile.am b/extratests/Makefile.am
index bf6b3f9..519d0b9 100644
--- a/extratests/Makefile.am
+++ b/extratests/Makefile.am
@@ -52,12 +52,16 @@
EXTRA_DIST = suppressions
+VG_FIFO=$(abs_builddir)/valgrind.fifo
+VG_LOG=$(abs_builddir)/valgrind.log
VG = valgrind \
-
2018 Mar 01
0
Make fails with 2.3.0.1 & 2.2.34 on Mac OS X 10.7.5
1
On 01.03.2018 12:10, James Brown wrote:
>
>
>> On 1 Mar 2018, at 5:56 pm, Aki Tuomi <aki.tuomi at dovecot.fi
>> <mailto:aki.tuomi at dovecot.fi>> wrote:
>>
>>
>>
>> On 01.03.2018 07:34, James Brown wrote:
>>> On 1 Mar 2018, at 4:09 pm, Aki Tuomi <aki.tuomi at dovecot.fi
>>> <mailto:aki.tuomi at dovecot.fi>>
2014 Sep 23
0
[PATCH 03/13] syntax-check: fix makefile_at_at_check
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
align/Makefile.am | 2 +-
builder/Makefile.am | 2 +-
builder/website/Makefile.am | 2 +-
cat/Makefile.am | 4 ++--
common-rules.mk | 8 ++++----
customize/Makefile.am | 2 +-
df/Makefile.am | 4 ++--
diff/Makefile.am | 2 +-
2012 Jan 04
1
[PATCH] build: Fix automake warnings
---
perl/Makefile.am | 4 ++--
resize/Makefile.am | 8 +++++---
sparsify/Makefile.am | 8 +++++---
3 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index eff0059..5e29bbd 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -40,11 +40,9 @@ if HAVE_PERL
# a nightmare, news at 11.
# src/ dependencies
-.PHONY: src_deps
2015 Feb 13
2
[PATCH] ./run: Use 'prepend' function to build paths.
Add a bash function 'prepend' for intelligently prepending elements to
paths. eg:
prepend PYTHONPATH "/foo"
would set PYTHONPATH to "/foo" or "/foo:<previous-contents-of-PYTHONPATH>"
Tested by:
(1) Building and testing libguestfs twice: first without libguestfs
installed as a system library, and then with it installed.
(2) Examining the output of
2019 Mar 11
5
CPAN not working, or is it?
(I've just tried this on a second C7 box, literally clean install, only did it
on Friday, with the same results)
I'm replacing a dead F19 box with a new C7 one and I'm trying to get my Perl
install completed. Ultimately, I need to get Selenium::Remote::Driver
working, but I'm struggling before that.
I started off as always by using RPM's for everything I possibly can. I
2013 May 28
2
hivex: revert much of " Build and test Perl bindings out-of-tree." (887466794a40f57b84ce32524e1a650d6674c7e6)?
While trying to build the official Debian packages for libguestfs 1.22,
I noticed that instead of working around ExtUtils::MakeMaker's
limitations, I had made quite a mess of building the Perl bindings. I
have tried from different sides to fix things, but could not get it
quite right:
- EU::MM expects Makefile.PL to be in the same directory as the generated
Makefile (We work around that
2016 Sep 22
1
[PATCH v2] libvirt: read disk paths from pools (RHBZ#1366049)
A disk of type 'volume' is stored as
<source pool='pool_name' volume='volume_name'/>
and its real location is inside the 'volume_name', as 'pool_name': in
this case, query libvirt for the actual path of the specified volume in
the specified pool.
Adjust the code so that:
- for_each_disk gets the virConnectPtr, needed to do operations with
libvirt