From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0DB215808B for ; Fri, 6 Sep 2024 08:52:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB0AC2BC030; Fri, 6 Sep 2024 08:52:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A36662BC030 for ; Fri, 6 Sep 2024 08:52:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A6AFA34300A for ; Fri, 6 Sep 2024 08:52:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5EF71F47 for ; Fri, 6 Sep 2024 08:52:13 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1725546122.cc63ff898180f50e49451c0a103ef0e3573e616c.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/superpaper/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/superpaper/superpaper-2.2.1.ebuild X-VCS-Directories: media-gfx/superpaper/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: cc63ff898180f50e49451c0a103ef0e3573e616c X-VCS-Branch: master Date: Fri, 6 Sep 2024 08:52:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6ac23e6c-7b92-44e6-a049-191797fca99a X-Archives-Hash: cf3d0ddf6d2c05113538750a57e12a92 commit: cc63ff898180f50e49451c0a103ef0e3573e616c Author: Devrin Talen fastmail com> AuthorDate: Thu Aug 22 20:49:48 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Sep 5 14:22:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc63ff89 media-gfx/superpaper: new package, add 2.2.1 Signed-off-by: Devrin Talen fastmail.com> media-gfx/superpaper/superpaper-2.2.1.ebuild | 84 +--------------------------- 1 file changed, 1 insertion(+), 83 deletions(-) diff --git a/media-gfx/superpaper/superpaper-2.2.1.ebuild b/media-gfx/superpaper/superpaper-2.2.1.ebuild index cf1d24f4e..7fd87b256 100644 --- a/media-gfx/superpaper/superpaper-2.2.1.ebuild +++ b/media-gfx/superpaper/superpaper-2.2.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{6..13} ) +PYTHON_COMPAT=( python3_{8..13} ) inherit distutils-r1 DESCRIPTION="Advanced multi monitor wallpaper manager" @@ -16,14 +16,6 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -# Run-time dependencies. Must be defined to whatever this depends on to run. -# Example: -# ssl? ( >=dev-libs/openssl-1.0.2q:0= ) -# >=dev-lang/perl-5.24.3-r1 -# It is advisable to use the >= syntax show above, to reflect what you -# had installed on your system when you tested the package. Then -# other users hopefully won't be caught without the right version of -# a dependency. RDEPEND=">=dev-python/wxpython-4.0 >=dev-python/pillow-7.0.0 >=dev-python/screeninfo-0.6.1 @@ -31,77 +23,3 @@ RDEPEND=">=dev-python/wxpython-4.0 >=dev-python/system_hotkey-1.0 >=dev-python/xcffib-0.8.0 >=dev-python/xpybutil-0.0.5" - -# Build-time dependencies that need to be binary compatible with the system -# being built (CHOST). These include libraries that we link against. -# The below is valid if the same run-time depends are required to compile. -#DEPEND="${RDEPEND}" - -# Build-time dependencies that are executed during the emerge process, and -# only need to be present in the native build system (CBUILD). Example: -#BDEPEND="virtual/pkgconfig" - -# The following src_configure function is implemented as default by portage, so -# you only need to call it if you need a different behaviour. -#src_configure() { - # Most open-source packages use GNU autoconf for configuration. - # The default, quickest (and preferred) way of running configure is: - #econf - # - # You could use something similar to the following lines to - # configure your package before compilation. The "|| die" portion - # at the end will stop the build process if the command fails. - # You should use this at the end of critical commands in the build - # process. (Hint: Most commands are critical, that is, the build - # process should abort if they aren't successful.) - #./configure \ - # --host=${CHOST} \ - # --prefix=/usr \ - # --infodir=/usr/share/info \ - # --mandir=/usr/share/man || die - # Note the use of --infodir and --mandir, above. This is to make - # this package FHS 2.2-compliant. For more information, see - # https://wiki.linuxfoundation.org/lsb/fhs -#} - -# The following src_compile function is implemented as default by portage, so -# you only need to call it, if you need different behaviour. -#src_compile() { - # emake is a script that calls the standard GNU make with parallel - # building options for speedier builds (especially on SMP systems). - # Try emake first. It might not work for some packages, because - # some makefiles have bugs related to parallelism, in these cases, - # use emake -j1 to limit make to a single process. The -j1 is a - # visual clue to others that the makefiles have bugs that have been - # worked around. - - #emake -#} - -# The following src_install function is implemented as default by portage, so -# you only need to call it, if you need different behaviour. -#src_install() { - # You must *personally verify* that this trick doesn't install - # anything outside of DESTDIR; do this by reading and - # understanding the install part of the Makefiles. - # This is the preferred way to install. - #emake DESTDIR="${D}" install - - # When you hit a failure with emake, do not just use make. It is - # better to fix the Makefiles to allow proper parallelization. - # If you fail with that, use "emake -j1", it's still better than make. - - # For Makefiles that don't make proper use of DESTDIR, setting - # prefix is often an alternative. However if you do this, then - # you also need to specify mandir and infodir, since they were - # passed to ./configure as absolute paths (overriding the prefix - # setting). - #emake \ - # prefix="${D}"/usr \ - # mandir="${D}"/usr/share/man \ - # infodir="${D}"/usr/share/info \ - # libdir="${D}"/usr/$(get_libdir) \ - # install - # Again, verify the Makefiles! We don't want anything falling - # outside of ${D}. -#}