public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-08-07 15:37 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2022-08-07 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     67e61e629e803ad277bce25315978f6ef7b9e7af
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sun Aug  7 14:26:09 2022 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sun Aug  7 14:26:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=67e61e62

sci-electronics/lxi-tools: new package, add 2.1

Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/Manifest             |  1 +
 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 36 ++++++++++++++++++++++++++
 sci-electronics/lxi-tools/metadata.xml         | 21 +++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/sci-electronics/lxi-tools/Manifest b/sci-electronics/lxi-tools/Manifest
new file mode 100644
index 000000000..3f3137ef9
--- /dev/null
+++ b/sci-electronics/lxi-tools/Manifest
@@ -0,0 +1 @@
+DIST lxi-tools-2.1.tar.gz 937946 BLAKE2B 25de9b879bd5db4e664aa2420598b22838477f10485247d6f435249dbc7c3d866c439362a99252c7fee329b7cf2a24c2bd72f523aac55a5cb70db914031daf0c SHA512 ddf54826aa3f50a575d2c5f6e62d6a1a813adde275530b19c4e7465e689f43fea290aab4c5762498e2437e67bade577ace4f12cd24ae41c99f811772c38ad307

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
new file mode 100644
index 000000000..f069b84ec
--- /dev/null
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Tools to access devices with LXI"
+HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
+SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="bash-completion +gui"
+
+RDEPEND="
+	bash-completion? ( >=app-shells/bash-completion-2.11 )
+	>=sys-libs/readline-8.1_p2
+	>=dev-lang/lua-5.3.6-r2:5.3
+	>=sci-electronics/liblxi-1.13
+	gui? (
+		>=dev-libs/glib-2.70
+		>=gui-libs/gtk-4.5.0
+		>=gui-libs/gtksourceview-5.3.3
+		>=gui-libs/libadwaita-1.0.1
+	)
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_use gui)
+	)
+	meson_src_configure
+}

diff --git a/sci-electronics/lxi-tools/metadata.xml b/sci-electronics/lxi-tools/metadata.xml
new file mode 100644
index 000000000..4b1b4bbc3
--- /dev/null
+++ b/sci-electronics/lxi-tools/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>gentoo@taujhe.de</email>
+    <name>Jan Henke</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">lxi-tools/lxi-tools</remote-id>
+  </upstream>
+  <longdescription>
+	lxi-tools are open source software tools for managing network attached LXI 
+	compatible test instruments such as modern oscilloscopes, power supplies, 
+	spectrum analyzers etc.
+
+	Features include automatic discovery of test instruments, sending SCPI 
+	commands, grabbing screenshots from supported instruments, benchmarking 
+	SCPI message performance, and powerful scripting for test automation. Both 
+	a commandline tool and a GUI tool are available.
+  </longdescription>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-08-11 21:27 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2022-08-11 21:27 UTC (permalink / raw
  To: gentoo-commits

commit:     72a499af8c1635e3531f5cdff81c32b42016cf09
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Thu Aug 11 21:25:56 2022 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Thu Aug 11 21:25:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=72a499af

sci-electronics/lxi-tools: Fix gschema, xdg icons actions

Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
index f069b84ec..47e2a4cb0 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit meson
+inherit meson gnome2-utils xdg-utils
 
 DESCRIPTION="Tools to access devices with LXI"
 HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
@@ -34,3 +34,13 @@ src_configure() {
 	)
 	meson_src_configure
 }
+
+pkg_postinst() {
+	gnome2_schemas_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_schemas_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-08-12 20:25 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2022-08-12 20:25 UTC (permalink / raw
  To: gentoo-commits

commit:     551c835f9b7c0f56d13b99bebaaf2ce150e1fd01
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Fri Aug 12 20:25:11 2022 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Fri Aug 12 20:25:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=551c835f

sci-electronics/lxi-tools: Add exlicit python build dependency

Closes: https://bugs.gentoo.org/864967
Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
index 47e2a4cb0..7e9f3b342 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=8
 
-inherit meson gnome2-utils xdg-utils
+PYTHON_COMPAT=( python{3_9,3_10,3_11} )
+inherit meson python-any-r1 gnome2-utils xdg-utils
 
 DESCRIPTION="Tools to access devices with LXI"
 HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
@@ -27,6 +28,7 @@ RDEPEND="
 	)
 "
 DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}"
 
 src_configure() {
 	local emesonargs=(


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-08-17 19:23 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2022-08-17 19:23 UTC (permalink / raw
  To: gentoo-commits

commit:     cca5ff60f5f68822b11170d61c957a35874b305f
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Wed Aug 17 19:22:37 2022 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Wed Aug 17 19:23:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cca5ff60

sci-electronics/lxi-tools: Replace lua dep with lua-single eclass

Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
index 7e9f3b342..c85ea340c 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -4,7 +4,8 @@
 EAPI=8
 
 PYTHON_COMPAT=( python{3_9,3_10,3_11} )
-inherit meson python-any-r1 gnome2-utils xdg-utils
+LUA_COMPAT=( lua5-3 )
+inherit meson python-any-r1 lua-single gnome2-utils xdg-utils
 
 DESCRIPTION="Tools to access devices with LXI"
 HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
@@ -15,10 +16,11 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="bash-completion +gui"
 
+REQUIRED_USE="${LUA_REQUIRED_USE}"
 RDEPEND="
 	bash-completion? ( >=app-shells/bash-completion-2.11 )
 	>=sys-libs/readline-8.1_p2
-	>=dev-lang/lua-5.3.6-r2:5.3
+	${LUA_DEPS}
 	>=sci-electronics/liblxi-1.13
 	gui? (
 		>=dev-libs/glib-2.70


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-08-28 15:46 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2022-08-28 15:46 UTC (permalink / raw
  To: gentoo-commits

commit:     e4dd8a04176619fe03d9f6f97b721c5fabc37938
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sun Aug 28 15:44:45 2022 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sun Aug 28 15:46:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4dd8a04

sci-electronics/lxi-tools: Fix pkg_setup

Due to using both lua-single-r1 and python-any-r1, pkg_setup needs to
explicitly call both's eclasses pkg_setup function.

Closes: https://bugs.gentoo.org/866461
Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
index c85ea340c..5fc7da450 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -32,6 +32,11 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="${PYTHON_DEPS}"
 
+pkg_setup() {
+	python-any-r1_pkg_setup
+	lua-single_pkg_setup
+}
+
 src_configure() {
 	local emesonargs=(
 		$(meson_use gui)


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-09-08 10:24 Andrew Ammerlaan
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2022-09-08 10:24 UTC (permalink / raw
  To: gentoo-commits

commit:     30e683d71afeeb752541b3358619a20953318f47
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  8 10:21:01 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Sep  8 10:21:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=30e683d7

sci-electronics/lxi-tools: fix identation

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-electronics/lxi-tools/metadata.xml | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/sci-electronics/lxi-tools/metadata.xml b/sci-electronics/lxi-tools/metadata.xml
index 4b1b4bbc3..0732547ef 100644
--- a/sci-electronics/lxi-tools/metadata.xml
+++ b/sci-electronics/lxi-tools/metadata.xml
@@ -1,21 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>gentoo@taujhe.de</email>
-    <name>Jan Henke</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">lxi-tools/lxi-tools</remote-id>
-  </upstream>
-  <longdescription>
-	lxi-tools are open source software tools for managing network attached LXI 
-	compatible test instruments such as modern oscilloscopes, power supplies, 
-	spectrum analyzers etc.
+    <maintainer type="person">
+      <email>gentoo@taujhe.de</email>
+      <name>Jan Henke</name>
+    </maintainer>
+    <upstream>
+      <remote-id type="github">lxi-tools/lxi-tools</remote-id>
+    </upstream>
+    <longdescription>
+    lxi-tools are open source software tools for managing network attached LXI
+    compatible test instruments such as modern oscilloscopes, power supplies,
+    spectrum analyzers etc.
 
-	Features include automatic discovery of test instruments, sending SCPI 
-	commands, grabbing screenshots from supported instruments, benchmarking 
-	SCPI message performance, and powerful scripting for test automation. Both 
-	a commandline tool and a GUI tool are available.
-  </longdescription>
+    Features include automatic discovery of test instruments, sending SCPI
+    commands, grabbing screenshots from supported instruments, benchmarking
+    SCPI message performance, and powerful scripting for test automation. Both
+    a commandline tool and a GUI tool are available.
+    </longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2022-11-27 11:42 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2022-11-27 11:42 UTC (permalink / raw
  To: gentoo-commits

commit:     ed36b319188e5de583f562a11f6f33f60e0e18ec
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sun Nov 27 11:42:19 2022 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sun Nov 27 11:42:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed36b319

sci-electronics/lxi-tools: add 2.3

Closes: https://bugs.gentoo.org/868924
Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/Manifest             |  1 +
 sci-electronics/lxi-tools/lxi-tools-2.3.ebuild | 62 ++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/sci-electronics/lxi-tools/Manifest b/sci-electronics/lxi-tools/Manifest
index 3f3137ef9..a0c21dc0c 100644
--- a/sci-electronics/lxi-tools/Manifest
+++ b/sci-electronics/lxi-tools/Manifest
@@ -1 +1,2 @@
 DIST lxi-tools-2.1.tar.gz 937946 BLAKE2B 25de9b879bd5db4e664aa2420598b22838477f10485247d6f435249dbc7c3d866c439362a99252c7fee329b7cf2a24c2bd72f523aac55a5cb70db914031daf0c SHA512 ddf54826aa3f50a575d2c5f6e62d6a1a813adde275530b19c4e7465e689f43fea290aab4c5762498e2437e67bade577ace4f12cd24ae41c99f811772c38ad307
+DIST lxi-tools-2.3.tar.gz 1001920 BLAKE2B 5fa8d24403e98366436270fba543dd3086f34a194c3995ce0b628b7ec1605d1319b4468b371d08ea88db1fd653311108d03b43a49533060472e6b1495072442a SHA512 3bf885d0d9b96b525809cd3fb5fbedb1ffc2728f523a31cc1bb8c45657d9e4eec7d954e085f752b89a3016cc01f021c773ddbd1d876a4af8a7b72719275dc4c7

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild
new file mode 100644
index 000000000..474dcae03
--- /dev/null
+++ b/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python{3_9,3_10,3_11} )
+LUA_COMPAT=( lua5-{1..4} )
+inherit meson python-any-r1 lua-single gnome2-utils xdg-utils
+
+DESCRIPTION="Tools to access devices with LXI"
+HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
+SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="bash-completion +gui"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RDEPEND="
+	bash-completion? ( >=app-shells/bash-completion-2.11 )
+	>=sys-libs/readline-8.1_p2
+	${LUA_DEPS}
+	>=sci-electronics/liblxi-1.13
+	gui? (
+		>=dev-libs/glib-2.70
+		>=gui-libs/gtk-4.6.0
+		>=gui-libs/gtksourceview-5.4.0
+		>=gui-libs/libadwaita-1.2
+		>=dev-libs/json-glib-1.4
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${PYTHON_DEPS}
+	virtual/pkgconfig
+"
+
+pkg_setup() {
+	python-any-r1_pkg_setup
+	lua-single_pkg_setup
+}
+
+src_configure() {
+	# fix lua dependency string in meson-build
+	sed -i 's/lua-/lua/g' ${S}/src/meson.build || die
+
+	local emesonargs=(
+		$(meson_use gui)
+	)
+	meson_src_configure
+}
+
+pkg_postinst() {
+	gnome2_schemas_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_schemas_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2024-06-08 18:44 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2024-06-08 18:44 UTC (permalink / raw
  To: gentoo-commits

commit:     4b8151e540da67e7d69e6126e366e1e7fd86111d
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sat Jun  8 18:44:28 2024 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sat Jun  8 18:44:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b8151e5

sci-electronics/lxi-tools: drop 2.1, 2.3

Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/Manifest             |  2 -
 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 55 -----------------------
 sci-electronics/lxi-tools/lxi-tools-2.3.ebuild | 62 --------------------------
 3 files changed, 119 deletions(-)

diff --git a/sci-electronics/lxi-tools/Manifest b/sci-electronics/lxi-tools/Manifest
index 002c827a7..19f6822dd 100644
--- a/sci-electronics/lxi-tools/Manifest
+++ b/sci-electronics/lxi-tools/Manifest
@@ -1,3 +1 @@
-DIST lxi-tools-2.1.tar.gz 937946 BLAKE2B 25de9b879bd5db4e664aa2420598b22838477f10485247d6f435249dbc7c3d866c439362a99252c7fee329b7cf2a24c2bd72f523aac55a5cb70db914031daf0c SHA512 ddf54826aa3f50a575d2c5f6e62d6a1a813adde275530b19c4e7465e689f43fea290aab4c5762498e2437e67bade577ace4f12cd24ae41c99f811772c38ad307
-DIST lxi-tools-2.3.tar.gz 1001920 BLAKE2B 5fa8d24403e98366436270fba543dd3086f34a194c3995ce0b628b7ec1605d1319b4468b371d08ea88db1fd653311108d03b43a49533060472e6b1495072442a SHA512 3bf885d0d9b96b525809cd3fb5fbedb1ffc2728f523a31cc1bb8c45657d9e4eec7d954e085f752b89a3016cc01f021c773ddbd1d876a4af8a7b72719275dc4c7
 DIST lxi-tools-2.7.tar.gz 1007967 BLAKE2B d29da7d1be3ba2809a390ab501077f7711a3fa9d1d93eb67fb43c302841bbdcc0c3cf64aa90e6d0789aabf714c6d7ea204ec8318861d69317d80118c16127df2 SHA512 de295f4ba04e5c119929c413112373faa6b019b48e4afee47001cbe145ed3e5dbf30700ce219af9deec0d6a68b169fe7493c65569b99ca1324a0cffcc7463f0d

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
deleted file mode 100644
index 4b0cdaeba..000000000
--- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python{3_10,3_11} )
-LUA_COMPAT=( lua5-3 )
-inherit meson python-any-r1 lua-single gnome2-utils xdg-utils
-
-DESCRIPTION="Tools to access devices with LXI"
-HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
-SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="bash-completion +gui"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RDEPEND="
-	bash-completion? ( >=app-shells/bash-completion-2.11 )
-	>=sys-libs/readline-8.1_p2
-	${LUA_DEPS}
-	>=sci-electronics/liblxi-1.13
-	gui? (
-		>=dev-libs/glib-2.70
-		>=gui-libs/gtk-4.5.0
-		>=gui-libs/gtksourceview-5.3.3
-		>=gui-libs/libadwaita-1.0.1
-	)
-"
-DEPEND="${RDEPEND}"
-BDEPEND="${PYTHON_DEPS}"
-
-pkg_setup() {
-	python-any-r1_pkg_setup
-	lua-single_pkg_setup
-}
-
-src_configure() {
-	local emesonargs=(
-		$(meson_use gui)
-	)
-	meson_src_configure
-}
-
-pkg_postinst() {
-	gnome2_schemas_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_schemas_update
-	xdg_icon_cache_update
-}

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild
deleted file mode 100644
index 4ec58e671..000000000
--- a/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python{3_10,3_11} )
-LUA_COMPAT=( lua5-{1..4} )
-inherit meson python-any-r1 lua-single gnome2-utils xdg-utils
-
-DESCRIPTION="Tools to access devices with LXI"
-HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
-SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="bash-completion +gui"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RDEPEND="
-	bash-completion? ( >=app-shells/bash-completion-2.11 )
-	>=sys-libs/readline-8.1_p2
-	${LUA_DEPS}
-	>=sci-electronics/liblxi-1.13
-	gui? (
-		>=dev-libs/glib-2.70
-		>=gui-libs/gtk-4.6.0
-		>=gui-libs/gtksourceview-5.4.0
-		>=gui-libs/libadwaita-1.2
-		>=dev-libs/json-glib-1.4
-	)
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	${PYTHON_DEPS}
-	virtual/pkgconfig
-"
-
-pkg_setup() {
-	python-any-r1_pkg_setup
-	lua-single_pkg_setup
-}
-
-src_configure() {
-	# fix lua dependency string in meson-build
-	sed -i 's/lua-/lua/g' ${S}/src/meson.build || die
-
-	local emesonargs=(
-		$(meson_use gui)
-	)
-	meson_src_configure
-}
-
-pkg_postinst() {
-	gnome2_schemas_update
-	xdg_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_schemas_update
-	xdg_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2024-06-08 18:44 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2024-06-08 18:44 UTC (permalink / raw
  To: gentoo-commits

commit:     80c0936cbadd90f7ec2b01fe0581dd27e8d4f749
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sat Jun  8 18:43:45 2024 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sat Jun  8 18:43:45 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=80c0936c

sci-electronics/lxi-tools: add 2.7

Closes: https://bugs.gentoo.org/931474
Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/Manifest             |  1 +
 sci-electronics/lxi-tools/lxi-tools-2.7.ebuild | 62 ++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/sci-electronics/lxi-tools/Manifest b/sci-electronics/lxi-tools/Manifest
index a0c21dc0c..002c827a7 100644
--- a/sci-electronics/lxi-tools/Manifest
+++ b/sci-electronics/lxi-tools/Manifest
@@ -1,2 +1,3 @@
 DIST lxi-tools-2.1.tar.gz 937946 BLAKE2B 25de9b879bd5db4e664aa2420598b22838477f10485247d6f435249dbc7c3d866c439362a99252c7fee329b7cf2a24c2bd72f523aac55a5cb70db914031daf0c SHA512 ddf54826aa3f50a575d2c5f6e62d6a1a813adde275530b19c4e7465e689f43fea290aab4c5762498e2437e67bade577ace4f12cd24ae41c99f811772c38ad307
 DIST lxi-tools-2.3.tar.gz 1001920 BLAKE2B 5fa8d24403e98366436270fba543dd3086f34a194c3995ce0b628b7ec1605d1319b4468b371d08ea88db1fd653311108d03b43a49533060472e6b1495072442a SHA512 3bf885d0d9b96b525809cd3fb5fbedb1ffc2728f523a31cc1bb8c45657d9e4eec7d954e085f752b89a3016cc01f021c773ddbd1d876a4af8a7b72719275dc4c7
+DIST lxi-tools-2.7.tar.gz 1007967 BLAKE2B d29da7d1be3ba2809a390ab501077f7711a3fa9d1d93eb67fb43c302841bbdcc0c3cf64aa90e6d0789aabf714c6d7ea204ec8318861d69317d80118c16127df2 SHA512 de295f4ba04e5c119929c413112373faa6b019b48e4afee47001cbe145ed3e5dbf30700ce219af9deec0d6a68b169fe7493c65569b99ca1324a0cffcc7463f0d

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
new file mode 100644
index 000000000..682708e0b
--- /dev/null
+++ b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python{3_12,3_13} )
+LUA_COMPAT=( lua5-{1..4} )
+inherit meson python-any-r1 lua-single gnome2-utils xdg-utils
+
+DESCRIPTION="Tools to access devices with LXI"
+HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
+SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="bash-completion +gui"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RDEPEND="
+	bash-completion? ( >=app-shells/bash-completion-2.11 )
+	>=sys-libs/readline-8.1_p2
+	${LUA_DEPS}
+	>=sci-electronics/liblxi-1.13
+	gui? (
+		>=dev-libs/glib-2.70
+		>=gui-libs/gtk-4.6.0
+		>=gui-libs/gtksourceview-5.4.0
+		>=gui-libs/libadwaita-1.2
+		>=dev-libs/json-glib-1.4
+	)
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${PYTHON_DEPS}
+	virtual/pkgconfig
+"
+
+pkg_setup() {
+	python-any-r1_pkg_setup
+	lua-single_pkg_setup
+}
+
+src_configure() {
+	# fix lua dependency string in meson-build
+	sed -i 's/lua-/lua/g' ${S}/src/meson.build || die
+
+	local emesonargs=(
+		$(meson_use gui)
+	)
+	meson_src_configure
+}
+
+pkg_postinst() {
+	gnome2_schemas_update
+	xdg_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_schemas_update
+	xdg_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2024-06-08 19:02 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2024-06-08 19:02 UTC (permalink / raw
  To: gentoo-commits

commit:     781a7e430d33f98363cb67065a1c9ef9cc180fcc
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sat Jun  8 19:02:30 2024 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sat Jun  8 19:02:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=781a7e43

sci-electronics/lxi-tools: Install bash completions

Closes: https://bugs.gentoo.org/928371
Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.7.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
index 682708e0b..58e217840 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 PYTHON_COMPAT=( python{3_12,3_13} )
 LUA_COMPAT=( lua5-{1..4} )
-inherit meson python-any-r1 lua-single gnome2-utils xdg-utils
+inherit meson python-any-r1 lua-single gnome2-utils xdg-utils bash-completion-r1
 
 DESCRIPTION="Tools to access devices with LXI"
 HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
@@ -47,6 +47,7 @@ src_configure() {
 
 	local emesonargs=(
 		$(meson_use gui)
+		-Dbashcompletiondir="$(get_bashcompdir)"
 	)
 	meson_src_configure
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
  2024-06-08 20:06 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-06-08 20:02 ` Julien Roy
  0 siblings, 0 replies; 13+ messages in thread
From: Julien Roy @ 2024-06-08 20:02 UTC (permalink / raw
  To: gentoo-commits

commit:     d3304c251383309c385041a4ba87769dee9a0261
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Jun  8 20:01:51 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Jun  8 20:01:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d3304c25

sci-electronics/lxi-tools: remove redundant eclass inherit 'xdg-utils'
quoted variable S

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 sci-electronics/lxi-tools/lxi-tools-2.7.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
index 58e217840..d76233e39 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 PYTHON_COMPAT=( python{3_12,3_13} )
 LUA_COMPAT=( lua5-{1..4} )
-inherit meson python-any-r1 lua-single gnome2-utils xdg-utils bash-completion-r1
+inherit meson python-any-r1 lua-single gnome2-utils bash-completion-r1
 
 DESCRIPTION="Tools to access devices with LXI"
 HOMEPAGE="https://github.com/lxi-tools/lxi-tools"
@@ -43,7 +43,7 @@ pkg_setup() {
 
 src_configure() {
 	# fix lua dependency string in meson-build
-	sed -i 's/lua-/lua/g' ${S}/src/meson.build || die
+	sed -i 's/lua-/lua/g' "${S}"/src/meson.build || die
 
 	local emesonargs=(
 		$(meson_use gui)


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2024-06-09 16:03 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2024-06-09 16:03 UTC (permalink / raw
  To: gentoo-commits

commit:     4feb00aa853f44400a6ee76d70cff28b049f3136
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sun Jun  9 16:03:32 2024 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sun Jun  9 16:03:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4feb00aa

sci-electronics/lxi-tools: Drop bash-completion dep & use flag

Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.7.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
index d76233e39..2447eb6d8 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
@@ -14,11 +14,10 @@ SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="bash-completion +gui"
+IUSE="+gui"
 
 REQUIRED_USE="${LUA_REQUIRED_USE}"
 RDEPEND="
-	bash-completion? ( >=app-shells/bash-completion-2.11 )
 	>=sys-libs/readline-8.1_p2
 	${LUA_DEPS}
 	>=sci-electronics/liblxi-1.13


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/
@ 2024-06-09 16:13 Jan Henke
  0 siblings, 0 replies; 13+ messages in thread
From: Jan Henke @ 2024-06-09 16:13 UTC (permalink / raw
  To: gentoo-commits

commit:     c7184450f5b9ac9c928476dc7ec75b20225d11e2
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sun Jun  9 16:12:21 2024 +0000
Commit:     Jan Henke <gentoo <AT> taujhe <DOT> de>
CommitDate: Sun Jun  9 16:13:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7184450

sci-electronics/lxi-tools: Add dependency on libcairo, libgdk-pixbuf

Upstream declared these dependency after being reported.

Closes: https://bugs.gentoo.org/933182
Bug: https://github.com/lxi-tools/lxi-tools/issues/87
Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.7.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
index 2447eb6d8..dd34c5bb3 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.7.ebuild
@@ -24,6 +24,8 @@ RDEPEND="
 	gui? (
 		>=dev-libs/glib-2.70
 		>=gui-libs/gtk-4.6.0
+		>=x11-libs/cairo-1.18.0
+		>=x11-libs/gdk-pixbuf-2.42.10-r1
 		>=gui-libs/gtksourceview-5.4.0
 		>=gui-libs/libadwaita-1.2
 		>=dev-libs/json-glib-1.4


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-06-09 16:13 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-07 15:37 [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/ Jan Henke
  -- strict thread matches above, loose matches on Subject: below --
2022-08-11 21:27 Jan Henke
2022-08-12 20:25 Jan Henke
2022-08-17 19:23 Jan Henke
2022-08-28 15:46 Jan Henke
2022-09-08 10:24 Andrew Ammerlaan
2022-11-27 11:42 Jan Henke
2024-06-08 18:44 Jan Henke
2024-06-08 18:44 Jan Henke
2024-06-08 19:02 Jan Henke
2024-06-08 20:06 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-06-08 20:02 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-06-09 16:03 Jan Henke
2024-06-09 16:13 Jan Henke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox