commit: cc63ff898180f50e49451c0a103ef0e3573e616c
Author: Devrin Talen <devrin <AT> fastmail <DOT> com>
AuthorDate: Thu Aug 22 20:49:48 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> 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 <devrin <AT> 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}.
-#}