Re: [GNC] Import transactions

2018-05-31 Thread GT-I9070 H
Hi  ddemott,

I use GnuCash Android since v1.0 and it works fine with GnuCash Desktop.

I write all my transactions on Android, export to .qif, import .qif in
GnuCash Desktop and add exchange rates (I work with multiple currencies.).
That's all I need to do.

Soon GnuCash Android will export to CSV with exchange rates/price, so we
just need to worry about writing on Android!

I think I'd better export to .qif than share xml (file  .gnucash). The xml
is very useful when we are with a new GnuCash Android and we need to take
our data from Desktop to Android.

Regards
GTI

2018-05-30 10:35 GMT-04:00 ddem...@juno.com :

> I'm new to GnuCash and trying to learn and use some of its features. I
> downloaded version 3.1 and experiencing some very unexpected behavior. In
> particular, I'm trying (unsuccessfully) to export transactions from GnuCash
> for Android and import them into GnuCash. Here's what I experience: GnuCash
> for AndroidSolicits filename before selecting the export type (qif, xml).
> Regardless what I specify, ".zip" appends to the filename.
> Selecting 'qif' crashes the app.
> Selecting 'xml' works but I discovered that the resultant file is not
> actually "zipped".
> Exporting to 'xml' does not allow the same date selection and delete after
> exporting options as offered for 'qif' exports.
> GnuCashRenaming the 'xml' file exported from Android to '.gnucash' will
> open with my transactions. Unfortunately, I can neither import transactions
> from a 'gnucash' file nor can I export transactions to a 'qif' file.
> I can export to 'csv' but I must manually expand every account branch
> before I can successfully include all sub-accounts for export.
> GnuCash will not import transactions from the same 'csv' file it exported.
> I'm trying to create proper expectations. Can someone please tell me
> whether these characteristics are imagined or real, bugs or features? Dale
> DeMott
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] AlphaVantage Stock Quotes

2018-05-31 Thread prl

On 31/05/2018 12:59, Dave Tapuska wrote:

>From the gnucash point of view it only uses the latest quote so even
returning the compact list (which is the last 100 days) is far overkill.
Perhaps a lighter weight request returning the last closing value would be
sufficient.
That would be ideal, but as far as I can see, the compact list (last 100 
days) is the smallest amount of data that can be requested using the 
TIME_SERIES_DAILY function in the AlphaVantage API 
. The only alternative in 
the documentation is full, which returns daily opening and closing 
prices for up to the last 20 years.


Peter

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] building 3.1 on Linux, problems.

2018-05-31 Thread Fred Smith
On Thu, May 31, 2018 at 02:39:11PM -0400, Dennis Powless wrote:
> Going back to basics, did you install all the dependencies?  ie cmake etc

all the ones I could find documented (probably missed some at this
point). then cmake complained about a lot more, which I installed as
encountered.

Turns out my problem was 2 or 3 things: I had mis-interpreted the docs
instructions on how to set SRCROOT (I still think it could be clearer);
the version of cmake on Centos-7.5 won't work for gnucash, I downloaded
the latest one and installed it in /usr/local/cmake, removed the RPM
version, reset the PATH to point to the new one and voila! Also, Centos
comes with a set of Boost packages that are 0.01 too old in terms of
the version number... comes with 1.53, and Gnucash wants a minimum of
1.54. Looked at downloading and installing latest, but the bizarreness
of the build system scared me off, so I tweaked the cmake config to 
accept 1.53 and ran a build. Had one problem with a return from somewhere
deep down inside /usr/include/.../.../.../.../.../.hpp where
gcc said it couldn't convert some complex object into a bool inside
a return. So I put a cast to bool in the return statement and it compiled.

At compile time I had this error, which I don't know if its important
or not:

