public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: net-wireless/btscreenlocker/
@ 2024-07-15 19:27 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2024-07-15 19:27 UTC (permalink / raw
  To: gentoo-commits

commit:     19a368a741456979efabe0267e06f5bd2402e316
Author:     Brayan M. Salazar <this.brayan <AT> proton <DOT> me>
AuthorDate: Mon Jul 15 14:40:25 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 14:40:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19a368a7

net-wireless/btscreenlocker: new package, add 1.6.1

Signed-off-by: Brayan M. Salazar <this.brayan <AT> proton.me>

 net-wireless/btscreenlocker/Manifest               |  1 +
 .../btscreenlocker/btscreenlocker-1.6.1.ebuild     | 40 ++++++++++++++++++++++
 net-wireless/btscreenlocker/metadata.xml           | 12 +++++++
 3 files changed, 53 insertions(+)

diff --git a/net-wireless/btscreenlocker/Manifest b/net-wireless/btscreenlocker/Manifest
new file mode 100644
index 000000000..77906dad8
--- /dev/null
+++ b/net-wireless/btscreenlocker/Manifest
@@ -0,0 +1 @@
+DIST BtScreenLocker-1.6.1.tar.gz 60968 BLAKE2B cfacc6314a2a2c52971067f5a4fdc14ff14893be3f753a13b9d016b3bac2634d6f32c84528f91258fa5620f0397c154fbe106463e9713a1695ab5a694ce63572 SHA512 a0f2ea836800688c96fb6ae5d2cd691f2435ea193805bf27e24a017a05dc0ec80812785812131834eeddf9d89d39fc46f171affb9c3ee483b0a6d347c47343d2

diff --git a/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild b/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild
new file mode 100644
index 000000000..04b6751a9
--- /dev/null
+++ b/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2024 Brayan M. Salazar <this.brayan@proton.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Daemon to lock your screen when Bluetooth trusted devices go away."
+HOMEPAGE="https://github.com/brookiestein/BtScreenLocker"
+SRC_URI="https://github.com/brookiestein/BtScreenLocker/archive/refs/tags/${PV}.tar.gz -> BtScreenLocker-${PV}.tar.gz"
+S="${WORKDIR}/BtScreenLocker-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+dev-qt/qtbluetooth:5
+dev-qt/qtdbus:5
+dev-qt/qtwidgets:5
+dev-qt/linguist-tools:5
+>=net-wireless/bluez-5.76
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+sys-apps/coreutils
+>=dev-build/cmake-3.28
+"
+
+src_configure() {
+	cmake_src_configure || die "Couldn't configure ${PN}."
+}
+
+src_compile() {
+	cmake_build || die "Couldn't compile ${PN}."
+}
+
+src_install() {
+	cmake_src_install || die "Couldn't install ${PN}."
+}

diff --git a/net-wireless/btscreenlocker/metadata.xml b/net-wireless/btscreenlocker/metadata.xml
new file mode 100644
index 000000000..46b74feea
--- /dev/null
+++ b/net-wireless/btscreenlocker/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>this.brayan@proton.me</email>
+    <name>Brayan M. Salazar</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">brookiestein/BtScreenLocker</remote-id>
+    <bugs-to>https://github.com/brookiestein/BtScreenLocker/issues</bugs-to>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:master commit in: net-wireless/btscreenlocker/
@ 2024-07-15 19:27 Andrew Ammerlaan
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2024-07-15 19:27 UTC (permalink / raw
  To: gentoo-commits

commit:     9af8c0ed33a761046fa66379429bd38c80590387
Author:     Brayan M. Salazar <this.brayan <AT> proton <DOT> me>
AuthorDate: Mon Jul 15 18:12:00 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 18:14:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9af8c0ed

net-wireless/btscreenlocker:

* Removed unnecesary function implementations.
* Removed unnecesary dependency on a system package.
* Added required dependency on virtual/pkgconfig.

Signed-off-by: Brayan M. Salazar <this.brayan <AT> proton.me>

 net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild b/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild
index 04b6751a9..e7c520c00 100644
--- a/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild
+++ b/net-wireless/btscreenlocker/btscreenlocker-1.6.1.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=8
 
-inherit cmake
-
 DESCRIPTION="Daemon to lock your screen when Bluetooth trusted devices go away."
 HOMEPAGE="https://github.com/brookiestein/BtScreenLocker"
 SRC_URI="https://github.com/brookiestein/BtScreenLocker/archive/refs/tags/${PV}.tar.gz -> BtScreenLocker-${PV}.tar.gz"
@@ -23,18 +21,6 @@ dev-qt/linguist-tools:5
 "
 RDEPEND="${DEPEND}"
 BDEPEND="
-sys-apps/coreutils
+virtual/pkgconfig
 >=dev-build/cmake-3.28
 "
-
-src_configure() {
-	cmake_src_configure || die "Couldn't configure ${PN}."
-}
-
-src_compile() {
-	cmake_build || die "Couldn't compile ${PN}."
-}
-
-src_install() {
-	cmake_src_install || die "Couldn't install ${PN}."
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: net-wireless/btscreenlocker/
@ 2024-07-25 10:10 David Roman
  0 siblings, 0 replies; 5+ messages in thread
From: David Roman @ 2024-07-25 10:10 UTC (permalink / raw
  To: gentoo-commits

commit:     595c11b280433f922f217c8e3240516088e06248
Author:     Brayan M. Salazar <this.brayan <AT> proton <DOT> me>
AuthorDate: Tue Jul 23 19:33:24 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Jul 23 19:33:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=595c11b2

net-wireless/btscreenlocker: add 1.6.5

Signed-off-by: Brayan M. Salazar <this.brayan <AT> proton.me>

 net-wireless/btscreenlocker/Manifest               |  1 +
 .../btscreenlocker/btscreenlocker-1.6.5.ebuild     | 28 ++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/net-wireless/btscreenlocker/Manifest b/net-wireless/btscreenlocker/Manifest
index 1f1a9fbc7..89004fe7b 100644
--- a/net-wireless/btscreenlocker/Manifest
+++ b/net-wireless/btscreenlocker/Manifest
@@ -1,2 +1,3 @@
 DIST BtScreenLocker-1.6.2.tar.gz 61168 BLAKE2B 864b622b4b257e4032d777c398a45e0ac2f0378774913deaedcdda9231feda4762ad40706508f8a3e5d21f8feab8a347c8fea79e16e9d832f5d45c1045bfdfdc SHA512 a8073f6622f54bae4aa6ab21cc91bd1405bd5037d8d3d6d06cb1f04badc47270a6aea241da93177652c41154a5e25709251a20bd4bda5f3ac411804e23ee4684
 DIST BtScreenLocker-1.6.3.tar.gz 61599 BLAKE2B cc04095e769fe4fabab83b695652afc044a87c63b4205bd6300ae1e3504a083479da20f92d71edff0d1aaa371ecf1c33b6692e6df4742c9bee48308a1d049863 SHA512 1f0359f1cbebab89acc9e539119513b5cde77b1ddc99ad4bcb2c5ea7e8c82c72afed90297f925ed6b113e0f910c2966dd37b92190a76ce81b215a5117fadd96c
+DIST BtScreenLocker-1.6.5.tar.gz 61876 BLAKE2B e71b13f5c5a4407e76330bac64f27f84ed6338827d3f05dd9b53a4ddaad701688c8d87d02c0507b06f5d718532659de3ac50ead31fd033703052214141ff9a93 SHA512 9d5de0e9e1f7da6ba4883a0f0defe9dc3c57daacea99b0cbda0202907d1f3dc934022ebbfd332d2c4694eb35c170a7029c30d83b2dec5de8ce218fac7064ee7f

diff --git a/net-wireless/btscreenlocker/btscreenlocker-1.6.5.ebuild b/net-wireless/btscreenlocker/btscreenlocker-1.6.5.ebuild
new file mode 100644
index 000000000..328c9843a
--- /dev/null
+++ b/net-wireless/btscreenlocker/btscreenlocker-1.6.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2024 Brayan M. Salazar <this.brayan@proton.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Daemon to lock your screen when Bluetooth trusted devices go away."
+HOMEPAGE="https://github.com/brookiestein/BtScreenLocker"
+SRC_URI="https://github.com/brookiestein/BtScreenLocker/archive/refs/tags/${PV}.tar.gz -> BtScreenLocker-${PV}.tar.gz"
+S="${WORKDIR}/BtScreenLocker-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+dev-qt/linguist-tools:5
+dev-qt/qtbluetooth:5
+dev-qt/qtdbus:5
+dev-qt/qtwidgets:5
+>=net-wireless/bluez-5.76
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+>=dev-build/cmake-3.28
+virtual/pkgconfig
+"


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

* [gentoo-commits] repo/proj/guru:master commit in: net-wireless/btscreenlocker/
@ 2024-07-30 16:54 David Roman
  0 siblings, 0 replies; 5+ messages in thread
From: David Roman @ 2024-07-30 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     38715dc59eadb43d52a54f0d182187ec52a1eb6c
Author:     Brayan M. Salazar <this.brayan <AT> proton <DOT> me>
AuthorDate: Mon Jul 29 17:56:46 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jul 29 17:56:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38715dc5

net-wireless/btscreenlocker: add 1.7.0

Signed-off-by: Brayan M. Salazar <this.brayan <AT> proton.me>

 net-wireless/btscreenlocker/Manifest               |  1 +
 .../btscreenlocker/btscreenlocker-1.7.0.ebuild     | 28 ++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/net-wireless/btscreenlocker/Manifest b/net-wireless/btscreenlocker/Manifest
index 89004fe7b..0d8f8c890 100644
--- a/net-wireless/btscreenlocker/Manifest
+++ b/net-wireless/btscreenlocker/Manifest
@@ -1,3 +1,4 @@
 DIST BtScreenLocker-1.6.2.tar.gz 61168 BLAKE2B 864b622b4b257e4032d777c398a45e0ac2f0378774913deaedcdda9231feda4762ad40706508f8a3e5d21f8feab8a347c8fea79e16e9d832f5d45c1045bfdfdc SHA512 a8073f6622f54bae4aa6ab21cc91bd1405bd5037d8d3d6d06cb1f04badc47270a6aea241da93177652c41154a5e25709251a20bd4bda5f3ac411804e23ee4684
 DIST BtScreenLocker-1.6.3.tar.gz 61599 BLAKE2B cc04095e769fe4fabab83b695652afc044a87c63b4205bd6300ae1e3504a083479da20f92d71edff0d1aaa371ecf1c33b6692e6df4742c9bee48308a1d049863 SHA512 1f0359f1cbebab89acc9e539119513b5cde77b1ddc99ad4bcb2c5ea7e8c82c72afed90297f925ed6b113e0f910c2966dd37b92190a76ce81b215a5117fadd96c
 DIST BtScreenLocker-1.6.5.tar.gz 61876 BLAKE2B e71b13f5c5a4407e76330bac64f27f84ed6338827d3f05dd9b53a4ddaad701688c8d87d02c0507b06f5d718532659de3ac50ead31fd033703052214141ff9a93 SHA512 9d5de0e9e1f7da6ba4883a0f0defe9dc3c57daacea99b0cbda0202907d1f3dc934022ebbfd332d2c4694eb35c170a7029c30d83b2dec5de8ce218fac7064ee7f
+DIST BtScreenLocker-1.7.0.tar.gz 63124 BLAKE2B 2491696501e9ed9c0a424a6835082b30efcb60d125a0178e2b517207c339d16a972e7c6bea414839c0d6a4a185af483dafafe0e6037646c21e49ecde79b855c6 SHA512 e363e155e86c9105ca0ac692f2f50f8f07a47b9b27160441b4a4292130cc8c2e7dc1f706187dad804a3a2dbe1e241d62891328e8a12290c6f16bb3206187445e

diff --git a/net-wireless/btscreenlocker/btscreenlocker-1.7.0.ebuild b/net-wireless/btscreenlocker/btscreenlocker-1.7.0.ebuild
new file mode 100644
index 000000000..328c9843a
--- /dev/null
+++ b/net-wireless/btscreenlocker/btscreenlocker-1.7.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2024 Brayan M. Salazar <this.brayan@proton.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Daemon to lock your screen when Bluetooth trusted devices go away."
+HOMEPAGE="https://github.com/brookiestein/BtScreenLocker"
+SRC_URI="https://github.com/brookiestein/BtScreenLocker/archive/refs/tags/${PV}.tar.gz -> BtScreenLocker-${PV}.tar.gz"
+S="${WORKDIR}/BtScreenLocker-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+dev-qt/linguist-tools:5
+dev-qt/qtbluetooth:5
+dev-qt/qtdbus:5
+dev-qt/qtwidgets:5
+>=net-wireless/bluez-5.76
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+>=dev-build/cmake-3.28
+virtual/pkgconfig
+"


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

* [gentoo-commits] repo/proj/guru:master commit in: net-wireless/btscreenlocker/
@ 2024-08-07 23:36 Lucio Sauer
  0 siblings, 0 replies; 5+ messages in thread
From: Lucio Sauer @ 2024-08-07 23:36 UTC (permalink / raw
  To: gentoo-commits

commit:     2a420e767c8d01c7ac3872a4fd0aef1d825a83fc
Author:     Brayan M. Salazar <this.brayan <AT> proton <DOT> me>
AuthorDate: Wed Aug  7 12:03:41 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Wed Aug  7 12:03:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a420e76

net-wireless/btscreenlocker: Fixed missing RDEPEND

This revision solves bug #937508

Signed-off-by: Brayan M. Salazar <this.brayan <AT> proton.me>

 .../{btscreenlocker-1.7.0.ebuild => btscreenlocker-1.7.0-r1.ebuild}   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-wireless/btscreenlocker/btscreenlocker-1.7.0.ebuild b/net-wireless/btscreenlocker/btscreenlocker-1.7.0-r1.ebuild
similarity index 92%
rename from net-wireless/btscreenlocker/btscreenlocker-1.7.0.ebuild
rename to net-wireless/btscreenlocker/btscreenlocker-1.7.0-r1.ebuild
index 328c9843a..5dbf7c19c 100644
--- a/net-wireless/btscreenlocker/btscreenlocker-1.7.0.ebuild
+++ b/net-wireless/btscreenlocker/btscreenlocker-1.7.0-r1.ebuild
@@ -21,7 +21,9 @@ dev-qt/qtdbus:5
 dev-qt/qtwidgets:5
 >=net-wireless/bluez-5.76
 "
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+dev-qt/qtcore:5
+dev-qt/qtgui:5"
 BDEPEND="
 >=dev-build/cmake-3.28
 virtual/pkgconfig


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

end of thread, other threads:[~2024-08-07 23:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-15 19:27 [gentoo-commits] repo/proj/guru:master commit in: net-wireless/btscreenlocker/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2024-08-07 23:36 Lucio Sauer
2024-07-30 16:54 David Roman
2024-07-25 10:10 David Roman
2024-07-15 19:27 Andrew Ammerlaan

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