Patches item #3418851, was opened at 2011-10-05 05:19
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
>Assigned to: Miller Puckette (millerpuckette)
Summary: read startup config files from /etc/puredata/conf.d
Initial Comment:
Hello,
I was looking at using puredata from debian, and currently, it's a bit of a mess, if I want to use PD + gem, I need to install both, and then mess up with config files, or, as the readme suggest (Readme.Debian), launch pd with an extenssive commandline:
| to start Pd with Gem support, issue the command (without the '%' sign)
|
| % pd -path /usr/lib/pd/extra/Gem -lib Gem
|
| OR
|
| use the provided script instead of directly starting Pd:
|
| % /usr/bin/pd-gem
|
| OR
|
| start Pd
| - navigate to "File->Path..." and add "/usr/lib/pd/extra/Gem" to the list of search-paths
| - click OK
| - navigate to "File->Startup..." and add "Gem" to the list of binaries to be loaded
| - click "Apply" and "Save all settings"
|
| OR
|
| add the following lines to your ~/.pdrc file (deprecated)
|
| -path /usr/lib/pd/extra/Gem
| -lib Gem
I think it'd be better to automatially include a file, that's what this patch is all about (and to be able to make a pd extenssion debian policy).
tell me what you think
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2011-10-05 09:31
Message:
about the given patch: this is definitely a nice idea (i haven't looked at
the patch though), and allows to easily switch between predefined flavours
of your installed Pd.
i think it's a way better solution than the config-switcher.sh script that
comes with current Pd-extended, as it doesn't require write access in the
home-directory.
----------------------------------------------------------------------
Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2011-10-05 09:21
Message:
@anonymous(how i hate the openID implementation on sf): i don't see how
starting "pd-gem" is "messing up with config files" or "launching "with an
extensive commandline". alternatively, you can always launch pd/Gem from
the menu
@eighthave: using [declare] or [import] is one of many options how to load
library. other ways have their value as well, and i don't think we should
force people to do something (even if we do believe that they should do it)
(and yes, i am not always true to this suggestion myself :-))
finally, the two patches submitted are somewhat independent (though
related):
- having the opportunity to force the use of a given preference file
- implementing an /etc/*/conf.d/ style config cascade
i would suggest submitting them separately.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-10-05 06:05
Message:
For loading libraries, you should do it directly in the patch using either
[declare -lib] or [import] (apt-get install puredata-import).
----------------------------------------------------------------------
Comment By: https://www.google.com/accounts ()
Date: 2011-10-05 05:22
Message:
ok,... I can't seem to add my second patch,... you can find everything in:
http://core.evilgiggle.com/~xaiki/puredata/
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Patches item #3418895, was opened at 2011-10-05 04:30
Message generated for change (Tracker Item Submitted) made by ricardofabbri
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418895&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: externals
Group: bugfix
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Ricardo Fabbri (ricardofabbri)
Assigned to: Nobody/Anonymous (nobody)
Summary: updated configure.ac for puredata_opencv
Initial Comment:
basically newer autoconf require AC_INIT to have some mandatory arguments,
so this patch is strictly necessary for continuing development of puredata_opencv. without this patch autoconf will not generate configure from configure.ac.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418895&group_…
Patches item #3418851, was opened at 2011-10-05 05:19
Message generated for change (Comment added) made by zmoelnig
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
>Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: read startup config files from /etc/puredata/conf.d
Initial Comment:
Hello,
I was looking at using puredata from debian, and currently, it's a bit of a mess, if I want to use PD + gem, I need to install both, and then mess up with config files, or, as the readme suggest (Readme.Debian), launch pd with an extenssive commandline:
| to start Pd with Gem support, issue the command (without the '%' sign)
|
| % pd -path /usr/lib/pd/extra/Gem -lib Gem
|
| OR
|
| use the provided script instead of directly starting Pd:
|
| % /usr/bin/pd-gem
|
| OR
|
| start Pd
| - navigate to "File->Path..." and add "/usr/lib/pd/extra/Gem" to the list of search-paths
| - click OK
| - navigate to "File->Startup..." and add "Gem" to the list of binaries to be loaded
| - click "Apply" and "Save all settings"
|
| OR
|
| add the following lines to your ~/.pdrc file (deprecated)
|
| -path /usr/lib/pd/extra/Gem
| -lib Gem
I think it'd be better to automatially include a file, that's what this patch is all about (and to be able to make a pd extenssion debian policy).
tell me what you think
----------------------------------------------------------------------
>Comment By: IOhannes m zmölnig (zmoelnig)
Date: 2011-10-05 09:21
Message:
@anonymous(how i hate the openID implementation on sf): i don't see how
starting "pd-gem" is "messing up with config files" or "launching "with an
extensive commandline". alternatively, you can always launch pd/Gem from
the menu
@eighthave: using [declare] or [import] is one of many options how to load
library. other ways have their value as well, and i don't think we should
force people to do something (even if we do believe that they should do it)
(and yes, i am not always true to this suggestion myself :-))
finally, the two patches submitted are somewhat independent (though
related):
- having the opportunity to force the use of a given preference file
- implementing an /etc/*/conf.d/ style config cascade
i would suggest submitting them separately.
----------------------------------------------------------------------
Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-10-05 06:05
Message:
For loading libraries, you should do it directly in the patch using either
[declare -lib] or [import] (apt-get install puredata-import).
----------------------------------------------------------------------
Comment By: https://www.google.com/accounts ()
Date: 2011-10-05 05:22
Message:
ok,... I can't seem to add my second patch,... you can find everything in:
http://core.evilgiggle.com/~xaiki/puredata/
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Ok, tomorrow's (today's in Europe) builds should have the symbols:
http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=revision&revisio…
.hc
On Oct 5, 2011, at 12:47 AM, mescalinum(a)gmail.com wrote:
> I gave it a quick look
> hmm it seems the debug info is still missing. the stack traces are
> incomplete/corrupt[1].
> in addition to -g/-ggdb flag, you should ensure that you do not
> strip the objects/binaries.
> since this problem affects tclpd.dll as well, I must check for this
> also in the external Makefile
>
>
> [1]:
> $ gdb /c/Users/q/Desktop/Pd-0.43.1-extended-20111004/bin/pd.exe
> GNU gdb (GDB) 7.2
> [...]
> Reading symbols from c:/Users/q/Desktop/Pd-0.43.1-extended-20111004/
> bin/pd.exe..
> .(no debugging symbols found)...done.
> (gdb) symbol-file c:/Users/q/Desktop/Pd-0.43.1-extended-20111004/bin/
> pd.dll
> Reading symbols from c:/Users/q/Desktop/Pd-0.43.1-extended-20111004/
> bin/pd.dll..
> .(no debugging symbols found)...done.
> (gdb) symbol-file tclpd.dll
> Reading symbols from c:\Users\q\Desktop\pd-extended\pdext\pd-extended
> \externals\
> loaders\tclpd/tclpd.dll...(no debugging symbols found)...done.
> (gdb) directory c:/Users/q/Desktop/pd-extended/pdext-git/pd-extended/
> src/
> Source directories searched: c:/Users/q/Desktop/pd-extended/pdext-
> git/pd-extende
> d/src;$cdir;$cwd
> (gdb) r -lib tclpd
> Starting program: c:/Users/q/Desktop/Pd-0.43.1-extended-20111004/bin/
> pd.exe -lib
> tclpd
> [New Thread 4724.0x1cfc]
> [New Thread 4724.0x1c40]
> [New Thread 4724.0x1430]
> [New Thread 4724.0x1278]
> [New Thread 4724.0x1224]
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x67376f34 in ?? ()
> from c:\Users\q\Desktop\Pd-0.43.1-extended-20111004\bin\pd.dll
> (gdb) where
> #0 0x67376f34 in ?? ()
> from c:\Users\q\Desktop\Pd-0.43.1-extended-20111004\bin\pd.dll
> #1 0x673789f3 in ?? ()
> from c:\Users\q\Desktop\Pd-0.43.1-extended-20111004\bin\pd.dll
> (gdb)
> Il 04/10/2011 23:06, Hans-Christoph Steiner ha scritto:
>>
>> I tried to fix up the CFLAGS last night so that all of the nightly
>> builds would have full debug symbols on all platforms. Give it a
>> try and let me know if it works for you.
>>
>> .hc
>>
>> ----------------------------------------------------------------------------
>>
>> Mistrust authority - promote decentralization. - the hacker ethic
>>
>>
>
----------------------------------------------------------------------------
I have the audacity to believe that peoples everywhere can have three
meals a day for their bodies, education and culture for their minds,
and dignity, equality and freedom for their spirits. - Martin
Luther King, Jr.
Patches item #3418851, was opened at 2011-10-04 23:19
Message generated for change (Comment added) made by eighthave
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
>Status: Pending
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: read startup config files from /etc/puredata/conf.d
Initial Comment:
Hello,
I was looking at using puredata from debian, and currently, it's a bit of a mess, if I want to use PD + gem, I need to install both, and then mess up with config files, or, as the readme suggest (Readme.Debian), launch pd with an extenssive commandline:
| to start Pd with Gem support, issue the command (without the '%' sign)
|
| % pd -path /usr/lib/pd/extra/Gem -lib Gem
|
| OR
|
| use the provided script instead of directly starting Pd:
|
| % /usr/bin/pd-gem
|
| OR
|
| start Pd
| - navigate to "File->Path..." and add "/usr/lib/pd/extra/Gem" to the list of search-paths
| - click OK
| - navigate to "File->Startup..." and add "Gem" to the list of binaries to be loaded
| - click "Apply" and "Save all settings"
|
| OR
|
| add the following lines to your ~/.pdrc file (deprecated)
|
| -path /usr/lib/pd/extra/Gem
| -lib Gem
I think it'd be better to automatially include a file, that's what this patch is all about (and to be able to make a pd extenssion debian policy).
tell me what you think
----------------------------------------------------------------------
>Comment By: Hans-Christoph Steiner (eighthave)
Date: 2011-10-05 00:05
Message:
For loading libraries, you should do it directly in the patch using either
[declare -lib] or [import] (apt-get install puredata-import).
----------------------------------------------------------------------
Comment By: https://www.google.com/accounts ()
Date: 2011-10-04 23:22
Message:
ok,... I can't seem to add my second patch,... you can find everything in:
http://core.evilgiggle.com/~xaiki/puredata/
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Patches item #3418851, was opened at 2011-10-05 03:19
Message generated for change (Comment added) made by
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: read startup config files from /etc/puredata/conf.d
Initial Comment:
Hello,
I was looking at using puredata from debian, and currently, it's a bit of a mess, if I want to use PD + gem, I need to install both, and then mess up with config files, or, as the readme suggest (Readme.Debian), launch pd with an extenssive commandline:
| to start Pd with Gem support, issue the command (without the '%' sign)
|
| % pd -path /usr/lib/pd/extra/Gem -lib Gem
|
| OR
|
| use the provided script instead of directly starting Pd:
|
| % /usr/bin/pd-gem
|
| OR
|
| start Pd
| - navigate to "File->Path..." and add "/usr/lib/pd/extra/Gem" to the list of search-paths
| - click OK
| - navigate to "File->Startup..." and add "Gem" to the list of binaries to be loaded
| - click "Apply" and "Save all settings"
|
| OR
|
| add the following lines to your ~/.pdrc file (deprecated)
|
| -path /usr/lib/pd/extra/Gem
| -lib Gem
I think it'd be better to automatially include a file, that's what this patch is all about (and to be able to make a pd extenssion debian policy).
tell me what you think
----------------------------------------------------------------------
Comment By: https://www.google.com/accounts ()
Date: 2011-10-05 03:22
Message:
ok,... I can't seem to add my second patch,... you can find everything in:
http://core.evilgiggle.com/~xaiki/puredata/
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Patches item #3418851, was opened at 2011-10-05 03:19
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: puredata
Group: feature
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: read startup config files from /etc/puredata/conf.d
Initial Comment:
Hello,
I was looking at using puredata from debian, and currently, it's a bit of a mess, if I want to use PD + gem, I need to install both, and then mess up with config files, or, as the readme suggest (Readme.Debian), launch pd with an extenssive commandline:
| to start Pd with Gem support, issue the command (without the '%' sign)
|
| % pd -path /usr/lib/pd/extra/Gem -lib Gem
|
| OR
|
| use the provided script instead of directly starting Pd:
|
| % /usr/bin/pd-gem
|
| OR
|
| start Pd
| - navigate to "File->Path..." and add "/usr/lib/pd/extra/Gem" to the list of search-paths
| - click OK
| - navigate to "File->Startup..." and add "Gem" to the list of binaries to be loaded
| - click "Apply" and "Save all settings"
|
| OR
|
| add the following lines to your ~/.pdrc file (deprecated)
|
| -path /usr/lib/pd/extra/Gem
| -lib Gem
I think it'd be better to automatially include a file, that's what this patch is all about (and to be able to make a pd extenssion debian policy).
tell me what you think
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3418851&group_…
I tried to fix up the CFLAGS last night so that all of the nightly
builds would have full debug symbols on all platforms. Give it a try
and let me know if it works for you.
.hc
----------------------------------------------------------------------------
Mistrust authority - promote decentralization. - the hacker ethic
hi list,
it's a long time .... hope you all are doing well :)
sorry no previous experience with Tracker:
just a question, what's the suposed way to act in such a tracker task ?
I went to the patch view and just changed the "Resolution" field as
"Accepted" ... it's supposed Tracker should apply the patch
automatically ? or I must download the patch and make the commit myself?
thanks!
ll.
Al 04/10/11 21:44, En/na SourceForge.net ha escrit:
> Patches item #3417757, was opened at 2011-10-03 10:06
> Message generated for change (Settings changed) made by lluisbigorda
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3417757&group_…
>
> Please note that this message will contain a full copy of the comment thread,
> including the initial issue submission, for this request,
> not just the latest update.
> Category: externals
> Group: documentation
> Status: Open
>> Resolution: Accepted
> Priority: 5
> Private: No
> Submitted By: Ricardo Fabbri (ricardofabbri)
> Assigned to: lluÃs gómez i bigordà (lluisbigorda)
> Summary: better install instructions to pix_opencv
>
> Initial Comment:
> This is a tiny fix to the INSTALL file to show how to install the help files. More steps were are added so that the install solution is cleaner.
>
> PS: I am also using this to practice submitting patches to the Pd community. Hopefully I will soon manage to get commit access and will stop bugging the tracker with tiny patches.
>
> ----------------------------------------------------------------------
>
> Comment By: Ricardo Fabbri (ricardofabbri)
> Date: 2011-10-04 07:03
>
> Message:
> We might have to wait until bug #3390786 gets fixed. However, I vote to
> include these instructions anyways as the bug must get fixed soon I
> suppose.
>
> ----------------------------------------------------------------------
>
> Comment By: Ricardo Fabbri (ricardofabbri)
> Date: 2011-10-04 06:10
>
> Message:
> Hello, the instructions in this patch are not goint to work well with the
> current pd-extended, since it is not saving the new PATH into
> ~/.pdextended, seemingly because the path is from the pd-extended
> installation directory and it is being handled differently. I propose to
> tell the user to put the PATH straight to a directory with pix_opencv
> *outside* pd-extended installation directory. I would say it is bug on its
> own of pd-extended to filter out paths that are in its own installation
> directory. However, I propose a solution which will work in this case as
> well, but will not allow the user to cleanly install pix_opencv to the
> whole system. The attached patch is the new instructions I propose.
>
> ----------------------------------------------------------------------
>
> Comment By: Ricardo Fabbri (ricardofabbri)
> Date: 2011-10-03 10:07
>
> Message:
> just letting you know the patch is against the pix_opencv external inside
> the svn repository for Pd.
>
> ----------------------------------------------------------------------
>
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3417757&group_…
>
> _______________________________________________
> Pd-dev mailing list
> Pd-dev(a)iem.at
> http://lists.puredata.info/listinfo/pd-dev