public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/digitemp/
Date: Wed, 12 Jan 2022 14:48:59 +0000 (UTC)	[thread overview]
Message-ID: <1641998885.b3772a88213a40e62759e55730d34336a29712cc.flow@gentoo> (raw)

commit:     b3772a88213a40e62759e55730d34336a29712cc
Author:     Dennis Eisele <kernlpanic <AT> dennis-eisele <DOT> de>
AuthorDate: Wed Jan 12 13:46:39 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 14:48:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3772a88

app-misc/digitemp: add 3.7.2

Closes: https://bugs.gentoo.org/682916
Signed-off-by: Dennis Eisele <kernlpanic <AT> dennis-eisele.de>
Closes: https://github.com/gentoo/gentoo/pull/23752
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-misc/digitemp/Manifest              |  1 +
 app-misc/digitemp/digitemp-3.7.2.ebuild | 77 +++++++++++++++++++++++++++++++++
 2 files changed, 78 insertions(+)

diff --git a/app-misc/digitemp/Manifest b/app-misc/digitemp/Manifest
index 53e6100009d2..c8bc36ce59fe 100644
--- a/app-misc/digitemp/Manifest
+++ b/app-misc/digitemp/Manifest
@@ -1 +1,2 @@
 DIST digitemp-3.7.1.tar.gz 144870 BLAKE2B 5d00197ba0122772d96c3185f430119961d214f50dc07dcd5881e1aa1135283680ff38b4d92736827f5c7644b11930b9418b8467f276e832e40f4228d08d1774 SHA512 e5eaf576b544c61049a358dece7dc96d9793b751ef08645060f3b2c1a2006e2906c3aa3f97de3dab46818290d664d2e784a948b2495b538a200b6d71b03173d2
+DIST digitemp-3.7.2.tar.gz 146166 BLAKE2B 9718e5d8a135e99cfd8893f5f4d2cc40a0bcdffa4e01c4ef460d654b38d9808c75ea1efced6211672033a67be8ba7f30f34320ef8e64d47d8a88be8bbac8c997 SHA512 807934ecc743df5ee69e9a8a0f5e90e469f03e577cc80b4510e6ac4ecc61ff9c79e05642602a4f50b4acda7e1f53e33016e6c201898ab0b44c76f3f7ac028820

diff --git a/app-misc/digitemp/digitemp-3.7.2.ebuild b/app-misc/digitemp/digitemp-3.7.2.ebuild
new file mode 100644
index 000000000000..c2fd1c941d08
--- /dev/null
+++ b/app-misc/digitemp/digitemp-3.7.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Temperature logging and reporting using Maxim's iButtons and 1-Wire protocol"
+HOMEPAGE="https://www.digitemp.com/ https://www.ibutton.com/"
+SRC_URI="https://github.com/bcl/digitemp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="ds9097 ds9097u ds2490"
+
+DEPEND="ds2490? ( virtual/libusb:0 )"
+
+targets() {
+	# default is to compile to the ds9097u.
+	if ! ( use ds9097 || use ds9097u || use ds2490 ); then
+		echo ds9097u
+	fi
+
+	for target in ds9097 ds9097u ds2490; do
+		if use ${target}; then
+			echo ${target}
+		fi
+	done
+}
+
+src_prepare() {
+	default
+
+	sed -i \
+		-e "/^CFLAGS/s:-O2:${CFLAGS}:" \
+		-e "/^LIBS/s:=:= ${LDFLAGS}:" \
+		Makefile || die
+
+	# default is to compile to the ds9097u.
+	if ! ( use ds9097 || use ds9097u || use ds2490 ); then
+		ewarn "If you don't choose a component to install, we default to ds9097u"
+	fi
+}
+
+src_compile() {
+	local targets=$(targets)
+
+	for target in ${targets}; do
+		emake clean
+		emake CC="$(tc-getCC)" LOCK="no" ${target}
+	done
+}
+
+src_install() {
+	for target in $(echo $(targets) | tr '[:lower:]' '[:upper:]'); do
+		dobin digitemp_${target} && \
+		dosym digitemp_${target} /usr/bin/digitemp
+	done
+
+	if [[ $(targets|wc -l) -ge 1 ]]; then
+		ewarn "/usr/bin/digitemp has been symlinked to /usr/bin/digitemp_${target}"
+		ewarn "If you want to access the others, they are available at /usr/bin/digitemp_*"
+	fi
+
+	dodoc README FAQ TODO
+
+	for example in perl python rrdb; do
+		docinto ${example}_examples
+		dodoc -r ${example}/*
+	done
+}
+
+pkg_postinst() {
+	elog "Examples of using digitemp with python, perl, and rrdtool are"
+	elog "located in /usr/share/doc/${PF}/"
+}


             reply	other threads:[~2022-01-12 14:49 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-12 14:48 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-04-19  4:31 [gentoo-commits] repo/gentoo:master commit in: app-misc/digitemp/ Sam James
2019-02-20 21:40 Pacho Ramos
2019-02-20 13:16 Mikle Kolyada
2018-06-02 22:38 Aaron Bauman
2016-01-27 13:26 Wolfram Schlich

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=1641998885.b3772a88213a40e62759e55730d34336a29712cc.flow@gentoo \
    --to=flow@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /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