public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-ppm-wiegand/
@ 2020-03-26 20:20 Rick Farina
  0 siblings, 0 replies; 2+ messages in thread
From: Rick Farina @ 2020-03-26 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     89a32dda93dd378eb98eb2e535a22991bd60e30d
Author:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 26 20:19:01 2020 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu Mar 26 20:20:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a32dda

net-wireless/gr-ppm-wiegand: initial ebuild

https://github.com/redsand/gr-ppm-wiegand/issues/1

Package-Manager: Portage-2.3.95, Repoman-2.3.21
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>

 .../gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild      | 29 ++++++++++++++++++++++
 net-wireless/gr-ppm-wiegand/metadata.xml           | 15 +++++++++++
 2 files changed, 44 insertions(+)

diff --git a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild
new file mode 100644
index 00000000000..793f5725988
--- /dev/null
+++ b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils python-single-r1
+
+DESCRIPTION="GnuRadio PPM (Differential Pulse Position Modulation/Demodulation) plugin"
+HOMEPAGE="https://github.com/redsand/gr-ppm-wiegand"
+if [ "${PV}" = "9999" ]; then
+	EGIT_REPO_URI="https://github.com/redsand/gr-ppm-wiegand.git"
+	inherit git-r3
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/redsand/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+LICENSE="GPL-3+"
+SLOT="0"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+	>=net-wireless/gnuradio-3.7.0:="
+
+DEPEND="${RDEPEND}
+	dev-libs/boost:=
+	dev-util/cppunit"

diff --git a/net-wireless/gr-ppm-wiegand/metadata.xml b/net-wireless/gr-ppm-wiegand/metadata.xml
new file mode 100644
index 00000000000..4c5cd62965d
--- /dev/null
+++ b/net-wireless/gr-ppm-wiegand/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>zerochaos@gentoo.org</email>
+		<name>Rick Farina</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>radio@gentoo.org</email>
+		<name>Radio</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">redsand/gr-ppm-wiegand</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-ppm-wiegand/
@ 2020-03-31 15:04 Rick Farina
  0 siblings, 0 replies; 2+ messages in thread
From: Rick Farina @ 2020-03-31 15:04 UTC (permalink / raw
  To: gentoo-commits

commit:     b6dc22cfdea85d2a07e7973fada179be756aa386
Author:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 31 15:03:56 2020 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Tue Mar 31 15:04:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6dc22cf

net-wireless/gr-ppm-wiegand: fix qa warning

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>

 net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild
index 793f5725988..6807b68ba67 100644
--- a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild
+++ b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild
@@ -27,3 +27,17 @@ RDEPEND="${PYTHON_DEPS}
 DEPEND="${RDEPEND}
 	dev-libs/boost:=
 	dev-util/cppunit"
+
+src_configure() {
+	#not supported by upstream...yet
+	mycmakeargs=(
+		-DGR_PKG_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}"
+	)
+	cmake-utils_src_configure
+}
+
+src_install(){
+	default
+	dodir "/usr/share/doc/${PF}"
+	mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}"
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-03-31 15:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-31 15:04 [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-ppm-wiegand/ Rick Farina
  -- strict thread matches above, loose matches on Subject: below --
2020-03-26 20:20 Rick Farina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox