Updated python packages
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
AUX libsigrokdecode-0.3.0-configure-test.patch 859 BLAKE2B a66a6c7023b961b4b6d17f8a15ca4ac4d525d94744cdea0e2d6ebc90ff65f3e08721baac23f4714de3ed5376121d8760c72fc3ef4e51dff94d6a28c549c357ab SHA512 466f21110fa3a8dec268f0b28520fea3497fa36fa7e8a93b98ac9dc8d36ac2172f847a02814625fb2a24740c19dee4ffc06e889727a0385d2a848a72552819ae
|
||||
AUX libsigrokdecode-0.3.0-no-check-linkage.patch 1002 BLAKE2B 0af12fda705aa507ddbcb1f7133f2e1d90dd0214c35ef9875843ae843c56693d90e027fa975892beaca8ec1079c29f3eb51c8092870c02878af5cec653aa5c65 SHA512 580b3f635fd050341c5c12ce6c5e2266f50543920fd70008b8f4c52077ecce0dfe6bd19134c8deea4ca6b24eaf0d177e44e96290c015ba6bf74fdd7bd578c74c
|
||||
DIST libsigrokdecode-0.4.1.tar.gz 751546 BLAKE2B b1625714a75e481d94956bd64af264c87b440c0a236f19ff02d18cc16964b701de8799a81943f4e9ec1181b1906c5e62deca98fbbbc30dfbdf8bff2208f86bc6 SHA512 b072001190e80a194986524fd4de4d32f4559d618b151a3dbfa2c63b292c8a490535cb7479cfa665c4e8d3798251a5d6f5ecfa456ca669237237ffced3e88272
|
||||
EBUILD libsigrokdecode-0.4.1.ebuild 1060 BLAKE2B c2c2d956193168140bcce1e2a8ab53da374f0cef5b9a9dfe5d7543c5a35d044c125c6695547a151b97ef0c8d03b7c9d169626166782637720dcea4bc46290056 SHA512 951e4158ef8a257b9d15d886728cf3e59c511622ffe1a02e9094ea56c8fe644de850dabe4fe138dd43f122bc6ae8f289e95d85ac6cd88cbe59e90ff55929f90b
|
||||
EBUILD libsigrokdecode-9999.ebuild 1070 BLAKE2B 0fb380b52d1583cf09f6beff221800f61cbb84e64a9942ee87143ae2e7d37c9b0b3adfb1893d99c2179ef88fdfd15e09be58e0d374e7e1dbf464a43ebcd3f96a SHA512 5cb16084bedde4661c56c49a74769b8f89f475287849859ccbf1e9ac2b4d094af42b17edcdcb69a74db8335f81aa4f93a1f299ce9cabeb58ed29374021cb2527
|
||||
MISC metadata.xml 247 BLAKE2B e46b8f2d053251af5cb591bb2ee5e35089c4e8174ee2e7a3c504db23f844b65083d4a3e5198da3977ad3e98b67cab2e0de686a3c62009b487c1e64785a8ff65d SHA512 15df289e0f962f564551f61ada3cfef0311f6af639887def780bf5ad3be105515c8d24c950ff340ed35d89b9cd994af3540322b684c5dec3b43ec6bb0041aa4e
|
||||
@@ -1,28 +0,0 @@
|
||||
https://sourceforge.net/p/sigrok/mailman/message/32459769/
|
||||
|
||||
From dc83770847c39934f5cbc63c8652124fafcb8d0b Mon Sep 17 00:00:00 2001
|
||||
From: Mike Frysinger <vapier@gentoo.org>
|
||||
Date: Sat, 14 Jun 2014 01:37:12 -0400
|
||||
Subject: [PATCH 1/2] fix test operator
|
||||
|
||||
The == operator is not in POSIX.
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 9527379..3f661ec 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -125,7 +125,7 @@ AC_SUBST(MODNAME_PYTHON)
|
||||
# We also need to find the name of the python3 executable (for 'make install').
|
||||
# Some OSes call this python3, some call it python3.2, etc. etc.
|
||||
AC_CHECK_PROGS([PYTHON3], [python3.4 python3.3 python3.2 python3])
|
||||
-if test "x$PYTHON3" == "x"; then
|
||||
+if test "x$PYTHON3" = "x"; then
|
||||
AC_MSG_ERROR([cannot find python3 executable.])
|
||||
fi
|
||||
|
||||
--
|
||||
2.0.0
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
https://sourceforge.net/p/sigrok/mailman/message/32459770/
|
||||
|
||||
From 27ecf0c85482786f7617571c690797ab3f07f795 Mon Sep 17 00:00:00 2001
|
||||
From: Mike Frysinger <vapier@gentoo.org>
|
||||
Date: Sat, 14 Jun 2014 01:38:58 -0400
|
||||
Subject: [PATCH 2/2] do not add check to common cflags/libs
|
||||
|
||||
Only the unittests use these flags, so don't go linking them in for
|
||||
the main library too.
|
||||
---
|
||||
configure.ac | 3 +--
|
||||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 3f661ec..10213a7 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -134,8 +134,7 @@ AC_SEARCH_LIBS([pow], [m])
|
||||
|
||||
# The Check unit testing framework is optional. Disable if not found.
|
||||
PKG_CHECK_MODULES([check], [check >= 0.9.4],
|
||||
- [have_check="yes"; CFLAGS="$CFLAGS $check_CFLAGS";
|
||||
- LIBS="$LIBS $check_LIBS"], [have_check="no"])
|
||||
+ [have_check="yes"], [have_check="no"])
|
||||
AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
|
||||
|
||||
# libsigrok is optional (only used for the protocol decoder test framework).
|
||||
--
|
||||
2.0.0
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
PYTHON_COMPAT=( python3_5 )
|
||||
|
||||
inherit eutils python-single-r1
|
||||
|
||||
if [[ ${PV} == "9999" ]]; then
|
||||
EGIT_REPO_URI="git://sigrok.org/${PN}"
|
||||
inherit git-r3 autotools
|
||||
else
|
||||
SRC_URI="http://sigrok.org/download/source/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="provide (streaming) protocol decoding functionality"
|
||||
HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="static-libs"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND=">=dev-libs/glib-2.24.0
|
||||
${PYTHON_DEPS}"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
[[ ${PV} == "9999" ]] && eautoreconf
|
||||
|
||||
# Only a test program (not installed, and not used by src_test)
|
||||
# is used by libsigrok, so disable it to avoid the compile.
|
||||
sed -i \
|
||||
-e '/build_runtc=/s:yes:no:' \
|
||||
configure || die
|
||||
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable static-libs static)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
prune_libtool_files
|
||||
}
|
||||
@@ -1,54 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="6"
|
||||
|
||||
PYTHON_COMPAT=( python3_5 python3_6 )
|
||||
|
||||
inherit eutils python-single-r1
|
||||
|
||||
if [[ ${PV} == "9999" ]]; then
|
||||
EGIT_REPO_URI="git://sigrok.org/${PN}"
|
||||
inherit git-r3 autotools
|
||||
else
|
||||
SRC_URI="http://sigrok.org/download/source/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="provide (streaming) protocol decoding functionality"
|
||||
HOMEPAGE="http://sigrok.org/wiki/Libsigrokdecode"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="static-libs"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND=">=dev-libs/glib-2.24.0
|
||||
${PYTHON_DEPS}"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
[[ ${PV} == "9999" ]] && eautoreconf
|
||||
|
||||
# Only a test program (not installed, and not used by src_test)
|
||||
# is used by libsigrok, so disable it to avoid the compile.
|
||||
sed -i \
|
||||
-e '/build_runtc=/s:yes:no:' \
|
||||
configure || die
|
||||
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf $(use_enable static-libs static)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
prune_libtool_files
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>embedded@gentoo.org</email>
|
||||
<name>Embedded Gentoo</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user