* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2018-11-03 11:03 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2018-11-03 11:03 UTC (permalink / raw
To: gentoo-commits
commit: 2d6715cd9bf62f28d1ad730db7d7bbc71a1906b3
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 3 11:00:26 2018 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Nov 3 11:02:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d6715cd
sci-electronics/pulseview: Version bump
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
sci-electronics/pulseview/Manifest | 1 +
sci-electronics/pulseview/pulseview-0.4.1.ebuild | 61 ++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index aefa9dd63d3..c469f58b832 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1 +1,2 @@
DIST pulseview-0.4.0.tar.gz 226656 BLAKE2B 308026926484daa1c414c1f1fe40b06882a3ae9f63df076e8431550d9666bbcc46bb9184fceae94dd2aa5786d08d32b0313167df6800a3849e5383ccb4be67a4 SHA512 833a86681925fb4fb2118bb9d0044fc80174aef299b7e6ba2df83bff490511b91cd18f63f45e9a63f21c0df5d8aad3ec27ab35f45cd9959a42831b0b8a71da33
+DIST pulseview-0.4.1.tar.gz 1342532 BLAKE2B 759779d4024df8f972fbed515764f17557014972abcb39d3942b411bfa78c6f97a89ee98b706adb51d240bdb738925546cec073f98ba829f1e325acaac892c01 SHA512 0bae4357be312bf6e997885270887a5bcc0a8dfb6914e63bb0d5abb35389b6681748e0e4667556ad432c5432c861185bcdd8da7815fb570fc8a2fbbf5eed3801
diff --git a/sci-electronics/pulseview/pulseview-0.4.1.ebuild b/sci-electronics/pulseview/pulseview-0.4.1.ebuild
new file mode 100644
index 00000000000..61c3fc56308
--- /dev/null
+++ b/sci-electronics/pulseview/pulseview-0.4.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
+
+if [[ ${PV} == "9999" ]]; then
+ EGIT_REPO_URI="git://sigrok.org/${PN}"
+ inherit git-r3
+else
+ SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Qt based logic analyzer GUI for sigrok"
+HOMEPAGE="https://sigrok.org/wiki/PulseView"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+decode static"
+REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+ >=dev-libs/boost-1.55:=
+ >=dev-libs/glib-2.28.0:2
+ >=dev-cpp/glibmm-2.28.0:2
+ >=sci-libs/libsigrok-0.5.1:=[cxx]
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtsvg:5
+ decode? (
+ >=sci-libs/libsigrokdecode-0.5.2:=[${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)
+ )
+ cmake-utils_src_configure
+}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2024-08-31 16:00 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2024-08-31 16:00 UTC (permalink / raw
To: gentoo-commits
commit: 615038f0658613328cacf71c2cb5420638d46a94
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 12:31:27 2024 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 16:00:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615038f0
sci-electronics/pulseview: use github git url for https support
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild | 4 ++--
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
index 6d68a3f229f6..0b5446455b34 100644
--- a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
@@ -6,7 +6,7 @@ EAPI="8"
inherit cmake xdg-utils
if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="git://sigrok.org/${PN}"
+ EGIT_REPO_URI="https://github.com/sigrokproject/${PN}.git"
inherit git-r3
else
SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz"
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 5def86e1cebb..f6e44dc48a2f 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
@@ -6,7 +6,7 @@ EAPI="8"
inherit cmake xdg-utils
if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="git://sigrok.org/${PN}"
+ EGIT_REPO_URI="https://github.com/sigrokproject/${PN}.git"
inherit git-r3
else
SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2023-02-26 20:03 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2023-02-26 20:03 UTC (permalink / raw
To: gentoo-commits
commit: 8585c942cd63e15aaf9d0ea3140b85fc71fb7589
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 26 19:10:47 2023 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sun Feb 26 20:03:03 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8585c942
sci-electronics/pulseview: update EAPI 7 -> 8
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild | 4 ++--
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
index 8e5713ee00e8..6d68a3f229f6 100644
--- a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI="8"
inherit cmake xdg-utils
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 08b7cf0d812d..5def86e1cebb 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI="8"
inherit cmake xdg-utils
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2022-09-04 13:03 David Seifert
0 siblings, 0 replies; 32+ messages in thread
From: David Seifert @ 2022-09-04 13:03 UTC (permalink / raw
To: gentoo-commits
commit: cca7d91bab36564ee87d516103dd493f27566ac0
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 4 13:03:28 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep 4 13:03:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cca7d91b
sci-electronics/pulseview: remove stale boost lower bounds
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild | 2 +-
sci-electronics/pulseview/pulseview-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
index a71826cfa065..8e5713ee00e8 100644
--- a/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
@@ -26,7 +26,7 @@ BDEPEND="
"
RDEPEND="
>=dev-cpp/glibmm-2.28.0:2
- >=dev-libs/boost-1.55:=
+ dev-libs/boost:=
>=dev-libs/glib-2.28.0:2
dev-qt/qtcore:5
dev-qt/qtgui:5
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 330e533dbf89..08b7cf0d812d 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -26,7 +26,7 @@ BDEPEND="
"
RDEPEND="
>=dev-cpp/glibmm-2.28.0:2
- >=dev-libs/boost-1.55:=
+ dev-libs/boost:=
>=dev-libs/glib-2.28.0:2
dev-qt/qtcore:5
dev-qt/qtgui:5
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2022-01-08 15:47 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2022-01-08 15:47 UTC (permalink / raw
To: gentoo-commits
commit: 33d7f0caedfd5c5dc0c00ab99da0daa5dfb21783
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 8 15:22:56 2022 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Jan 8 15:31:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33d7f0ca
sci-electronics/pulseview: Remove python USE flags
Selecting the python interpreter is completely done by libsigrokdecode.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
...{pulseview-0.4.2.ebuild => pulseview-0.4.2-r1.ebuild} | 16 +++-------------
sci-electronics/pulseview/pulseview-9999.ebuild | 16 +++-------------
2 files changed, 6 insertions(+), 26 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.2.ebuild b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
similarity index 79%
rename from sci-electronics/pulseview/pulseview-0.4.2.ebuild
rename to sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
index e96be770c575..a71826cfa065 100644
--- a/sci-electronics/pulseview/pulseview-0.4.2.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.2-r1.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit cmake python-single-r1 xdg-utils
+inherit cmake xdg-utils
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
@@ -21,7 +19,6 @@ HOMEPAGE="https://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
IUSE="+decode static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
BDEPEND="
dev-qt/linguist-tools:5
@@ -36,10 +33,7 @@ RDEPEND="
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
>=sci-libs/libsigrok-0.5.1:=[cxx]
- decode? (
- ${PYTHON_DEPS}
- >=sci-libs/libsigrokdecode-0.5.2:=[${PYTHON_SINGLE_USEDEP}]
- )
+ decode? ( >=sci-libs/libsigrokdecode-0.5.2:= )
"
DEPEND="${RDEPEND}"
@@ -50,10 +44,6 @@ PATCHES=(
"${FILESDIR}"/${PN}-0.4.2-glib-2.68.patch
)
-pkg_setup() {
- use decode && python_setup
-}
-
src_prepare() {
cmake_src_prepare
cmake_comment_add_subdirectory manual
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 1b2ea98c17f8..330e533dbf89 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit cmake python-single-r1 xdg-utils
+inherit cmake xdg-utils
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
@@ -21,7 +19,6 @@ HOMEPAGE="https://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
IUSE="+decode static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
BDEPEND="
dev-qt/linguist-tools:5
@@ -36,19 +33,12 @@ RDEPEND="
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
>=sci-libs/libsigrok-0.6.0:=[cxx]
- decode? (
- ${PYTHON_DEPS}
- >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_SINGLE_USEDEP}]
- )
+ decode? ( >=sci-libs/libsigrokdecode-0.6.0:= )
"
DEPEND="${RDEPEND}"
DOCS=( HACKING NEWS README )
-pkg_setup() {
- use decode && python_setup
-}
-
src_prepare() {
cmake_src_prepare
cmake_comment_add_subdirectory manual
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: c01317a60bbc97e51bf1d33efbac8b259e450a01
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 22:36:35 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c01317a6
sci-electronics/pulseview: 0.4.2 version bump
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/Manifest | 1 +
sci-electronics/pulseview/pulseview-0.4.2.ebuild | 74 ++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index 48cd9f5d045..9180854c0bb 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1 +1,2 @@
DIST pulseview-0.4.1.tar.gz 1342532 BLAKE2B 759779d4024df8f972fbed515764f17557014972abcb39d3942b411bfa78c6f97a89ee98b706adb51d240bdb738925546cec073f98ba829f1e325acaac892c01 SHA512 0bae4357be312bf6e997885270887a5bcc0a8dfb6914e63bb0d5abb35389b6681748e0e4667556ad432c5432c861185bcdd8da7815fb570fc8a2fbbf5eed3801
+DIST pulseview-0.4.2.tar.gz 1399718 BLAKE2B ebbefefa55bb7ce9d1bbdfa8ea44d9536fa4f9ca9f6f13175a5bb6122dcb431ddad7c668e631128ca57fd2231021f8ce1c686fac9fa746ace24cf69ef3d71e71 SHA512 79f653c9faad021c03b59b4a519b594190d5558dfb9be60cabcc2a35e991e66b733b337fec58a9248699e7aef0df3be1472c81f93274b25cec1fc6b73f8f033b
diff --git a/sci-electronics/pulseview/pulseview-0.4.2.ebuild b/sci-electronics/pulseview/pulseview-0.4.2.ebuild
new file mode 100644
index 00000000000..33c5fe3766d
--- /dev/null
+++ b/sci-electronics/pulseview/pulseview-0.4.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit cmake python-single-r1 xdg-utils
+
+if [[ ${PV} == *9999* ]]; then
+ EGIT_REPO_URI="git://sigrok.org/${PN}"
+ inherit git-r3
+else
+ SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Qt based logic analyzer GUI for sigrok"
+HOMEPAGE="https://sigrok.org/wiki/PulseView"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+decode static"
+REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
+
+BDEPEND="
+ dev-qt/linguist-tools:5
+ virtual/pkgconfig
+"
+RDEPEND="
+ >=dev-cpp/glibmm-2.28.0:2
+ >=dev-libs/boost-1.55:=
+ >=dev-libs/glib-2.28.0:2
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ >=sci-libs/libsigrok-0.5.1:=[cxx]
+ decode? (
+ ${PYTHON_DEPS}
+ >=sci-libs/libsigrokdecode-0.5.2:=[${PYTHON_SINGLE_USEDEP}]
+ )
+"
+DEPEND="${RDEPEND}"
+
+DOCS=( HACKING NEWS README )
+
+pkg_setup() {
+ use decode && python_setup
+}
+
+src_prepare() {
+ cmake_src_prepare
+ cmake_comment_add_subdirectory manual
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DDISABLE_WERROR=TRUE
+ -DENABLE_DECODE=$(usex decode)
+ -DSTATIC_PKGDEPS_LIBS=$(usex static)
+ )
+ cmake_src_configure
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: eccd292bae2961aa98a3b0a2967c6268e395adec
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 23:21:29 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eccd292b
sci-electronics/pulseview: Drop 0.4.1-r1
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/Manifest | 1 -
.../pulseview/pulseview-0.4.1-r1.ebuild | 61 ----------------------
2 files changed, 62 deletions(-)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index 9180854c0bb..1088db19d10 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1,2 +1 @@
-DIST pulseview-0.4.1.tar.gz 1342532 BLAKE2B 759779d4024df8f972fbed515764f17557014972abcb39d3942b411bfa78c6f97a89ee98b706adb51d240bdb738925546cec073f98ba829f1e325acaac892c01 SHA512 0bae4357be312bf6e997885270887a5bcc0a8dfb6914e63bb0d5abb35389b6681748e0e4667556ad432c5432c861185bcdd8da7815fb570fc8a2fbbf5eed3801
DIST pulseview-0.4.2.tar.gz 1399718 BLAKE2B ebbefefa55bb7ce9d1bbdfa8ea44d9536fa4f9ca9f6f13175a5bb6122dcb431ddad7c668e631128ca57fd2231021f8ce1c686fac9fa746ace24cf69ef3d71e71 SHA512 79f653c9faad021c03b59b4a519b594190d5558dfb9be60cabcc2a35e991e66b733b337fec58a9248699e7aef0df3be1472c81f93274b25cec1fc6b73f8f033b
diff --git a/sci-electronics/pulseview/pulseview-0.4.1-r1.ebuild b/sci-electronics/pulseview/pulseview-0.4.1-r1.ebuild
deleted file mode 100644
index 909877319c9..00000000000
--- a/sci-electronics/pulseview/pulseview-0.4.1-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
-
-if [[ ${PV} == "9999" ]]; then
- EGIT_REPO_URI="git://sigrok.org/${PN}"
- inherit git-r3
-else
- SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Qt based logic analyzer GUI for sigrok"
-HOMEPAGE="https://sigrok.org/wiki/PulseView"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+decode static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- >=dev-libs/boost-1.55:=
- >=dev-libs/glib-2.28.0:2
- >=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.5.1:=[cxx]
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtsvg:5
- decode? (
- >=sci-libs/libsigrokdecode-0.5.2:=[${PYTHON_SINGLE_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)
- )
- cmake-utils_src_configure
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
- xdg_desktop_database_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
- xdg_desktop_database_update
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 87e1de5b680cfe82001291eb60d4fb8d777a48fd
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 5 22:35:42 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87e1de5b
sci-electronics/pulseview: python3_8, python3_9
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/pulseview-0.4.2.ebuild | 2 +-
sci-electronics/pulseview/pulseview-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.2.ebuild b/sci-electronics/pulseview/pulseview-0.4.2.ebuild
index 6efa4b2168a..b4e924d8283 100644
--- a/sci-electronics/pulseview/pulseview-0.4.2.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
inherit cmake python-single-r1 xdg-utils
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index eb3d31cb1f3..e67387d52eb 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
inherit cmake python-single-r1 xdg-utils
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: fce6dea948a85dbe72140556fd9d36041f9ac492
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 23:20:30 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce6dea9
sci-electronics/pulseview: Add missing dev-qt/linguist-tools:5 DEPEND
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 58e35968ffd..8dafbb233d4 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -24,9 +24,10 @@ IUSE="+decode static"
REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
BDEPEND="
+ dev-qt/linguist-tools:5
virtual/pkgconfig
"
-DEPEND="
+RDEPEND="
>=dev-cpp/glibmm-2.28.0:2
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
@@ -40,7 +41,7 @@ DEPEND="
>=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_SINGLE_USEDEP}]
)
"
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}"
DOCS=( HACKING NEWS README )
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: f97cf58b9f21dd5955964fadee9c1592bebf5d28
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 22:33:08 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97cf58b
sci-electronics/pulseview: EAPI-7 bump, use cmake.eclass
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 31 ++++++++++++++-----------
1 file changed, 17 insertions(+), 14 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 570474071f0..58e35968ffd 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,13 +1,13 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI=7
PYTHON_COMPAT=( python3_{6,7} )
-inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
+inherit cmake python-single-r1 xdg-utils
-if [[ ${PV} == "9999" ]]; then
+if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
inherit git-r3
else
@@ -23,21 +23,24 @@ SLOT="0"
IUSE="+decode static"
REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
-RDEPEND="
+BDEPEND="
+ virtual/pkgconfig
+"
+DEPEND="
+ >=dev-cpp/glibmm-2.28.0:2
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
- >=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.6.0:=[cxx]
dev-qt/qtcore:5
dev-qt/qtgui:5
- dev-qt/qtwidgets:5
dev-qt/qtsvg:5
+ dev-qt/qtwidgets:5
+ >=sci-libs/libsigrok-0.6.0:=[cxx]
decode? (
- >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_SINGLE_USEDEP}]
${PYTHON_DEPS}
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
+ >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_SINGLE_USEDEP}]
+ )
+"
+RDEPEND="${DEPEND}"
DOCS=( HACKING NEWS README )
@@ -47,15 +50,15 @@ src_configure() {
-DENABLE_DECODE=$(usex decode)
-DSTATIC_PKGDEPS_LIBS=$(usex static)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
pkg_postinst() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
xdg_desktop_database_update
}
pkg_postrm() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
xdg_desktop_database_update
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: ac355f189719c3704c4a838c8f6bede2f40de72b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 23:26:41 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac355f18
sci-electronics/pulseview: Disable manual subdir
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 49d1975e671..eb3d31cb1f3 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -49,6 +49,11 @@ pkg_setup() {
use decode && python_setup
}
+src_prepare() {
+ cmake_src_prepare
+ cmake_comment_add_subdirectory manual
+}
+
src_configure() {
local mycmakeargs=(
-DDISABLE_WERROR=TRUE
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-07-06 18:16 Andreas Sturmlechner
0 siblings, 0 replies; 32+ messages in thread
From: Andreas Sturmlechner @ 2020-07-06 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 41e8100ada099379f5885d9b84407af6672d8358
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 23:03:19 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 18:15:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e8100a
sci-electronics/pulseview: Actually make python_setup conditional...
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 8dafbb233d4..49d1975e671 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -45,6 +45,10 @@ DEPEND="${RDEPEND}"
DOCS=( HACKING NEWS README )
+pkg_setup() {
+ use decode && python_setup
+}
+
src_configure() {
local mycmakeargs=(
-DDISABLE_WERROR=TRUE
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2020-02-09 16:36 Michał Górny
0 siblings, 0 replies; 32+ messages in thread
From: Michał Górny @ 2020-02-09 16:36 UTC (permalink / raw
To: gentoo-commits
commit: 801ae2dcd7531fdc6d8244d3f54f974543c1d55e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 7 18:59:46 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 9 16:35:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=801ae2dc
sci-electronics/pulseview: Switch to PYTHON_SINGLE_USEDEP
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../pulseview/{pulseview-0.4.1.ebuild => pulseview-0.4.1-r1.ebuild} | 2 +-
sci-electronics/pulseview/pulseview-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.1.ebuild b/sci-electronics/pulseview/pulseview-0.4.1-r1.ebuild
similarity index 95%
rename from sci-electronics/pulseview/pulseview-0.4.1.ebuild
rename to sci-electronics/pulseview/pulseview-0.4.1-r1.ebuild
index 682870ec6d3..909877319c9 100644
--- a/sci-electronics/pulseview/pulseview-0.4.1.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.1-r1.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
- >=sci-libs/libsigrokdecode-0.5.2:=[${PYTHON_USEDEP}]
+ >=sci-libs/libsigrokdecode-0.5.2:=[${PYTHON_SINGLE_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index bac3c89d5ef..570474071f0 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
- >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_USEDEP}]
+ >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_SINGLE_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2019-04-12 15:45 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2019-04-12 15:45 UTC (permalink / raw
To: gentoo-commits
commit: 33de87eb4bba67c545bf3d960d9676ea530333b0
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 12 15:30:54 2019 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Fri Apr 12 15:44:10 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33de87eb
sci-electronics/pulseview: Cleanup
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
sci-electronics/pulseview/Manifest | 1 -
sci-electronics/pulseview/pulseview-0.4.0.ebuild | 61 ------------------------
2 files changed, 62 deletions(-)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index c469f58b832..48cd9f5d045 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1,2 +1 @@
-DIST pulseview-0.4.0.tar.gz 226656 BLAKE2B 308026926484daa1c414c1f1fe40b06882a3ae9f63df076e8431550d9666bbcc46bb9184fceae94dd2aa5786d08d32b0313167df6800a3849e5383ccb4be67a4 SHA512 833a86681925fb4fb2118bb9d0044fc80174aef299b7e6ba2df83bff490511b91cd18f63f45e9a63f21c0df5d8aad3ec27ab35f45cd9959a42831b0b8a71da33
DIST pulseview-0.4.1.tar.gz 1342532 BLAKE2B 759779d4024df8f972fbed515764f17557014972abcb39d3942b411bfa78c6f97a89ee98b706adb51d240bdb738925546cec073f98ba829f1e325acaac892c01 SHA512 0bae4357be312bf6e997885270887a5bcc0a8dfb6914e63bb0d5abb35389b6681748e0e4667556ad432c5432c861185bcdd8da7815fb570fc8a2fbbf5eed3801
diff --git a/sci-electronics/pulseview/pulseview-0.4.0.ebuild b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
deleted file mode 100644
index cd8a3b7f986..00000000000
--- a/sci-electronics/pulseview/pulseview-0.4.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
-
-if [[ ${PV} == "9999" ]]; then
- EGIT_REPO_URI="git://sigrok.org/${PN}"
- inherit git-r3
-else
- SRC_URI="https://sigrok.org/download/source/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Qt based logic analyzer GUI for sigrok"
-HOMEPAGE="https://sigrok.org/wiki/PulseView"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+decode static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- >=dev-libs/boost-1.55:=
- >=dev-libs/glib-2.28.0:2
- >=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.5.0:=[cxx]
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- dev-qt/qtsvg:5
- decode? (
- >=sci-libs/libsigrokdecode-0.5.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)
- )
- cmake-utils_src_configure
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
- xdg_desktop_database_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
- xdg_desktop_database_update
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2018-12-08 21:34 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2018-12-08 21:34 UTC (permalink / raw
To: gentoo-commits
commit: 0b630ce1721a7fbe7ab11a43ac4c86ae8b8d71e0
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 29 13:11:39 2018 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Dec 8 21:33:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b630ce1
sci-electronics/pulseview: Support python3.7
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
sci-electronics/pulseview/pulseview-0.4.1.ebuild | 2 +-
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.1.ebuild b/sci-electronics/pulseview/pulseview-0.4.1.ebuild
index 61c3fc56308..0b56a419853 100644
--- a/sci-electronics/pulseview/pulseview-0.4.1.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.1.ebuild
@@ -3,7 +3,7 @@
EAPI="6"
-PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_COMPAT=( python3_{4,5,6,7} )
inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index c91f1edbcbb..b2459121ecd 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
-PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_COMPAT=( python3_{4,5,6,7} )
inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2018-04-11 9:40 David Seifert
0 siblings, 0 replies; 32+ messages in thread
From: David Seifert @ 2018-04-11 9:40 UTC (permalink / raw
To: gentoo-commits
commit: 579833c54059a5270d43a6e293b2265373f20c53
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Apr 11 08:31:27 2018 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 09:39:51 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=579833c5
sci-electronics/pulseview: use HTTPS
sci-electronics/pulseview/pulseview-0.4.0.ebuild | 6 +++---
sci-electronics/pulseview/pulseview-9999.ebuild | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.0.ebuild b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
index 6409ce513f8..cd8a3b7f986 100644
--- a/sci-electronics/pulseview/pulseview-0.4.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -11,12 +11,12 @@ 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"
+ SRC_URI="https://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"
+HOMEPAGE="https://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 7e6e167635a..c91f1edbcbb 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -11,12 +11,12 @@ 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"
+ SRC_URI="https://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"
+HOMEPAGE="https://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-11-07 22:13 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-11-07 22:13 UTC (permalink / raw
To: gentoo-commits
commit: 2a0f494b077a24ab1529ce412b0e571804ec1115
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 22:25:32 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Tue Nov 7 21:36:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a0f494b
sci-electronics/pulseview: Add libsigrok sub-slot dependency
Package-Manager: Portage-2.3.8, Repoman-2.3.4
sci-electronics/pulseview/pulseview-0.4.0.ebuild | 4 ++--
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.0.ebuild b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
index 0b7e367cae1..6409ce513f8 100644
--- a/sci-electronics/pulseview/pulseview-0.4.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
@@ -27,13 +27,13 @@ RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.5.0[cxx]
+ >=sci-libs/libsigrok-0.5.0:=[cxx]
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
- >=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
+ >=sci-libs/libsigrokdecode-0.5.0:=[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index bb4428d95b8..7e6e167635a 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -27,13 +27,13 @@ RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.6.0[cxx]
+ >=sci-libs/libsigrok-0.6.0:=[cxx]
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
- >=sci-libs/libsigrokdecode-0.6.0[${PYTHON_USEDEP}]
+ >=sci-libs/libsigrokdecode-0.6.0:=[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-10-30 13:27 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-10-30 13:27 UTC (permalink / raw
To: gentoo-commits
commit: c2df80a00b2d6171d37fca5cf8747044a290b8c4
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 13:22:26 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 13:27:40 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2df80a0
sci-electronics/pulseview: Bump dependencies of live ebuild
Package-Manager: Portage-2.3.8, Repoman-2.3.4
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 0b7e367cae1..bb4428d95b8 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -27,13 +27,13 @@ RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.5.0[cxx]
+ >=sci-libs/libsigrok-0.6.0[cxx]
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
decode? (
- >=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
+ >=sci-libs/libsigrokdecode-0.6.0[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-10-30 13:27 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-10-30 13:27 UTC (permalink / raw
To: gentoo-commits
commit: 71037aeb17cbc3d7e1602ae38a863d896a83af4e
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 13:09:58 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 13:27:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71037aeb
sci-electronics/pulseview: Update icon cache and desktop database, bug #635406
Package-Manager: Portage-2.3.8, Repoman-2.3.4
sci-electronics/pulseview/pulseview-0.4.0.ebuild | 12 +++++++++++-
sci-electronics/pulseview/pulseview-9999.ebuild | 12 +++++++++++-
2 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.0.ebuild b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
index e7a4a92ef4c..0b7e367cae1 100644
--- a/sci-electronics/pulseview/pulseview-0.4.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
PYTHON_COMPAT=( python3_{4,5,6} )
-inherit cmake-utils python-single-r1
+inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
@@ -49,3 +49,13 @@ src_configure() {
)
cmake-utils_src_configure
}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index e7a4a92ef4c..0b7e367cae1 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
PYTHON_COMPAT=( python3_{4,5,6} )
-inherit cmake-utils python-single-r1
+inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
@@ -49,3 +49,13 @@ src_configure() {
)
cmake-utils_src_configure
}
+
+pkg_postinst() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+ xdg_desktop_database_update
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-10-30 13:27 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-10-30 13:27 UTC (permalink / raw
To: gentoo-commits
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
-}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-07-08 6:55 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-07-08 6:55 UTC (permalink / raw
To: gentoo-commits
commit: 7a8eff91a4aa2be536aa975235f67cb8d764ff49
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 8 06:54:19 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Jul 8 06:55:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8eff91
sci-electronics/pulseview: Remove q4 support
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sci-electronics/pulseview/pulseview-0.4.0.ebuild | 20 ++++++--------------
sci-electronics/pulseview/pulseview-9999.ebuild | 20 ++++++--------------
2 files changed, 12 insertions(+), 28 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.4.0.ebuild b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
index c408727be2a..e7a4a92ef4c 100644
--- a/sci-electronics/pulseview/pulseview-0.4.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
@@ -20,25 +20,18 @@ HOMEPAGE="http://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
-IUSE="+decode qt4 qt5 static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} ) ^^ ( qt4 qt5 )"
+IUSE="+decode static"
+REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
>=sci-libs/libsigrok-0.5.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
- )
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtsvg:5
decode? (
>=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
${PYTHON_DEPS}
@@ -53,7 +46,6 @@ src_configure() {
-DDISABLE_WERROR=TRUE
-DENABLE_DECODE=$(usex decode)
-DSTATIC_PKGDEPS_LIBS=$(usex static)
- -DFORCE_QT4=$(usex qt4)
)
cmake-utils_src_configure
}
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index c408727be2a..e7a4a92ef4c 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -20,25 +20,18 @@ HOMEPAGE="http://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
-IUSE="+decode qt4 qt5 static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} ) ^^ ( qt4 qt5 )"
+IUSE="+decode static"
+REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
>=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
>=sci-libs/libsigrok-0.5.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
- )
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtsvg:5
decode? (
>=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
${PYTHON_DEPS}
@@ -53,7 +46,6 @@ src_configure() {
-DDISABLE_WERROR=TRUE
-DENABLE_DECODE=$(usex decode)
-DSTATIC_PKGDEPS_LIBS=$(usex static)
- -DFORCE_QT4=$(usex qt4)
)
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-07-01 20:52 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-07-01 20:52 UTC (permalink / raw
To: gentoo-commits
commit: d637efb790a717143ff83f0e2b97254ff3331564
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 1 20:51:45 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Jul 1 20:52:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d637efb7
sci-electronics/pulseview: Version bump
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sci-electronics/pulseview/Manifest | 1 +
sci-electronics/pulseview/pulseview-0.4.0.ebuild | 59 ++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index 84ad65c85b5..dba427af021 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1,2 +1,3 @@
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.4.0.ebuild b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
new file mode 100644
index 00000000000..c408727be2a
--- /dev/null
+++ b/sci-electronics/pulseview/pulseview-0.4.0.ebuild
@@ -0,0 +1,59 @@
+# 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.55:=
+ >=dev-libs/glib-2.28.0:2
+ >=dev-cpp/glibmm-2.28.0:2
+ >=sci-libs/libsigrok-0.5.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.5.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
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-07-01 20:52 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2017-07-01 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 0f11a6994fed0dadf4a7f3cb5f38b6a1b3cf3aba
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 1 20:51:42 2017 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Jul 1 20:52:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f11a699
sci-electronics/pulseview: Update dependencies of live ebuild
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sci-electronics/pulseview/pulseview-9999.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index f287c48881b..c408727be2a 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -24,10 +24,10 @@ IUSE="+decode qt4 qt5 static"
REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} ) ^^ ( qt4 qt5 )"
RDEPEND="
- >=dev-libs/boost-1.53:=
+ >=dev-libs/boost-1.55:=
>=dev-libs/glib-2.28.0:2
>=dev-cpp/glibmm-2.28.0:2
- >=sci-libs/libsigrok-0.4.0[cxx]
+ >=sci-libs/libsigrok-0.5.0[cxx]
qt4? (
>=dev-qt/qtcore-4.5:4
>=dev-qt/qtgui-4.5:4
@@ -40,7 +40,7 @@ RDEPEND="
dev-qt/qtsvg:5
)
decode? (
- >=sci-libs/libsigrokdecode-0.4.0[${PYTHON_USEDEP}]
+ >=sci-libs/libsigrokdecode-0.5.0[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2017-06-15 17:37 Pacho Ramos
0 siblings, 0 replies; 32+ messages in thread
From: Pacho Ramos @ 2017-06-15 17:37 UTC (permalink / raw
To: gentoo-commits
commit: c49196a822de246c704c760c4d3c17c9586707d7
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 17:37:12 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 17:37:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49196a8
sci-electronics/pulseview: Support newer python
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sci-electronics/pulseview/pulseview-0.3.0.ebuild | 4 ++--
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.3.0.ebuild b/sci-electronics/pulseview/pulseview-0.3.0.ebuild
index 16f8ee75d76..df2fbb1b3c0 100644
--- a/sci-electronics/pulseview/pulseview-0.3.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
-PYTHON_COMPAT=( python3_4 )
+PYTHON_COMPAT=( python3_{4,5,6} )
inherit cmake-utils python-single-r1
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 8b4a6b2c36a..f287c48881b 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
-PYTHON_COMPAT=( python3_4 )
+PYTHON_COMPAT=( python3_{4,5,6} )
inherit cmake-utils python-single-r1
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2016-08-03 11:41 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2016-08-03 11:41 UTC (permalink / raw
To: gentoo-commits
commit: af5b984482967ff9266454f44994a047d3d8bde9
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 3 11:31:27 2016 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 11:35:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5b9844
sci-electronics/pulseview: Bump to EAPI 6
Package-Manager: portage-2.2.28
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 3123a1c..13f0ddb 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -1,11 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI="5"
+EAPI="6"
PYTHON_COMPAT=( python3_{3,4} )
-inherit eutils cmake-utils python-single-r1
+
+inherit cmake-utils python-single-r1
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
@@ -50,9 +51,9 @@ 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_use qt4 FORCE_QT4)
+ -DENABLE_DECODE=$(usex decode)
+ -DSTATIC_PKGDEPS_LIBS=$(usex static)
+ -DFORCE_QT4=$(usex qt4)
)
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2016-08-03 11:41 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2016-08-03 11:41 UTC (permalink / raw
To: gentoo-commits
commit: 7fc56d8bf2a83486acd69f4903c033ef26c45257
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 3 11:31:36 2016 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 11:35:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fc56d8b
sci-electronics/pulseview: Update dependencies
Package-Manager: portage-2.2.28
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index d76fe35..ca0801e 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -25,13 +25,14 @@ IUSE="+decode qt4 qt5 static"
REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} ) ^^ ( qt4 qt5 )"
RDEPEND="
- dev-libs/boost:0=
- dev-libs/glib:2
+ >=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
- dev-qt/qtgui:4
- dev-qt/qtsvg:4
+ >=dev-qt/qtcore-4.5:4
+ >=dev-qt/qtgui-4.5:4
+ >=dev-qt/qtsvg-4.5:4
)
qt5? (
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2016-08-03 11:41 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2016-08-03 11:41 UTC (permalink / raw
To: gentoo-commits
commit: 3bc732cdf98f794033d1de9e37a70850c0e85191
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 3 11:31:40 2016 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 11:35:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bc732cd
sci-electronics/pulseview: Version bump, bug #579900
Package-Manager: portage-2.2.28
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/Manifest | 1 +
sci-electronics/pulseview/pulseview-0.3.0.ebuild | 60 ++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/sci-electronics/pulseview/Manifest b/sci-electronics/pulseview/Manifest
index 68d32e1..84ad65c 100644
--- a/sci-electronics/pulseview/Manifest
+++ b/sci-electronics/pulseview/Manifest
@@ -1 +1,2 @@
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
diff --git a/sci-electronics/pulseview/pulseview-0.3.0.ebuild b/sci-electronics/pulseview/pulseview-0.3.0.ebuild
new file mode 100644
index 0000000..ca0801e
--- /dev/null
+++ b/sci-electronics/pulseview/pulseview-0.3.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{3,4} )
+
+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
+}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2016-08-03 11:41 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2016-08-03 11:41 UTC (permalink / raw
To: gentoo-commits
commit: 3320a6a45310f874c5619e63f3b81bba6be5e463
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 3 11:31:31 2016 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 11:35:21 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3320a6a4
sci-electronics/pulseview: Require python USE flags on libsigrokdecode
Package-Manager: portage-2.2.28
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 13f0ddb..d76fe35 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -40,7 +40,7 @@ RDEPEND="
dev-qt/qtsvg:5
)
decode? (
- >=sci-libs/libsigrokdecode-0.4.0
+ >=sci-libs/libsigrokdecode-0.4.0[${PYTHON_USEDEP}]
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2016-01-12 18:36 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2016-01-12 18:36 UTC (permalink / raw
To: gentoo-commits
commit: cda1e43e3f791545b4ce96a719558a1bba001ea6
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 12 17:52:19 2016 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Tue Jan 12 18:35:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda1e43e
sci-electronics/pulseview: Support qt4 and qt5
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index fb77e52..3123a1c 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -20,14 +20,24 @@ HOMEPAGE="http://sigrok.org/wiki/PulseView"
LICENSE="GPL-3"
SLOT="0"
-IUSE="+decode static"
-REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
+IUSE="+decode qt4 qt5 static"
+REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} ) ^^ ( qt4 qt5 )"
RDEPEND="
dev-libs/boost:0=
dev-libs/glib:2
>=sci-libs/libsigrok-0.4.0[cxx]
- dev-qt/qtgui:4
+ qt4? (
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ dev-qt/qtsvg: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_DEPS}
@@ -42,6 +52,7 @@ src_configure() {
-DDISABLE_WERROR=TRUE
$(cmake-utils_use_enable decode DECODE)
$(cmake-utils_use_enable static STATIC_PKGDEPS_LIBS)
+ $(cmake-utils_use qt4 FORCE_QT4)
)
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2015-12-19 17:15 Sven Wegener
0 siblings, 0 replies; 32+ messages in thread
From: Sven Wegener @ 2015-12-19 17:15 UTC (permalink / raw
To: gentoo-commits
commit: 0ec680546e33bae7cc38bb60f30cf674385d03e4
Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 13 22:15:15 2015 +0000
Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 16:48:43 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ec68054
sci-electronics/pulseview: Require libsigrok with cxx bindings
Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
sci-electronics/pulseview/pulseview-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index 8b16928..fb77e52 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
dev-libs/boost:0=
dev-libs/glib:2
- >=sci-libs/libsigrok-0.4.0
+ >=sci-libs/libsigrok-0.4.0[cxx]
dev-qt/qtgui:4
decode? (
>=sci-libs/libsigrokdecode-0.4.0
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2015-11-25 10:44 Sergey Popov
0 siblings, 0 replies; 32+ messages in thread
From: Sergey Popov @ 2015-11-25 10:44 UTC (permalink / raw
To: gentoo-commits
commit: a503fd0a7546a2f471bacb57e784b63d336df281
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 25 10:41:50 2015 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Wed Nov 25 10:41:50 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a503fd0a
sci-electronics/pulseview: add subslot to dev-libs/boost dependency, migrate to git-r3 eclass
Package-Manager: portage-2.2.23
.../{pulseview-0.2.0.ebuild => pulseview-0.2.0-r1.ebuild} | 7 ++++---
sci-electronics/pulseview/pulseview-9999.ebuild | 7 ++++---
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-0.2.0.ebuild b/sci-electronics/pulseview/pulseview-0.2.0-r1.ebuild
similarity index 93%
rename from sci-electronics/pulseview/pulseview-0.2.0.ebuild
rename to sci-electronics/pulseview/pulseview-0.2.0-r1.ebuild
index cf87801..aa55f1a 100644
--- a/sci-electronics/pulseview/pulseview-0.2.0.ebuild
+++ b/sci-electronics/pulseview/pulseview-0.2.0-r1.ebuild
@@ -9,7 +9,7 @@ inherit eutils cmake-utils python-single-r1
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
- inherit git-2
+ inherit git-r3
else
SRC_URI="http://sigrok.org/download/source/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
@@ -23,10 +23,11 @@ SLOT="0"
IUSE="+decode static"
REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
-RDEPEND=">=dev-libs/glib-2.28.0
+RDEPEND="
+ dev-libs/boost:0=
+ dev-libs/glib:2
>=sci-libs/libsigrok-0.3.0
dev-qt/qtgui:4
- >=dev-libs/boost-1.42
decode? (
>=sci-libs/libsigrokdecode-0.3.0
${PYTHON_DEPS}
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index cf87801..aa55f1a 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -9,7 +9,7 @@ inherit eutils cmake-utils python-single-r1
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="git://sigrok.org/${PN}"
- inherit git-2
+ inherit git-r3
else
SRC_URI="http://sigrok.org/download/source/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
@@ -23,10 +23,11 @@ SLOT="0"
IUSE="+decode static"
REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
-RDEPEND=">=dev-libs/glib-2.28.0
+RDEPEND="
+ dev-libs/boost:0=
+ dev-libs/glib:2
>=sci-libs/libsigrok-0.3.0
dev-qt/qtgui:4
- >=dev-libs/boost-1.42
decode? (
>=sci-libs/libsigrokdecode-0.3.0
${PYTHON_DEPS}
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
@ 2015-11-25 10:44 Sergey Popov
0 siblings, 0 replies; 32+ messages in thread
From: Sergey Popov @ 2015-11-25 10:44 UTC (permalink / raw
To: gentoo-commits
commit: 67760607a078d1723704111213d802344c886283
Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 25 10:43:31 2015 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Wed Nov 25 10:43:31 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67760607
sci-electronics/pulseview: correct dependencies on libsigrok in live ebuild
Reported-by: Sergey Alirzaev <zl29ah <AT> gmail.com>
Gentoo-Bug: 560828
Package-Manager: portage-2.2.23
sci-electronics/pulseview/pulseview-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/pulseview/pulseview-9999.ebuild b/sci-electronics/pulseview/pulseview-9999.ebuild
index aa55f1a..8b16928 100644
--- a/sci-electronics/pulseview/pulseview-9999.ebuild
+++ b/sci-electronics/pulseview/pulseview-9999.ebuild
@@ -26,10 +26,10 @@ REQUIRED_USE="decode? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
dev-libs/boost:0=
dev-libs/glib:2
- >=sci-libs/libsigrok-0.3.0
+ >=sci-libs/libsigrok-0.4.0
dev-qt/qtgui:4
decode? (
- >=sci-libs/libsigrokdecode-0.3.0
+ >=sci-libs/libsigrokdecode-0.4.0
${PYTHON_DEPS}
)"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 32+ messages in thread
end of thread, other threads:[~2024-08-31 16:00 UTC | newest]
Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-03 11:03 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/ Sven Wegener
-- strict thread matches above, loose matches on Subject: below --
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-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-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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox