I discovered MobMuPlat, I want to install and try it. It says it needs Pd 0.46 (I have extended 0.44). I would liike to install 0.46, but it is not in Millers' page... I found in lauchpad, but it says it's for 15.04 (0.46.2-1) and 15.10 (0.46.6-1). I don't want SO and package versions problems...
Did anybody compile it for 14.04 and can send me the .deb? Is there any automatic builder where I can download it...?
Thanks!
On 05/09/2015 08:04 PM, Mario Mey wrote:
I discovered MobMuPlat, I want to install and try it. It says it needs Pd 0.46 (I have extended 0.44). I would liike to install 0.46, but it is not in Millers' page... I found in lauchpad, but it says it's for 15.04 (0.46.2-1) and 15.10 (0.46.6-1). I don't want SO and package versions problems...
Did anybody compile it for 14.04 and can send me the .deb? Is there any automatic builder where I can download it...?
somebody might have mentioned this in the past.
$ PDVER=0.46.6-1 $ sudo apt-get install devscripts $ dget -u http://http.debian.net/debian/pool/main/p/puredata/puredata_$%7BPDVER%7D.dsc $ cd puredata-${PDVER%-*} $ mk-build-deps $ sudo dpkg -i puredata-build-deps_${PDVER}_amd64.deb $ sudo apt-get -f install $ dpkg-buildpackage -r fakeroot $ sudo dpkg -i ../*${PDVER}_*.deb
this should work on pristine systems (when repeated , you can remove about half the commands)
gmsdr IOhannes
I tried to follow step by step, but I had some troubles...
$ PDVER=0.46.6-1 $ sudo apt-get install devscripts $ dget -u http://http.debian.net/debian/pool/main/p/puredata/puredata_$%7BPDVER%7D.dsc $ cd puredata-${PDVER%-*} $ mk-build-deps $ sudo dpkg -i puredata-build-deps_${PDVER}_amd64.deb
Everything went Ok. But here, I have this error (sorry the language),
mario@circo3d:~/puredata-0.46.6$ sudo dpkg -i
puredata-build-deps_${PDVER}_amd64.deb
Seleccionando el paquete puredata-build-deps previamente no seleccionado.
(Leyendo la base de datos ... 589109 ficheros o directorios instalados
actualmente.)
Preparing to unpack puredata-build-deps_0.46.6-1_amd64.deb ...
Unpacking puredata-build-deps (0.46.6-1) ...
dpkg: problemas de dependencias impiden la configuración de
puredata-build-deps:
puredata-build-deps depende de portaudio19-dev; sin embargo:
El paquete portaudio19-dev' no está instalado. puredata-build-deps depende de libjack-dev; sin embargo: El paquete
libjack-dev' no está instalado.
dpkg: error al procesar el paquete puredata-build-deps (--install): problemas de dependencias - se deja sin configurar Se encontraron errores al procesar: puredata-build-deps
but, supposedly, it is fixed with the next command:
$ sudo apt-get -f install
This does not install anything, but it remove puredata-build-deps (I don't think it is good...)
mario@circo3d:~/puredata-0.46.6$ sudo apt-get -f install Leyendo lista de paquetes... Hecho Creando árbol de dependencias Leyendo la información de estado... Hecho Corrigiendo dependencias... Listo Los paquetes indicados a continuación se instalaron de forma automática y ya no son necesarios. autopoint dh-autoreconf libportaudiocpp0 Use 'apt-get autoremove' to remove them. Los siguientes paquetes se ELIMINARÁN: puredata-build-deps 0 actualizados, 0 se instalarán, 1 para eliminar y 190 no actualizados. 1 no instalados del todo o eliminados. Se liberarán 26,6 kB después de esta operación. ¿Desea continuar? [S/n] (Leyendo la base de datos ... 589112 ficheros o directorios instalados actualmente.) Removing puredata-build-deps (0.46.6-1) ...
But I continued...
$ dpkg-buildpackage -r fakeroot
This command is wrong, after googling, I think it is
dpkg-buildpackage -rfakeroot
But this commands says:
mario@circo3d:~/puredata-0.46.6$ dpkg-buildpackage -rfakeroot dpkg-buildpackage: paquete fuente puredata dpkg-buildpackage: versión de las fuentes 0.46.6-1 dpkg-buildpackage: source distribution unstable dpkg-buildpackage: fuentes modificadas por IOhannes m zmölnig (Debian/GNU) umlaeute@debian.org dpkg-buildpackage: arquitectura del sistema amd64 dpkg-source --before-build puredata-0.46.6 dpkg-checkbuilddeps: Dependencias de construcción no satisfechas: portaudio19-dev libjack-dev dpkg-buildpackage: aviso: Las dependencias y conflictos de construcción no están satisfechas, interrumpiendo dpkg-buildpackage: aviso: (Use la opción «-d» para anularlo.)
By seeing this... I don't think it is working... but I continued.
$ sudo dpkg -i ../*${PDVER}_*.deb
mario@circo3d:~/puredata-0.46.6$ sudo dpkg -i ../*${PDVER}_*.deb dpkg: error al procesar el archivo ../*0.46.6-1_*.deb (--install): no se puede acceder al archivo: No existe el archivo o el directorio Se encontraron errores al procesar: ../*0.46.6-1_*.deb
I was right, it didn't work.
Did I do something wrong? Any help... ?
Thank you very much.
On 05/11/2015 02:57 PM, Mario Mey wrote:
mario@circo3d:~/puredata-0.46.6$ sudo dpkg -i puredata-build-deps_${PDVER}_amd64.deb Seleccionando el paquete puredata-build-deps previamente no seleccionado.
oh i forgot an important step: $ export LANG=C before all the other things. it helps a lot if you want to have people understand the errors you get on your vietnamese installation.
dpkg: error al procesar el paquete puredata-build-deps (--install): problemas de dependencias - se deja sin configurar Se encontraron errores al procesar: puredata-build-deps
but, supposedly, it is fixed with the next command:
yep, that was the plan...
$ sudo apt-get -f install
This does not install anything, but it remove puredata-build-deps (I don't think it is good...)
...but it didn't work out.
probably it would have been better to simply use: $ sudo mk-build-deps -f
which should automatically install the build-deps package and its dependencies, thus making the "dpkg" and "apt-get" steps unnecessary.
dpkg-checkbuilddeps: Dependencias de construcción no satisfechas: portaudio19-dev libjack-dev
you can also install these two packages manually.
(and then re-run the steps starting with dpkg-buildpackage
)
fgards IOhannes
probably it would have been better to simply use: $ sudo mk-build-deps -f
mario@circo3d:~/puredata-0.46.6$ sudo mk-build-deps -f Unknown option: f
Maybe it's "-i"? I did it, but it did nothing different from "mk-build-deps" only.
dpkg-checkbuilddeps: Dependencias de construcción no satisfechas: portaudio19-dev libjack-dev
you can also install these two packages manually.
I tried to install them, and it ask me for libjack0, too. I tried to install it and it wants to do this:
The following extra packages will be installed: jackd1 jackd1-firewire libportaudiocpp0 Suggested packages: jack-tools meterbridge portaudio19-doc The following packages will be REMOVED: ardour3 jackd jackd2 jackd2-firewire libasound2-plugins:i386 libjack-jackd2-0 libjack-jackd2-0:i386 qjackctl skype:i386 The following NEW packages will be installed: jackd1 jackd1-firewire libjack-dev libjack0 libportaudiocpp0 portaudio19-dev 0 upgraded, 6 newly installed, 9 to remove and 209 not upgraded. Need to get 820 kB of archives. After this operation, 75,2 MB disk space will be freed.
I think it wants to change from jack2 to jack1... doesn't it? Do I have to change jack version...?
Thanks for your time!
On 05/11/2015 08:13 PM, Mario Mey wrote:
probably it would have been better to simply use: $ sudo mk-build-deps -f
mario@circo3d:~/puredata-0.46.6$ sudo mk-build-deps -f Unknown option: f
Maybe it's "-i"? I did it,
yes, that was a typo on my side.
I think it wants to change from jack2 to jack1... doesn't it? Do I have to change jack version...?
no not really¹.
you can install libjack-jackd2-dev
manually, which will provide
libjack-dev
gfmdsar IOhannes
¹ by default, Debian uses jack1 for building, but you can use the package with jackd2, as it is backwards compatible.