* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2021-01-08 19:39 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2021-01-08 19:39 UTC (permalink / raw
To: gentoo-commits
commit: 8ecbcc0a5c337764067db8362426bbce1b5b3ffc
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 8 19:34:56 2021 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 8 19:38:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ecbcc0a
net-wireless/iwgtk: new package
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.4.ebuild | 38 +++++++++++++++++++++++++++++++++++++
net-wireless/iwgtk/metadata.xml | 8 ++++++++
3 files changed, 47 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
new file mode 100644
index 00000000000..714a9feba83
--- /dev/null
+++ b/net-wireless/iwgtk/Manifest
@@ -0,0 +1 @@
+DIST iwgtk-0.4.tar.gz 103988 BLAKE2B 0a848f805509507066e9eb97c1a3ccd1f3e441a6a01789b7ec291a12f67a619227b7845249342c15301c755dd6e3594379a888d278dc71c20cf377322f9969a5 SHA512 7a6d55493fe7cad57dc8338aafe48236c1ececb688a64cbdeb5748c60f5d109ae7912182c6d4df094588baee2aff3bd5481f82a80c4c267283a5067a0127f9e0
diff --git a/net-wireless/iwgtk/iwgtk-0.4.ebuild b/net-wireless/iwgtk/iwgtk-0.4.ebuild
new file mode 100644
index 00000000000..6283df49fc2
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+ dev-libs/atk:0
+ dev-libs/glib:2
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:3
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ net-wireless/iwd
+"
+
+src_prepare() {
+ default
+ sed -i -e 's/^CC=/CC?=/' -e 's/^CFLAGS=/CFLAGS:=/' -e 's/-O3$/${CFLAGS}/' Makefile
+}
+
+src_install() {
+ emake prefix="${ED}/usr" install
+ gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz"
+}
diff --git a/net-wireless/iwgtk/metadata.xml b/net-wireless/iwgtk/metadata.xml
new file mode 100644
index 00000000000..c67d4dcaca5
--- /dev/null
+++ b/net-wireless/iwgtk/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>bkohler@gentoo.org</email>
+ <name>Ben Kohler</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2021-01-08 21:14 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2021-01-08 21:14 UTC (permalink / raw
To: gentoo-commits
commit: 274915f4d3b6e729b0b6dc57a589eed5ca0d5be1
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 8 21:12:48 2021 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 8 21:13:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274915f4
net-wireless/iwgtk: QA fixes
Thanks Polynomial-C and ago for reporting
Closes: https://bugs.gentoo.org/764503
Closes: https://github.com/gentoo/gentoo/pull/18996
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/iwgtk-0.4.ebuild | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/net-wireless/iwgtk/iwgtk-0.4.ebuild b/net-wireless/iwgtk/iwgtk-0.4.ebuild
index 6283df49fc2..eb3eb819b7a 100644
--- a/net-wireless/iwgtk/iwgtk-0.4.ebuild
+++ b/net-wireless/iwgtk/iwgtk-0.4.ebuild
@@ -29,10 +29,15 @@ RDEPEND="
src_prepare() {
default
- sed -i -e 's/^CC=/CC?=/' -e 's/^CFLAGS=/CFLAGS:=/' -e 's/-O3$/${CFLAGS}/' Makefile
+ sed -i \
+ -e 's/^CC=/CC?=/' \
+ -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
+ -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
+ -e 's/-O3$/${CFLAGS}/' \
+ Makefile || die
}
src_install() {
emake prefix="${ED}/usr" install
- gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz"
+ gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-06-07 19:17 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-06-07 19:17 UTC (permalink / raw
To: gentoo-commits
commit: 72bc488e94650f359cd8cd80c633d4c1098e8a2e
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 7 18:50:58 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jun 7 19:17:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72bc488e
net-wireless/iwgtk: add 0.5
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.5.ebuild | 43 +++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 714a9feba838..81bd967c09d8 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1 +1,2 @@
DIST iwgtk-0.4.tar.gz 103988 BLAKE2B 0a848f805509507066e9eb97c1a3ccd1f3e441a6a01789b7ec291a12f67a619227b7845249342c15301c755dd6e3594379a888d278dc71c20cf377322f9969a5 SHA512 7a6d55493fe7cad57dc8338aafe48236c1ececb688a64cbdeb5748c60f5d109ae7912182c6d4df094588baee2aff3bd5481f82a80c4c267283a5067a0127f9e0
+DIST iwgtk-0.5.tar.gz 111619 BLAKE2B 1992f722fef1fc940433a0a26ee9d418c93a2b5164cd88c6a5456143b3e91e6e2b7f78e40df55df0c7bcd37fbf837f7691cd3aefa8166a9a93d94621e463ceb6 SHA512 63858ace6e05943563cfc25d66b8c98f3f13927a2e9addce4e9655e77a911b0e6e429865251dcd9990e722bcb0af852fffe2d59d4c5b467930837e2092b45ab2
diff --git a/net-wireless/iwgtk/iwgtk-0.5.ebuild b/net-wireless/iwgtk/iwgtk-0.5.ebuild
new file mode 100644
index 000000000000..4b26ef061cad
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.5.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+ dev-libs/atk:0
+ dev-libs/glib:2
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ gui-libs/gtk:4
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ net-wireless/iwd
+"
+
+src_prepare() {
+ default
+ sed -i \
+ -e 's/^CC=/CC?=/' \
+ -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
+ -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
+ -e 's/-O3$/${CFLAGS}/' \
+ Makefile || die
+}
+
+src_install() {
+ emake PREFIX="${ED}/usr" install
+ gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-06-14 13:20 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-06-14 13:20 UTC (permalink / raw
To: gentoo-commits
commit: 36bc3d8b97d8af9f0441b8389cff3de428c8a1de
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 14 13:19:15 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jun 14 13:20:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36bc3d8b
net-wireless/iwgtk: drop 0.4, 0.5
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 2 --
net-wireless/iwgtk/iwgtk-0.4.ebuild | 43 -------------------------------------
net-wireless/iwgtk/iwgtk-0.5.ebuild | 43 -------------------------------------
3 files changed, 88 deletions(-)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 96e9141bda8a..d8c683afd9d1 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1,3 +1 @@
-DIST iwgtk-0.4.tar.gz 103988 BLAKE2B 0a848f805509507066e9eb97c1a3ccd1f3e441a6a01789b7ec291a12f67a619227b7845249342c15301c755dd6e3594379a888d278dc71c20cf377322f9969a5 SHA512 7a6d55493fe7cad57dc8338aafe48236c1ececb688a64cbdeb5748c60f5d109ae7912182c6d4df094588baee2aff3bd5481f82a80c4c267283a5067a0127f9e0
-DIST iwgtk-0.5.tar.gz 111619 BLAKE2B 1992f722fef1fc940433a0a26ee9d418c93a2b5164cd88c6a5456143b3e91e6e2b7f78e40df55df0c7bcd37fbf837f7691cd3aefa8166a9a93d94621e463ceb6 SHA512 63858ace6e05943563cfc25d66b8c98f3f13927a2e9addce4e9655e77a911b0e6e429865251dcd9990e722bcb0af852fffe2d59d4c5b467930837e2092b45ab2
DIST iwgtk-0.6.tar.gz 112522 BLAKE2B 8366b79d4d3b386187815ba787340d2e90d1a94779ec88a4fa807fbd310a77acf6651e49f4bfd6bbae76ca99765678bd643eaf9bb584b8fc75c812216d45aaa9 SHA512 79874e65d7673100f9156e183387ed0e744de153f8ab3aa3295347ed263b53cd6109e1b7e2d32e7b735a4d09d60235a1124fa244beb989fa4e86044cf7547fb1
diff --git a/net-wireless/iwgtk/iwgtk-0.4.ebuild b/net-wireless/iwgtk/iwgtk-0.4.ebuild
deleted file mode 100644
index eb3eb819b7af..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
- dev-libs/atk:0
- dev-libs/glib:2
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- net-wireless/iwd
-"
-
-src_prepare() {
- default
- sed -i \
- -e 's/^CC=/CC?=/' \
- -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
- -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
- -e 's/-O3$/${CFLAGS}/' \
- Makefile || die
-}
-
-src_install() {
- emake prefix="${ED}/usr" install
- gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
-}
diff --git a/net-wireless/iwgtk/iwgtk-0.5.ebuild b/net-wireless/iwgtk/iwgtk-0.5.ebuild
deleted file mode 100644
index 4b26ef061cad..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.5.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
- dev-libs/atk:0
- dev-libs/glib:2
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- gui-libs/gtk:4
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- net-wireless/iwd
-"
-
-src_prepare() {
- default
- sed -i \
- -e 's/^CC=/CC?=/' \
- -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
- -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
- -e 's/-O3$/${CFLAGS}/' \
- Makefile || die
-}
-
-src_install() {
- emake PREFIX="${ED}/usr" install
- gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
-}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-06-14 13:20 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-06-14 13:20 UTC (permalink / raw
To: gentoo-commits
commit: 214ec93b59c5e2aa25d7d4d6ff85e7e6daae18d0
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 14 13:18:57 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jun 14 13:20:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214ec93b
net-wireless/iwgtk: add 0.6
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.6.ebuild | 43 +++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 81bd967c09d8..96e9141bda8a 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1,2 +1,3 @@
DIST iwgtk-0.4.tar.gz 103988 BLAKE2B 0a848f805509507066e9eb97c1a3ccd1f3e441a6a01789b7ec291a12f67a619227b7845249342c15301c755dd6e3594379a888d278dc71c20cf377322f9969a5 SHA512 7a6d55493fe7cad57dc8338aafe48236c1ececb688a64cbdeb5748c60f5d109ae7912182c6d4df094588baee2aff3bd5481f82a80c4c267283a5067a0127f9e0
DIST iwgtk-0.5.tar.gz 111619 BLAKE2B 1992f722fef1fc940433a0a26ee9d418c93a2b5164cd88c6a5456143b3e91e6e2b7f78e40df55df0c7bcd37fbf837f7691cd3aefa8166a9a93d94621e463ceb6 SHA512 63858ace6e05943563cfc25d66b8c98f3f13927a2e9addce4e9655e77a911b0e6e429865251dcd9990e722bcb0af852fffe2d59d4c5b467930837e2092b45ab2
+DIST iwgtk-0.6.tar.gz 112522 BLAKE2B 8366b79d4d3b386187815ba787340d2e90d1a94779ec88a4fa807fbd310a77acf6651e49f4bfd6bbae76ca99765678bd643eaf9bb584b8fc75c812216d45aaa9 SHA512 79874e65d7673100f9156e183387ed0e744de153f8ab3aa3295347ed263b53cd6109e1b7e2d32e7b735a4d09d60235a1124fa244beb989fa4e86044cf7547fb1
diff --git a/net-wireless/iwgtk/iwgtk-0.6.ebuild b/net-wireless/iwgtk/iwgtk-0.6.ebuild
new file mode 100644
index 000000000000..acd1ec9a8514
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+ dev-libs/atk:0
+ dev-libs/glib:2
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ gui-libs/gtk:4
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ net-wireless/iwd
+"
+
+src_prepare() {
+ default
+ sed -i \
+ -e 's/^CC=/CC?=/' \
+ -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
+ -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
+ -e 's/-O3$/${CFLAGS}/' \
+ Makefile || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="/usr" install
+ gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-07-01 11:45 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-07-01 11:45 UTC (permalink / raw
To: gentoo-commits
commit: 731662acf3190559807ae3a8d4abbe8153b507b1
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 1 11:44:52 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jul 1 11:45:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731662ac
net-wireless/iwgtk: add 0.7
Closes: https://github.com/gentoo/gentoo/pull/26170
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.7.ebuild | 43 +++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index d8c683afd9d1..1f2e811cbd60 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1 +1,2 @@
DIST iwgtk-0.6.tar.gz 112522 BLAKE2B 8366b79d4d3b386187815ba787340d2e90d1a94779ec88a4fa807fbd310a77acf6651e49f4bfd6bbae76ca99765678bd643eaf9bb584b8fc75c812216d45aaa9 SHA512 79874e65d7673100f9156e183387ed0e744de153f8ab3aa3295347ed263b53cd6109e1b7e2d32e7b735a4d09d60235a1124fa244beb989fa4e86044cf7547fb1
+DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa SHA512 da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
diff --git a/net-wireless/iwgtk/iwgtk-0.7.ebuild b/net-wireless/iwgtk/iwgtk-0.7.ebuild
new file mode 100644
index 000000000000..a05ee89eb263
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.7.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+ dev-libs/atk:0
+ dev-libs/glib:2
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ gui-libs/gtk:4
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ >=net-wireless/iwd-1.28
+"
+
+src_prepare() {
+ default
+ sed -i \
+ -e 's/^CC=/CC?=/' \
+ -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
+ -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
+ -e 's/-O3$/${CFLAGS}/' \
+ Makefile || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="/usr" install
+ gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-07-01 13:08 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-07-01 13:08 UTC (permalink / raw
To: gentoo-commits
commit: c6704a20ea841fa2ad57387e024f2208ba0b9c55
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 1 13:07:06 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jul 1 13:08:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6704a20
Revert "net-wireless/iwgtk: add 0.7"
Bug: https://bugs.gentoo.org/855533
This reverts commit 731662acf3190559807ae3a8d4abbe8153b507b1.
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 -
net-wireless/iwgtk/iwgtk-0.7.ebuild | 43 -------------------------------------
2 files changed, 44 deletions(-)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 1f2e811cbd60..d8c683afd9d1 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1,2 +1 @@
DIST iwgtk-0.6.tar.gz 112522 BLAKE2B 8366b79d4d3b386187815ba787340d2e90d1a94779ec88a4fa807fbd310a77acf6651e49f4bfd6bbae76ca99765678bd643eaf9bb584b8fc75c812216d45aaa9 SHA512 79874e65d7673100f9156e183387ed0e744de153f8ab3aa3295347ed263b53cd6109e1b7e2d32e7b735a4d09d60235a1124fa244beb989fa4e86044cf7547fb1
-DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa SHA512 da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
diff --git a/net-wireless/iwgtk/iwgtk-0.7.ebuild b/net-wireless/iwgtk/iwgtk-0.7.ebuild
deleted file mode 100644
index a05ee89eb263..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.7.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
- dev-libs/atk:0
- dev-libs/glib:2
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- gui-libs/gtk:4
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- >=net-wireless/iwd-1.28
-"
-
-src_prepare() {
- default
- sed -i \
- -e 's/^CC=/CC?=/' \
- -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
- -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
- -e 's/-O3$/${CFLAGS}/' \
- Makefile || die
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
- gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
-}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-07-01 13:24 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-07-01 13:24 UTC (permalink / raw
To: gentoo-commits
commit: 8f1c6e94e212e76a01b1ee0768ccd58ea513645c
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 1 13:24:10 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jul 1 13:24:10 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1c6e94
net-wireless/iwgtk: add 0.7
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.7.ebuild | 44 +++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index d8c683afd9d1..1f2e811cbd60 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1 +1,2 @@
DIST iwgtk-0.6.tar.gz 112522 BLAKE2B 8366b79d4d3b386187815ba787340d2e90d1a94779ec88a4fa807fbd310a77acf6651e49f4bfd6bbae76ca99765678bd643eaf9bb584b8fc75c812216d45aaa9 SHA512 79874e65d7673100f9156e183387ed0e744de153f8ab3aa3295347ed263b53cd6109e1b7e2d32e7b735a4d09d60235a1124fa244beb989fa4e86044cf7547fb1
+DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa SHA512 da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
diff --git a/net-wireless/iwgtk/iwgtk-0.7.ebuild b/net-wireless/iwgtk/iwgtk-0.7.ebuild
new file mode 100644
index 000000000000..b32d3e5ab1a6
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.7.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+ dev-libs/atk:0
+ dev-libs/glib:2
+ gui-libs/gtk:4
+ media-gfx/qrencode:=
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ >=net-wireless/iwd-1.28
+"
+
+src_prepare() {
+ default
+ sed -i \
+ -e 's/^CC=/CC?=/' \
+ -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
+ -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
+ -e 's/-O3$/${CFLAGS}/' \
+ Makefile || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="/usr" install
+ gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-07-25 14:26 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-07-25 14:26 UTC (permalink / raw
To: gentoo-commits
commit: cc59730ff022d00355cf35660336615594c3ec6b
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 19:18:55 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Mon Jul 25 14:26:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc59730f
net-wireless/iwgtk: drop 0.6
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 -
net-wireless/iwgtk/iwgtk-0.6.ebuild | 43 -------------------------------------
2 files changed, 44 deletions(-)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 1f2e811cbd60..a3eba5be9135 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1,2 +1 @@
-DIST iwgtk-0.6.tar.gz 112522 BLAKE2B 8366b79d4d3b386187815ba787340d2e90d1a94779ec88a4fa807fbd310a77acf6651e49f4bfd6bbae76ca99765678bd643eaf9bb584b8fc75c812216d45aaa9 SHA512 79874e65d7673100f9156e183387ed0e744de153f8ab3aa3295347ed263b53cd6109e1b7e2d32e7b735a4d09d60235a1124fa244beb989fa4e86044cf7547fb1
DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa SHA512 da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
diff --git a/net-wireless/iwgtk/iwgtk-0.6.ebuild b/net-wireless/iwgtk/iwgtk-0.6.ebuild
deleted file mode 100644
index acd1ec9a8514..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
- dev-libs/atk:0
- dev-libs/glib:2
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- gui-libs/gtk:4
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- net-wireless/iwd
-"
-
-src_prepare() {
- default
- sed -i \
- -e 's/^CC=/CC?=/' \
- -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
- -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
- -e 's/-O3$/${CFLAGS}/' \
- Makefile || die
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
- gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
-}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-08-11 13:00 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-08-11 13:00 UTC (permalink / raw
To: gentoo-commits
commit: 5cffcb4123838ef796df17fa03bd34abcdf9411c
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 11 12:58:48 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 13:00:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cffcb41
net-wireless/iwgtk: add 0.8
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.8.ebuild | 31 +++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index a3eba5be9135..fa9f7f4e25b2 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1 +1,2 @@
DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa SHA512 da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
+DIST iwgtk-0.8.tar.gz 119824 BLAKE2B ffd44e292319ae21a812249616b9de28e47e9a558cb37013fda8a4032cc9002352535639c3dd8f34e21ff31c2619640c0592ff05a53e7ea6abb7b619d97f8a6d SHA512 efad4252ed031836a384a642bdc90bfc1396903eeb494e6f76238fcc5314ba7d58dd1aef9d4457aab2b940434b781e1a6bffd32ed6170dfb9abb919069f461f7
diff --git a/net-wireless/iwgtk/iwgtk-0.8.ebuild b/net-wireless/iwgtk/iwgtk-0.8.ebuild
new file mode 100644
index 000000000000..4d2eb68b95d0
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.8.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit meson xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+BDEPEND="app-text/scdoc"
+
+DEPEND="
+ dev-libs/atk:0
+ dev-libs/glib:2
+ gui-libs/gtk:4
+ media-gfx/qrencode:=
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ >=net-wireless/iwd-1.28
+"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-10-27 12:34 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-10-27 12:34 UTC (permalink / raw
To: gentoo-commits
commit: baf110d0c3802ba2f7a063120e0dccb255af54f1
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 25 13:05:19 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 12:34:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf110d0
net-wireless/iwgtk: update deprecated atk dep
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/iwgtk-0.8-r1.ebuild | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/net-wireless/iwgtk/iwgtk-0.8-r1.ebuild b/net-wireless/iwgtk/iwgtk-0.8-r1.ebuild
new file mode 100644
index 000000000000..93351d2e4ca6
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.8-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit meson xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+BDEPEND="app-text/scdoc"
+
+DEPEND="
+ app-accessibility/at-spi2-core:2
+ dev-libs/glib:2
+ gui-libs/gtk:4
+ media-gfx/qrencode:=
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ >=net-wireless/iwd-1.28
+"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2022-10-27 12:34 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2022-10-27 12:34 UTC (permalink / raw
To: gentoo-commits
commit: be2c7aa3b254cd8717644b47dc3dcf518cb20cc3
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 25 13:05:48 2022 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 12:34:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be2c7aa3
net-wireless/iwgtk: drop 0.7, 0.8
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 -
net-wireless/iwgtk/iwgtk-0.7.ebuild | 44 -------------------------------------
net-wireless/iwgtk/iwgtk-0.8.ebuild | 31 --------------------------
3 files changed, 76 deletions(-)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index fa9f7f4e25b2..7dc6fb504453 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1,2 +1 @@
-DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa SHA512 da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
DIST iwgtk-0.8.tar.gz 119824 BLAKE2B ffd44e292319ae21a812249616b9de28e47e9a558cb37013fda8a4032cc9002352535639c3dd8f34e21ff31c2619640c0592ff05a53e7ea6abb7b619d97f8a6d SHA512 efad4252ed031836a384a642bdc90bfc1396903eeb494e6f76238fcc5314ba7d58dd1aef9d4457aab2b940434b781e1a6bffd32ed6170dfb9abb919069f461f7
diff --git a/net-wireless/iwgtk/iwgtk-0.7.ebuild b/net-wireless/iwgtk/iwgtk-0.7.ebuild
deleted file mode 100644
index b32d3e5ab1a6..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
- dev-libs/atk:0
- dev-libs/glib:2
- gui-libs/gtk:4
- media-gfx/qrencode:=
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- >=net-wireless/iwd-1.28
-"
-
-src_prepare() {
- default
- sed -i \
- -e 's/^CC=/CC?=/' \
- -e 's/^CFLAGS=/CFLAGS:=$(CFLAGS) /' \
- -e 's/^LDLIBS=/LDLIBS:=$(LDFLAGS) /' \
- -e 's/-O3$/${CFLAGS}/' \
- Makefile || die
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="/usr" install
- gunzip "${ED}/usr/share/man/man1/iwgtk.1.gz" || die
-}
diff --git a/net-wireless/iwgtk/iwgtk-0.8.ebuild b/net-wireless/iwgtk/iwgtk-0.8.ebuild
deleted file mode 100644
index 4d2eb68b95d0..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.8.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit meson xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-BDEPEND="app-text/scdoc"
-
-DEPEND="
- dev-libs/atk:0
- dev-libs/glib:2
- gui-libs/gtk:4
- media-gfx/qrencode:=
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- >=net-wireless/iwd-1.28
-"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2023-01-04 15:23 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2023-01-04 15:23 UTC (permalink / raw
To: gentoo-commits
commit: 63f01f1751d1d4b4b89c4bbe71a37e345709517d
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 4 14:38:09 2023 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Jan 4 15:23:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63f01f17
net-wireless/iwgtk: add 0.9
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 +
net-wireless/iwgtk/iwgtk-0.9.ebuild | 31 +++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 7dc6fb504453..91b81acaf176 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1 +1,2 @@
DIST iwgtk-0.8.tar.gz 119824 BLAKE2B ffd44e292319ae21a812249616b9de28e47e9a558cb37013fda8a4032cc9002352535639c3dd8f34e21ff31c2619640c0592ff05a53e7ea6abb7b619d97f8a6d SHA512 efad4252ed031836a384a642bdc90bfc1396903eeb494e6f76238fcc5314ba7d58dd1aef9d4457aab2b940434b781e1a6bffd32ed6170dfb9abb919069f461f7
+DIST iwgtk-0.9.tar.gz 120055 BLAKE2B 694592b354f529389c0d71f4b81ea7b65a305ac769157e48499414adc91e099ec66880956d80a039b7f68f0d44e0f40f4ac02db350020701471616794a5de399 SHA512 d755d72744051a39dda0b78dc0fb2cc57cbf44cd095ac595d4e83f22a70471a0d69a406636d0a4d5922b533d1c849578779fd7f4c41a0b0e1549dd4e9cc45c4d
diff --git a/net-wireless/iwgtk/iwgtk-0.9.ebuild b/net-wireless/iwgtk/iwgtk-0.9.ebuild
new file mode 100644
index 000000000000..866764df6280
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.9.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit meson xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk"
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+BDEPEND="app-text/scdoc"
+
+DEPEND="
+ app-accessibility/at-spi2-core:2
+ dev-libs/glib:2
+ gui-libs/gtk:4
+ media-gfx/qrencode:=
+ x11-libs/cairo:0
+ x11-libs/gdk-pixbuf:2
+ x11-libs/pango:0
+"
+
+RDEPEND="
+ ${DEPEND}
+ >=net-wireless/iwd-1.29
+"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2023-01-10 16:11 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2023-01-10 16:11 UTC (permalink / raw
To: gentoo-commits
commit: aab804b0cd3e879eaf93622beb4e14abee9b0d6d
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 10 16:08:54 2023 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 16:08:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab804b0
net-wireless/iwgtk: add github upstream metadata
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/net-wireless/iwgtk/metadata.xml b/net-wireless/iwgtk/metadata.xml
index aa20bff17b1d..504c701a6749 100644
--- a/net-wireless/iwgtk/metadata.xml
+++ b/net-wireless/iwgtk/metadata.xml
@@ -5,4 +5,7 @@
<email>bkohler@gentoo.org</email>
<name>Ben Kohler</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">J-Lentz/iwgtk</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2023-03-30 18:05 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2023-03-30 18:05 UTC (permalink / raw
To: gentoo-commits
commit: 3f230099be0c6b936dd1bae7e1af8c8459c06aa4
Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 17:03:00 2023 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 18:05:15 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f230099
net-wireless/iwgtk: drop 0.8-r1
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/Manifest | 1 -
net-wireless/iwgtk/iwgtk-0.8-r1.ebuild | 31 -------------------------------
2 files changed, 32 deletions(-)
diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index 91b81acaf176..d54237a239a8 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1,2 +1 @@
-DIST iwgtk-0.8.tar.gz 119824 BLAKE2B ffd44e292319ae21a812249616b9de28e47e9a558cb37013fda8a4032cc9002352535639c3dd8f34e21ff31c2619640c0592ff05a53e7ea6abb7b619d97f8a6d SHA512 efad4252ed031836a384a642bdc90bfc1396903eeb494e6f76238fcc5314ba7d58dd1aef9d4457aab2b940434b781e1a6bffd32ed6170dfb9abb919069f461f7
DIST iwgtk-0.9.tar.gz 120055 BLAKE2B 694592b354f529389c0d71f4b81ea7b65a305ac769157e48499414adc91e099ec66880956d80a039b7f68f0d44e0f40f4ac02db350020701471616794a5de399 SHA512 d755d72744051a39dda0b78dc0fb2cc57cbf44cd095ac595d4e83f22a70471a0d69a406636d0a4d5922b533d1c849578779fd7f4c41a0b0e1549dd4e9cc45c4d
diff --git a/net-wireless/iwgtk/iwgtk-0.8-r1.ebuild b/net-wireless/iwgtk/iwgtk-0.8-r1.ebuild
deleted file mode 100644
index 93351d2e4ca6..000000000000
--- a/net-wireless/iwgtk/iwgtk-0.8-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit meson xdg
-
-DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
-HOMEPAGE="https://github.com/J-Lentz/iwgtk"
-SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-BDEPEND="app-text/scdoc"
-
-DEPEND="
- app-accessibility/at-spi2-core:2
- dev-libs/glib:2
- gui-libs/gtk:4
- media-gfx/qrencode:=
- x11-libs/cairo:0
- x11-libs/gdk-pixbuf:2
- x11-libs/pango:0
-"
-
-RDEPEND="
- ${DEPEND}
- >=net-wireless/iwd-1.28
-"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/
@ 2024-10-02 18:12 Ben Kohler
0 siblings, 0 replies; 16+ messages in thread
From: Ben Kohler @ 2024-10-02 18:12 UTC (permalink / raw
To: gentoo-commits
commit: b2caad2a8e7cd66fd3d3cd887a9aa3764f7de28d
Author: PPN-SD <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Sep 30 19:27:03 2024 +0000
Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Oct 2 18:12:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2caad2a
net-wireless/iwgtk: Add dependency x11-base/xorg-proto to build
Signed-off-by: PPN-SD <nicolas.parlant <AT> parhuet.fr>
Closes: https://github.com/gentoo/gentoo/pull/38824
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
net-wireless/iwgtk/iwgtk-0.9.ebuild | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/net-wireless/iwgtk/iwgtk-0.9.ebuild b/net-wireless/iwgtk/iwgtk-0.9.ebuild
index 866764df6280..37efcf48022e 100644
--- a/net-wireless/iwgtk/iwgtk-0.9.ebuild
+++ b/net-wireless/iwgtk/iwgtk-0.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2023 Gentoo Authors
+# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,11 +11,8 @@ SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
-IUSE=""
-BDEPEND="app-text/scdoc"
-
-DEPEND="
+COMMON_DEPEND="
app-accessibility/at-spi2-core:2
dev-libs/glib:2
gui-libs/gtk:4
@@ -25,7 +22,14 @@ DEPEND="
x11-libs/pango:0
"
+BDEPEND="app-text/scdoc"
+
+DEPEND="
+ ${COMMON_DEPEND}
+ x11-base/xorg-proto
+"
+
RDEPEND="
- ${DEPEND}
+ ${COMMON_DEPEND}
>=net-wireless/iwd-1.29
"
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-10-02 18:13 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-08 19:39 [gentoo-commits] repo/gentoo:master commit in: net-wireless/iwgtk/ Ben Kohler
-- strict thread matches above, loose matches on Subject: below --
2021-01-08 21:14 Ben Kohler
2022-06-07 19:17 Ben Kohler
2022-06-14 13:20 Ben Kohler
2022-06-14 13:20 Ben Kohler
2022-07-01 11:45 Ben Kohler
2022-07-01 13:08 Ben Kohler
2022-07-01 13:24 Ben Kohler
2022-07-25 14:26 Ben Kohler
2022-08-11 13:00 Ben Kohler
2022-10-27 12:34 Ben Kohler
2022-10-27 12:34 Ben Kohler
2023-01-04 15:23 Ben Kohler
2023-01-10 16:11 Ben Kohler
2023-03-30 18:05 Ben Kohler
2024-10-02 18:12 Ben Kohler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox