Portal    Foro    Buscar    FAQ    Registrarse    Conectarse


Publicar nuevo tema  Responder al tema 
Página 1 de 1
 
 
'makepkg' Es Requerido. (crear Paquetes Para ArchLinux)
Autor Mensaje
Responder citando   Descargar mensaje  
Mensaje 'makepkg' Es Requerido. (crear Paquetes Para ArchLinux) 
 
buenas

 makepkg_requerido

uso linux mint mate 32 bit 17.2

alguien a resuelto este problema?
 




===================
Software libre, programación libre, vida libre es la Public function Libertad()as Invendible
Proyectos: VisorRV1960,Taller2015,Tanteador
https://sourceforge.net/u/v3ctor-full/profile/
Blog: http://novatocodegambas.blogspot.com.uy/
 
última edición por v3ctor el Domingo, 16 Octobre 2016, 21:05; editado 1 vez 
v3ctor - Ver perfil del usuarioEnviar mensaje privadoVisitar sitio web del usuario 
Volver arribaPágina inferior
Responder citando   Descargar mensaje  
Mensaje Re: 'makepkg' Es Requerido. (crear Paquetes Para ArchLinux) 
 
v3ctor escribió: [Ver mensaje]
uso linux mint mate 32 bit 17.2 alguien a resuelto este problema?

Me tope con el mismo problema, no lo resolvi.
Para crear paquetes para arch instale una maquina virtual con manjaro y listo.
Saludos.
 



 
tincho - Ver perfil del usuarioEnviar mensaje privado 
Volver arribaPágina inferior
Responder citando   Descargar mensaje  
Mensaje Re: 'makepkg' Es Requerido. (crear Paquetes Para ArchLinux) 
 
bien tincho,

si con este hilo no logramos resolverlo, se que al menos hay una forma de hacerlo.

saludos.
 




===================
Software libre, programación libre, vida libre es la Public function Libertad()as Invendible
Proyectos: VisorRV1960,Taller2015,Tanteador
https://sourceforge.net/u/v3ctor-full/profile/
Blog: http://novatocodegambas.blogspot.com.uy/
 
v3ctor - Ver perfil del usuarioEnviar mensaje privadoVisitar sitio web del usuario 
Volver arribaPágina inferior
Responder citando   Descargar mensaje  
Mensaje Re: 'makepkg' Es Requerido. (crear Paquetes Para ArchLinux) 
 
Buscando en internet vi que makepkg es un script que está contenido en pacman.

Primero intente instalar pacman siguiendo el hilo: https://gist.github.com/chattama/3508370

Instalé todas las dependencias que mencionan, más libssl-dev y libgit2-dev

Al darle ./configure al final me devuelve lo sig:

Citar:

  Compilation options:
    Use libcurl            : yes
    Use GPGME              : yes
    Use OpenSSL            : yes
    Run make in doc/ dir   : no
    Doxygen support        : no
    debug support          : no
    extra warning flags    : no
    use git version        : no



Solo tengo tres 'yes'

Y al darle make falla

Citar:

make[3]: Nothing to be done for 'all'.
  CCLD     pacman
/usr/bin/ld: check.o: undefined reference to symbol 'archive_entry_size'
//usr/lib/x86_64-linux-gnu/libarchive.so.13: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
Makefile:526: recipe for target 'pacman' failed
make[3]: *** [pacman] Error 1
Makefile:586: recipe for target 'all-recursive' failed
make[2]: *** [all-recursive] Error 1
Makefile:970: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
Makefile:879: recipe for target 'all' failed
make: *** [all] Error 2



Como falló intente sólo instalar el makepkg. Dentro del directorio scripts hago el make y sudo make install; de misma forma en etc.

Ya en el IDE gambas no me muestra la advertencia y puedo seleccionar Archlinux. Pero al crear el instalador me da falla

Citar:

CREATING PACKAGE FOR ARCHLINUX.


Making build directory.
cd '/tmp/gambas.1000/6445/archlinux'
makepkg -g >> PKGBUILD
==> ERROR: An unknown error has occurred. Exiting...
User defined signal 1
Creating package...


Espero les sirva de punto de partida. Saludos.
 



 
razaAztk - Ver perfil del usuarioEnviar mensaje privadoVisitar sitio web del usuarioVer la galería personal del usuario 
Volver arribaPágina inferior
Responder citando   Descargar mensaje  
Mensaje Re: 'makepkg' Es Requerido. (crear Paquetes Para ArchLinux) 
 
estoy buscando dentro de gambas la causa por la que sale el mensaje, esto he encontrado hasta ahora...


esta en la carpeta Packager en modulo llamado package

Public Sub CheckSystem(sSys As String) As String
  
  Select Case sSys
  
    Case "mageia", "mandriva", "fedora", "suse"
      If Not RPMBUILD_PROG Then Return Subst(("'&1' is missing."), "rpmbuild")
      
    Case "debian", "ubuntu"
      If Not DKPG_PROG Then Return Subst(("'&1' is missing."), "debhelper")

    Case "slackware"
      If Not TAR_1_13_PROG Then Return Subst(("'&1' is missing."), "tar-1.13")

    Case "autotools"
      If Not AUTOCONF_PROG And If Not AUTOMAKE_PROG Then Return Subst(("'&1' and '&2' are missing."), "autoconf", "automake")
      If Not AUTOCONF_PROG Then Return Subst(("'&1' is missing."), "autoconf")
      If Not AUTOMAKE_PROG Then Return Subst(("'&1' is missing."), "automake")
      
    Case "archlinux"
      If Not MAKEPKG_PROG Then Return Subst(("'&1' is missing."), "makepkg")  ' aquiiiiiiiiiiiiiiiiiiiiiii
      
    Case "self"
      If Not MAKESELF_PROG Then Return Subst(("'&1' is missing."), "makeself")

    Case Else
      Return
      
  End Select
  
End

 




===================
Software libre, programación libre, vida libre es la Public function Libertad()as Invendible
Proyectos: VisorRV1960,Taller2015,Tanteador
https://sourceforge.net/u/v3ctor-full/profile/
Blog: http://novatocodegambas.blogspot.com.uy/
 
última edición por v3ctor el Lunes, 17 Octobre 2016, 12:11; editado 1 vez 
v3ctor - Ver perfil del usuarioEnviar mensaje privadoVisitar sitio web del usuario 
Volver arribaPágina inferior
Mostrar mensajes anteriores:    
 
OcultarTemas parecidos
Tema Autor Foro Respuestas último mensaje
No hay nuevos mensajes Paquetes Para ARM Disponibles En Ambos PPAs sebikul General 4 Sabado, 16 Febrero 2013, 00:55 Ver último mensaje
Shell
No hay nuevos mensajes Problema Al Abrir Gambas3 En ArchLinux AnSnarkista General 5 Jueves, 05 Septiembre 2013, 09:43 Ver último mensaje
AnSnarkista
No hay nuevos mensajes Problema De Dependencias En Los Paquetes P... tincho General 7 Jueves, 29 Octobre 2015, 21:01 Ver último mensaje
tincho
No hay nuevos mensajes No Coinciden Los Tipos: Requerido Float, O... gambafeliz Bases de Datos 5 Viernes, 05 Julio 2019, 11:06 Ver último mensaje
gambafeliz
 

Publicar nuevo tema  Responder al tema  Página 1 de 1
 

Usuarios navegando en este tema: 0 registrados, 0 ocultos y 1 invitado
Usuarios registrados conectados: Ninguno


 
Lista de permisos
No puede crear mensajes
No puede responder temas
No puede editar sus mensajes
No puede borrar sus mensajes
No puede votar en encuestas
No puede adjuntar archivos
Puede descargar archivos
No puede publicar eventos en el calendario



  

 

cron