public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/polychromatic/
Date: Sat, 22 Jun 2024 19:05:48 +0000 (UTC)	[thread overview]
Message-ID: <1719083075.08c4fd42f6ebd6566606310eef836426fc2936c4.xgqt@gentoo> (raw)

commit:     08c4fd42f6ebd6566606310eef836426fc2936c4
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 22 18:53:48 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Jun 22 19:04:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08c4fd42

sys-apps/polychromatic: drop old 0.8.3-r1

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 sys-apps/polychromatic/Manifest                    |  1 -
 .../polychromatic/polychromatic-0.8.3-r1.ebuild    | 69 ----------------------
 2 files changed, 70 deletions(-)

diff --git a/sys-apps/polychromatic/Manifest b/sys-apps/polychromatic/Manifest
index bee3f437cb56..d9f77bf28e09 100644
--- a/sys-apps/polychromatic/Manifest
+++ b/sys-apps/polychromatic/Manifest
@@ -1,3 +1,2 @@
-DIST polychromatic-0.8.3.tar.gz 1762021 BLAKE2B eb4925fdd5be892c4f490424f357e8d1a2db79ac4bd9b4ae2a6f05662022837ba624d23c373b073de8045207511c50a6f2c4ba6cc4a6f276c2553edcbae25eaf SHA512 e2b26bfda985a2a80373dfa2c10e85a96724eec16c513e825841b7363b692c3edf51fc7ddc0735e28bb1c5074ebd22e9390606d314df35fc61cb185a0fd0acfc
 DIST polychromatic-0.9.0.tar.gz 1776527 BLAKE2B 20129aad108f362d6efff4ad8e4e3b6eeff36eaba9a4fc12c0093dbf9f4ab91b34cc80760f5c19348f16760b2e569cda645a16d0005b1f5f00dcf478c10b16af SHA512 10ea80f09e032c29036702de70d1b1b977cf07d2ae834cdcfd6a16599fa389209b0db695e8b1cd5c40f2ebe4c48ae99aafc5d649c1cf3bffe5382bd471b9c23d
 DIST polychromatic-0.9.1.tar.gz 1786276 BLAKE2B 46865d85aefa99ebc06ea145fe3afd3e4388d94529b8835ff4c4990d241031ee069801c7183ef89c811bde170a2211583dae7bb5bde8b3d65ebdf04421cef349 SHA512 def2d488fb52091ecddea5f11bf066efec5caf43b2c53f3b1a63d6de59c4ca9b62eb5da84faa08581050dbcc8ebcb98681b6d5c4376d04699a736d7122b79cb3

diff --git a/sys-apps/polychromatic/polychromatic-0.8.3-r1.ebuild b/sys-apps/polychromatic/polychromatic-0.8.3-r1.ebuild
deleted file mode 100644
index 77b33608e6d4..000000000000
--- a/sys-apps/polychromatic/polychromatic-0.8.3-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit meson python-single-r1 readme.gentoo-r1 xdg
-
-DESCRIPTION="RGB lighting management software for GNU/Linux powered by OpenRazer"
-HOMEPAGE="https://polychromatic.app/
-	https://github.com/polychromatic/polychromatic/"
-
-if [[ ${PV} == *9999* ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
-else
-	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz"
-	KEYWORDS="amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
-	${PYTHON_DEPS}
-	>=x11-libs/gtk+-3.20:3[introspection]
-	$(python_gen_cond_dep '
-		dev-python/PyQt5[svg,${PYTHON_USEDEP}]
-		dev-python/PyQtWebEngine[${PYTHON_USEDEP}]
-		dev-python/colorama[${PYTHON_USEDEP}]
-		dev-python/colour[${PYTHON_USEDEP}]
-		dev-python/distro[${PYTHON_USEDEP}]
-		dev-python/pygobject:3[${PYTHON_USEDEP}]
-		dev-python/requests[${PYTHON_USEDEP}]
-		dev-python/setproctitle[${PYTHON_USEDEP}]
-		sys-apps/openrazer[client,${PYTHON_USEDEP}]
-	')
-"
-BDEPEND="
-	${RDEPEND}
-	dev-util/intltool
-	dev-lang/sassc
-"
-
-DOC_CONTENTS="To automatically start up Polychromatic on session login copy
-/usr/share/polychromatic/polychromatic-autostart.desktop file into Your user's
-~/.config/autostart/ directory."
-
-src_install() {
-	meson_src_install
-	python_optimize
-	readme.gentoo_create_doc
-
-	python_doscript "${S}"/polychromatic-{cli,controller,helper,tray-applet}
-
-	# Do not force polychromatic to autostart on session login.
-	# Move it into /usr/share/polychromatic and treat it as an example file
-	# that could be installed into user's ~/.config/autostart/ directory.
-	mv "${ED}"/etc/xdg/autostart/${PN}-autostart.desktop \
-	   "${ED}"/usr/share/${PN}/${PN}-autostart.desktop || die
-}
-
-pkg_postinst() {
-	xdg_pkg_postinst
-	readme.gentoo_print_elog
-}


             reply	other threads:[~2024-06-22 19:05 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-22 19:05 Maciej Barć [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-15 19:55 [gentoo-commits] repo/gentoo:master commit in: sys-apps/polychromatic/ Maciej Barć
2025-03-15 19:55 Maciej Barć
2024-12-07 18:10 Maciej Barć
2024-12-07 18:10 Maciej Barć
2024-09-03 18:32 Jakov Smolić
2024-07-31  0:03 Maciej Barć
2024-06-22 19:05 Maciej Barć
2024-06-14  7:27 Maciej Barć
2024-05-13 17:59 Maciej Barć
2024-04-24 17:10 Maciej Barć
2024-04-24 17:10 Maciej Barć
2023-12-27 23:44 Maciej Barć
2023-12-27 23:44 Maciej Barć
2023-12-27 23:44 Maciej Barć
2023-12-16 21:45 Maciej Barć
2023-11-20 20:27 Maciej Barć
2023-11-20 19:17 Maciej Barć
2023-10-09  7:35 Maciej Barć
2023-09-02 14:30 Maciej Barć
2023-05-01 18:46 Maciej Barć
2023-05-01 18:46 Maciej Barć
2023-05-01 18:46 Maciej Barć
2022-12-04 18:28 Maciej Barć
2022-10-01 13:50 Maciej Barć
2022-09-24 21:11 Maciej Barć

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1719083075.08c4fd42f6ebd6566606310eef836426fc2936c4.xgqt@gentoo \
    --to=xgqt@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox