Hello
I am trying to get a synthesizer patch i created onto the ipad, i erroneously thought that if the patch i was using opened up with PdVanillaFor MobMuPLat that is included in the release of MubMuPlat that it would work on the ipad. And since i am not selling the application i assumed that i could use the expr~ since it is included. But now that i finished setting it up when i load the file onto the ipad i get a bunch of errors with
expr if($f1-$f2==0, 0, 1) error could'nt create load_object: Symbol "expr_setup" not found
I know there is some issue with the license and i found this README.txt in files i has where Iohannes addressed the issue. IS there a way for me to use this object in this patch?
I am including IOhannes' stuff regarding hexloader
(c) copyleft 2006-2007 IOhannes m zmĖlnig, IEM
when dealing with abstractions and single-file externals, we have a 1-to-1 correspondence between an objectclass and a file. examples: the [expr] object matches an external "./expr.pd_linux" the [zexy/nop~] object matches an abstraction "./zexy/nop~.pd" general: the object [<name>] matches a file "<name>.$EXT" when dealing with externals, the name of the objectclass is also to be found in the setup function within the external example: to load the "expr" external, Pd will look for a function "expr_setup()" within the file "./expr.pd_linux" general: the external "<name>" has to provide a setup-function "void <name>_setup(void)"
this works fine, as long as there are no special characters involved: according to the above scheme, when loading the external "expr~" Pd should actually be looking for "expr~_setup()" within the file "./expr~.pd_linux"; unfortunately, the C-language (wherein most externals are written) does not allow function-names to use any characters other than "a-zA-Z0-9_". therefore the name "expr~_setup()" is invalid; therefore, Pd handles the case of the trailing "~" in a special way: it actually expands the "~" to "_tilde" and looks for "expr_tilde_setup()" general: the object [<name>~] corresponds to an external "<name>~.pd_linux" which offers a setupfunction "<name>_tilde_setup()" unfortunately this doesn't work well for a larger number of characters forbidden in C-functionames. example: how should the setupfunction for an objectclass [~<~] be named?
additionally, several filesystems have problems with certain characters. for instance, you cannot use the character '>' on FAT32 filesystems. but how do you then create a file for the objectclass [>~]?
one solution is to just forbid objects with weird (non alphanumerical) names. pretty frustrating
use libraries with valid names that hold objects with weird names
another solution is to translate the forbidden characters into allowed ones. for instance, every ASCII-character can be called by it's name (e.g. 'a') as well as by it's numeric value "97" (or in hex: "0x61") the here-proposed solution is, to replace every illegal character by it's hexadecimal representation (in lowercase). examples: [>] corresponds to the file "0x3e.pd" [>~] corresponds to the file "0x3e0x7e.pd" or to "0x3e~.pd" [a>b] corresponds to the file "a0x3eb.pd"
the same system can be applied to the setup-functions: examples: [a>b] has a setupfunction "a0x3eb_setup()" CAVEAT: C also forbids to start function names with numeric values. therefore, this is a nono: [>]'s setupfunction would be "0x3e_setup()" (ILLEGAL) we can simply fix this by putting the "setup()" in front: [>] has a setupfunction "setup_0x3e()"
the "hexloader" external adds the possibility to Pd use the proposed alternative naming scheme. just load the "hexloader" lib, and the next time you try to create the (yet unknown) object X, Pd will also look for several alternatives example: [>~] ">~.pd_linux" (filename ILLEGAL on SOME filesystems) >~_setup() (ILLEGAL functioname) setup_>~ (ILLEGAL functioname) 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() "0x3e~.pd_linux" 0x3e~_setup() (ILLEGAL functioname) setup_0x3e~() 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() "0x3e0x7e.pd_linux" 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() ">~.pd" (filename ILLEGAL on SOME filesystems) "0x3e~.pd" "0x3e0x7e.pd" the hexloader will try one alternative after another until it finds one that actually works (there is no problem in querying the ILLEGAL names, it is just impossible to create such filenames/setupfunctions)
a special problem is the "/" character, as this might be a special character in the name of an object and the path-delimiter example: "a/b" might be a file "b" in the directory "a" or just "a/b" solution
hexloader treats the "/" in a special way, as it tries all possibilities example: [a/b} a/b (file "b" in directory "a") b_setup() setup_b() a0x2fb (file "a/b") a0x2fb_setup() setup_a0x2fb()
obviously the abstraction "0x3e.pd" can be addressed as both [>~] and [0x3e] this basically means, we have now an n-to-1 correspondence! in the case of externals this could be fixed by only using the "setup_*" naming scheme (instead of Pd's standard "*_setup()") for practical reasons this has been dumped (too many devs created the wrong setupfunction and couldn't tell why the externals would not load)
Hi Pat, maybe i missed your point, but are you sure that expr (and expr~ etc.) is compiled into MobMuPlat? My impression is that it isn't, so that object family can't be used. gr~~~
2013/3/18 Pagano, Patrick pat@digitalworlds.ufl.edu
Hello
I am trying to get a synthesizer patch i created onto the ipad, i erroneously thought that if the patch i was using opened up with PdVanillaFor MobMuPLat that is included in the release of MubMuPlat that it would work on the ipad. And since i am not selling the application i assumed that i could use the expr~ since it is included. But now that i finished setting it up when i load the file onto the ipad i get a bunch of errors with
expr if($f1-$f2==0, 0, 1) error could'nt create load_object: Symbol "expr_setup" not found
I know there is some issue with the license and i found this README.txt in files i has where Iohannes addressed the issue. IS there a way for me to use this object in this patch?
I am including IOhannes' stuff regarding hexloader
hexloader
(c) copyleft 2006-2007 IOhannes m zmĖlnig, IEM
the problem
when dealing with abstractions and single-file externals, we have a 1-to-1 correspondence between an objectclass and a file. examples: the [expr] object matches an external "./expr.pd_linux" the [zexy/nop~] object matches an abstraction "./zexy/nop~.pd" general: the object [<name>] matches a file "<name>.$EXT" when dealing with externals, the name of the objectclass is also to be found in the setup function within the external example: to load the "expr" external, Pd will look for a function "expr_setup()" within the file "./expr.pd_linux" general: the external "<name>" has to provide a setup-function "void <name>_setup(void)"
this works fine, as long as there are no special characters involved: according to the above scheme, when loading the external "expr~" Pd should actually be looking for "expr~_setup()" within the file "./expr~.pd_linux"; unfortunately, the C-language (wherein most externals are written) does not allow function-names to use any characters other than "a-zA-Z0-9_". therefore the name "expr~_setup()" is invalid; therefore, Pd handles the case of the trailing "~" in a special way: it actually expands the "~" to "_tilde" and looks for "expr_tilde_setup()" general: the object [<name>~] corresponds to an external "<name>~.pd_linux" which offers a setupfunction "<name>_tilde_setup()" unfortunately this doesn't work well for a larger number of characters forbidden in C-functionames. example: how should the setupfunction for an objectclass [~<~] be named?
additionally, several filesystems have problems with certain characters. for instance, you cannot use the character '>' on FAT32 filesystems. but how do you then create a file for the objectclass [>~]?
a solution
one solution is to just forbid objects with weird (non alphanumerical) names. pretty frustrating
another solution
use libraries with valid names that hold objects with weird names
a better solution
another solution is to translate the forbidden characters into allowed ones. for instance, every ASCII-character can be called by it's name (e.g. 'a') as well as by it's numeric value "97" (or in hex: "0x61") the here-proposed solution is, to replace every illegal character by it's hexadecimal representation (in lowercase). examples: [>] corresponds to the file "0x3e.pd" [>~] corresponds to the file "0x3e0x7e.pd" or to "0x3e~.pd" [a>b] corresponds to the file "a0x3eb.pd"
the same system can be applied to the setup-functions: examples: [a>b] has a setupfunction "a0x3eb_setup()" CAVEAT: C also forbids to start function names with numeric values. therefore, this is a nono: [>]'s setupfunction would be "0x3e_setup()" (ILLEGAL) we can simply fix this by putting the "setup()" in front: [>] has a setupfunction "setup_0x3e()"
implementation
the "hexloader" external adds the possibility to Pd use the proposed alternative naming scheme. just load the "hexloader" lib, and the next time you try to create the (yet unknown) object X, Pd will also look for several alternatives example: [>~] ">~.pd_linux" (filename ILLEGAL on SOME filesystems) >~_setup() (ILLEGAL functioname) setup_>~ (ILLEGAL functioname) 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() "0x3e~.pd_linux" 0x3e~_setup() (ILLEGAL functioname) setup_0x3e~() 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() "0x3e0x7e.pd_linux" 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() ">~.pd" (filename ILLEGAL on SOME filesystems) "0x3e~.pd" "0x3e0x7e.pd" the hexloader will try one alternative after another until it finds one that actually works (there is no problem in querying the ILLEGAL names, it is just impossible to create such filenames/setupfunctions)
handling of "/"
a special problem is the "/" character, as this might be a special character in the name of an object and the path-delimiter example: "a/b" might be a file "b" in the directory "a" or just "a/b" solution
hexloader treats the "/" in a special way, as it tries all possibilities example: [a/b} a/b (file "b" in directory "a") b_setup() setup_b() a0x2fb (file "a/b") a0x2fb_setup() setup_a0x2fb()
CAVEATS
obviously the abstraction "0x3e.pd" can be addressed as both [>~] and [0x3e] this basically means, we have now an n-to-1 correspondence! in the case of externals this could be fixed by only using the "setup_*" naming scheme (instead of Pd's standard "*_setup()") for practical reasons this has been dumped (too many devs created the wrong setupfunction and couldn't tell why the externals would not load)
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Well the object creates when I run the version of PD that comes with it.
Sent from my iPhone
On Mar 18, 2013, at 7:56 AM, "Thomas Grill" <gr@grrrr.orgmailto:gr@grrrr.org> wrote:
Hi Pat, maybe i missed your point, but are you sure that expr (and expr~ etc.) is compiled into MobMuPlat? My impression is that it isn't, so that object family can't be used. gr~~~
2013/3/18 Pagano, Patrick <pat@digitalworlds.ufl.edumailto:pat@digitalworlds.ufl.edu> Hello
I am trying to get a synthesizer patch i created onto the ipad, i erroneously thought that if the patch i was using opened up with PdVanillaFor MobMuPLat that is included in the release of MubMuPlat that it would work on the ipad. And since i am not selling the application i assumed that i could use the expr~ since it is included. But now that i finished setting it up when i load the file onto the ipad i get a bunch of errors with
expr if($f1-$f2==0, 0, 1) error could'nt create load_object: Symbol "expr_setup" not found
I know there is some issue with the license and i found this README.txt in files i has where Iohannes addressed the issue. IS there a way for me to use this object in this patch?
I am including IOhannes' stuff regarding hexloader
(c) copyleft 2006-2007 IOhannes m zmĖlnig, IEM
when dealing with abstractions and single-file externals, we have a 1-to-1 correspondence between an objectclass and a file. examples: the [expr] object matches an external "./expr.pd_linux" the [zexy/nop~] object matches an abstraction "./zexy/nop~.pd" general: the object [<name>] matches a file "<name>.$EXT" when dealing with externals, the name of the objectclass is also to be found in the setup function within the external example: to load the "expr" external, Pd will look for a function "expr_setup()" within the file "./expr.pd_linux" general: the external "<name>" has to provide a setup-function "void <name>_setup(void)"
this works fine, as long as there are no special characters involved: according to the above scheme, when loading the external "expr~" Pd should actually be looking for "expr~_setup()" within the file "./expr~.pd_linux"; unfortunately, the C-language (wherein most externals are written) does not allow function-names to use any characters other than "a-zA-Z0-9_". therefore the name "expr~_setup()" is invalid; therefore, Pd handles the case of the trailing "~" in a special way: it actually expands the "~" to "_tilde" and looks for "expr_tilde_setup()" general: the object [<name>~] corresponds to an external "<name>~.pd_linux" which offers a setupfunction "<name>_tilde_setup()" unfortunately this doesn't work well for a larger number of characters forbidden in C-functionames. example: how should the setupfunction for an objectclass [~<~] be named?
additionally, several filesystems have problems with certain characters. for instance, you cannot use the character '>' on FAT32 filesystems. but how do you then create a file for the objectclass [>~]?
one solution is to just forbid objects with weird (non alphanumerical) names. pretty frustrating
use libraries with valid names that hold objects with weird names
another solution is to translate the forbidden characters into allowed ones. for instance, every ASCII-character can be called by it's name (e.g. 'a') as well as by it's numeric value "97" (or in hex: "0x61") the here-proposed solution is, to replace every illegal character by it's hexadecimal representation (in lowercase). examples: [>] corresponds to the file "0x3e.pd" [>~] corresponds to the file "0x3e0x7e.pd" or to "0x3e~.pd" [a>b] corresponds to the file "a0x3eb.pd"
the same system can be applied to the setup-functions: examples: [a>b] has a setupfunction "a0x3eb_setup()" CAVEAT: C also forbids to start function names with numeric values. therefore, this is a nono: [>]'s setupfunction would be "0x3e_setup()" (ILLEGAL) we can simply fix this by putting the "setup()" in front: [>] has a setupfunction "setup_0x3e()"
the "hexloader" external adds the possibility to Pd use the proposed alternative naming scheme. just load the "hexloader" lib, and the next time you try to create the (yet unknown) object X, Pd will also look for several alternatives example: [>~] ">~.pd_linux" (filename ILLEGAL on SOME filesystems) >~_setup() (ILLEGAL functioname) setup_>~ (ILLEGAL functioname) 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() "0x3e~.pd_linux" 0x3e~_setup() (ILLEGAL functioname) setup_0x3e~() 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() "0x3e0x7e.pd_linux" 0x3e0x7e_setup() (ILLEGAL functioname) setup_0x3e0x7e() ">~.pd" (filename ILLEGAL on SOME filesystems) "0x3e~.pd" "0x3e0x7e.pd" the hexloader will try one alternative after another until it finds one that actually works (there is no problem in querying the ILLEGAL names, it is just impossible to create such filenames/setupfunctions)
a special problem is the "/" character, as this might be a special character in the name of an object and the path-delimiter example: "a/b" might be a file "b" in the directory "a" or just "a/b" solution
hexloader treats the "/" in a special way, as it tries all possibilities example: [a/b} a/b (file "b" in directory "a") b_setup() setup_b() a0x2fb (file "a/b") a0x2fb_setup() setup_a0x2fb()
obviously the abstraction "0x3e.pd" can be addressed as both [>~] and [0x3e] this basically means, we have now an n-to-1 correspondence! in the case of externals this could be fixed by only using the "setup_*" naming scheme (instead of Pd's standard "*_setup()") for practical reasons this has been dumped (too many devs created the wrong setupfunction and couldn't tell why the externals would not load)
Pd-list@iem.atmailto:Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
-- Thomas Grill http://grrrr.org
On Mon, Mar 18, 2013 at 10:38 PM, Pagano, Patrick <pat@digitalworlds.ufl.edu
wrote:
Well the object creates when I run the version of PD that comes with it.
Sent from my iPhone
From the front page pf the website:
About the PD distribution: PD patches for your iOS device must be made with
"PD vanilla" (not Pd-extended), the basic distribution. However, in order to simulate the app on OSX (using OSC + UDP to communicate between PD and the MobMuPlat Editor), a few extra objects were needed, and so they've been included in this distribution, but they will not work if used in a patch in iOS. *Also, [expr] and [expr~] do not work in the current iOS version; this will be changed in the next update.*
damnit. Any idea when that might be or a workaround? silent weeping
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of michael noble [looplog@gmail.com] Sent: Monday, March 18, 2013 9:47 AM To: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
On Mon, Mar 18, 2013 at 10:38 PM, Pagano, Patrick <pat@digitalworlds.ufl.edumailto:pat@digitalworlds.ufl.edu> wrote: Well the object creates when I run the version of PD that comes with it.
Sent from my iPhone
From the front page pf the website:
About the PD distribution: PD patches for your iOS device must be made with "PD vanilla" (not Pd-extended), the basic distribution. However, in order to simulate the app on OSX (using OSC + UDP to communicate between PD and the MobMuPlat Editor), a few extra objects were needed, and so they've been included in this distribution, but they will not work if used in a patch in iOS. Also, [expr] and [expr~] do not work in the current iOS version; this will be changed in the next update.
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Mon, 2013-03-18 at 11:50 -0400, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
I don't know what they do, but if they are similarly simple as your previous example, it should be straight-forward to replace them.
Ask yourself what is easier to do: Make your patch portable (not dependent on expr family) or incorporate the expr stuff into the app you mentioned? I can't tell. Without knowing your situation in detail, I'd probably go for the former.
Roman
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
I will post the equations and hopefully people might weigh in on some suggestion to avoid the expr~ I guess pd in general might benefit from something thy does not carry the licensing/external issue
Sent from my iPhone
On Mar 18, 2013, at 12:06 PM, "Roman Haefeli" reduzent@gmail.com wrote:
On Mon, 2013-03-18 at 11:50 -0400, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
I don't know what they do, but if they are similarly simple as your previous example, it should be straight-forward to replace them.
Ask yourself what is easier to do: Make your patch portable (not dependent on expr family) or incorporate the expr stuff into the app you mentioned? I can't tell. Without knowing your situation in detail, I'd probably go for the former.
Roman
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.comwrote:
Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
From: Scott R. Looney scottrlooney@gmail.com To: Daniel Iglesia daniel.iglesia@gmail.com Cc: pd-list pd-list@iem.at Sent: Monday, March 18, 2013 1:34 PM Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
Notice that even in libpd git the license for vexpr.c is GPLv3+
By the way-- did ALL authors of expr agree to the license change I see five other names in the copyright notice. Ā Plus a few names over the years who did revisions and added them on sourceforge, and you must get their permission to re-license as well.
And please keep in mind the energy it takes to do all this busywork which _may_ make running Pd + expr lib on _one_ specific restrictive device slightly easier. Ā (As opposed to doing meaningful dev work like making the expr avg function do something.)
and here's the bit where they mentionĀ [expr] and [expr~]Ā are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] Ā from source and put it under a BSD or MIT license.
Re-licensing doesn't work that way.
-Jonathan
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote:
Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] Ā ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
----- Original Message -----
From: Jonathan Wilkes jancsika@yahoo.com To: Scott R. Looney scottrlooney@gmail.com; Daniel Iglesia daniel.iglesia@gmail.com Cc: pd-list pd-list@iem.at Sent: Monday, March 18, 2013 3:23 PM Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
From: Scott R. Looney scottrlooney@gmail.com To: Daniel Iglesia daniel.iglesia@gmail.com Cc: pd-list pd-list@iem.at Sent: Monday, March 18, 2013 1:34 PM Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember
pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does
not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
Notice that even in libpd git the license for vexpr.c is GPLv3+
Oops I meant GPLv2+
I will go through and share the expr~ equations and hopefully this awesome bunch of pd masters can help with some suggestions. What i did was open the patch i had made several years ago and seeing no error in the MobplatPd window i assumed i was okay, which of course is my downfall: assumption. Then i got excited making the interface and was crestfallen when i saw the message in the pd console on the ipad.
pp
On 03/18/2013 01:34 PM, Scott R. Looney wrote:
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia <daniel.iglesia@gmail.com mailto:daniel.iglesia@gmail.com> wrote:
Hi everyone, (first time poster!) expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.) If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that. Best, Dan === www.danieliglesia.com <http://www.danieliglesia.com> www.iglesiaintermedia.com <http://www.iglesiaintermedia.com> On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote: > That's one of 20 expr~s that i need :-( > > > On 03/18/2013 11:01 AM, Roman Haefeli wrote: >> On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote: >>> damnit. >>> Any idea when that might be or a workaround? >>> silent weeping >> >>> expr if($f1-$f2==0, 0, 1) >> >> [!= ] ? >> >> Roman >> >> >> _______________________________________________ >> Pd-list@iem.at <mailto:Pd-list@iem.at> mailing list >> UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list > > > _______________________________________________ > Pd-list@iem.at <mailto:Pd-list@iem.at> mailing list > UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list _______________________________________________ Pd-list@iem.at <mailto:Pd-list@iem.at> mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia <daniel.iglesia@gmail.commailto:daniel.iglesia@gmail.com> wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.comhttp://www.danieliglesia.com www.iglesiaintermedia.comhttp://www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.atmailto:Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.atmailto:Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.atmailto:Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
yes, technically it can be built for, and included with, MobMuPlat, since it comes with libpd, but needs to be built in xcode with all the other code for the MMP binary. I don't believe compiling the pd vanilla makefile for OSX or other platforms will get you anything. But my knowledge of these things is sketchy.
https://github.com/libpd/libpd/blob/master/pure-data/extra/expr~/LICENSE.txt
the version of expr~ and expr with libpd seems to have the LGPL (instead of the regular GPL), which should be compatible with BSD. So I will make an attempt to include them the next MMP update.
(this is my primary reference for doing so http://createdigitalnoise.com/discussion/302/using-expr-in-libpd/p1 and so if anyone else has an easy solution for including expr, etc, in a xcode build of a libpd project, please advise!)
(The open source release will have all of libpd's code+objects included with it, and so then it also would be straightforward for someone with greater knowledge than I ( and who has xcode and a developer's license) to enable and build those objects...although the reason I made MMP is so that people don't need to have those two things!)
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 1:37 PM, Pagano, Patrick wrote:
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
(in addition to that last link, I meant plus of course Peter Brinkmann's straightforward description here https://github.com/libpd/pd-for-ios/wiki/ios )
On Mar 18, 2013, at 3:49 PM, Daniel Iglesia wrote:
yes, technically it can be built for, and included with, MobMuPlat, since it comes with libpd, but needs to be built in xcode with all the other code for the MMP binary. I don't believe compiling the pd vanilla makefile for OSX or other platforms will get you anything. But my knowledge of these things is sketchy.
https://github.com/libpd/libpd/blob/master/pure-data/extra/expr~/LICENSE.txt
the version of expr~ and expr with libpd seems to have the LGPL (instead of the regular GPL), which should be compatible with BSD. So I will make an attempt to include them the next MMP update.
(this is my primary reference for doing so http://createdigitalnoise.com/discussion/302/using-expr-in-libpd/p1 and so if anyone else has an easy solution for including expr, etc, in a xcode build of a libpd project, please advise!)
(The open source release will have all of libpd's code+objects included with it, and so then it also would be straightforward for someone with greater knowledge than I ( and who has xcode and a developer's license) to enable and build those objects...although the reason I made MMP is so that people don't need to have those two things!)
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 1:37 PM, Pagano, Patrick wrote:
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
i have xcode and a fully mobmuplatted Arp Odyssey emulator i want to use. Is someone willing to hold my hand on this? I will start posting the expressions if not., but i really would love to have this thing working!
Dan~ thanks for MobMuplat, it's quite fun and made me go purchase a ipad4, so i blame you for all this :-)
pp
From: Daniel Iglesia [daniel.iglesia@gmail.com] Sent: Monday, March 18, 2013 6:52 PM To: Pagano, Patrick Cc: Scott R. Looney; pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
(in addition to that last link, I meant plus of course Peter Brinkmann's straightforward description here https://github.com/libpd/pd-for-ios/wiki/ios )
On Mar 18, 2013, at 3:49 PM, Daniel Iglesia wrote:
yes, technically it can be built for, and included with, MobMuPlat, since it comes with libpd, but needs to be built in xcode with all the other code for the MMP binary. I don't believe compiling the pd vanilla makefile for OSX or other platforms will get you anything. But my knowledge of these things is sketchy.
https://github.com/libpd/libpd/blob/master/pure-data/extra/expr~/LICENSE.txt
the version of expr~ and expr with libpd seems to have the LGPL (instead of the regular GPL), which should be compatible with BSD. So I will make an attempt to include them the next MMP update.
(this is my primary reference for doing so http://createdigitalnoise.com/discussion/302/using-expr-in-libpd/p1 and so if anyone else has an easy solution for including expr, etc, in a xcode build of a libpd project, please advise!)
(The open source release will have all of libpd's code+objects included with it, and so then it also would be straightforward for someone with greater knowledge than I ( and who has xcode and a developer's license) to enable and build those objects...although the reason I made MMP is so that people don't need to have those two things!)
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 1:37 PM, Pagano, Patrick wrote:
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
here's one:
[expr~ if($f2==0, $v1, 0); if ($f2==0, $v1) ]
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Pagano, Patrick [pat@digitalworlds.ufl.edu] Sent: Monday, March 18, 2013 6:55 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
i have xcode and a fully mobmuplatted Arp Odyssey emulator i want to use. Is someone willing to hold my hand on this? I will start posting the expressions if not., but i really would love to have this thing working!
Dan~ thanks for MobMuplat, it's quite fun and made me go purchase a ipad4, so i blame you for all this :-)
pp
From: Daniel Iglesia [daniel.iglesia@gmail.com] Sent: Monday, March 18, 2013 6:52 PM To: Pagano, Patrick Cc: Scott R. Looney; pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
(in addition to that last link, I meant plus of course Peter Brinkmann's straightforward description here https://github.com/libpd/pd-for-ios/wiki/ios )
On Mar 18, 2013, at 3:49 PM, Daniel Iglesia wrote:
yes, technically it can be built for, and included with, MobMuPlat, since it comes with libpd, but needs to be built in xcode with all the other code for the MMP binary. I don't believe compiling the pd vanilla makefile for OSX or other platforms will get you anything. But my knowledge of these things is sketchy.
https://github.com/libpd/libpd/blob/master/pure-data/extra/expr~/LICENSE.txt
the version of expr~ and expr with libpd seems to have the LGPL (instead of the regular GPL), which should be compatible with BSD. So I will make an attempt to include them the next MMP update.
(this is my primary reference for doing so http://createdigitalnoise.com/discussion/302/using-expr-in-libpd/p1 and so if anyone else has an easy solution for including expr, etc, in a xcode build of a libpd project, please advise!)
(The open source release will have all of libpd's code+objects included with it, and so then it also would be straightforward for someone with greater knowledge than I ( and who has xcode and a developer's license) to enable and build those objects...although the reason I made MMP is so that people don't need to have those two things!)
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 1:37 PM, Pagano, Patrick wrote:
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
I've actually just already gotten expr and expr~ working in my xcode project (easier than anticipated). I'm working on other elements of the next update over the next few days, so if you can wait about a week or two for the apple approval process to finish, then the next update should work for you. (If you use testflight, contact me off-list, and you can try my current build sooner than that)
dan
On Mar 18, 2013, at 3:55 PM, Pagano, Patrick wrote:
i have xcode and a fully mobmuplatted Arp Odyssey emulator i want to use. Is someone willing to hold my hand on this? I will start posting the expressions if not., but i really would love to have this thing working!
Dan~ thanks for MobMuplat, it's quite fun and made me go purchase a ipad4, so i blame you for all this :-)
pp
From: Daniel Iglesia [daniel.iglesia@gmail.com] Sent: Monday, March 18, 2013 6:52 PM To: Pagano, Patrick Cc: Scott R. Looney; pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
(in addition to that last link, I meant plus of course Peter Brinkmann's straightforward description here https://github.com/libpd/pd-for-ios/wiki/ios )
On Mar 18, 2013, at 3:49 PM, Daniel Iglesia wrote:
yes, technically it can be built for, and included with, MobMuPlat, since it comes with libpd, but needs to be built in xcode with all the other code for the MMP binary. I don't believe compiling the pd vanilla makefile for OSX or other platforms will get you anything. But my knowledge of these things is sketchy.
https://github.com/libpd/libpd/blob/master/pure-data/extra/expr~/LICENSE.txt
the version of expr~ and expr with libpd seems to have the LGPL (instead of the regular GPL), which should be compatible with BSD. So I will make an attempt to include them the next MMP update.
(this is my primary reference for doing so http://createdigitalnoise.com/discussion/302/using-expr-in-libpd/p1 and so if anyone else has an easy solution for including expr, etc, in a xcode build of a libpd project, please advise!)
(The open source release will have all of libpd's code+objects included with it, and so then it also would be straightforward for someone with greater knowledge than I ( and who has xcode and a developer's license) to enable and build those objects...although the reason I made MMP is so that people don't need to have those two things!)
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 1:37 PM, Pagano, Patrick wrote:
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Dan i will gladly do testflight to try this i spent 12 hours making the ARP and i really want to test it at a show coming up
let me know what to do and i'l testfly for you!
patrick ________________________________________ From: Daniel Iglesia [daniel.iglesia@gmail.com] Sent: Monday, March 18, 2013 7:17 PM To: Pagano, Patrick Cc: Scott R. Looney; pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
I've actually just already gotten expr and expr~ working in my xcode project (easier than anticipated). I'm working on other elements of the next update over the next few days, so if you can wait about a week or two for the apple approval process to finish, then the next update should work for you. (If you use testflight, contact me off-list, and you can try my current build sooner than that)
dan
On Mar 18, 2013, at 3:55 PM, Pagano, Patrick wrote:
i have xcode and a fully mobmuplatted Arp Odyssey emulator i want to use. Is someone willing to hold my hand on this? I will start posting the expressions if not., but i really would love to have this thing working!
Dan~ thanks for MobMuplat, it's quite fun and made me go purchase a ipad4, so i blame you for all this :-)
pp
From: Daniel Iglesia [daniel.iglesia@gmail.com] Sent: Monday, March 18, 2013 6:52 PM To: Pagano, Patrick Cc: Scott R. Looney; pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
(in addition to that last link, I meant plus of course Peter Brinkmann's straightforward description here https://github.com/libpd/pd-for-ios/wiki/ios )
On Mar 18, 2013, at 3:49 PM, Daniel Iglesia wrote:
yes, technically it can be built for, and included with, MobMuPlat, since it comes with libpd, but needs to be built in xcode with all the other code for the MMP binary. I don't believe compiling the pd vanilla makefile for OSX or other platforms will get you anything. But my knowledge of these things is sketchy.
https://github.com/libpd/libpd/blob/master/pure-data/extra/expr~/LICENSE.txt
the version of expr~ and expr with libpd seems to have the LGPL (instead of the regular GPL), which should be compatible with BSD. So I will make an attempt to include them the next MMP update.
(this is my primary reference for doing so http://createdigitalnoise.com/discussion/302/using-expr-in-libpd/p1 and so if anyone else has an easy solution for including expr, etc, in a xcode build of a libpd project, please advise!)
(The open source release will have all of libpd's code+objects included with it, and so then it also would be straightforward for someone with greater knowledge than I ( and who has xcode and a developer's license) to enable and build those objects...although the reason I made MMP is so that people don't need to have those two things!)
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 1:37 PM, Pagano, Patrick wrote:
Dan said this on that list::
""No, there is no, and probably wil be no libpd-extended. It's up to you to include and build external source code.
Yes, expr~ is in. The license is BSD now. As for other things, try rjlib which aims to recreate many things currently in externals in pd-extended: https://github.com/rjdj/rjlib
This is not a limitation as it's actually easier to do somethings directly in C/C++, etc""
is there a way to build expr~ for MobMuPLat and use it then? that is the only object i seem to need, there is sources and a makefile included in the PdVanilla for MMplat
colleagues please advise.
thanks
pp
From: pd-list-bounces@iem.at [pd-list-bounces@iem.at] on behalf of Scott R. Looney [scottrlooney@gmail.com] Sent: Monday, March 18, 2013 1:34 PM To: Daniel Iglesia Cc: pd-list Subject: Re: [PD] MobMuPlat for Ipad and expr~ woes
peter brinkmann is the guy who who would know best, but i seem to remember pretty clearly that he stated somewhere [expr] and [expr~] were ok to use with libPD on the AppStore. in other words (i assume) they had been recompiled from source in a more compatible license.
here's the bit that clearly states that the vanilla version of PD does not have the right version of [expr] and [expr~] this is older news from about 2011 i think:
https://github.com/libpd/libpd/wiki/misc
and here's the bit where they mention [expr] and [expr~] are now under LGPL, but it doesn't appear to solve the issue definitively:
http://createdigitalnoise.com/discussion/1341/can-i-use-pd-extended-with-lib...
the total solution if you want that specific functionality (that i am aware of) is to recompile [expr] and [expr~] from source and put it under a BSD or MIT license.
the alternative is to redo that functionality with simple vanilla objects. there's a nice thread her on the PD forum about it:
http://puredata.hurleur.com/sujet-6980-way-rewrite-expr
hope this helps somewhat,
best, scott
On Mon, Mar 18, 2013 at 9:45 AM, Daniel Iglesia daniel.iglesia@gmail.com wrote: Hi everyone, (first time poster!)
expr and expr~ can't be in a closed-source binary. (the libpd doc has some discussion of this I believe). Once I release MobMuPlat open source, I was hoping to include them in the binary+source at that point. However, I have to check the licensing issues to see if even that is allowed, as MobMuPlat is and will be under the BSD license. (if people are well versed in this issue, please feel free to chime in.)
If they can't be included, then removing them from the pd-vanilla flavor in the distribution is probably a good idea, will do that.
Best, Dan
=== www.danieliglesia.com www.iglesiaintermedia.com
On Mar 18, 2013, at 8:50 AM, Patrick Pagano wrote:
That's one of 20 expr~s that i need :-(
On 03/18/2013 11:01 AM, Roman Haefeli wrote:
On Mon, 2013-03-18 at 13:52 +0000, Pagano, Patrick wrote:
damnit. Any idea when that might be or a workaround? silent weeping
expr if($f1-$f2==0, 0, 1)
[!= ] ?
Roman
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list