Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: pborut123 <pborut123@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] Buildroot package for psycopg module for Beaglebone black
Date: Tue, 28 Jun 2016 13:25:09 +0200	[thread overview]
Message-ID: <57725E95.3040107@gmail.com> (raw)

Hello,

I'm new to this mailing list, quite new to buildroot, too.
I'm trying to build distribution for Beaglebone black with Python 3.5.1 
and postgresql 9.5.2.
I want to have also psycopg2 module that is not present in current 
package list.
I've tried to make my own package but I'm not successful.

Last error, I've received from build is at installation step:
 >>> python-psycopg 2.6.1 Installing to target
...
error: option --executable not recognized
make: *** 
[..buildroot/output/build/python-psycopg-2.6.1/.stamp_target_installed] 
Error 1

My question is if can anybody help me with this, pointing me on what 
I've done wrong.

Here is my package code:

PYTHON_PSYCOPG_VERSION = 2.6.1
PYTHON_PSYCOPG_SOURCE = psycopg2-$(PYTHON_PSYCOPG_VERSION).tar.gz
PYTHON_PSYCOPG_SITE = http://initd.org/psycopg/tarballs/PSYCOPG-2-6
PYTHON_PSYCOPG_LICENSE = GPLv2
PYTHON_PSYCOPG_LICENSE_FILES = LICENSE
PYTHON_PSYCOPG_SETUP_TYPE = setuptools
PYTHON_PSYCOPG_BUILD_OPTS = build_ext --pg-config 
$(STAGING_DIR)/usr/bin/pg_config build

define PYTHON_PSYCOPG_INSTALL_CUSTOM_PG_CONFIG
     $(INSTALL) -m 0755 -D package/python-psycopg/pg_config \
         $(STAGING_DIR)/usr/bin/pg_config
endef
PYTHON_PSYCOPG_PRE_BUILD_HOOKS += PYTHON_PSYCOPG_INSTALL_CUSTOM_PG_CONFIG
$(eval $(python-package))

and here is missing host pg_config file, I've inserted to setup.py:

#!/bin/sh
# I've pointed to already cross-build posgresql base directory in build
prefix=buildroot/output/build/postgresql-9.5.2/src

case "$1" in
   --includedir)
     echo "$prefix/include"
     ;;
   --libdir)
     echo "$prefix/lib"
     ;;
   --version)
       echo "PostgreSQL 9.5.2"
     ;;

   *)
     echo "Usage: $0 {--includedir|--libdir}"
esac

Thank you and best regards,
Borut.

             reply	other threads:[~2016-06-28 11:25 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-28 11:25 pborut123 [this message]
2016-06-28 23:27 ` [Buildroot] Buildroot package for psycopg module for Beaglebone black Arnout Vandecappelle
2016-06-29  7:47   ` pborut123
2016-06-29  8:09     ` Yegor Yefremov
2016-06-29  9:28       ` pborut123
2016-06-29  9:42         ` Yegor Yefremov
2016-06-29 14:32           ` pborut123
2016-06-30 15:26             ` Arnout Vandecappelle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=57725E95.3040107@gmail.com \
    --to=pborut123@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox