From: "Sven Wegener" <swegener@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
Date: Mon, 30 Oct 2017 13:27:54 +0000 (UTC) [thread overview]
Message-ID: <1509370058.f564d399913e64bc37138d91d8a4995a7a0fbc98.swegener@gentoo> (raw)
commit: f564d399913e64bc37138d91d8a4995a7a0fbc98
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 13:03:45 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 13:27:38 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f564d399
sci-electronics/pulseview: Cleanup, bug #631888
Package-Manager: Portage-2.3.8, Repoman-2.3.4
sci-electronics/pulseview/Manifest | 2 -
.../pulseview/pulseview-0.2.0-r1.ebuild | 46 ---------------
sci-electronics/pulseview/pulseview-0.3.0.ebuild | 65 ----------------------
3 files changed, 113 deletions(-)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index dba427af021..ea434414bb4 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1,3 +1 @@
-DIST pulseview-0.2.0.tar.gz 148799 SHA256 feb5d33a0a91c989bfc39fa758195755e78e87c3cf445bb135a8c8d4f86bc1dd SHA512 f770510ceade6382de2d09ba7819a9b39623f3ccbbb4a3a64bb0a64f774d356583f6ad2812a845978d1eaf50dcbfd4688ceec3005d0b712a087d1f686d3c0301 WHIRLPOOL 31068fcebd4286d325db37327c351e8cbd00e095901c04a3d034c127b1272e7c463400a91683cbb64a775b86f5cf61411f1f809e7b4dcd76113ceeb63990eaa2
-DIST pulseview-0.3.0.tar.gz 188602 SHA256 5ffe2cb7a602fcdc60933d400c77bcd66e6ce529bc4f6e97d6a5e5a86f2f530e SHA512 81c509ef3e548ab8ff29633a07c280cee1fba5cc94db7fc1fbc64822eccb905ab5fb4126392cabe0c089e51896a02e0fbc6c0f265bf728cee6ac6651c3ab883a WHIRLPOOL f23f420ab2d0083a234eff5d757fac0ebbfbe97670bf229292fb91d7f3ba6f3a37c7716bbece607b6593133da41ac103cfcfb4f46986ba6bc243d379fb4413dd
DIST pulseview-0.4.0.tar.gz 226656 SHA256 78f8291045c6f65b4827b12e83c8e68cea2d5e7268b15a51aaca9726c8100eb9 SHA512 833a86681925fb4fb2118bb9d0044fc80174aef299b7e6ba2df83bff490511b91cd18f63f45e9a63f21c0df5d8aad3ec27ab35f45cd9959a42831b0b8a71da33 WHIRLPOOL bc2c97049e20ffcdc026fc0e33597be2ac1a213782a2fd9abaf7d8f0751b204d73ebbe5de16df4b4854ebfaddeabdf9e0b3d2e72ac8eb906b6397634f0efa926
diff --git a/sci-electronics/pulseview/pulseview-0.2.0-r1.ebuild b/sci-electronics/pulseview/pulseview-0.2.0-r1.ebuild
deleted file mode 100644
index fe1305f5385..00000000000
--- a/sci-electronics/pulseview/pulseview-0.2.0-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python3_4 )
-inherit eutils cmake-utils python-single-r1
-
-if [[ ${PV} == "9999" ]]; then
- EGIT_REPO_URI="git://sigrok.org/${PN}"
- inherit git-r3
-else
- SRC_URI="http://sigrok.org/download/source/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Qt based logic analyzer GUI for sigrok"
-HOMEPAGE="http://sigrok.org/wiki/PulseView"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+decode static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- dev-libs/boost:0=
- dev-libs/glib:2
- >=sci-libs/libsigrok-0.3.0
- dev-qt/qtgui:4
- decode? (
- >=sci-libs/libsigrokdecode-0.3.0
- ${PYTHON_DEPS}
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( HACKING NEWS README )
-
-src_configure() {
- local mycmakeargs=(
- -DDISABLE_WERROR=TRUE
- $(cmake-utils_use_enable decode DECODE)
- $(cmake-utils_use_enable static STATIC_PKGDEPS_LIBS)
- )
- cmake-utils_src_configure
-}
diff --git a/sci-electronics/pulseview/pulseview-0.3.0.ebuild b/sci-electronics/pulseview/pulseview-0.3.0.ebuild
deleted file mode 100644
index df2fbb1b3c0..00000000000
--- a/sci-electronics/pulseview/pulseview-0.3.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit cmake-utils python-single-r1
-
-if [[ ${PV} == "9999" ]]; then
- EGIT_REPO_URI="git://sigrok.org/${PN}"
- inherit git-r3
-else
- SRC_URI="http://sigrok.org/download/source/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Qt based logic analyzer GUI for sigrok"
-HOMEPAGE="http://sigrok.org/wiki/PulseView"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+decode qt4 qt5 static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} ) ^^ ( qt4 qt5 )"
-
-RDEPEND="
- >=dev-libs/boost-1.53:=
- >=dev-libs/glib-2.28.0:2
- >=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.4.0[cxx]
- qt4? (
- >=dev-qt/qtcore-4.5:4
- >=dev-qt/qtgui-4.5:4
- >=dev-qt/qtsvg-4.5:4
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtsvg:5
- )
- decode? (
- >=sci-libs/libsigrokdecode-0.4.0[${PYTHON_USEDEP}]
- ${PYTHON_DEPS}
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( HACKING NEWS README )
-
-src_configure() {
- local mycmakeargs=(
- -DDISABLE_WERROR=TRUE
- -DENABLE_DECODE=$(usex decode)
- -DSTATIC_PKGDEPS_LIBS=$(usex static)
- -DFORCE_QT4=$(usex qt4)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- newicon "${S}"/icons/sigrok-logo-notext.png ${PN}.png
- domenu "${FILESDIR}"/${PN}.desktop
-}
next reply other threads:[~2017-10-30 13:28 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-30 13:27 Sven Wegener [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-13 17:18 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/ Andreas Sturmlechner
2025-01-02 18:33 Sam James
2024-08-31 16:00 Sven Wegener
2023-02-26 20:03 Sven Wegener
2022-09-04 13:03 David Seifert
2022-01-08 15:47 Sven Wegener
2020-07-06 18:16 Andreas Sturmlechner
2020-07-06 18:16 Andreas Sturmlechner
2020-07-06 18:16 Andreas Sturmlechner
2020-07-06 18:16 Andreas Sturmlechner
2020-07-06 18:16 Andreas Sturmlechner
2020-07-06 18:16 Andreas Sturmlechner
2020-07-06 18:16 Andreas Sturmlechner
2020-02-09 16:36 Michał Górny
2019-04-12 15:45 Sven Wegener
2018-12-08 21:34 Sven Wegener
2018-11-03 11:03 Sven Wegener
2018-04-11 9:40 David Seifert
2017-11-07 22:13 Sven Wegener
2017-10-30 13:27 Sven Wegener
2017-10-30 13:27 Sven Wegener
2017-07-08 6:55 Sven Wegener
2017-07-01 20:52 Sven Wegener
2017-07-01 20:52 Sven Wegener
2017-06-15 17:37 Pacho Ramos
2016-08-03 11:41 Sven Wegener
2016-08-03 11:41 Sven Wegener
2016-08-03 11:41 Sven Wegener
2016-08-03 11:41 Sven Wegener
2016-01-12 18:36 Sven Wegener
2015-12-19 17:15 Sven Wegener
2015-11-25 10:44 Sergey Popov
2015-11-25 10:44 Sergey Popov
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=1509370058.f564d399913e64bc37138d91d8a4995a7a0fbc98.swegener@gentoo \
--to=swegener@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