summaryrefslogtreecommitdiff
path: root/app-misc/vcontrold
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-24 20:03:07 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-24 20:03:07 +0000
commitec9f79e1d3358df31a704f16a76a269ccceae2b2 (patch)
tree5982c029d09bc9e396ad5ead3d99c99ed6a58322 /app-misc/vcontrold
parent9aefa814d833d6bdd1bdbc7d0f44d5680c9beaa8 (diff)
gentoo auto-resync : 24:12:2022 - 20:03:07
Diffstat (limited to 'app-misc/vcontrold')
-rw-r--r--app-misc/vcontrold/Manifest2
-rw-r--r--app-misc/vcontrold/vcontrold-0.98.10.ebuild43
2 files changed, 0 insertions, 45 deletions
diff --git a/app-misc/vcontrold/Manifest b/app-misc/vcontrold/Manifest
index 887f1edfdd13..c16745832a6f 100644
--- a/app-misc/vcontrold/Manifest
+++ b/app-misc/vcontrold/Manifest
@@ -1,6 +1,4 @@
AUX vcontrold 157 BLAKE2B c8d08ae44343850d95e9b99626690a2f79403bb9bafef9ea6125376623c617c4fc1523beb4be4d3cfa50d67c3a7ef84e4b3042afcaf8211ea0276d4e519cd713 SHA512 10583cff05a3099d06ec13cd35711c93dece72de1ba05a2026d85b31cb6279136cbbffa00bcc162cba841232d2f8fe2babda463bdadb6b4f3e1f39ce95562401
-DIST vcontrold-0.98.10.tar.gz 87721 BLAKE2B 06111f534d137d08f0a66b00f1238dd04856c3a7dbe630baeed89667de2840cfa6d9227a899b3ce4819accccd8d2228ef7e31e9562e1bb21027a3ddd2fe2b148 SHA512 4e65c23edd2542323a2815154544c2a4376c35a49a52168d6a3a08dba68f462dbd9c0c43020f86a4cb6c4eb7736b5d9460c2e4e2a67c015e2e51841338547c55
DIST vcontrold-0.98.11.tar.gz 108805 BLAKE2B ff9cde5fb807a67a891bdf0feeb692c88f52d2960eef77d12153602bd18588489f08a03ef2c4d6d847d30e2b19870453a48800cdc28f40e8797dda50d3601b3f SHA512 28693472897bae695cd2bab23bc0abd8fa0b85dcf1816983f6876b99a78114f81e5e64f199ca646bd37b6f1603c3824485c78d73e289cf5dbf702c22ed5100dc
-EBUILD vcontrold-0.98.10.ebuild 882 BLAKE2B febf481c4f796ed0058fd4cee3f938d2633f5ae86dc47b1fc2dd603c40d13fde1107abd0cff0e865b5702a01a2df2b1f1f5435c2242bd9cb8ad3219d5f32cf68 SHA512 b958adf4ca63c46fa77fd1dbf700a25b569bb3eb9b90b888780af43adf4382b959deecdb3ab8f08b0a8d3831ab139ca63d6c43080942e3e821806fba4f80a4a5
EBUILD vcontrold-0.98.11.ebuild 890 BLAKE2B 22e8b0e8d1f3e423bfd2170489abad978c56377ec68dfa96b87241a6f92ab27b66c924a9d193c3941a72bd420169705b67d14e747e3e5046e34fc5ef32b77185 SHA512 97e4ecab3a95924983655831dbce2af504b5caac8f295c08a837ff346db2e02e7bebddb6b744d967849b64daeb6038bc1f0d0d2c4c8178ddea841e34793623aa
MISC metadata.xml 889 BLAKE2B f047017277fc9cca0029102cb10b7f94858095dcbae3337edeca05b96fb64cbe7c7514f8d815f28088db893b94527b300caabfef57f78f367d2a4daa573f5364 SHA512 c32ea8ca79d0fee0419e91be44c0624658e2648bb611835b00e963e83cac7ad464f61d53a295c916aeaf9882aa09d6842d08b0e726d5073dced323e22c17eaf4
diff --git a/app-misc/vcontrold/vcontrold-0.98.10.ebuild b/app-misc/vcontrold/vcontrold-0.98.10.ebuild
deleted file mode 100644
index 87e6097f057d..000000000000
--- a/app-misc/vcontrold/vcontrold-0.98.10.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Daemon for communication with Viessmann Vito heatings"
-HOMEPAGE="https://github.com/openv/vcontrold/"
-SRC_URI="https://github.com/openv/vcontrold/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="+man +vclient vsim"
-
-RDEPEND="dev-libs/libxml2:2"
-DEPEND="${RDEPEND}
- man? ( dev-python/docutils )"
-
-src_prepare() {
- sed "s/@VERSION@/${PV}/" "src/version.h.in" \
- > "src/version.h" || die "Setting version failed"
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DMANPAGES="$(usex man)"
- -DVCLIENT="$(usex vclient)"
- -DVSIM="$(usex vsim)"
- )
-
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- doinitd "${FILESDIR}/vcontrold"
- insinto /etc/vcontrold/
- doins -r xml
-}