Add recipe for poezio (curses xmpp client)

This has been pending on my laptop for a few years, as I work on it
under the contributor's supervision atvarious free software meetups and
events.
This commit is contained in:
Adrien Destugues
2018-07-11 14:07:17 +02:00
parent ef34f7ddb9
commit 3376b6e020
7 changed files with 390 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
SUMMARY="Collection of ASN.1 modules in form of pyasn1 classes"
DESCRIPTION="A collection of ASN.1 modules expressed in form of pyasn1 \
classes. Includes protocols PDUs definition (SNMP, LDAP etc.) and various \
data structures (X.509, PKCS etc.)."
HOMEPAGE="https://pypi.org/project/pyasn1-modules/"
COPYRIGHT="2011-2018 Ilya Etingof "
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="https://files.pythonhosted.org/packages/37/33/74ebdc52be534e683dc91faf263931bc00ae05c6073909fde53999088541/pyasn1-modules-$portVersion.tar.gz"
SOURCE_DIR="pyasn1-modules-$portVersion"
CHECKSUM_SHA256="a0cf3e1842e7c60fde97cb22d275eb6f9524f5c5250489e292529de841417547"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3)
PYTHON_VERSIONS=(3.6)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}

View File

@@ -0,0 +1,62 @@
SUMMARY="Pure-Python implementation of ASN.1 types and codecs"
DESCRIPTION="Pure-Python implementation of ASN.1 types and DER/BER/CER codecs \
(X.208)"
HOMEPAGE="https://pypi.org/project/pyasn1"
COPYRIGHT="2007-2018 Ilya Etingof "
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="https://files.pythonhosted.org/packages/0d/33/3466a3210321a02040e3ab2cd1ffc6f44664301a5d650a7e44be1dc341f2/pyasn1-$portVersion.tar.gz"
SOURCE_DIR="pyasn1-$portVersion"
CHECKSUM_SHA256="fb81622d8f3509f0026b0683fe90fea27be7284d3826a5f2edf97f69151ab0fc"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3)
PYTHON_VERSIONS=(3.6)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}

View File

@@ -0,0 +1,35 @@
From 453186ac548dd30c1749e26093c61246617d5e8c Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
Date: Wed, 11 Jul 2018 14:02:51 +0200
Subject: Add Haiku support.
Just pretend we are NetBSD.
diff --git a/pycares.egg-info/SOURCES.txt b/pycares.egg-info/SOURCES.txt
index 879798e..dc1fd71 100644
--- a/pycares.egg-info/SOURCES.txt
+++ b/pycares.egg-info/SOURCES.txt
@@ -4,6 +4,7 @@ MANIFEST.in
README.rst
TODO
build_inplace
+setup.cfg
setup.py
setup_cares.py
tox.ini
diff --git a/setup_cares.py b/setup_cares.py
index 97c4cc6..5044766 100644
--- a/setup_cares.py
+++ b/setup_cares.py
@@ -78,6 +78,8 @@ class cares_build_ext(build_ext):
elif sys.platform.startswith('freebsd'):
self.compiler.add_include_dir(os.path.join(self.cares_dir, 'src/config_freebsd'))
self.compiler.add_library('kvm')
+ elif sys.platform.startswith('haiku'):
+ self.compiler.add_include_dir(os.path.join(self.cares_dir, 'src/config_netbsd'))
elif sys.platform.startswith('dragonfly'):
self.compiler.add_include_dir(os.path.join(self.cares_dir, 'src/config_freebsd'))
elif sys.platform.startswith('netbsd'):
--
2.16.4

View File

@@ -0,0 +1,70 @@
SUMMARY="Python interface for c-ares"
DESCRIPTION="pycares is a Python module which provides an interface to c-ares. \
c-ares is a C library that performs DNS requests and name resolutions \
asynchronously."
HOMEPAGE="https://pypi.python.org/pypi/pycares"
COPYRIGHT="2017 Saúl Ibarra Corretgé"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://pypi.python.org/packages/89/5c/3a7e1a52d6abb52b9ca1a56d2df699936e89d8b98f75cfd60d03363e7c10/pycares-$portVersion.tar.gz"
CHECKSUM_SHA256="36f4c03df57c41a87eb3d642201684eb5a8bc194f4bafaa9f60ee6dc0aef8e40"
PATCHES="pycares-$portVersion.patchset"
ARCHITECTURES=""
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libcares$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libcares$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
"
PYTHON_PACKAGES=(python3)
PYTHON_VERSIONS=(3.6)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}

View File

@@ -0,0 +1,66 @@
SUMMARY="XMPP library for Python 3.4+"
DESCRIPTION="Slixmpp is an MIT licensed XMPP library for Python 3.4+. It is a\
fork of SleekXMPP.
Slixmpp's goals is to only rewrite the core of the library (the low level \
socket handling, the timers, the events dispatching) in order to remove all \
threads."
HOMEPAGE="https://github.com/poezio/slixmpp"
COPYRIGHT="2010 Nathanael C. Fritz"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/poezio/slixmpp/archive/slix-$portVersion.tar.gz"
SOURCE_DIR="slixmpp-slix-$portVersion"
CHECKSUM_SHA256="805fdd89bd3c005e2270e1805ed11d12e045705c11bd649aeae39a9efd75af81"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3)
PYTHON_VERSIONS=(3.6)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
eval "PROVIDES_${pythonPackage}=\"\
${portName}_$pythonPackage = $portVersion\
\"; \
REQUIRES_$pythonPackage=\"\
haiku\n\
cmd:python$pythonVersion\
\""
BUILD_REQUIRES="$BUILD_REQUIRES
setuptools_$pythonPackage"
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
cmd:python$pythonVersion"
done
INSTALL()
{
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
python=python$pythonVersion
installLocation=$prefix/lib/$python/vendor-packages/
export PYTHONPATH=$installLocation:$PYTHONPATH
mkdir -p $installLocation
rm -rf build
$python setup.py build install \
--root=/ --prefix=$prefix
packageEntries $pythonPackage \
$prefix/lib/python*
done
}