* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2019-12-05 23:32 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2019-12-05 23:32 UTC (permalink / raw
To: gentoo-commits
commit: 89bfdd680f3ae72c40f7b654c21409f90c4f8224
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 5 23:31:30 2019 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Dec 5 23:32:06 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bfdd68
x11-misc/projecteur: New package
Newer presenter hardware by Logitech contains a windows software, which
provides additional software features like a virtual laser pointer.
This open source software tries to bring those features to linux.
Closes: https://github.com/gentoo/gentoo/pull/12000
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 +
x11-misc/projecteur/metadata.xml | 18 +++++++++++++
x11-misc/projecteur/projecteur-0.6.ebuild | 43 +++++++++++++++++++++++++++++++
3 files changed, 62 insertions(+)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
new file mode 100644
index 00000000000..b9decade370
--- /dev/null
+++ b/x11-misc/projecteur/Manifest
@@ -0,0 +1 @@
+DIST projecteur-0.6.tar.gz 286242 BLAKE2B 80385b946fbd8ba8f6f5db4c495f382252a5c644d0626c0e6f0b95c9a1785a3fdba8347115c456517da1c5627238883db7b253a98f3aa4912dc75adc54af1f82 SHA512 d97cd9facb0db0199ae0c569a1e4c881f30901a31966f23a94d093cab5582af1b8199d7b7d2d074d852dc2c22f4ce249b9690e99e8b4d79444d17d22bcabcbc0
diff --git a/x11-misc/projecteur/metadata.xml b/x11-misc/projecteur/metadata.xml
new file mode 100644
index 00000000000..429e23db708
--- /dev/null
+++ b/x11-misc/projecteur/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>conikost@gentoo.org</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <longdescription>
+ A Linux application for the Logitech Spotlight.
+ Features: A configurable desktop spotlight,
+ configure color, opacity, cursor and the center dot,
+ multiple screen support.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/jahnf/Projecteur/issues</bugs-to>
+ <remote-id type="github">jahnf/Projecteur</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/x11-misc/projecteur/projecteur-0.6.ebuild b/x11-misc/projecteur/projecteur-0.6.ebuild
new file mode 100644
index 00000000000..2891b3b14b8
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/p/P}"
+
+inherit cmake-utils udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ dev-qt/qtgui:5[xcb]
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-01-19 23:53 Andreas Sturmlechner
0 siblings, 0 replies; 24+ messages in thread
From: Andreas Sturmlechner @ 2020-01-19 23:53 UTC (permalink / raw
To: gentoo-commits
commit: b564568c9a436bd27e87a40a3981b75fb501bb3f
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 15 20:52:47 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 23:51:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b564568c
x11-misc/projecteur: Prepare for dev-qt/qtgui[xcb -> X], use cmake.eclass
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.6-r1.ebuild | 45 ++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/x11-misc/projecteur/projecteur-0.6-r1.ebuild b/x11-misc/projecteur/projecteur-0.6-r1.ebuild
new file mode 100644
index 00000000000..d727e882f0f
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.6-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/p/P}"
+
+inherit cmake udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ || (
+ dev-qt/qtgui:5[X(-)]
+ dev-qt/qtgui:5[xcb(-)]
+ )
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-01-19 23:53 Andreas Sturmlechner
0 siblings, 0 replies; 24+ messages in thread
From: Andreas Sturmlechner @ 2020-01-19 23:53 UTC (permalink / raw
To: gentoo-commits
commit: bd2195b37472bcf50e89d0419eec51c8f55a4474
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 15 21:03:33 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 23:51:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd2195b3
x11-misc/projecteur: Drop 0.6 (r0)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.6.ebuild | 43 -------------------------------
1 file changed, 43 deletions(-)
diff --git a/x11-misc/projecteur/projecteur-0.6.ebuild b/x11-misc/projecteur/projecteur-0.6.ebuild
deleted file mode 100644
index 2891b3b14b8..00000000000
--- a/x11-misc/projecteur/projecteur-0.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/p/P}"
-
-inherit cmake-utils udev xdg-utils
-
-DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
-HOMEPAGE="https://github.com/jahnf/Projecteur"
-SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- dev-qt/qtgui:5[xcb]
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- virtual/udev
- x11-libs/libX11
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-pkg_postinst() {
- udev_reload
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- udev_reload
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-03-12 22:48 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-03-12 22:48 UTC (permalink / raw
To: gentoo-commits
commit: 39e10ab161c8841e1f28cc9288b1fbac4acb6422
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 12 21:51:03 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Mar 12 22:46:56 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39e10ab1
x11-misc/projecteur: drop old version
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 -
x11-misc/projecteur/projecteur-0.6-r1.ebuild | 45 ----------------------------
2 files changed, 46 deletions(-)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index c74a0e350df..9c956caf71a 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1,2 +1 @@
-DIST projecteur-0.6.tar.gz 286242 BLAKE2B 80385b946fbd8ba8f6f5db4c495f382252a5c644d0626c0e6f0b95c9a1785a3fdba8347115c456517da1c5627238883db7b253a98f3aa4912dc75adc54af1f82 SHA512 d97cd9facb0db0199ae0c569a1e4c881f30901a31966f23a94d093cab5582af1b8199d7b7d2d074d852dc2c22f4ce249b9690e99e8b4d79444d17d22bcabcbc0
DIST projecteur-0.7.tar.gz 296252 BLAKE2B fb20de48ee5f89e66701fc8d6cad036aed48ed862994b82431a8a14f3ec95dccb863c4c35a5de01c932150b3b311511ef01af093ddbcd23a2413ebb882152bab SHA512 9af54e47883cd3d9368edef173b9c0eb522f947f7d72f759388e2ecdf275524bdf56d3562506a383bba32c0fd2ec5c76c232a7b523e13b79caeb4d6d76bbbac0
diff --git a/x11-misc/projecteur/projecteur-0.6-r1.ebuild b/x11-misc/projecteur/projecteur-0.6-r1.ebuild
deleted file mode 100644
index d727e882f0f..00000000000
--- a/x11-misc/projecteur/projecteur-0.6-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/p/P}"
-
-inherit cmake udev xdg-utils
-
-DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
-HOMEPAGE="https://github.com/jahnf/Projecteur"
-SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- || (
- dev-qt/qtgui:5[X(-)]
- dev-qt/qtgui:5[xcb(-)]
- )
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- virtual/udev
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-pkg_postinst() {
- udev_reload
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- udev_reload
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-03-12 22:48 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-03-12 22:48 UTC (permalink / raw
To: gentoo-commits
commit: 3460193e2585de1bfac8e8322790205b0c415148
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 12 21:50:44 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Mar 12 22:46:56 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3460193e
x11-misc/projecteur: bump to version 0.7
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 +
x11-misc/projecteur/projecteur-0.7.ebuild | 45 +++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index b9decade370..c74a0e350df 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1 +1,2 @@
DIST projecteur-0.6.tar.gz 286242 BLAKE2B 80385b946fbd8ba8f6f5db4c495f382252a5c644d0626c0e6f0b95c9a1785a3fdba8347115c456517da1c5627238883db7b253a98f3aa4912dc75adc54af1f82 SHA512 d97cd9facb0db0199ae0c569a1e4c881f30901a31966f23a94d093cab5582af1b8199d7b7d2d074d852dc2c22f4ce249b9690e99e8b4d79444d17d22bcabcbc0
+DIST projecteur-0.7.tar.gz 296252 BLAKE2B fb20de48ee5f89e66701fc8d6cad036aed48ed862994b82431a8a14f3ec95dccb863c4c35a5de01c932150b3b311511ef01af093ddbcd23a2413ebb882152bab SHA512 9af54e47883cd3d9368edef173b9c0eb522f947f7d72f759388e2ecdf275524bdf56d3562506a383bba32c0fd2ec5c76c232a7b523e13b79caeb4d6d76bbbac0
diff --git a/x11-misc/projecteur/projecteur-0.7.ebuild b/x11-misc/projecteur/projecteur-0.7.ebuild
new file mode 100644
index 00000000000..d727e882f0f
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.7.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/p/P}"
+
+inherit cmake udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ || (
+ dev-qt/qtgui:5[X(-)]
+ dev-qt/qtgui:5[xcb(-)]
+ )
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-05-10 16:22 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-05-10 16:22 UTC (permalink / raw
To: gentoo-commits
commit: 24a83e92b3bdd9aa997a7797011026c7ac466707
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 16:19:10 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun May 10 16:22:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a83e92
x11-misc/projecteur: add git to deps
Due a bug, projecteur can't compile without having installed Git.
This is a bug and has been reported to upstream.
Meanwhile, adding Git as a temp fix to BDEPEND.
Bug: https://bugs.gentoo.org/719398
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.7-r1.ebuild | 50 ++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/x11-misc/projecteur/projecteur-0.7-r1.ebuild b/x11-misc/projecteur/projecteur-0.7-r1.ebuild
new file mode 100644
index 00000000000..197f9f6eb4e
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.7-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/p/P}"
+
+inherit cmake udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ || (
+ dev-qt/qtgui:5[X(-)]
+ dev-qt/qtgui:5[xcb(-)]
+ )
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+DEPEND="${RDEPEND}"
+
+# Compilation will fail, if Git is not installed.
+# It's a bug, reported to upstream: https://github.com/jahnf/Projecteur/issues/73
+BDEPEND="
+ dev-vcs/git
+ virtual/pkgconfig
+"
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-05-10 16:23 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-05-10 16:23 UTC (permalink / raw
To: gentoo-commits
commit: 58464cb29473eb68ed662a603ea6359e5dbc0b53
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 16:23:09 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun May 10 16:23:09 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58464cb2
x11-misc/projecteur: drop old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.7.ebuild | 45 -------------------------------
1 file changed, 45 deletions(-)
diff --git a/x11-misc/projecteur/projecteur-0.7.ebuild b/x11-misc/projecteur/projecteur-0.7.ebuild
deleted file mode 100644
index d727e882f0f..00000000000
--- a/x11-misc/projecteur/projecteur-0.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/p/P}"
-
-inherit cmake udev xdg-utils
-
-DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
-HOMEPAGE="https://github.com/jahnf/Projecteur"
-SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- || (
- dev-qt/qtgui:5[X(-)]
- dev-qt/qtgui:5[xcb(-)]
- )
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- virtual/udev
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-pkg_postinst() {
- udev_reload
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- udev_reload
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-05-10 19:37 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-05-10 19:37 UTC (permalink / raw
To: gentoo-commits
commit: d3be9ab749717055f9c0a9205223994da2e625ea
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 19:36:57 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun May 10 19:36:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3be9ab7
x11-misc/projecteur: drop old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.7-r1.ebuild | 50 ----------------------------
1 file changed, 50 deletions(-)
diff --git a/x11-misc/projecteur/projecteur-0.7-r1.ebuild b/x11-misc/projecteur/projecteur-0.7-r1.ebuild
deleted file mode 100644
index 197f9f6eb4e..00000000000
--- a/x11-misc/projecteur/projecteur-0.7-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/p/P}"
-
-inherit cmake udev xdg-utils
-
-DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
-HOMEPAGE="https://github.com/jahnf/Projecteur"
-SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- || (
- dev-qt/qtgui:5[X(-)]
- dev-qt/qtgui:5[xcb(-)]
- )
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- virtual/udev
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-
-# Compilation will fail, if Git is not installed.
-# It's a bug, reported to upstream: https://github.com/jahnf/Projecteur/issues/73
-BDEPEND="
- dev-vcs/git
- virtual/pkgconfig
-"
-
-pkg_postinst() {
- udev_reload
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- udev_reload
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-06-20 21:52 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-06-20 21:52 UTC (permalink / raw
To: gentoo-commits
commit: c9cb28bf0a574901492842d6554ab1d03b1cd579
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 20 21:52:00 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jun 20 21:52:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9cb28bf
x11-misc/projecteur: bump to version 0.8
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 +
x11-misc/projecteur/projecteur-0.8.ebuild | 45 +++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index 9c956caf71a..dfb4fe2202e 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1 +1,2 @@
DIST projecteur-0.7.tar.gz 296252 BLAKE2B fb20de48ee5f89e66701fc8d6cad036aed48ed862994b82431a8a14f3ec95dccb863c4c35a5de01c932150b3b311511ef01af093ddbcd23a2413ebb882152bab SHA512 9af54e47883cd3d9368edef173b9c0eb522f947f7d72f759388e2ecdf275524bdf56d3562506a383bba32c0fd2ec5c76c232a7b523e13b79caeb4d6d76bbbac0
+DIST projecteur-0.8.tar.gz 379203 BLAKE2B b2171bd6120c9f6245c129519e33adbb4661ea4cd0df5f30c6c90fbefb8b7c5024da5c6d920d4e162b818bc0fc6417731dcf0c540103ed6f12976123c45c69eb SHA512 e892e87f442cfa7f0102efa01b43e63ed7ea9c30c875496dd3d683ee769de66f0a4ccfae149f060924e5613dfd7758a0b19d565232fb6db75b9228cee4a956de
diff --git a/x11-misc/projecteur/projecteur-0.8.ebuild b/x11-misc/projecteur/projecteur-0.8.ebuild
new file mode 100644
index 00000000000..d727e882f0f
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.8.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/p/P}"
+
+inherit cmake udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ || (
+ dev-qt/qtgui:5[X(-)]
+ dev-qt/qtgui:5[xcb(-)]
+ )
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-06-29 13:40 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2020-06-29 13:40 UTC (permalink / raw
To: gentoo-commits
commit: 3bcaee7481a1e7d3e363b83a1e585ddf6e4d1185
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 13:39:29 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 13:39:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bcaee74
x11-misc/projecteur: x86 stable wrt bug #724128
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.7-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.7-r2.ebuild b/x11-misc/projecteur/projecteur-0.7-r2.ebuild
index 63ce3fd4425..26072768e67 100644
--- a/x11-misc/projecteur/projecteur-0.7-r2.ebuild
+++ b/x11-misc/projecteur/projecteur-0.7-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
S="${WORKDIR}/${MY_PN}-${PV}"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-08-11 18:50 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2020-08-11 18:50 UTC (permalink / raw
To: gentoo-commits
commit: c9541d647bc392b63b7776b389f287715de2cddf
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 11 18:48:06 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Aug 11 18:49:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9541d64
x11-misc/projecteur: remove -Werror
Closes: https://bugs.gentoo.org/736615
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.8.ebuild | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/x11-misc/projecteur/projecteur-0.8.ebuild b/x11-misc/projecteur/projecteur-0.8.ebuild
index d727e882f0f..f357f5a8b7c 100644
--- a/x11-misc/projecteur/projecteur-0.8.ebuild
+++ b/x11-misc/projecteur/projecteur-0.8.ebuild
@@ -34,6 +34,15 @@ DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
+src_prepare() {
+ default
+
+ cmake_src_prepare
+
+ # Don't treat all warnings as errors
+ sed -e '/add_compile_options/d' -i CMakeLists.txt || die
+}
+
pkg_postinst() {
udev_reload
xdg_icon_cache_update
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-08-17 7:01 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2020-08-17 7:01 UTC (permalink / raw
To: gentoo-commits
commit: 15daff9c10471ec944f1785343cd56bc8cf9f267
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 17 06:58:41 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Aug 17 06:58:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15daff9c
x11-misc/projecteur: amd64 stable wrt bug #736535
Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.8.ebuild b/x11-misc/projecteur/projecteur-0.8.ebuild
index f357f5a8b7c..df40cfce7c1 100644
--- a/x11-misc/projecteur/projecteur-0.8.ebuild
+++ b/x11-misc/projecteur/projecteur-0.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
S="${WORKDIR}/${MY_PN}-${PV}"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2020-08-18 11:22 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2020-08-18 11:22 UTC (permalink / raw
To: gentoo-commits
commit: 8b9f674bf30ac772ccf5e2bf6a834a4bec58c9b5
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 11:20:28 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 11:20:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b9f674b
x11-misc/projecteur: x86 stable wrt bug #736535
Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.8.ebuild b/x11-misc/projecteur/projecteur-0.8.ebuild
index df40cfce7c1..d6bb721d5db 100644
--- a/x11-misc/projecteur/projecteur-0.8.ebuild
+++ b/x11-misc/projecteur/projecteur-0.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
S="${WORKDIR}/${MY_PN}-${PV}"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-03-29 20:54 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-03-29 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 81d8de35e4dd4dcc73d0f16d05f905e8942d1b03
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 29 20:49:13 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 20:49:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81d8de35
x11-misc/projecteur: x86 stable
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.9.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.9.1.ebuild b/x11-misc/projecteur/projecteur-0.9.1.ebuild
index 895b88e3aba..cf5a78a2457 100644
--- a/x11-misc/projecteur/projecteur-0.9.1.ebuild
+++ b/x11-misc/projecteur/projecteur-0.9.1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-03-29 20:54 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-03-29 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 5fd95a2ec1567dd4d9baf0c611c3e7075386940e
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 29 20:49:57 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 20:49:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd95a2e
x11-misc/projecteur: drop old version
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 -
x11-misc/projecteur/projecteur-0.8.ebuild | 54 -------------------------------
2 files changed, 55 deletions(-)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index 2f6e18330ca..f0633980b63 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1,2 +1 @@
-DIST projecteur-0.8.tar.gz 379203 BLAKE2B b2171bd6120c9f6245c129519e33adbb4661ea4cd0df5f30c6c90fbefb8b7c5024da5c6d920d4e162b818bc0fc6417731dcf0c540103ed6f12976123c45c69eb SHA512 e892e87f442cfa7f0102efa01b43e63ed7ea9c30c875496dd3d683ee769de66f0a4ccfae149f060924e5613dfd7758a0b19d565232fb6db75b9228cee4a956de
DIST projecteur-0.9.1.tar.gz 392308 BLAKE2B 31ec19b81b9f3cf8c60712a52d3cf4dd96a215115d2fffc437892f276b9f1e6a58cf0c2165226166f0c2067f6ab2180829c8bc8204dbe368facbeef398da837f SHA512 28e0030a481dd2adb9eaba54066f060b61f7e4477918f46e25fad1e1a1c841dd5500c24779d66d3fab643e5aa39f92b0dd0c2fd7a0b80b8de8f258ae7572ed36
diff --git a/x11-misc/projecteur/projecteur-0.8.ebuild b/x11-misc/projecteur/projecteur-0.8.ebuild
deleted file mode 100644
index d6bb721d5db..00000000000
--- a/x11-misc/projecteur/projecteur-0.8.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/p/P}"
-
-inherit cmake udev xdg-utils
-
-DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
-HOMEPAGE="https://github.com/jahnf/Projecteur"
-SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- || (
- dev-qt/qtgui:5[X(-)]
- dev-qt/qtgui:5[xcb(-)]
- )
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- virtual/udev
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
-
- cmake_src_prepare
-
- # Don't treat all warnings as errors
- sed -e '/add_compile_options/d' -i CMakeLists.txt || die
-}
-
-pkg_postinst() {
- udev_reload
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- udev_reload
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-03-29 20:54 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-03-29 20:54 UTC (permalink / raw
To: gentoo-commits
commit: a85d4ac477f3856a971015cbc32582d21c573f08
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 29 20:48:29 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Mar 29 20:48:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85d4ac4
x11-misc/projecteur: amd64 stable
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.9.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.9.1.ebuild b/x11-misc/projecteur/projecteur-0.9.1.ebuild
index 6a27eb2c810..895b88e3aba 100644
--- a/x11-misc/projecteur/projecteur-0.9.1.ebuild
+++ b/x11-misc/projecteur/projecteur-0.9.1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
RDEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-10-11 18:22 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-10-11 18:22 UTC (permalink / raw
To: gentoo-commits
commit: 02f1523164ccd7489f3ba23ac90226dc1655e36d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 22:38:07 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 18:22:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f15231
x11-misc/projecteur: bump to version 0.9.2
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 +
x11-misc/projecteur/projecteur-0.9.2.ebuild | 53 +++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index f0633980b63..69ba02ba443 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1 +1,2 @@
DIST projecteur-0.9.1.tar.gz 392308 BLAKE2B 31ec19b81b9f3cf8c60712a52d3cf4dd96a215115d2fffc437892f276b9f1e6a58cf0c2165226166f0c2067f6ab2180829c8bc8204dbe368facbeef398da837f SHA512 28e0030a481dd2adb9eaba54066f060b61f7e4477918f46e25fad1e1a1c841dd5500c24779d66d3fab643e5aa39f92b0dd0c2fd7a0b80b8de8f258ae7572ed36
+DIST projecteur-0.9.2.tar.gz 394033 BLAKE2B 576a16853cdb2ae4614b83946caf85636f364c268320bcd99cdd9312ac1e76fb663f2e6c7cede4202df581770b4640444283eb55747735ab1bbb125d5bb9c6c1 SHA512 75c7e30b9ef72b4c1fc5e1a8e42c1668ccf2698677c1617cea080c7f5db722098635098304a7557f93f1a14143f8f2f089e8aed9265d44b2cfcd82974363baac
diff --git a/x11-misc/projecteur/projecteur-0.9.2.ebuild b/x11-misc/projecteur/projecteur-0.9.2.ebuild
new file mode 100644
index 00000000000..cab723fe1e8
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.9.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN/p/P}"
+
+inherit cmake udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ || (
+ dev-qt/qtgui:5[X(-)]
+ dev-qt/qtgui:5[xcb(-)]
+ )
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-dont-compress-manpage.patch" )
+
+src_prepare() {
+ cmake_src_prepare
+
+ # Don't treat all warnings as errors
+ sed -e '/add_compile_options/d' -i CMakeLists.txt || die
+}
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-11-14 13:57 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-11-14 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 9461eb5c29f783c827e9bdf4ae3bec42aeb4c867
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 13:48:12 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 13:56:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9461eb5c
x11-misc/projecteur: amd64 stable
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.9.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.9.2.ebuild b/x11-misc/projecteur/projecteur-0.9.2.ebuild
index 4eab6e3b83c2..a98d6fdab612 100644
--- a/x11-misc/projecteur/projecteur-0.9.2.ebuild
+++ b/x11-misc/projecteur/projecteur-0.9.2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
RDEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-11-14 13:57 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-11-14 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 493ba56bffe0172038292f7c6e8ca0bdc88fce01
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 13:46:49 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 13:56:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493ba56b
x11-misc/projecteur: x86 stable
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.9.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.9.2.ebuild b/x11-misc/projecteur/projecteur-0.9.2.ebuild
index cab723fe1e8c..4eab6e3b83c2 100644
--- a/x11-misc/projecteur/projecteur-0.9.2.ebuild
+++ b/x11-misc/projecteur/projecteur-0.9.2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
RDEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2021-11-14 13:57 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2021-11-14 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 06af081f5c3903b3cbf803b811bc32e552234377
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 13:49:06 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 13:56:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06af081f
x11-misc/projecteur: drop old version
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 -
x11-misc/projecteur/projecteur-0.9.1.ebuild | 53 -----------------------------
2 files changed, 54 deletions(-)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index 69ba02ba443f..79ae747c86e8 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1,2 +1 @@
-DIST projecteur-0.9.1.tar.gz 392308 BLAKE2B 31ec19b81b9f3cf8c60712a52d3cf4dd96a215115d2fffc437892f276b9f1e6a58cf0c2165226166f0c2067f6ab2180829c8bc8204dbe368facbeef398da837f SHA512 28e0030a481dd2adb9eaba54066f060b61f7e4477918f46e25fad1e1a1c841dd5500c24779d66d3fab643e5aa39f92b0dd0c2fd7a0b80b8de8f258ae7572ed36
DIST projecteur-0.9.2.tar.gz 394033 BLAKE2B 576a16853cdb2ae4614b83946caf85636f364c268320bcd99cdd9312ac1e76fb663f2e6c7cede4202df581770b4640444283eb55747735ab1bbb125d5bb9c6c1 SHA512 75c7e30b9ef72b4c1fc5e1a8e42c1668ccf2698677c1617cea080c7f5db722098635098304a7557f93f1a14143f8f2f089e8aed9265d44b2cfcd82974363baac
diff --git a/x11-misc/projecteur/projecteur-0.9.1.ebuild b/x11-misc/projecteur/projecteur-0.9.1.ebuild
deleted file mode 100644
index cf5a78a24570..000000000000
--- a/x11-misc/projecteur/projecteur-0.9.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/p/P}"
-
-inherit cmake udev xdg-utils
-
-DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
-HOMEPAGE="https://github.com/jahnf/Projecteur"
-SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5
- || (
- dev-qt/qtgui:5[X(-)]
- dev-qt/qtgui:5[xcb(-)]
- )
- dev-qt/qtnetwork:5
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- virtual/udev
- x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-dont-compress-manpage.patch" )
-
-src_prepare() {
- cmake_src_prepare
-
- # Don't treat all warnings as errors
- sed -e '/add_compile_options/d' -i CMakeLists.txt || die
-}
-
-pkg_postinst() {
- udev_reload
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- udev_reload
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2023-11-12 0:24 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2023-11-12 0:24 UTC (permalink / raw
To: gentoo-commits
commit: 0049bd7ed6d5bae2696e4723e11bf7ed2c7ad614
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 12 00:12:07 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Nov 12 00:24:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0049bd7e
x11-misc/projecteur: add 0.10
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/Manifest | 1 +
x11-misc/projecteur/projecteur-0.10.ebuild | 59 ++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/x11-misc/projecteur/Manifest b/x11-misc/projecteur/Manifest
index 79ae747c86e8..211f0260eccd 100644
--- a/x11-misc/projecteur/Manifest
+++ b/x11-misc/projecteur/Manifest
@@ -1 +1,2 @@
+DIST projecteur-0.10.tar.gz 464761 BLAKE2B 51488cd9f4380f3164ea8c186aeb2389917a1cfb7a5046fc90cc8e75ff5c33ecaa8224cf56c0dcfc0ba1c54741f5ae0d98ec1061318f439801a2b959832b0da4 SHA512 fae7bb6af1fe24ff5e2c98610a768ed93ed968fa8a78dee59fe2c0e7217880ad54e98b6bd0da4defd0297c959bc10e53c476d004c1847c50bc843816359b58a7
DIST projecteur-0.9.2.tar.gz 394033 BLAKE2B 576a16853cdb2ae4614b83946caf85636f364c268320bcd99cdd9312ac1e76fb663f2e6c7cede4202df581770b4640444283eb55747735ab1bbb125d5bb9c6c1 SHA512 75c7e30b9ef72b4c1fc5e1a8e42c1668ccf2698677c1617cea080c7f5db722098635098304a7557f93f1a14143f8f2f089e8aed9265d44b2cfcd82974363baac
diff --git a/x11-misc/projecteur/projecteur-0.10.ebuild b/x11-misc/projecteur/projecteur-0.10.ebuild
new file mode 100644
index 000000000000..7098cc463692
--- /dev/null
+++ b/x11-misc/projecteur/projecteur-0.10.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN/p/P}"
+
+inherit cmake udev xdg-utils
+
+DESCRIPTION="Linux Desktop Application for the Logitech Spotlight device"
+HOMEPAGE="https://github.com/jahnf/Projecteur"
+SRC_URI="https://github.com/jahnf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtdeclarative:5
+ || (
+ dev-qt/qtgui:5[X(-)]
+ dev-qt/qtgui:5[xcb(-)]
+ )
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ virtual/udev
+ x11-libs/libX11
+"
+DEPEND="${RDEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+ cmake_src_prepare
+
+ # Don't treat all warnings as errors
+ sed -e '/add_compile_options/d' -i CMakeLists.txt || die
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DCOMPRESS_MAN_PAGE="OFF"
+ )
+
+ cmake_src_configure
+}
+
+pkg_postinst() {
+ udev_reload
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ udev_reload
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2023-12-12 22:16 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2023-12-12 22:16 UTC (permalink / raw
To: gentoo-commits
commit: 2ec590ab97b53f27a5741e561cca8359fc3fa979
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 12 21:45:36 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 22:09:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec590ab
x11-misc/projecteur: amd64 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.10.ebuild b/x11-misc/projecteur/projecteur-0.10.ebuild
index 7098cc463692..ee76ee4309dc 100644
--- a/x11-misc/projecteur/projecteur-0.10.ebuild
+++ b/x11-misc/projecteur/projecteur-0.10.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
RDEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2023-12-12 22:16 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2023-12-12 22:16 UTC (permalink / raw
To: gentoo-commits
commit: 6b58d7df031650f1f7034ec9668d6295be338d17
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 12 21:46:18 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 22:09:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b58d7df
x11-misc/projecteur: x86 stable
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.10.ebuild b/x11-misc/projecteur/projecteur-0.10.ebuild
index ee76ee4309dc..7be1bcc09fbe 100644
--- a/x11-misc/projecteur/projecteur-0.10.ebuild
+++ b/x11-misc/projecteur/projecteur-0.10.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="
dev-qt/qtcore:5
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/
@ 2024-01-06 1:56 Conrad Kostecki
0 siblings, 0 replies; 24+ messages in thread
From: Conrad Kostecki @ 2024-01-06 1:56 UTC (permalink / raw
To: gentoo-commits
commit: 7a7c2bf3c1917b086d7f5c05932dde2d46156aab
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 01:54:34 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 01:55:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7c2bf3
x11-misc/projecteur: force Qt5
Closes: https://bugs.gentoo.org/919826
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
x11-misc/projecteur/projecteur-0.10.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/x11-misc/projecteur/projecteur-0.10.ebuild b/x11-misc/projecteur/projecteur-0.10.ebuild
index 7be1bcc09fbe..4d34d681c673 100644
--- a/x11-misc/projecteur/projecteur-0.10.ebuild
+++ b/x11-misc/projecteur/projecteur-0.10.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
@@ -43,6 +43,7 @@ src_prepare() {
src_configure() {
local mycmakeargs=(
-DCOMPRESS_MAN_PAGE="OFF"
+ -DPROJECTEUR_QT_VERSION=5
)
cmake_src_configure
^ permalink raw reply related [flat|nested] 24+ messages in thread
end of thread, other threads:[~2024-01-06 1:56 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-12 22:48 [gentoo-commits] repo/gentoo:master commit in: x11-misc/projecteur/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2024-01-06 1:56 Conrad Kostecki
2023-12-12 22:16 Conrad Kostecki
2023-12-12 22:16 Conrad Kostecki
2023-11-12 0:24 Conrad Kostecki
2021-11-14 13:57 Conrad Kostecki
2021-11-14 13:57 Conrad Kostecki
2021-11-14 13:57 Conrad Kostecki
2021-10-11 18:22 Conrad Kostecki
2021-03-29 20:54 Conrad Kostecki
2021-03-29 20:54 Conrad Kostecki
2021-03-29 20:54 Conrad Kostecki
2020-08-18 11:22 Agostino Sarubbo
2020-08-17 7:01 Agostino Sarubbo
2020-08-11 18:50 Conrad Kostecki
2020-06-29 13:40 Agostino Sarubbo
2020-06-20 21:52 Conrad Kostecki
2020-05-10 19:37 Conrad Kostecki
2020-05-10 16:23 Conrad Kostecki
2020-05-10 16:22 Conrad Kostecki
2020-03-12 22:48 Conrad Kostecki
2020-01-19 23:53 Andreas Sturmlechner
2020-01-19 23:53 Andreas Sturmlechner
2019-12-05 23:32 Conrad Kostecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox