Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
Sorry about the mess.  It finally worked.  I was able to delete what I
needed.   Thanks for all your help.

I then installed 3.5 from the repos on 19.04 (thought it was going to be
3.4) NICE surprise, indeed.

Version: 3.5
Build ID: 3.5+(2019-03-30)
Finance::Quote: 1.47

I like having the newer version of GC, but the LTS only has the older
versions of GC, so I upgraded to 19.04 and then GC too.

Thanks,

Dennis



On Fri, May 3, 2019 at 8:03 PM Dennis Powless  wrote:

> I saw that from your previous post,  just checking to make sure, thanks!!
>
> Will run it.
>
> I’m very grateful for all your help!!
>
> Sent from my iPhone
>
> > On May 3, 2019, at 5:53 PM, John Ralls  wrote:
> >
> > Locate uses a database that's generated periodically (typically weekly)
> from cron. If you've deleted files since the last time it updated the
> database you'll get files that aren't there any more. You can run
> >  sudo locate.updatedb
> > to regenerate. It scans all of storage traversing filesystem mounts so
> be prepared for it to take a long time.
> >
> > Also notice that locate matches every path matching the pattern and if
> the pattern contains no globbing characters locate treats it as *pattern*,
> i.e. it matches any path with "pattern" (or in your instant case,
> "gnucash") anywhere in it.
> >
> > I already told you how to delete all of the gnucash-installed files in
> .local:
> >
> > find ~/.local -name gnucash -o -name *gnc* -exec rm -rf {} \;
> >
> > Regards,
> > John Ralls
> >
> >
> >> On May 3, 2019, at 1:34 PM, Dennis Powless 
> wrote:
> >>
> >> When I run  locate gnucash in terminal I get 1,000's of lines.
> >>
> >> However, when I navigate to some of them some are empty (even with show
> all files checked).
> >>
> >> /home/dennis/.local/etc/gnucash/environment
> >> /home/dennis/.local/share/doc/gnucash/ChangeLog.1999
> >>
> /home/dennis/.local/share/gnucash/scm/gnucash/report/standard-reports/test/test-standard-category-report.scm
> >> /home/dennis/Applications/share/locale/ca/LC_MESSAGES/gnucash.mo
> >>
> /home/dennis/.local/lib/gnucash/scm/ccache/2.0/gnucash/gnc-modules/test/test-gnc-module-scm-init.go
> >>
> /home/dennis/Applications/libgnucash/tax/us/CMakeFiles/scm-tax-us.dir/DependInfo.cmake
> >> /home/dennis/.local/lib/gnucash/libgncmod-bi-import.so
> >> /home/dennis/.local/include/gnucash/SX-book.h
> >>
> >> Here is a few of the directories and files  each one has numerous.
> >>
> >> What can I delete?
> >>
> >> dennis@dennisLaptop1:~$ whereis gnucash
> >> gnucash:
> >>
> >>
> >> D
> >>
> >> On Fri, May 3, 2019 at 4:26 PM John Ralls  wrote:
> >> So you built in the parent directory of the sources. Not exactly
> recommended but at least it's  not the source directory itself.
> >>
> >> What files are left?
> >>
> >> Regards,
> >> John Ralls
> >>
> >>> On May 3, 2019, at 1:16 PM, Dennis Powless 
> wrote:
> >>>
> >>> I was able to run make uninstall on the Applications directory.
> >>>
> >>> The terminal completed the task.
> >>>
> >>> However, there seems to be still files hanging around.
> >>>
> >>> d
> >>>
>  On Fri, May 3, 2019 at 4:07 PM Dennis Powless 
> wrote:
> 
>  dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
>  /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
>  cmake_uninstall.cmake.in
>  /home/dennis/Applications/cmake_uninstall.cmake
>  /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in
> 
>  Can I then run the cmake uninstall from this location?
> 
>  d
> 
>  On Thu, May 2, 2019 at 9:40 PM David Cousens <
> davidcous...@bigpond.com>
>  wrote:
> 
> > John,
> >
> > Won't that simply remove the source directories. With that prefix
> Dennis
> > has
> > installed under /home/dennis/.local. If the build directory is under
> > ~/Applications/gnucash-3.1 then he will lose the manifest by using
> rm  -rf
> > on the source directory.
> >
> > If he can locate the original build directory then issuing make
> uninstall
> > from a terminal open in that directory. I have adopted the practice
> of
> > putting the build directory inside the source directory and
> retaining both
> > (I once found that the make uninstall procedure seems to reference
> the
> > source directories not simply the manifest file or the build
> directories
> > but
> > I have never checked this out fully) until after I have removed a
> build.
> > It
> > doesn't cause any problems and keeps everything you need for an
> uninstall
> > together.
> >
> > Dennis
> > Your build directory is unlikely to be gnucash-3.1, that is most
> likely
> > the
> > source directory. Where it is located is the directory from which you
> > originally executed the cmake command since you used absolute
> addressing
> > to
> > the source. It may be  inside gnucash-3.1 if you used the mkdir
> 
> > and
> > cd  commands from the terminal open 

Re: [GNC] Uninstall GC

2019-05-03 Thread Dennis Powless
I saw that from your previous post,  just checking to make sure, thanks!!  

Will run it.

I’m very grateful for all your help!!

Sent from my iPhone

> On May 3, 2019, at 5:53 PM, John Ralls  wrote:
> 
> Locate uses a database that's generated periodically (typically weekly) from 
> cron. If you've deleted files since the last time it updated the database 
> you'll get files that aren't there any more. You can run 
>  sudo locate.updatedb
> to regenerate. It scans all of storage traversing filesystem mounts so be 
> prepared for it to take a long time.
> 
> Also notice that locate matches every path matching the pattern and if the 
> pattern contains no globbing characters locate treats it as *pattern*, i.e. 
> it matches any path with "pattern" (or in your instant case, "gnucash") 
> anywhere in it.
> 
> I already told you how to delete all of the gnucash-installed files in .local:
> 
> find ~/.local -name gnucash -o -name *gnc* -exec rm -rf {} \;
> 
> Regards,
> John Ralls
> 
> 
>> On May 3, 2019, at 1:34 PM, Dennis Powless  wrote:
>> 
>> When I run  locate gnucash in terminal I get 1,000's of lines.
>> 
>> However, when I navigate to some of them some are empty (even with show all 
>> files checked).
>> 
>> /home/dennis/.local/etc/gnucash/environment
>> /home/dennis/.local/share/doc/gnucash/ChangeLog.1999
>> /home/dennis/.local/share/gnucash/scm/gnucash/report/standard-reports/test/test-standard-category-report.scm
>> /home/dennis/Applications/share/locale/ca/LC_MESSAGES/gnucash.mo
>> /home/dennis/.local/lib/gnucash/scm/ccache/2.0/gnucash/gnc-modules/test/test-gnc-module-scm-init.go
>> /home/dennis/Applications/libgnucash/tax/us/CMakeFiles/scm-tax-us.dir/DependInfo.cmake
>> /home/dennis/.local/lib/gnucash/libgncmod-bi-import.so
>> /home/dennis/.local/include/gnucash/SX-book.h
>> 
>> Here is a few of the directories and files  each one has numerous.
>> 
>> What can I delete?
>> 
>> dennis@dennisLaptop1:~$ whereis gnucash
>> gnucash:
>> 
>> 
>> D
>> 
>> On Fri, May 3, 2019 at 4:26 PM John Ralls  wrote:
>> So you built in the parent directory of the sources. Not exactly recommended 
>> but at least it's  not the source directory itself.
>> 
>> What files are left?
>> 
>> Regards,
>> John Ralls
>> 
>>> On May 3, 2019, at 1:16 PM, Dennis Powless  wrote:
>>> 
>>> I was able to run make uninstall on the Applications directory.
>>> 
>>> The terminal completed the task.
>>> 
>>> However, there seems to be still files hanging around.
>>> 
>>> d
>>> 
 On Fri, May 3, 2019 at 4:07 PM Dennis Powless  
 wrote:
 
 dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
 /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
 cmake_uninstall.cmake.in
 /home/dennis/Applications/cmake_uninstall.cmake
 /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in
 
 Can I then run the cmake uninstall from this location?
 
 d
 
 On Thu, May 2, 2019 at 9:40 PM David Cousens 
 wrote:
 
> John,
> 
> Won't that simply remove the source directories. With that prefix Dennis
> has
> installed under /home/dennis/.local. If the build directory is under
> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
> on the source directory.
> 
> If he can locate the original build directory then issuing make uninstall
> from a terminal open in that directory. I have adopted the practice of
> putting the build directory inside the source directory and retaining both
> (I once found that the make uninstall procedure seems to reference the
> source directories not simply the manifest file or the build directories
> but
> I have never checked this out fully) until after I have removed a build.
> It
> doesn't cause any problems and keeps everything you need for an uninstall
> together.
> 
> Dennis
> Your build directory is unlikely to be gnucash-3.1, that is most likely
> the
> source directory. Where it is located is the directory from which you
> originally executed the cmake command since you used absolute addressing
> to
> the source. It may be  inside gnucash-3.1 if you used the mkdir 
> and
> cd  commands from the terminal open atgnucash-3.1 before issuing
> the
> make command. Here  is a generic notation for a filename for a
> build
> file. It will have whatever name you gave it at the time. The attached
> screenshot gives you the directory structure and files in the build
> directory note the dist_manifest.txt and install_manifest.txt. These will
> be
> present in your build directory.
> Selection_009.png
> 
> 
> David Cousens
> 
> 
> 
> -
> David Cousens
> --
> Sent from:
> http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> 

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
Locate uses a database that's generated periodically (typically weekly) from 
cron. If you've deleted files since the last time it updated the database 
you'll get files that aren't there any more. You can run 
  sudo locate.updatedb
to regenerate. It scans all of storage traversing filesystem mounts so be 
prepared for it to take a long time.

Also notice that locate matches every path matching the pattern and if the 
pattern contains no globbing characters locate treats it as *pattern*, i.e. it 
matches any path with "pattern" (or in your instant case, "gnucash") anywhere 
in it.

I already told you how to delete all of the gnucash-installed files in .local:

find ~/.local -name gnucash -o -name *gnc* -exec rm -rf {} \;

Regards,
John Ralls


> On May 3, 2019, at 1:34 PM, Dennis Powless  wrote:
> 
> When I run  locate gnucash in terminal I get 1,000's of lines.
> 
> However, when I navigate to some of them some are empty (even with show all 
> files checked).
> 
> /home/dennis/.local/etc/gnucash/environment
> /home/dennis/.local/share/doc/gnucash/ChangeLog.1999
> /home/dennis/.local/share/gnucash/scm/gnucash/report/standard-reports/test/test-standard-category-report.scm
> /home/dennis/Applications/share/locale/ca/LC_MESSAGES/gnucash.mo
> /home/dennis/.local/lib/gnucash/scm/ccache/2.0/gnucash/gnc-modules/test/test-gnc-module-scm-init.go
> /home/dennis/Applications/libgnucash/tax/us/CMakeFiles/scm-tax-us.dir/DependInfo.cmake
> /home/dennis/.local/lib/gnucash/libgncmod-bi-import.so
> /home/dennis/.local/include/gnucash/SX-book.h
> 
> Here is a few of the directories and files  each one has numerous.
> 
> What can I delete?
> 
> dennis@dennisLaptop1:~$ whereis gnucash
> gnucash:
> 
> 
> D
> 
> On Fri, May 3, 2019 at 4:26 PM John Ralls  wrote:
> So you built in the parent directory of the sources. Not exactly recommended 
> but at least it's  not the source directory itself.
> 
> What files are left?
> 
> Regards,
> John Ralls
> 
> > On May 3, 2019, at 1:16 PM, Dennis Powless  wrote:
> > 
> > I was able to run make uninstall on the Applications directory.
> > 
> > The terminal completed the task.
> > 
> > However, there seems to be still files hanging around.
> > 
> > d
> > 
> > On Fri, May 3, 2019 at 4:07 PM Dennis Powless  wrote:
> > 
> >> dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
> >> /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
> >> cmake_uninstall.cmake.in
> >> /home/dennis/Applications/cmake_uninstall.cmake
> >> /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in
> >> 
> >> Can I then run the cmake uninstall from this location?
> >> 
> >> d
> >> 
> >> On Thu, May 2, 2019 at 9:40 PM David Cousens 
> >> wrote:
> >> 
> >>> John,
> >>> 
> >>> Won't that simply remove the source directories. With that prefix Dennis
> >>> has
> >>> installed under /home/dennis/.local. If the build directory is under
> >>> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
> >>> on the source directory.
> >>> 
> >>> If he can locate the original build directory then issuing make uninstall
> >>> from a terminal open in that directory. I have adopted the practice of
> >>> putting the build directory inside the source directory and retaining both
> >>> (I once found that the make uninstall procedure seems to reference the
> >>> source directories not simply the manifest file or the build directories
> >>> but
> >>> I have never checked this out fully) until after I have removed a build.
> >>> It
> >>> doesn't cause any problems and keeps everything you need for an uninstall
> >>> together.
> >>> 
> >>> Dennis
> >>> Your build directory is unlikely to be gnucash-3.1, that is most likely
> >>> the
> >>> source directory. Where it is located is the directory from which you
> >>> originally executed the cmake command since you used absolute addressing
> >>> to
> >>> the source. It may be  inside gnucash-3.1 if you used the mkdir 
> >>> and
> >>> cd  commands from the terminal open atgnucash-3.1 before issuing
> >>> the
> >>> make command. Here  is a generic notation for a filename for a
> >>> build
> >>> file. It will have whatever name you gave it at the time. The attached
> >>> screenshot gives you the directory structure and files in the build
> >>> directory note the dist_manifest.txt and install_manifest.txt. These will
> >>> be
> >>> present in your build directory.
> >>> Selection_009.png
> >>> 
> >>> 
> >>> 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
> >>> 

