diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-08-24 14:38:40 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-08-24 14:38:40 +0200 |
commit | de6918af1e4a802b3b69331d49d4078d102452b7 (patch) | |
tree | 63f1dd9d27b57839a93938626d3ac292ce419f5d /sci-misc | |
parent | net-im/minbif: Remove last-rited package (diff) | |
download | gentoo-de6918af1e4a802b3b69331d49d4078d102452b7.tar.gz gentoo-de6918af1e4a802b3b69331d49d4078d102452b7.tar.bz2 gentoo-de6918af1e4a802b3b69331d49d4078d102452b7.zip |
sci-misc/tango: Remove last-rited package
Closes: https://bugs.gentoo.org/674334
Closes: https://bugs.gentoo.org/793020
Closes: https://bugs.gentoo.org/703948
Closes: https://bugs.gentoo.org/741600
Closes: https://bugs.gentoo.org/692976
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/tango/Manifest | 1 | ||||
-rw-r--r-- | sci-misc/tango/metadata.xml | 23 | ||||
-rw-r--r-- | sci-misc/tango/tango-9.2.5a.ebuild | 44 |
3 files changed, 0 insertions, 68 deletions
diff --git a/sci-misc/tango/Manifest b/sci-misc/tango/Manifest deleted file mode 100644 index 8641be212161..000000000000 --- a/sci-misc/tango/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tango-9.2.5a.tar.gz 65888551 BLAKE2B 73ac78c4cce5f98bff108ae01d669d7654f8d11d1fcc5621b4268511c713f5ed6087c268a6d4c620e4aa41692ecd96f9676a48038c036cb0896c2acd007a3e3a SHA512 f372ea8b261d345fac5dbd198b1d5f28ff346796ba91191e752cea5b9fb9155b43bfada89032c29a51fa9b4f5e3a4f16d1b1ca9e73530dc7f60eb10103531d3e diff --git a/sci-misc/tango/metadata.xml b/sci-misc/tango/metadata.xml deleted file mode 100644 index 5e6d8ba6b6ac..000000000000 --- a/sci-misc/tango/metadata.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <maintainer type="person"> - <email>alexxy@gentoo.org</email> - <name>Alexey Shvetsov</name> - </maintainer> - <longdescription lang="en"> - Tango is an Open Source solution for SCADA and DCS. Open Source means you get all the source code under an Open Source free licence (LGPL and GPL). Supervisory Control and Data Acquisition (SCADA) systems are typically industrial type systems using standard hardware. Distributed Control Systems (DCS) are more flexible control systems used in more complex environments. - </longdescription> - <upstream> - <remote-id type="sourceforge">tango-cs</remote-id> - </upstream> - <use> - <flag name="dbserver">Enable build of tango dbserver</flag> - <flag name="mariadb">Use <pkg>dev-db/mariadb</pkg></flag> - <flag name="zeromq">Allow to use ZeroMQ broker via <pkg>net-libs/zeromq</pkg></flag> - </use> -</pkgmetadata> diff --git a/sci-misc/tango/tango-9.2.5a.ebuild b/sci-misc/tango/tango-9.2.5a.ebuild deleted file mode 100644 index 5493a00e359d..000000000000 --- a/sci-misc/tango/tango-9.2.5a.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Tango is an Open Source solution for SCADA and DCS" -HOMEPAGE="https://www.tango-controls.org/" -SRC_URI="mirror://sourceforge/tango-cs/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+dbserver java +mariadb +zeromq" - -DEPEND=" - net-misc/omniORB - mariadb? ( dev-db/mariadb-connector-c ) - !mariadb? ( dev-db/mysql-connector-c ) - dbserver? ( - mariadb? ( dev-db/mariadb:*[server] ) - !mariadb? ( >=virtual/mysql-5.6[server] ) - ) - java? ( virtual/jdk:* ) - zeromq? ( net-libs/zeromq ) -" -RDEPEND="${DEPEND}" -BDEPEND="${DEPEND}" - -src_configure() { - local MYCONF - if use mariadb; then - MYCONF+=( - $(use_enable mariadb) - --with-mariadbclient-include="${EPREFIX}/usr/include/mysql" - ) - fi - - econf \ - --with-omni="${EPREFIX}/usr" \ - $(use_enable zeromq zmq) \ - $(use_enable java) \ - $(use_enable dbserver) \ - ${MYCONF[@]} -} |