Displaying 20 results from an estimated 3000 matches similar to: "[PATCH] run.in: Quote contents of @VAR@ substitutions"
2016 Oct 27
1
[PATCH] run.in: Quote contents of @VAR@ substitutions
---
run.in | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/run.in b/run.in
index 8fdf454..438a68c 100755
--- a/run.in
+++ b/run.in
@@ -140,15 +140,15 @@ export PERL_VALGRIND=1
export PERL_DESTRUCT_LEVEL=2
# For Python.
-export PYTHON=@PYTHON@
+export PYTHON="@PYTHON@"
prepend PYTHONPATH "$b/python/.libs"
prepend PYTHONPATH
2017 Sep 06
1
Re: [PATCH] run.in: Quote contents of @VAR@ substitutions
* Richard W.M. Jones:
> I believe this has already been applied upstream
> (commit eecb1d81777219113f7e5434829aca6f93a92b9a) so it's not necessary.
Sorry, I should have indicated that this patch was for hivex. The quotes
are still missing there.
Cheers,
-Hilko
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
2017 Sep 05
0
Re: [PATCH] run.in: Quote contents of @VAR@ substitutions
Hi Hilko,
I believe this has already been applied upstream
(commit eecb1d81777219113f7e5434829aca6f93a92b9a) so it's not necessary.
Let me know if I've missed something.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-p2v converts physical machines to virtual machines.
2014 Jan 13
3
[PATCH 1/3] ruby: Fix tests for out-of-tree build, simplify test scripts
---
configure.ac | 1 +
ruby/run-ruby-tests | 27 ---------------------------
ruby/run-ruby-tests.in | 27 +++++++++++++++++++++++++++
ruby/tests/tc_010_load.rb | 2 --
ruby/tests/tc_021_close.rb | 2 --
ruby/tests/tc_120_rlenvalue.rb | 4 +---
ruby/tests/tc_200_write.rb | 2 --
ruby/tests/tc_210_setvalue.rb | 2 --
run.in
2014 Jan 10
4
[PATCH] Add a minimal hive with "special" keys and values
---
images/README | 15 +++++++++++++++
images/mkzero/Makefile | 7 +++++++
images/mkzero/mkzero.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
images/special | Bin 0 -> 8192 bytes
4 files changed, 70 insertions(+)
create mode 100644 images/mkzero/Makefile
create mode 100644 images/mkzero/mkzero.c
create mode 100644 images/special
diff --git a/images/README
2011 Feb 10
0
Testing custom function and puupet LoadError
I am using ruby-enterprise, installed under: /opt/ruby-enterprise,
when I try to run ruby interpreter I get error about loading puppet:
# ruby -rpuppet netbackup_servers.rb
ruby: no such file to load -- puppet (LoadError)
What do I need to set RUBYLIB env var to? I tried this:
export RUBYLIB=$RUBYLIB:/opt/ruby-enterprise/lib/ruby/
export RUBYLIB=$RUBYLIB:/opt/ruby-enterprise/lib/ruby/1.8/
2005 Jan 17
1
problem installing RSPython
Hi,
I'm trying to install RSPython v0.5-4 on a debian machine (woody,
testing) but am having the following problem.
$R CMD INSTALL -c --library=/usr/lib/R/library RSPython_0.5-4.tar.gz 2>err
But then...
$python
>> import RS
Error in .PythonInit() : Error in Python call: values
Error in library("RSPython") : .First.lib failed for 'RSPython'
Traceback (most recent
2008 Oct 06
1
python-sybase on Centos 5 x86_64
Installed the freetds rpms from centos-extras, also tried the ones in
rpmforge
http://mirror.centos.org/centos/5/extras/x86_64/RPMS/freetds-0.64-11.el5.centos.x86_64.rpm
http://mirror.centos.org/centos/5/extras/x86_64/RPMS/freetds-devel-0.64-11.el5.centos.x86_64.rpm
Compiled python-sybase-0.39 by hand, and also via rpm.
2015 Feb 13
0
Re: [PATCH] ./run: Use 'prepend' function to build paths.
On Friday 13 February 2015 10:16:34 Richard W.M. Jones wrote:
> 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:
2018 Jan 25
0
Re: python 3 bindings on libguestfs
On Thu, Jan 25, 2018 at 03:09:47PM +0000, abinaya.manikandan@wipro.com wrote:
> Hi,
>
> As per you suggestion I have set PYTHONPATH.
> Now the issue is different.
>
> [root@euca-172-31-15-221 ~]$ echo $PYTHONPATH
> /opt/libguestfs/x86_64/1.32.10/lib64:/opt/libguestfs/x86_64/1.32.10/lib/python3.6/site-packages/:
> [root@euca-172-31-15-221 ~]$ python
> Python 3.6.0
2009 Sep 08
0
RSPython can't find module
Hi Folks,
After seeing some tips on the web, I managed to get RSPython-0.7-1
installed with R 2.9.0 (on Ubuntu 8.04). I had to get rid of the extra
comma in the PythonPath function in Python.S:
.PythonPath <-
function(path=NULL, merge = TRUE)
{
dirSep <- ifelse(R.version$os == "Win32", ";", ":",)
(remove last comma before bracket)
and I had to manually
2006 Dec 29
3
SVN Release Candidate: Please test
Hi all,
I''m getting very close to the next release of Puppet, and I need help
making sure it''s as bug-free as possible. The major changes in this
version relate to Rails (and thus resource collect/export) and
transaction internals. If you are currently using Puppet''s rails
support, you''re going to have to migrate manually, unfortunately (or
just
2013 May 23
3
hivex: Improvents in building Python bindings
Building against multiple versions of Python is a lot of fun as it is.
Add autoconf/automake/libtool (and possible distribution-specific
stuff) to the mix and things get really interesting:
On Debian and Ubuntu, building against python 3.3 requires an extra
include path as documented in
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692387>.
As discussed in
2011 Aug 24
1
Compilation error
Hi All,
I am compiling the development code of xapian (
http://trac.xapian.org/browser/trunk) and while doing *'make*' it will give
following error
PYTHONPATH="xapian:$PYTHONPATH" /usr/bin/python -c "import _xapian"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError:
2013 Sep 18
1
Cloud provisionner on CentOS 6 issue
Hi !
I am currently testing puppet on CentOS 6 and I wish to test the cloud
provisioner tool.
The problem is the following : I can''t use fog because of ruby version
issue.
The system : CentOS 6.4 with Ruby 1.8.7 (last version for CentOS)
What I did to get the problem :
install puppet-server
install module puppetlabs-cloud_provisioner
Trying install Fog -v 0.7.2 (cloud service library
2008 Dec 01
2
configuring puppet to run custom facts
Hi,
I''m following
http://reductivelabs.com/trac/puppet/wiki/PluginsInModules in order to
use a custom fact.
My modules looks like:
# ls manifests/modules/network/
manifests plugins
# ls manifests/modules/network/plugins/facter/primaryint.rb
manifests/modules/network/plugins/facter/primaryint.rb
as is said in doc.
Then:
Turn on pluginsync and specify factpath, so that the facts
2009 Feb 11
1
RSPython
Hi all,
I try to utilize RSPython to invoke Python from R. For me it works pretty
fine for basic applications, but I have 3 problems that may be related.
(1) I can't load other packages but "standard" ones also when I adjust the
PythonPath:
> importPythonModule('sys', all=T)
NULL
> importPythonModule('numpy', all=T)
Error in
2005 Feb 23
2
[LLVMdev] Python bindings for LLVM API
Hi,
I would like to share my experimental LLVM API Python bindings with the LLVM
enthusiasts. I have created Boost.Python wrappers largely for the VMCore
interface and other selected interfaces (e.g. ExecutionEngine). The
bindings provide direct runtime access to the LLVM bytecode and JIT
execution features from Python.
The bindings are complete enough so that one can e.g. run the Fibonacci
2005 Feb 24
0
[LLVMdev] Python bindings for LLVM API
Jarno,
This looks like it could be very valuable - thanks for making it
available. Just out of curiosity, do you have any specific uses in
mind for which you created these bindings?
--Vikram
http://www.cs.uiuc.edu/~vadve
http://llvm.cs.uiuc.edu/
On Feb 23, 2005, at 5:21 PM, Jarno Seppänen wrote:
> Hi,
>
> I would like to share my experimental LLVM API Python bindings with
>