Re: [GNC] Uninstall GC

2019-05-03 Thread John Ralls
So you built in the parent directory of the sources. Not exactly recommended 
but at least it's  not the source directory itself.

What files are left?

Regards,
John Ralls

> On May 3, 2019, at 1:16 PM, Dennis Powless  wrote:
> 
> I was able to run make uninstall on the Applications directory.
> 
> The terminal completed the task.
> 
> However, there seems to be still files hanging around.
> 
> d
> 
> On Fri, May 3, 2019 at 4:07 PM Dennis Powless  wrote:
> 
>> dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
>> /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
>> cmake_uninstall.cmake.in
>> /home/dennis/Applications/cmake_uninstall.cmake
>> /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in
>> 
>> Can I then run the cmake uninstall from this location?
>> 
>> d
>> 
>> On Thu, May 2, 2019 at 9:40 PM David Cousens 
>> wrote:
>> 
>>> John,
>>> 
>>> Won't that simply remove the source directories. With that prefix Dennis
>>> has
>>> installed under /home/dennis/.local. If the build directory is under
>>> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
>>> on the source directory.
>>> 
>>> If he can locate the original build directory then issuing make uninstall
>>> from a terminal open in that directory. I have adopted the practice of
>>> putting the build directory inside the source directory and retaining both
>>> (I once found that the make uninstall procedure seems to reference the
>>> source directories not simply the manifest file or the build directories
>>> but
>>> I have never checked this out fully) until after I have removed a build.
>>> It
>>> doesn't cause any problems and keeps everything you need for an uninstall
>>> together.
>>> 
>>> Dennis
>>> Your build directory is unlikely to be gnucash-3.1, that is most likely
>>> the
>>> source directory. Where it is located is the directory from which you
>>> originally executed the cmake command since you used absolute addressing
>>> to
>>> the source. It may be  inside gnucash-3.1 if you used the mkdir 
>>> and
>>> cd  commands from the terminal open atgnucash-3.1 before issuing
>>> the
>>> make command. Here  is a generic notation for a filename for a
>>> build
>>> file. It will have whatever name you gave it at the time. The attached
>>> screenshot gives you the directory structure and files in the build
>>> directory note the dist_manifest.txt and install_manifest.txt. These will
>>> be
>>> present in your build directory.
>>> Selection_009.png
>>> 
>>> 
>>> 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.
>>> 
>> 
> ___
> 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] Uninstall GC

2019-05-03 Thread John Ralls
No, cmake/cmake_uninstall.cmake.in is a source file so that's your source 
directory.

try
  locate install_manifest.txt

to find your build directory.

Regards,
John Ralls

> On May 3, 2019, at 1:07 PM, Dennis Powless  wrote:
> 
> dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
> /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
> cmake_uninstall.cmake.in
> /home/dennis/Applications/cmake_uninstall.cmake
> /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in
> 
> Can I then run the cmake uninstall from this location?
> 
> d
> 
> On Thu, May 2, 2019 at 9:40 PM David Cousens 
> wrote:
> 
>> John,
>> 
>> Won't that simply remove the source directories. With that prefix Dennis
>> has
>> installed under /home/dennis/.local. If the build directory is under
>> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
>> on the source directory.
>> 
>> If he can locate the original build directory then issuing make uninstall
>> from a terminal open in that directory. I have adopted the practice of
>> putting the build directory inside the source directory and retaining both
>> (I once found that the make uninstall procedure seems to reference the
>> source directories not simply the manifest file or the build directories
>> but
>> I have never checked this out fully) until after I have removed a build. It
>> doesn't cause any problems and keeps everything you need for an uninstall
>> together.
>> 
>> Dennis
>> Your build directory is unlikely to be gnucash-3.1, that is most likely the
>> source directory. Where it is located is the directory from which you
>> originally executed the cmake command since you used absolute addressing to
>> the source. It may be  inside gnucash-3.1 if you used the mkdir 
>> and
>> cd  commands from the terminal open atgnucash-3.1 before issuing the
>> make command. Here  is a generic notation for a filename for a build
>> file. It will have whatever name you gave it at the time. The attached
>> screenshot gives you the directory structure and files in the build
>> directory note the dist_manifest.txt and install_manifest.txt. These will
>> be
>> present in your build directory.
>> Selection_009.png
>> 
>> 
>> 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.
>> 
> ___
> 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] Uninstall GC

2019-05-03 Thread Dennis Powless
I was able to run make uninstall on the Applications directory.

The terminal completed the task.

However, there seems to be still files hanging around.

d

On Fri, May 3, 2019 at 4:07 PM Dennis Powless  wrote:

> dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
> /home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
> cmake_uninstall.cmake.in
> /home/dennis/Applications/cmake_uninstall.cmake
> /home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in
>
> Can I then run the cmake uninstall from this location?
>
> d
>
> On Thu, May 2, 2019 at 9:40 PM David Cousens 
> wrote:
>
>> John,
>>
>> Won't that simply remove the source directories. With that prefix Dennis
>> has
>> installed under /home/dennis/.local. If the build directory is under
>> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
>> on the source directory.
>>
>> If he can locate the original build directory then issuing make uninstall
>> from a terminal open in that directory. I have adopted the practice of
>> putting the build directory inside the source directory and retaining both
>> (I once found that the make uninstall procedure seems to reference the
>> source directories not simply the manifest file or the build directories
>> but
>> I have never checked this out fully) until after I have removed a build.
>> It
>> doesn't cause any problems and keeps everything you need for an uninstall
>> together.
>>
>> Dennis
>> Your build directory is unlikely to be gnucash-3.1, that is most likely
>> the
>> source directory. Where it is located is the directory from which you
>> originally executed the cmake command since you used absolute addressing
>> to
>> the source. It may be  inside gnucash-3.1 if you used the mkdir 
>> and
>> cd  commands from the terminal open atgnucash-3.1 before issuing
>> the
>> make command. Here  is a generic notation for a filename for a
>> build
>> file. It will have whatever name you gave it at the time. The attached
>> screenshot gives you the directory structure and files in the build
>> directory note the dist_manifest.txt and install_manifest.txt. These will
>> be
>> present in your build directory.
>> Selection_009.png
>> 
>>
>> 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.
>>
>
___
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] Uninstall GC

2019-05-03 Thread Dennis Powless
dennis@dennisLaptop1:~$ locate cmake_uninstall.cmake
/home/dennis/.local/share/Trash/files/gnucash-maint/cmake/
cmake_uninstall.cmake.in
/home/dennis/Applications/cmake_uninstall.cmake
/home/dennis/Applications/gnucash-3.1/cmake/cmake_uninstall.cmake.in

Can I then run the cmake uninstall from this location?

d

On Thu, May 2, 2019 at 9:40 PM David Cousens 
wrote:

> John,
>
> Won't that simply remove the source directories. With that prefix Dennis
> has
> installed under /home/dennis/.local. If the build directory is under
> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
> on the source directory.
>
> If he can locate the original build directory then issuing make uninstall
> from a terminal open in that directory. I have adopted the practice of
> putting the build directory inside the source directory and retaining both
> (I once found that the make uninstall procedure seems to reference the
> source directories not simply the manifest file or the build directories
> but
> I have never checked this out fully) until after I have removed a build. It
> doesn't cause any problems and keeps everything you need for an uninstall
> together.
>
> Dennis
> Your build directory is unlikely to be gnucash-3.1, that is most likely the
> source directory. Where it is located is the directory from which you
> originally executed the cmake command since you used absolute addressing to
> the source. It may be  inside gnucash-3.1 if you used the mkdir 
> and
> cd  commands from the terminal open atgnucash-3.1 before issuing the
> make command. Here  is a generic notation for a filename for a build
> file. It will have whatever name you gave it at the time. The attached
> screenshot gives you the directory structure and files in the build
> directory note the dist_manifest.txt and install_manifest.txt. These will
> be
> present in your build directory.
> Selection_009.png
> 
>
> 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.
>
___
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] Uninstall GC

2019-05-03 Thread Dennis Powless
This is the begging of the entire terminal on the build.

dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~$ cd /home/dennis/Applications

dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~/Applications$ mkdir
build-gnucash-3.1

dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~/Applications$ ls

build-gnucash-3.1 gnucash-3.1

dennis@dennis-HP-Pavilion-Laptop-15-cc0xx:~/Applications$ cmake
-DCMAKE_INSTALL_PREFIX=/home/dennis/.local/home/dennis/Applications/gnucash-3.1

CMake Error: The source directory "/home/dennis/Applications" does not
appear to contain CMakeLists.txt.

Specify --help for usage, or press the help button on the CMake GUI.



Eventually, I was able to build GC  I was VERY confused on the cmake
command and went off of suggestions from this list back then.


D







On Fri, May 3, 2019 at 10:42 AM John Ralls  wrote:

