diff options
author | Michael Palimaka <kensington@gentoo.org> | 2013-03-10 05:30:50 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2013-03-10 05:30:50 +0000 |
commit | 2345eb9786359833cc4168c147694605d58e22a1 (patch) | |
tree | fbcd341aabb3d2ea650714be0e0065306af00b7d /app-misc/digitemp | |
parent | vanilla-3.8.2 + genpatches-3.8-3 + grsecurity-2.9.1-3.8.2-201303082215 (diff) | |
download | gentoo-2-2345eb9786359833cc4168c147694605d58e22a1.tar.gz gentoo-2-2345eb9786359833cc4168c147694605d58e22a1.tar.bz2 gentoo-2-2345eb9786359833cc4168c147694605d58e22a1.zip |
Remove old.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-misc/digitemp')
-rw-r--r-- | app-misc/digitemp/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/digitemp/digitemp-3.2.0.ebuild | 60 | ||||
-rw-r--r-- | app-misc/digitemp/digitemp-3.3.2.ebuild | 70 | ||||
-rw-r--r-- | app-misc/digitemp/digitemp-3.5.0.ebuild | 70 |
4 files changed, 5 insertions, 201 deletions
diff --git a/app-misc/digitemp/ChangeLog b/app-misc/digitemp/ChangeLog index 63eaf2570d2a..6b3bb6e6ca44 100644 --- a/app-misc/digitemp/ChangeLog +++ b/app-misc/digitemp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/digitemp # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/ChangeLog,v 1.20 2013/03/09 18:09:49 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/ChangeLog,v 1.21 2013/03/10 05:30:50 kensington Exp $ + + 10 Mar 2013; Michael Palimaka <kensington@gentoo.org> -digitemp-3.2.0.ebuild, + -digitemp-3.3.2.ebuild, -digitemp-3.5.0.ebuild: + Remove old. 09 Mar 2013; Agostino Sarubbo <ago@gentoo.org> digitemp-3.5.0-r1.ebuild: Stable for x86, wrt bug #437334 diff --git a/app-misc/digitemp/digitemp-3.2.0.ebuild b/app-misc/digitemp/digitemp-3.2.0.ebuild deleted file mode 100644 index 5986c8ed05a0..000000000000 --- a/app-misc/digitemp/digitemp-3.2.0.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/digitemp-3.2.0.ebuild,v 1.9 2009/09/23 16:01:58 patrick Exp $ - -DESCRIPTION="Temperature logging and reporting using Dallas Semiconductor's iButtons and 1-Wire protocol" -HOMEPAGE="http://www.digitemp.com http://www.ibutton.com" -SRC_URI="http://www.digitemp.com/software/linux/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="" - -DEPEND="" - -src_compile() { - # default is to compile to the ds9097u. local use flag takes care of - # passive ds9097. the ds9097u setting is what i have, so probably a safe - # default - nothing special here. - local target="ds9097u" - [ "${SERIAL_DRIVER}" = ds9097 ] && target="ds9097" - make clean - - ewarn "" - ewarn "making for ${target} serial controller. if you would like support" - ewarn "for another controller, please set SERIAL_DRIVER=\"ds9097u\" or" - ewarn "SERIAL_DRIVER=\"ds9097\" as appropriate" - ewarn "" - - make ${target} -} - -src_install() { - dobin digitemp || die - dodoc README FAQ TODO - - # method one: don't treat the examples as docs; place them somewhere else. - # then tell the user where to find this stuff. suitable alternative: - # specify exampledir="/usr/share/doc/${PF}" - - local exampledir="/usr/share/${PN}" - local perldir="${exampledir}/perl_examples" - insinto ${perldir} - doins perl/* - local pythondir="${exampledir}/python_examples" - insinto ${pythondir} - doins python/* - local rrdbdir="${exampledir}/rrdb_examples" - insinto ${rrdbdir} - doins rrdb/* -} - -pkg_postinst() { - ewarn "set the SERIAL_DRIVER environment variable to ds9097 to build" - ewarn "for that controller instead" - elog "" - elog "examples of using digitemp with python, perl, and rrdtool are" - elog "located in ${exampledir}" - elog "" -} diff --git a/app-misc/digitemp/digitemp-3.3.2.ebuild b/app-misc/digitemp/digitemp-3.3.2.ebuild deleted file mode 100644 index 5d31a758a37e..000000000000 --- a/app-misc/digitemp/digitemp-3.3.2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/digitemp-3.3.2.ebuild,v 1.8 2012/01/09 07:15:10 ssuominen Exp $ - -EAPI=1 - -DESCRIPTION="Temperature logging and reporting using Dallas Semiconductor's iButtons and 1-Wire protocol" -HOMEPAGE="http://www.digitemp.com http://www.ibutton.com" -SRC_URI="http://www.digitemp.com/software/linux/${P}.tar.gz" - -IUSE="ds9097 ds9097u ds2490" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" - -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_compile() { - # 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 - - local targets=$(targets) - - for target in $targets; do - emake clean - emake LOCK="no" ${target} || die "emake ${target} failed" - 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 - echo - 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_*" - echo - fi - - dodoc README FAQ TODO - - for example in perl python rrdb; do - insinto "/usr/share/doc/${PF}/${example}_examples" - doins ${example}/* - done -} - -pkg_postinst() { - echo - elog "Examples of using digitemp with python, perl, and rrdtool are" - elog "located in /usr/share/doc/${PF}/" - echo -} diff --git a/app-misc/digitemp/digitemp-3.5.0.ebuild b/app-misc/digitemp/digitemp-3.5.0.ebuild deleted file mode 100644 index bf6ab02b5667..000000000000 --- a/app-misc/digitemp/digitemp-3.5.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/digitemp-3.5.0.ebuild,v 1.2 2012/01/09 07:15:10 ssuominen Exp $ - -EAPI=1 - -DESCRIPTION="Temperature logging and reporting using Dallas Semiconductor's iButtons and 1-Wire protocol" -HOMEPAGE="http://www.digitemp.com/ http://www.ibutton.com/" -SRC_URI="http://www.digitemp.com/software/linux/${P}.tar.gz" - -IUSE="ds9097 ds9097u ds2490" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" - -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_compile() { - # 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 - - local targets=$(targets) - - for target in $targets; do - emake clean - emake LOCK="no" ${target} || die "emake ${target} failed" - 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 - echo - 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_*" - echo - fi - - dodoc README FAQ TODO - - for example in perl python rrdb; do - insinto "/usr/share/doc/${PF}/${example}_examples" - doins ${example}/* - done -} - -pkg_postinst() { - echo - elog "Examples of using digitemp with python, perl, and rrdtool are" - elog "located in /usr/share/doc/${PF}/" - echo -} |