process:28679): gnc.module-WARNING **: Could not locate module 
gnucash/tax/de_DE interface v.0
wrote 
`/home/fredex/Downloads/gnucash-3.1/lib64/gnucash/scm/ccache/2.0/gnucash/report/locale-specific/de_DE.go'

Looks like something to do with Germany, so I'm probably safe, being
in the US.

the build continued on from there and appeared to complete. next task
is to try it and see if I get smoke, or not.

thanks for your reply!

Fred
 
> On Thu, May 31, 2018 at 10:40 AM, Fred Smith
>  wrote:
> > Hi all!
> >
> > I'm trying to build 3.1 for Centos-7, and since I don't know anything
> > about cmake, am having some trouble.
> >
> > when running cmake like this:
> >
> > cmake $SRCROOT/gnucash
> >
> > I'm getting these errors:
> >
> > CMake Error at CMakeLists.txt:5 (file):
> >   file problem creating directory: /glib-2.0/schemas
> >
> > is this due to something in CMakeLists.txt, line five? Line 5 in
> > that file doesn't appear to have anything to do with glib, Here
> > are the first few lines:
> >
> > # CMakeLists.txt for GnuCash
> >
> > IF (WIN32 OR APPLE)
> >   CMAKE_MINIMUM_REQUIRED (VERSION 3.3.2)
> > ELSE()
> >   CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
> > ENDIF()
> >
> > PROJECT (gnucash)
> >
> > ENABLE_TESTING()
> >
> >
> >
> > then there's this one. there IS no CMakeLists.txt file in the gnome
> > directory. what am I supposed to look at to try to understand this one?
> >
> >
> > -- Performing Test have_mod_mask - Failed
> > CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
> >   Unknown CMake command "gnc_add_swig_guile_command".
> >
> > and if there WERE such a file, how would I go about fixing this?
> >
> > Assistance appreciated, thanks in advance!
> >
> >
> > --
> >  Fred Smith -- fre...@fcshome.stoneham.ma.us 
> > -
> > The Lord is like a strong tower.
> >  Those who do what is right can run to him for safety.
> > --- Proverbs 18:10 (niv) 
> > -
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see 
> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
"Not everyone who says to me, 'Lord, Lord,' will enter the kingdom of
 heaven, but only he who does the will of my Father who is in heaven."
-- Matthew 7:21 (niv) -
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.

Re: [GNC] copying files

2018-05-31 Thread Dennis Powless
Plus one on the dropbox method.  Works great for me on laptop and desktop.

D

On Thu, May 31, 2018 at 10:50 AM, Colin Law  wrote:
> On 31 May 2018 at 14:33, varda241  wrote:
>
>> Linux 18.04 mate
>>
>
> I presume you mean Ubuntu Mate 18.04.
>
> I have not heard of problems with USB readonly on Ubuntu Mate 18.04, I
> suggest you ask on the ubuntu users list
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
>
> Colin
>
>
>>
>>
>>
>> Sent from my Verizon, Samsung Galaxy smartphone
>>
>>
>>  Original message 
>> From: Colin Law 
>> Date: 5/31/18 2:33 AM (GMT-05:00)
>> To: varda241 , gnucash-user 
>> Subject: Re: [GNC] copying files
>>
>> Please reply to the list, not just to myself, Repy All is what you should
>> do in most mailer software, I am copying the list on this.
>>
>> So it is not a Gnucash problem, it is to do with your operating system.
>> Which OS and version are you using?
>>
>> Colin
>>
>> On 30 May 2018 at 23:37, varda241  wrote:
>>
>>> It.s read only on both and there is no restrction. In Linux it is 777.
>>>
>>>
>>>
>>> Sent from my Verizon, Samsung Galaxy smartphone
>>>
>>>
>>>  Original message 
>>> From: Colin Law 
>>> Date: 5/30/18 4:09 PM (GMT-05:00)
>>> To: Varda Rotenberg 
>>> Cc: gnucash-user 
>>> Subject: Re: [GNC] copying files
>>>
>>> On 30 May 2018 at 21:02, Varda Rotenberg via gnucash-user <
>>> gnucash-user@gnucash.org> wrote:
>>>

 Hi:
 I can copy the gnucash data from my desk top and back with no problem.
 However, when I place the flush card in my laptop it reads as "read only" I
 did edit the account and took the place holder check off as instructed and
 it did not help . Both computer and laptop or ubuntu 18.04 mate, and have
 the same user name and password. I was hoping to be able to travel with the
 laptop and keep gnucash current. Any suggestion?

>>>
>>> Is it read only in the file manager or just in GC?
>>>
>>> Colin
>>>
>>>
>>
>>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] building 3.1 on Linux, problems.

2018-05-31 Thread Dennis Powless
Going back to basics, did you install all the dependencies?  ie cmake etc

d

On Thu, May 31, 2018 at 10:40 AM, Fred Smith
 wrote:
> Hi all!
>
> I'm trying to build 3.1 for Centos-7, and since I don't know anything
> about cmake, am having some trouble.
>
> when running cmake like this:
>
> cmake $SRCROOT/gnucash
>
> I'm getting these errors:
>
> CMake Error at CMakeLists.txt:5 (file):
>   file problem creating directory: /glib-2.0/schemas
>
> is this due to something in CMakeLists.txt, line five? Line 5 in
> that file doesn't appear to have anything to do with glib, Here
> are the first few lines:
>
> # CMakeLists.txt for GnuCash
>
> IF (WIN32 OR APPLE)
>   CMAKE_MINIMUM_REQUIRED (VERSION 3.3.2)
> ELSE()
>   CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
> ENDIF()
>
> PROJECT (gnucash)
>
> ENABLE_TESTING()
>
>
>
> then there's this one. there IS no CMakeLists.txt file in the gnome
> directory. what am I supposed to look at to try to understand this one?
>
>
> -- Performing Test have_mod_mask - Failed
> CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
>   Unknown CMake command "gnc_add_swig_guile_command".
>
> and if there WERE such a file, how would I go about fixing this?
>
> Assistance appreciated, thanks in advance!
>
>
> --
>  Fred Smith -- fre...@fcshome.stoneham.ma.us -
> The Lord is like a strong tower.
>  Those who do what is right can run to him for safety.
> --- Proverbs 18:10 (niv) -
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] building 3.1 on Linux, problems.

2018-05-31 Thread John Ralls


> On May 31, 2018, at 9:33 AM, Fred Smith  wrote:
> 
> On Thu, May 31, 2018 at 08:32:23AM -0700, John Ralls wrote:
>> 
>> 
>>> On May 31, 2018, at 7:40 AM, Fred Smith  
>>> wrote:
>>> 
>>> Hi all!
>>> 
>>> I'm trying to build 3.1 for Centos-7, and since I don't know anything
>>> about cmake, am having some trouble.
>>> 
>>> when running cmake like this:
>>> 
>>> cmake $SRCROOT/gnucash
>>> 
>>> I'm getting these errors:
>>> 
>>> CMake Error at CMakeLists.txt:5 (file):
>>>   file problem creating directory: /glib-2.0/schemas
>>> 
>>> is this due to something in CMakeLists.txt, line five? Line 5 in
>>> that file doesn't appear to have anything to do with glib, Here
>>> are the first few lines:
>>> 
>>>   # CMakeLists.txt for GnuCash
>>> 
>>>   IF (WIN32 OR APPLE)
>>> CMAKE_MINIMUM_REQUIRED (VERSION 3.3.2)
>>>   ELSE()
>>> CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
>>>   ENDIF()
>>> 
>>>   PROJECT (gnucash)
>>> 
>>>   ENABLE_TESTING()
>>> 
>>> 
>>> 
>>> then there's this one. there IS no CMakeLists.txt file in the gnome
>>> directory. what am I supposed to look at to try to understand this one?
>>> 
>>> 
>>> -- Performing Test have_mod_mask - Failed
>>> CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
>>>   Unknown CMake command "gnc_add_swig_guile_command".
>>> 
>>> and if there WERE such a file, how would I go about fixing this?
>>> 
>>> Assistance appreciated, thanks in advance!
>> 
>> Did you by any chance set $SRCROOT to point to the source directory (i.e. 
>> /path/to/gnucash-3.1) instead of the source directory’s parent? If you did 
>> then you want to say “cmake  $SRCROOT”.
> 
> I downloaded the file to ~/Downloads, and from there did tar xvf 
> which produced a directory named gnucash-3.1, and that is where $SRCROOT
> points:
> 
>   $ env | grep SRCROOT
>   SRCROOT=/home/fredex/Downloads/gnucash-3.1
> 
> which way should I then be doing it? I (in my advanced years) find the
> explanations somewhat opaque. Surely my problem, not yours.
> 
> also, where is it trying to create that glib directory? the message
> says /glib/..., so am I supposed to run this as root, so it has
> permission to write into the / directory?
> 
>> 
>> That aside, if there’s no CMakeLists.txt in gnucash-3.1/gnucash/gnome then 
>> you have borked your source directory. See 
>> https://github.com/Gnucash/gnucash/blob/maint/gnucash/gnome/CMakeLists.txt
> 
> I'll look into this.
> 
> thanks for the reply!
> 

From https://wiki.gnucash.org/wiki/Building#CMake:
"   • There is a subdirectory named gnucash inside the source directory. 
Make sure that you don't pass that directory as source directory to cmake."

You passed that directory to cmake. The problem with /glib arises because cmake 
is trying to start with the wrong CMakeLists.txt.

Please study https://wiki.gnucash.org/wiki/Building#CMake until you understand 
it.

Regards,
John Ralls
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] building 3.1 on Linux, problems.

2018-05-31 Thread Fred Smith
On Thu, May 31, 2018 at 08:32:23AM -0700, John Ralls wrote:
> 
> 
> > On May 31, 2018, at 7:40 AM, Fred Smith  
> > wrote:
> > 
> > Hi all!
> > 
> > I'm trying to build 3.1 for Centos-7, and since I don't know anything
> > about cmake, am having some trouble.
> > 
> > when running cmake like this:
> > 
> > cmake $SRCROOT/gnucash
> > 
> > I'm getting these errors:
> > 
> > CMake Error at CMakeLists.txt:5 (file):
> >   file problem creating directory: /glib-2.0/schemas
> > 
> > is this due to something in CMakeLists.txt, line five? Line 5 in
> > that file doesn't appear to have anything to do with glib, Here
> > are the first few lines:
> > 
> ># CMakeLists.txt for GnuCash
> > 
> >IF (WIN32 OR APPLE)
> >  CMAKE_MINIMUM_REQUIRED (VERSION 3.3.2)
> >ELSE()
> >  CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
> >ENDIF()
> > 
> >PROJECT (gnucash)
> > 
> >ENABLE_TESTING()
> > 
> > 
> > 
> > then there's this one. there IS no CMakeLists.txt file in the gnome
> > directory. what am I supposed to look at to try to understand this one?
> > 
> > 
> > -- Performing Test have_mod_mask - Failed
> > CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
> >   Unknown CMake command "gnc_add_swig_guile_command".
> > 
> > and if there WERE such a file, how would I go about fixing this?
> > 
> > Assistance appreciated, thanks in advance!
> 
> Did you by any chance set $SRCROOT to point to the source directory (i.e. 
> /path/to/gnucash-3.1) instead of the source directory’s parent? If you did 
> then you want to say “cmake  $SRCROOT”.

I downloaded the file to ~/Downloads, and from there did tar xvf 
which produced a directory named gnucash-3.1, and that is where $SRCROOT
points:

$ env | grep SRCROOT
SRCROOT=/home/fredex/Downloads/gnucash-3.1

which way should I then be doing it? I (in my advanced years) find the
explanations somewhat opaque. Surely my problem, not yours.

also, where is it trying to create that glib directory? the message
says /glib/..., so am I supposed to run this as root, so it has
permission to write into the / directory?

> 
> That aside, if there’s no CMakeLists.txt in gnucash-3.1/gnucash/gnome then 
> you have borked your source directory. See 
> https://github.com/Gnucash/gnucash/blob/maint/gnucash/gnome/CMakeLists.txt

I'll look into this.

thanks for the reply!

Fred

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us 
Do you not know? Have you not heard? 
The LORD is the everlasting God, the Creator of the ends of the earth. 
  He will not grow tired or weary, and his understanding no one can fathom.
- Isaiah 40:28 (niv) -
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

[GNC] HBCI-Card: could not read context id list from card (-2) - on FreeBSD 11.1

2018-05-31 Thread Dennis Schneck


   Hello,
   having Problem with GNUCASH 3.1 with libchipcard-5.0.4, ccid-1.4.29,
   aqbanking-5.7.8_1
   on FreeBSD 11.1.
   Wanna use it with HBCI-Chipcard an HBCI 3.0.
   I worked with GNUCASH 2.6.x some weeks ago.
   But then it stopped. So I tryed with port from GNUCASH 3.1.
   The default Package of GNUCASH did not work, because there is no
   aqbanking Support.
   Runing "Tools -> Online Banking Setup -> Next -> Start Aqbanking Wizard
   -> Create User -> Next -> HBCI backend using AqHBCI -> Import already
   Used Chip Card"

   But got this error: " could not read context id  list from card (-2) "

   If check chipcardreader with pcsc_scan I can see that a Chipcard is
   inserted.

   # pcsc_scan

   Using reader plug'n play mechanism
   Scanning present readers...
   0: SCM Microsystems Inc. SCR 331 (6050) 00 00

   Thu May 31 18:11:25 2018
Reader 0: SCM Microsystems Inc. SCR 331 (605029CF) 00 00
 Card state: Card inserted, Exclusive Mode,
   
   
   Possibly identified card (using
   /usr/local/share/pcsc/smartcard_list.txt):
   ...
   Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ...

   If running pcscd in forground "pcscd -f"
   there is no output.

   What can I do ?

   Thanks
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] building 3.1 on Linux, problems.

2018-05-31 Thread John Ralls


> On May 31, 2018, at 7:40 AM, Fred Smith  wrote:
> 
> Hi all!
> 
> I'm trying to build 3.1 for Centos-7, and since I don't know anything
> about cmake, am having some trouble.
> 
> when running cmake like this:
> 
>   cmake $SRCROOT/gnucash
> 
> I'm getting these errors:
> 
>   CMake Error at CMakeLists.txt:5 (file):
> file problem creating directory: /glib-2.0/schemas
> 
> is this due to something in CMakeLists.txt, line five? Line 5 in
> that file doesn't appear to have anything to do with glib, Here
> are the first few lines:
> 
># CMakeLists.txt for GnuCash
> 
>IF (WIN32 OR APPLE)
>  CMAKE_MINIMUM_REQUIRED (VERSION 3.3.2)
>ELSE()
>  CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
>ENDIF()
> 
>PROJECT (gnucash)
> 
>ENABLE_TESTING()
> 
> 
> 
> then there's this one. there IS no CMakeLists.txt file in the gnome
> directory. what am I supposed to look at to try to understand this one?
> 
> 
>   -- Performing Test have_mod_mask - Failed
>   CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
> Unknown CMake command "gnc_add_swig_guile_command".
> 
> and if there WERE such a file, how would I go about fixing this?
> 
> Assistance appreciated, thanks in advance!

Did you by any chance set $SRCROOT to point to the source directory (i.e. 
/path/to/gnucash-3.1) instead of the source directory’s parent? If you did then 
you want to say “cmake  $SRCROOT”.

That aside, if there’s no CMakeLists.txt in gnucash-3.1/gnucash/gnome then you 
have borked your source directory. See 
https://github.com/Gnucash/gnucash/blob/maint/gnucash/gnome/CMakeLists.txt


Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] copying files

2018-05-31 Thread Colin Law
On 31 May 2018 at 14:33, varda241  wrote:

> Linux 18.04 mate
>

I presume you mean Ubuntu Mate 18.04.

I have not heard of problems with USB readonly on Ubuntu Mate 18.04, I
suggest you ask on the ubuntu users list
https://lists.ubuntu.com/mailman/listinfo/ubuntu-users

Colin


>
>
>
> Sent from my Verizon, Samsung Galaxy smartphone
>
>
>  Original message 
> From: Colin Law 
> Date: 5/31/18 2:33 AM (GMT-05:00)
> To: varda241 , gnucash-user 
> Subject: Re: [GNC] copying files
>
> Please reply to the list, not just to myself, Repy All is what you should
> do in most mailer software, I am copying the list on this.
>
> So it is not a Gnucash problem, it is to do with your operating system.
> Which OS and version are you using?
>
> Colin
>
> On 30 May 2018 at 23:37, varda241  wrote:
>
>> It.s read only on both and there is no restrction. In Linux it is 777.
>>
>>
>>
>> Sent from my Verizon, Samsung Galaxy smartphone
>>
>>
>>  Original message 
>> From: Colin Law 
>> Date: 5/30/18 4:09 PM (GMT-05:00)
>> To: Varda Rotenberg 
>> Cc: gnucash-user 
>> Subject: Re: [GNC] copying files
>>
>> On 30 May 2018 at 21:02, Varda Rotenberg via gnucash-user <
>> gnucash-user@gnucash.org> wrote:
>>
>>>
>>> Hi:
>>> I can copy the gnucash data from my desk top and back with no problem.
>>> However, when I place the flush card in my laptop it reads as "read only" I
>>> did edit the account and took the place holder check off as instructed and
>>> it did not help . Both computer and laptop or ubuntu 18.04 mate, and have
>>> the same user name and password. I was hoping to be able to travel with the
>>> laptop and keep gnucash current. Any suggestion?
>>>
>>
>> Is it read only in the file manager or just in GC?
>>
>> Colin
>>
>>
>
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] building 3.1 on Linux, problems.

2018-05-31 Thread Fred Smith
Hi all!

I'm trying to build 3.1 for Centos-7, and since I don't know anything
about cmake, am having some trouble.

when running cmake like this:

cmake $SRCROOT/gnucash

I'm getting these errors:

CMake Error at CMakeLists.txt:5 (file):
  file problem creating directory: /glib-2.0/schemas

is this due to something in CMakeLists.txt, line five? Line 5 in
that file doesn't appear to have anything to do with glib, Here
are the first few lines:

# CMakeLists.txt for GnuCash

IF (WIN32 OR APPLE)
  CMAKE_MINIMUM_REQUIRED (VERSION 3.3.2)
ELSE()
  CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
ENDIF()

PROJECT (gnucash)

ENABLE_TESTING()



then there's this one. there IS no CMakeLists.txt file in the gnome
directory. what am I supposed to look at to try to understand this one?


-- Performing Test have_mod_mask - Failed
CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
  Unknown CMake command "gnc_add_swig_guile_command".

and if there WERE such a file, how would I go about fixing this?

Assistance appreciated, thanks in advance!


-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
The Lord is like a strong tower. 
 Those who do what is right can run to him for safety.
--- Proverbs 18:10 (niv) -
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] copying files

2018-05-31 Thread varda241 via gnucash-user


Linux 18.04 mate


Sent from my Verizon, Samsung Galaxy smartphone

 Original message 
From: Colin Law  
Date: 5/31/18  2:33 AM  (GMT-05:00) 
To: varda241 , gnucash-user  
Subject: Re: [GNC] copying files 

Please reply to the list, not just to myself, Repy All is what you should do in 
most mailer software, I am copying the list on this.

So it is not a Gnucash problem, it is to do with your operating system.  Which 
OS and version are you using?

Colin

On 30 May 2018 at 23:37, varda241  wrote:


It.s read only on both and there is no restrction. In Linux it is 777.


Sent from my Verizon, Samsung Galaxy smartphone

 Original message 
From: Colin Law  
Date: 5/30/18  4:09 PM  (GMT-05:00) 
To: Varda Rotenberg  
Cc: gnucash-user  
Subject: Re: [GNC] copying files 

On 30 May 2018 at 21:02, Varda Rotenberg via gnucash-user 
 wrote:


Hi:

I can copy the gnucash data from my desk top and back with no problem. However, 
when I place the flush card in my laptop it reads as "read only" I did edit the 
account and took the place holder check off as instructed and it did not help . 
Both computer and laptop or ubuntu 18.04 mate, and have the same user name and 
password. I was hoping to be able to travel with the laptop and keep gnucash 
current. Any suggestion?

Is it read only in the file manager or just in GC?
Colin
 



___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Import transactions

2018-05-31 Thread Liz
On Wed, 30 May 2018 14:35:08 GMT
"ddem...@juno.com"  wrote:

> I'm new to GnuCash and trying to learn and use some of its features.
> I downloaded version 3.1 and experiencing some very unexpected
> behavior. In particular, I'm trying (unsuccessfully) to export
> transactions from GnuCash for Android and import them into GnuCash.
> Here's what I experience: GnuCash for AndroidSolicits filename before
> selecting the export type (qif, xml). Regardless what I specify,
> ".zip" appends to the filename. 

Unzip the file from the Android and then it will import.
Liz
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] A Problem with the Budgeting tool

2018-05-31 Thread Harry Riley
Hi,
I am using GNUCash with Fedora 28 with Gnome.

The problem I am having is when I select the budgeting option and
create a new budget it does not copy my entire Accounts tree but only
copies the assets and equity tree.

What I need for it to do is to copy my entire account hierachy when I
select new budget.

If anyone can advise on what I am doing wrong I would appreciate it.



-- 

Harry C.Riley
912-844-3090
harry.c.ri...@gmail.com
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Associated Files in 3.1

2018-05-31 Thread DaveC49
Christian
V3.1 compiled on Linux Mint using the XML backend works fine with associated
files/locations setting them, retrievingthem after closing and reopening the
program and opening the locations without any problems so it is possibly
associated with the sqllite backend or perhaps the DB backends in general. I
think there was a post a few days ago about retreiving Notes/Descriptions
from the DB's which was similar in that they were present in the DB but
could not be retieved into Gnucash. Comments on that post may be relevant.

David Cousens





-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] AlphaVantage Stock Quotes

2018-05-31 Thread Dave Tapuska
So I've constantly run into issues getting quotes for stocks I have listed.
Sometimes it loads some of them, and it seems completely random.

I'm using 3.0-118-gd2ef5fd0f+ (2018-04-28) with Finance Quote 1.47.

I had a closer look at why the individual requests were taking so long.
(Upwards of 1s per request) and it appears that there is throttling in the
perl module of Finance::Quote to work around rate limiting on the server
side. (See
https://github.com/finance-quote/finance-quote/blob/master/lib/Finance/Quote/AlphaVantage.pm#L252;
causing a delay of 700ms) per request.

If you add the connection time in here and increase the number of stocks
then you just hit a timeout that gnucash is leaving for the requests and it
seems it just generally fails all the time.

Anyone can validate what I am seeing? Should I move to another data source?
Does Alphavantage have any feedback?

>From the gnucash point of view it only uses the latest quote so even
returning the compact list (which is the last 100 days) is far overkill.
Perhaps a lighter weight request returning the last closing value would be
sufficient.

dave.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] copying files

2018-05-31 Thread DaveC49
Varda,
I travel with a laptop and use a desktop at home. If you have internet
access while travelling I have had no problem with putting the GnuCash files
in a Dropbox account synced to both the desktop and laptop. You can work
without internet access and it syncs next time access is available.  Only
problem is it doesn't cope well with GnuCash open on both machines
simultaneously to the extent that the file copy in the Dropbox on the
machine where GnuCash is last closed will overwrite any changes made on the
other machine. Mitigates against losing a USB.
I am using Linux Mint Cinnamon basd on Ubuntu 16.04 and have had no problems
with USB's being mounted readonly with it so as Adrein suggested it may be a
Mate problem.

David 



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] A Problem with the Budgeting tool

2018-05-31 Thread Harry Riley
Hi,
I am using GNUcash with Fedora 28.

The problem I am having is when I select the budgeting option and
create a new budget it does not copy my entire Accounts tree but only
copies the assets and equity tree.

What I need for it to do is to copy my entire account hierachy when I
select new budget.

If anyone can advise on what I am doing wrong I would appreciate it.

Harry
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] copying files

2018-05-31 Thread Colin Law
Please reply to the list, not just to myself, Repy All is what you should
do in most mailer software, I am copying the list on this.

So it is not a Gnucash problem, it is to do with your operating system.
Which OS and version are you using?

Colin

On 30 May 2018 at 23:37, varda241  wrote:

> It.s read only on both and there is no restrction. In Linux it is 777.
>
>
>
> Sent from my Verizon, Samsung Galaxy smartphone
>
>
>  Original message 
> From: Colin Law 
> Date: 5/30/18 4:09 PM (GMT-05:00)
> To: Varda Rotenberg 
> Cc: gnucash-user 
> Subject: Re: [GNC] copying files
>
> On 30 May 2018 at 21:02, Varda Rotenberg via gnucash-user <
> gnucash-user@gnucash.org> wrote:
>
>>
>> Hi:
>> I can copy the gnucash data from my desk top and back with no problem.
>> However, when I place the flush card in my laptop it reads as "read only" I
>> did edit the account and took the place holder check off as instructed and
>> it did not help . Both computer and laptop or ubuntu 18.04 mate, and have
>> the same user name and password. I was hoping to be able to travel with the
>> laptop and keep gnucash current. Any suggestion?
>>
>
> Is it read only in the file manager or just in GC?
>
> Colin
>
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.