> David,
>
> You're right, I misread his cmake command line. I should have said `rm -rf
> ~/.local`.
>
> Of course that might also have collateral damage if he's installed other
> things into .local.
>
>   find ~/.local -name *gnucash* -o -name *gnc* -exec rm -rf {} \;
>
> will safely remove everything GnuCash installs with the possible exception
> of libgwengui-gtk3.so if the system doesn't provide it.
>
> Regards,
> John Ralls
>
> > On May 2, 2019, at 6:39 PM, David Cousens 
> wrote:
> >
> > John,
> >
> > Won't that simply remove the source directories. With that prefix Dennis
> has
> > installed under /home/dennis/.local. If the build directory is under
> > ~/Applications/gnucash-3.1 then he will lose the manifest by using rm
> -rf
> > on the source directory.
> >
> > If he can locate the original build directory then issuing make uninstall
> > from a terminal open in that directory. I have adopted the practice of
> > putting the build directory inside the source directory and retaining
> both
> > (I once found that the make uninstall procedure seems to reference the
> > source directories not simply the manifest file or the build directories
> but
> > I have never checked this out fully) until after I have removed a build.
> It
> > doesn't cause any problems and keeps everything you need for an uninstall
> > together.
> >
> > Dennis
> > Your build directory is unlikely to be gnucash-3.1, that is most likely
> the
> > source directory. Where it is located is the directory from which you
> > originally executed the cmake command since you used absolute addressing
> to
> > the source. It may be  inside gnucash-3.1 if you used the mkdir 
> and
> > cd  commands from the terminal open atgnucash-3.1 before issuing
> the
> > make command. Here  is a generic notation for a filename for a
> build
> > file. It will have whatever name you gave it at the time. The attached
> > screenshot gives you the directory structure and files in the build
> > directory note the dist_manifest.txt and install_manifest.txt. These
> will be
> > present in your build directory.
> > Selection_009.png
> > 
> >
> > 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.
>
> ___
> 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] Uninstall GC

2019-05-03 Thread John Ralls
David,

You're right, I misread his cmake command line. I should have said `rm -rf 
~/.local`. 

Of course that might also have collateral damage if he's installed other things 
into .local.

  find ~/.local -name *gnucash* -o -name *gnc* -exec rm -rf {} \;
  
will safely remove everything GnuCash installs with the possible exception of 
libgwengui-gtk3.so if the system doesn't provide it.

Regards,
John Ralls

> On May 2, 2019, at 6:39 PM, David Cousens  wrote:
> 
> John,
> 
> Won't that simply remove the source directories. With that prefix Dennis has
> installed under /home/dennis/.local. If the build directory is under
> ~/Applications/gnucash-3.1 then he will lose the manifest by using rm  -rf
> on the source directory. 
> 
> If he can locate the original build directory then issuing make uninstall
> from a terminal open in that directory. I have adopted the practice of
> putting the build directory inside the source directory and retaining both
> (I once found that the make uninstall procedure seems to reference the
> source directories not simply the manifest file or the build directories but
> I have never checked this out fully) until after I have removed a build. It
> doesn't cause any problems and keeps everything you need for an uninstall
> together.
> 
> Dennis 
> Your build directory is unlikely to be gnucash-3.1, that is most likely the
> source directory. Where it is located is the directory from which you
> originally executed the cmake command since you used absolute addressing to
> the source. It may be  inside gnucash-3.1 if you used the mkdir   and
> cd  commands from the terminal open atgnucash-3.1 before issuing the
> make command. Here  is a generic notation for a filename for a build
> file. It will have whatever name you gave it at the time. The attached
> screenshot gives you the directory structure and files in the build
> directory note the dist_manifest.txt and install_manifest.txt. These will be
> present in your build directory.
> Selection_009.png
>   
> 
> 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.

___
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] Uninstall GC

2019-05-03 Thread John Ralls
Adrien,

Yeah, that got me too because the line wrapped between .local and the second 
/home/dennis. There's a space there so the install prefix is 
/home/dennis/.local and the source directory is 
/home/dennis/Applications/gnucash-3.1.

Regards,
John Ralls

> On May 2, 2019, at 9:38 PM, Adrien Monteleone 
>  wrote:
> 
> Curious about that cmake line...
> 
> Was that: /home/dennis/.local/home/dennis/Applications/gnucash-3.1?
> 
> Looks like an extra nested /home/dennis in there or am I reading that wrong? 
> (If I am, apologies for the noise)
> 
> Regards,
> Adrien
> 
>> On May 2, 2019, at 6:48 PM, John Ralls  wrote:
>> 
>> 
>> 
>>> On May 2, 2019, at 2:09 PM, Stephen M. Butler  wrote:
>>> 
>>> On 5/2/19 1:48 PM, Dennis Powless wrote:
 I've got GC 3.1 installed on my laptop running Ubuntu 19.04.  Built from
 source.
 
 
 
 This was the command I ran to install GC back then.
 
 cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local
 /home/dennis/Applications/gnucash-3.1
 
 So, my build directory is  Applications/gnucash-3.1   ???  right.
>>> 
>>> 
>>> Probably not.  Since you gave a full path (not relative) to the source,
>>> your build location could be nearly anywhere.  Specifically, it would be
>>> where you were at when the cmake was issued. 
>>> 
>>> Usually it is in a "build-xxx" folder just under Applications (next door
>>> to gnucash-3.1).  However, some use a '.build' folder inside the source
>>> code (dpkg_buildpackage does that).
>>> 
>>> You will need to find all the 'make' files and see which one contains
>>> the build for 3.1.
>>> 
 
 I then did this
 
 dennis@dennisLaptop1:~/Applications/gnucash-3.1$ make uninstall
 make: *** No rule to make target 'uninstall'.  Stop.
 
 This was the output.
>> 
>> Or just
>> rm -rf ~/Applications/gnucash-3.1
>> 
>> You could even leave it there and just remove ~/Applications/gnucash-3.1/bin 
>> from $PATH and/or delete the desktop file if that's how you launch GnuCash. 
>> Installing GnuCash from apt will put everything in /usr like all of the 
>> other programs on the machine and install a new desktop file pointing there.
>> 
>> 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.

___
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] Uninstall GC

2019-05-02 Thread Adrien Monteleone
Curious about that cmake line...

Was that: /home/dennis/.local/home/dennis/Applications/gnucash-3.1?

Looks like an extra nested /home/dennis in there or am I reading that wrong? 
(If I am, apologies for the noise)

Regards,
Adrien

> On May 2, 2019, at 6:48 PM, John Ralls  wrote:
> 
> 
> 
>> On May 2, 2019, at 2:09 PM, Stephen M. Butler  wrote:
>> 
>> On 5/2/19 1:48 PM, Dennis Powless wrote:
>>> I've got GC 3.1 installed on my laptop running Ubuntu 19.04.  Built from
>>> source.
>>> 
>>> 
>>> 
>>> This was the command I ran to install GC back then.
>>> 
>>> cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local
>>> /home/dennis/Applications/gnucash-3.1
>>> 
>>> So, my build directory is  Applications/gnucash-3.1   ???  right.
>> 
>> 
>> Probably not.  Since you gave a full path (not relative) to the source,
>> your build location could be nearly anywhere.  Specifically, it would be
>> where you were at when the cmake was issued. 
>> 
>> Usually it is in a "build-xxx" folder just under Applications (next door
>> to gnucash-3.1).  However, some use a '.build' folder inside the source
>> code (dpkg_buildpackage does that).
>> 
>> You will need to find all the 'make' files and see which one contains
>> the build for 3.1.
>> 
>>> 
>>> I then did this
>>> 
>>> dennis@dennisLaptop1:~/Applications/gnucash-3.1$ make uninstall
>>> make: *** No rule to make target 'uninstall'.  Stop.
>>> 
>>> This was the output.
> 
> Or just
>  rm -rf ~/Applications/gnucash-3.1
> 
> You could even leave it there and just remove ~/Applications/gnucash-3.1/bin 
> from $PATH and/or delete the desktop file if that's how you launch GnuCash. 
> Installing GnuCash from apt will put everything in /usr like all of the other 
> programs on the machine and install a new desktop file pointing there.
> 
> 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] Uninstall GC

2019-05-02 Thread John Ralls



> On May 2, 2019, at 2:09 PM, Stephen M. Butler  wrote:
> 
> On 5/2/19 1:48 PM, Dennis Powless wrote:
>> I've got GC 3.1 installed on my laptop running Ubuntu 19.04.  Built from
>> source.
>> 
>> 
>> 
>> This was the command I ran to install GC back then.
>> 
>> cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local
>> /home/dennis/Applications/gnucash-3.1
>> 
>> So, my build directory is  Applications/gnucash-3.1   ???  right.
> 
> 
> Probably not.  Since you gave a full path (not relative) to the source,
> your build location could be nearly anywhere.  Specifically, it would be
> where you were at when the cmake was issued. 
> 
> Usually it is in a "build-xxx" folder just under Applications (next door
> to gnucash-3.1).  However, some use a '.build' folder inside the source
> code (dpkg_buildpackage does that).
> 
> You will need to find all the 'make' files and see which one contains
> the build for 3.1.
> 
>> 
>> I then did this
>> 
>> dennis@dennisLaptop1:~/Applications/gnucash-3.1$ make uninstall
>> make: *** No rule to make target 'uninstall'.  Stop.
>> 
>> This was the output.

Or just
  rm -rf ~/Applications/gnucash-3.1

You could even leave it there and just remove ~/Applications/gnucash-3.1/bin 
from $PATH and/or delete the desktop file if that's how you launch GnuCash. 
Installing GnuCash from apt will put everything in /usr like all of the other 
programs on the machine and install a new desktop file pointing there.

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] Uninstall GC

2019-05-02 Thread Stephen M. Butler
On 5/2/19 1:48 PM, Dennis Powless wrote:
> I've got GC 3.1 installed on my laptop running Ubuntu 19.04.  Built from
> source.
>
>
>
> This was the command I ran to install GC back then.
>
> cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local
> /home/dennis/Applications/gnucash-3.1
>
> So, my build directory is  Applications/gnucash-3.1   ???  right.


Probably not.  Since you gave a full path (not relative) to the source,
your build location could be nearly anywhere.  Specifically, it would be
where you were at when the cmake was issued. 

Usually it is in a "build-xxx" folder just under Applications (next door
to gnucash-3.1).  However, some use a '.build' folder inside the source
code (dpkg_buildpackage does that).

You will need to find all the 'make' files and see which one contains
the build for 3.1.

>
> I then did this
>
> dennis@dennisLaptop1:~/Applications/gnucash-3.1$ make uninstall
> make: *** No rule to make target 'uninstall'.  Stop.
>
> This was the output.
>
> Dennis


-- 
Stephen M Butler, PMP, PSM
stephen.m.butle...@gmail.com
kg...@arrl.net
253-350-0166
---
GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8

___
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] Uninstall GC

2019-03-14 Thread Dennis Powless
I have that file in the build directory.. build-gnucash-3.1

*The error says that "make" is on root's path but not dennis's and that
it's a link to /usr/bin/cmake and that doesn't exist. That's a problem with
your system and you need to clean it up.*
How do I clean this up.  I'm not sure, what I need to do in order to make
this happen.  Do I need to reinstall this?  This is the output on whereis
make and cmake.  make --version and cmake --version

dennis@dennis-XPS-8500:~$ whereis make
make: /usr/bin/make /usr/share/man/man1/make.1.gz
/usr/src/googletest/googletest/make /usr/src/googletest/googlemock/make
dennis@dennis-XPS-8500:~$ whereis cmake
cmake: /usr/lib/x86_64-linux-gnu/cmake /usr/local/bin/cmake
/usr/share/cmake /usr/src/googletest/googletest/cmake

dennis@dennis-XPS-8500:~$ make --version
GNU Make 4.1
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
dennis@dennis-XPS-8500:~$ cmake --version
cmake version 3.13.3

CMake suite maintained and supported by Kitware (kitware.com/cmake).


d

dennis@dennis-XPS-8500:~/Applications/build-gnucash-3.1$ ls
binCPackConfig.cmakeinstall_manifest.txt
bindings   CPackSourceConfig.cmake  lib
borrowed   CTestTestfile.cmake  libgnucash
cmake  data Makefile
CMakeCache.txt dist_manifest.txtpo
CMakeFiles doc  share
cmake_install.cmakeetc  test-templates
cmake_uninstall.cmake  gnc_data_homeutil
common gnucash


dennis@dennis-XPS-8500:~/Applications/gnucash-3.1$ ls
AUTHORS ChangeLog.2005  ChangeLog.2015  HACKING
bindingsChangeLog.2006  ChangeLog.2016  libgnucash
borrowedChangeLog.2007  ChangeLog.2017  LICENSE
ChangeLog   ChangeLog.2008  cmake   NEWS
ChangeLog.1999  ChangeLog.2009  CMakeLists.txt  po
ChangeLog.2000  ChangeLog.2010  common  README
ChangeLog.2001  ChangeLog.2011  dataREADME.dependencies
ChangeLog.2002  ChangeLog.2012  doc test-templates
ChangeLog.2003  ChangeLog.2013  DOCUMENTERS util
ChangeLog.2004  ChangeLog.2014  gnucash


On Mon, Mar 11, 2019 at 10:42 AM John Ralls 
wrote:

> Dennis,
>
> The error says that "make" is on root's path but not dennis's and that
> it's a link to /usr/bin/cmake and that doesn't exist. That's a problem with
> your system and you need to clean it up.
>
> When `make uninstall` fails check to see if install_manifest.txt exists in
> the build directory. If it doesn't then you'll have to uninstall GnuCash
> manually as David explained. if it is there then you can run the command
> that make uninstall would: `xargs rm < install_manifest.txt`.
>
> Regards,
> John Ralls
>
> > On Mar 11, 2019, at 5:23 AM, Dennis Powless  wrote:
> >
> > I tried that, see the error.   I guess I’ll try some of those other
> things.
> >
> > D
> >
> > Sent from my iPhone
> >
> >> On Mar 10, 2019, at 10:16 PM, David Cousens 
> wrote:
> >>
> >> Denis
> >>
> >> $cd  ~/Applications/build-gnucash-3.1
> >> $make uninstall
> >>
> >> should do it since you installed in HOME/.local  HOME is just
> /home/
> >> where  is your username on the system. I don't install there but
> use
> >> /usr/local for system wide installation not individual user so I am not
> sure
> >> of the exact details of how GnuCash installs in HOME/.local.
> >>
> >> If it doesn't then you can remove the installation manually. If the
> build
> >> directory is intact it will have a file install_manifest.txt which will
> list
> >> where all the files are installed to.
> >>
> >> All files will be under the .local hidden directory. Uee Ctrl-H in your
> file
> >> manager to display hidden directories. I think that works on Ubuntu as
> well
> >> as Linux Mint.
> >>
> >> Check what files are present in HOME/.local.  How you proceed will
> depend if
> >> you have installed any other software in this location. If you are
> lucky it
> >> will possibley have a file gnucash which has subdirectories like bin,
> share,
> >> lib, etc.  If this is the case then deleting the gnucash directory and
> >> contents will completely remove the gnucash application with no
> problems.
> >>
> >> If it isn't in a gnucash directory it will probably just have bin,share,
> >> lib,etc directories directly under HOME/.local  . In this case you will
> need
> >> to check whether any other applications are installed. Chances are if
> >> HOME/.local/bin doesn't contain anything but the gnucash program you
> are OK,
> >> but also check the lib and share directories to see if there are
> anything
> >> other than gnucash related files there.  If there are no other
> applications
> >> installed there then it is safe to just delete all 

Re: [GNC] Uninstall GC

2019-03-11 Thread John Ralls
Dennis,

The error says that "make" is on root's path but not dennis's and that it's a 
link to /usr/bin/cmake and that doesn't exist. That's a problem with your 
system and you need to clean it up.

When `make uninstall` fails check to see if install_manifest.txt exists in the 
build directory. If it doesn't then you'll have to uninstall GnuCash manually 
as David explained. if it is there then you can run the command that make 
uninstall would: `xargs rm < install_manifest.txt`.

Regards,
John Ralls

> On Mar 11, 2019, at 5:23 AM, Dennis Powless  wrote:
> 
> I tried that, see the error.   I guess I’ll try some of those other things.
> 
> D
> 
> Sent from my iPhone
> 
>> On Mar 10, 2019, at 10:16 PM, David Cousens  wrote:
>> 
>> Denis
>> 
>> $cd  ~/Applications/build-gnucash-3.1
>> $make uninstall
>> 
>> should do it since you installed in HOME/.local  HOME is just /home/
>> where  is your username on the system. I don't install there but use
>> /usr/local for system wide installation not individual user so I am not sure
>> of the exact details of how GnuCash installs in HOME/.local.
>> 
>> If it doesn't then you can remove the installation manually. If the build
>> directory is intact it will have a file install_manifest.txt which will list
>> where all the files are installed to. 
>> 
>> All files will be under the .local hidden directory. Uee Ctrl-H in your file
>> manager to display hidden directories. I think that works on Ubuntu as well
>> as Linux Mint.
>> 
>> Check what files are present in HOME/.local.  How you proceed will depend if
>> you have installed any other software in this location. If you are lucky it
>> will possibley have a file gnucash which has subdirectories like bin, share,
>> lib, etc.  If this is the case then deleting the gnucash directory and
>> contents will completely remove the gnucash application with no problems.  
>> 
>> If it isn't in a gnucash directory it will probably just have bin,share,
>> lib,etc directories directly under HOME/.local  . In this case you will need
>> to check whether any other applications are installed. Chances are if
>> HOME/.local/bin doesn't contain anything but the gnucash program you are OK,
>> but also check the lib and share directories to see if there are anything
>> other than gnucash related files there.  If there are no other applications
>> installed there then it is safe to just delete all the directories under
>> HOME/.local.
>> 
>> If not then you could use the install_manifest.txt as a guide  and manually
>> delete them one by one to ensure you don't delete anything else you might
>> need.
>> 
>> 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.
> ___
> 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] Uninstall GC

2019-03-11 Thread Dennis Powless
I tried that, see the error.   I guess I’ll try some of those other things.

D

Sent from my iPhone

> On Mar 10, 2019, at 10:16 PM, David Cousens  wrote:
> 
> Denis
> 
> $cd  ~/Applications/build-gnucash-3.1
> $make uninstall
> 
> should do it since you installed in HOME/.local  HOME is just /home/
> where  is your username on the system. I don't install there but use
> /usr/local for system wide installation not individual user so I am not sure
> of the exact details of how GnuCash installs in HOME/.local.
> 
> If it doesn't then you can remove the installation manually. If the build
> directory is intact it will have a file install_manifest.txt which will list
> where all the files are installed to. 
> 
> All files will be under the .local hidden directory. Uee Ctrl-H in your file
> manager to display hidden directories. I think that works on Ubuntu as well
> as Linux Mint.
> 
> Check what files are present in HOME/.local.  How you proceed will depend if
> you have installed any other software in this location. If you are lucky it
> will possibley have a file gnucash which has subdirectories like bin, share,
> lib, etc.  If this is the case then deleting the gnucash directory and
> contents will completely remove the gnucash application with no problems.  
> 
> If it isn't in a gnucash directory it will probably just have bin,share,
> lib,etc directories directly under HOME/.local  . In this case you will need
> to check whether any other applications are installed. Chances are if
> HOME/.local/bin doesn't contain anything but the gnucash program you are OK,
> but also check the lib and share directories to see if there are anything
> other than gnucash related files there.  If there are no other applications
> installed there then it is safe to just delete all the directories under
> HOME/.local.
> 
> If not then you could use the install_manifest.txt as a guide  and manually
> delete them one by one to ensure you don't delete anything else you might
> need.
> 
> 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.
___
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] Uninstall GC

2019-03-10 Thread David Cousens
Denis

$cd  ~/Applications/build-gnucash-3.1
$make uninstall

should do it since you installed in HOME/.local  HOME is just /home/
where  is your username on the system. I don't install there but use
/usr/local for system wide installation not individual user so I am not sure
of the exact details of how GnuCash installs in HOME/.local.

If it doesn't then you can remove the installation manually. If the build
directory is intact it will have a file install_manifest.txt which will list
where all the files are installed to. 

All files will be under the .local hidden directory. Uee Ctrl-H in your file
manager to display hidden directories. I think that works on Ubuntu as well
as Linux Mint.

Check what files are present in HOME/.local.  How you proceed will depend if
you have installed any other software in this location. If you are lucky it
will possibley have a file gnucash which has subdirectories like bin, share,
lib, etc.  If this is the case then deleting the gnucash directory and
contents will completely remove the gnucash application with no problems.  

If it isn't in a gnucash directory it will probably just have bin,share,
lib,etc directories directly under HOME/.local  . In this case you will need
to check whether any other applications are installed. Chances are if
HOME/.local/bin doesn't contain anything but the gnucash program you are OK,
but also check the lib and share directories to see if there are anything
other than gnucash related files there.  If there are no other applications
installed there then it is safe to just delete all the directories under
HOME/.local.

If not then you could use the install_manifest.txt as a guide  and manually
delete them one by one to ensure you don't delete anything else you might
need.

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.


Re: [GNC] Uninstall GC

2019-03-10 Thread Dennis Powless
These are the commands I ran to install gnucash.

cmake -DWITH_AQBANKING=OFF -D CMAKE_INSTALL_PREFIX=/home/dennis/.local
/home/dennis/Applications/gnucash-3.1

cmake

cmake -D CMAKE_INSTALL_PREFIX=$HOME/.local ../gnucash-3.


This is where gnucash is located.
dennis@dennis-XPS-8500:~$ whereis gnucash
gnucash: /home/dennis/.local/bin/gnucash

I tried the steps in the article.
dennis@dennis-XPS-8500:~/Applications/build-gnucash-3.1$ sudo make uninstall
make: /usr/bin/cmake: Command not found
Makefile:3688: recipe for target 'cmake_check_build_system' failed
make: *** [cmake_check_build_system] Error 127

dennis@dennis-XPS-8500:~/Applications/gnucash-3.1$ sudo make uninstall
[sudo] password for dennis:
make: *** No rule to make target 'uninstall'.  Stop.



Dennis





On Thu, Mar 7, 2019 at 11:30 PM David Cousens 
wrote:

> Dennis
>
> Take a look at https://wiki.gnucash.org/wiki/Uninstall_Gnucash_Ubuntu if
> you
> are on Linux.
>
> 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.
>
___
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] Uninstall GC

2019-03-07 Thread David Cousens
Dennis

Take a look at https://wiki.gnucash.org/wiki/Uninstall_Gnucash_Ubuntu if you
are on Linux.  

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.


Re: [GNC] Uninstall GC

2019-03-07 Thread Stephen M. Butler
On 3/7/19 8:55 AM, Dennis Powless wrote:
> -do I NEED to uninstall Gnucash?
> If so


I've been told that you need to do so. 

>
> I installed 3.1 from source, I now am trying to upgrade to 3.4.  On 18.04
> LTS.


Where did you do the build?  Do the "make uninstall" from that
directory/folder.

>
> I have on my home directory
> dennis@dennis-XPS-8500:~/Applications$ ls
> build-gnucash-3.1  gnucash-3.1


Looks like ~/Applications/build-gnucash-3.1 is your build directory,
make uninstall while in that location.

>
>
>
>
> Output from whereis gnucash
> /home/dennis/.local/bin/gnucash
>
> I used
> Do I navigate to that location and runmake uninstall?
Not there.  The build directory where the make file is located.
>
>
>
>
>
>
>
> FYI:
> dennis@dennis-XPS-8500:~$ sudo apt list --installed | grep gnucash
> WARNING: apt does not have a stable CLI interface. Use with caution in
> scripts.
>
> sudo apt-get remove --purge gnucash
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Package 'gnucash' is not installed, so not removed
>
> sudo apt-get remove --purge gnucash
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Package 'gnucash' is not installed, so not removed
>
>
> d

That's the nature of a local build.  I'm getting into the habit of
building to a .deb file and installing from there.

--Steve

-- 
Stephen M Butler, PMP, PSM
stephen.m.butle...@gmail.com
kg...@arrl.net
253-350-0166
---
GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8

___
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] Uninstall GC

2019-03-07 Thread ref...@gmx.net
   If you installed from source, you need to uninstall, yes. Otherwise you
   have a potential mess.
   Where did you install into?
   I keep all programmes I compile myself under /usr/local/ which keeps it
   clean and easy to separate out if necessary.
   Peter
   Sent from my mobile. Please forgive shortness, typos and weird
   autocorrects.

    Original Message 
   Subject: [GNC] Uninstall GC
   From: Dennis Powless
   To: gnucash-user
   CC:

 -do I NEED to uninstall Gnucash?
 If so
 I installed 3.1 from source, I now am trying to upgrade to 3.4. On
 18.04
 LTS.
 I have on my home directory
 dennis@dennis-XPS-8500:~/Applications$ ls
 build-gnucash-3.1 gnucash-3.1
 Output from whereis gnucash
 /home/dennis/.local/bin/gnucash
 I used
 Do I navigate to that location and run make uninstall ?
 FYI:
 dennis@dennis-XPS-8500:~$ sudo apt list --installed | grep gnucash
 WARNING: apt does not have a stable CLI interface. Use with caution
 in
 scripts.
 sudo apt-get remove --purge gnucash
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 Package 'gnucash' is not installed, so not removed
 sudo apt-get remove --purge gnucash
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 Package 'gnucash' is not installed, so not removed
 d
 ___
 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.