summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2021-05-30 16:42:53 -0700
committerMatt Turner <mattst88@gentoo.org>2021-05-30 18:58:03 -0700
commit4f3ff5ebe56d8e867fde74b33c6a237aef485005 (patch)
tree44deb586b4ec2c608be20af2884795007f4f8c8e
parentgnome-extra/gnome-system-monitor: Drop old versions (diff)
downloadgentoo-4f3ff5ebe56d8e867fde74b33c6a237aef485005.tar.gz
gentoo-4f3ff5ebe56d8e867fde74b33c6a237aef485005.tar.bz2
gentoo-4f3ff5ebe56d8e867fde74b33c6a237aef485005.zip
gnome-extra/gnome-tweaks: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r--gnome-extra/gnome-tweaks/Manifest1
-rw-r--r--gnome-extra/gnome-tweaks/files/3.34.0-fix-python.patch80
-rw-r--r--gnome-extra/gnome-tweaks/gnome-tweaks-3.34.1.ebuild50
3 files changed, 0 insertions, 131 deletions
diff --git a/gnome-extra/gnome-tweaks/Manifest b/gnome-extra/gnome-tweaks/Manifest
index 4af9eea366bd..02cffd140f22 100644
--- a/gnome-extra/gnome-tweaks/Manifest
+++ b/gnome-extra/gnome-tweaks/Manifest
@@ -1,2 +1 @@
-DIST gnome-tweaks-3.34.1.tar.xz 247980 BLAKE2B 55fbb16bcdb1a9ea4b5ca84df802266e07347377eab3712284973146fcc0797af59df5985725b1a95a1fba0d26b580a1c9862675978876de5eeb0de9c0060be3 SHA512 c922bf696b9ff48c8c39fd4ae06f4b72ea7b18645ad41552b0367859066d7601bc59521643335931e1cce799344a1c1ac9a7c28408de4c19bfa4127594a2ec7d
DIST gnome-tweaks-40.0.tar.xz 251908 BLAKE2B 4280e7565da3f95d7bcd81ba874d2f15e8c3834ab052cb4cf7cde8060eaea016670acf6f441d2cbce4b7566ba0bb7a7f9666b257893bc7b22b1cdc4d5a0edee2 SHA512 c3467f40af6bb79c2b10cb429e93aa29261066c2a5fd744bf2801c4e596cc270d45302ebfa942ee0c40067849c12e1ccd404c40e7f594bcff4c44cfe3f90bb97
diff --git a/gnome-extra/gnome-tweaks/files/3.34.0-fix-python.patch b/gnome-extra/gnome-tweaks/files/3.34.0-fix-python.patch
deleted file mode 100644
index 8845a0d26ca9..000000000000
--- a/gnome-extra/gnome-tweaks/files/3.34.0-fix-python.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-From 024bf6cbccc4ceb9c1e8243f43df225f5dff9098 Mon Sep 17 00:00:00 2001
-From: Mart Raudsepp <leio@gentoo.org>
-Date: Sun, 29 Mar 2020 16:05:36 +0300
-Subject: [PATCH] build: Fix python files installation handling
-
-The deprecated meson python3 module tends to end up installing only
-to a python version that meson is installed for too, possibly
-breaking some expectations downstream that want it installed to
-a specific python3 version, that might not match what the build
-machine uses for meson.
-Fix it by using the non-deprecated python module and methods from it.
-
-The python module exists since 0.46, which should be safe to require
-by now. There were meson 0.50 features used already, but unnecessarily,
-as the configure_file install parameter was added then, but all versions
-default to `true` anyhow. However in practice this only emitted a
-warning with newer meson versions and was able to build fine with older
-versions too. However fix it too, so that we are now warning-free for
-meson features after raising of the meson version dep.
----
- gtweak/meson.build | 5 ++---
- meson.build | 10 +++++++---
- 2 files changed, 9 insertions(+), 6 deletions(-)
-
-diff --git a/gtweak/meson.build b/gtweak/meson.build
-index 3d9a743..4e558b4 100644
---- a/gtweak/meson.build
-+++ b/gtweak/meson.build
-@@ -11,7 +11,6 @@ configure_file(
- input: 'defs.py.in',
- output: 'defs.py',
- configuration: defs_conf,
-- install: true,
- install_dir: gtweakdir
- )
-
-@@ -46,5 +45,5 @@ tweak_sources = [
- 'tweaks/tweak_wacom.py',
- ]
-
--install_data(shell_sources, install_dir: gtweakdir)
--install_data(tweak_sources, install_dir: gtweakdir + '/tweaks')
-+python3.install_sources(shell_sources, subdir: 'gtweak')
-+python3.install_sources(tweak_sources, subdir: join_paths('gtweak', 'tweaks'))
-diff --git a/meson.build b/meson.build
-index cffa8af..60141c5 100644
---- a/meson.build
-+++ b/meson.build
-@@ -5,7 +5,12 @@ project('gnome-tweaks',
-
- gnome = import('gnome')
- i18n = import('i18n')
--python3 = import('python3')
-+pymod = import('python')
-+python3 = pymod.find_installation('python3')
-+
-+if not python3.found()
-+ error('No valid python3 installation found')
-+endif
-
- prefix = get_option('prefix')
-
-@@ -13,13 +18,12 @@ bindir = join_paths(prefix, get_option('bindir'))
- datadir = join_paths(prefix, get_option('datadir'))
- libexecdir = join_paths(prefix, get_option('libexecdir'))
- localedir = join_paths(prefix, get_option('localedir'))
--pythondir = join_paths(prefix, python3.sysconfig_path('purelib'))
-
- pkgdatadir = join_paths(datadir, meson.project_name())
-
- appdatadir = join_paths(datadir, 'metainfo')
- desktopdir = join_paths(datadir, 'applications')
--gtweakdir = join_paths(pythondir, 'gtweak')
-+gtweakdir = python3.get_install_dir(subdir: 'gtweak')
- icondir = join_paths(datadir, 'icons', 'hicolor')
- schemadir = join_paths(datadir, 'glib-2.0', 'schemas')
-
---
-2.26.2
-
diff --git a/gnome-extra/gnome-tweaks/gnome-tweaks-3.34.1.ebuild b/gnome-extra/gnome-tweaks/gnome-tweaks-3.34.1.ebuild
deleted file mode 100644
index 1590ddd10d26..000000000000
--- a/gnome-extra/gnome-tweaks/gnome-tweaks-3.34.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit gnome.org meson python-single-r1 xdg
-
-DESCRIPTION="Customize advanced GNOME 3 options"
-HOMEPAGE="https://wiki.gnome.org/Apps/Tweaks"
-
-LICENSE="GPL-3+ CC0-1.0"
-SLOT="0"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-
-DEPEND="${PYTHON_DEPS}"
-# See README.md for list of deps
-RDEPEND="${DEPEND}
- $(python_gen_cond_dep '
- >=dev-python/pygobject-3.10.2:3[${PYTHON_MULTI_USEDEP}]
- ')
- >=gnome-base/gnome-settings-daemon-3
- x11-themes/sound-theme-freedesktop
-
- >=dev-libs/glib-2.58:2
- >=x11-libs/gtk+-3.12:3[introspection]
- >=gnome-base/gnome-desktop-3.30:3[introspection]
- gui-libs/libhandy:0.0[introspection]
- net-libs/libsoup:2.4[introspection]
- x11-libs/libnotify[introspection]
-
- >=gnome-base/gsettings-desktop-schemas-3.33.0
- >=gnome-base/gnome-shell-3.24
- x11-wm/mutter
-"
-BDEPEND=">=sys-devel/gettext-0.19.8"
-
-PATCHES=(
- "${FILESDIR}"/3.28.1-gentoo-cursor-themes.patch # Add contents of Gentoo's cursor theme directory to cursor theme list
- "${FILESDIR}"/3.34.0-fix-python.patch
-)
-
-src_install() {
- meson_src_install
- python_optimize
- python_fix_shebang "${ED}"/usr/bin/
-}