diff options
author | Matt Turner <mattst88@gentoo.org> | 2023-01-02 22:53:47 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-01-03 09:07:45 -0500 |
commit | b0e7bf0d83d4d24e277a0f8ccdd7519b9b92adda (patch) | |
tree | db337ab293aa5872830160921bbd57a4f1368321 /app-editors | |
parent | app-editors/gedit-plugins: Drop old versions (diff) | |
download | gentoo-b0e7bf0d83d4d24e277a0f8ccdd7519b9b92adda.tar.gz gentoo-b0e7bf0d83d4d24e277a0f8ccdd7519b9b92adda.tar.bz2 gentoo-b0e7bf0d83d4d24e277a0f8ccdd7519b9b92adda.zip |
app-editors/gedit: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/gedit/Manifest | 1 | ||||
-rw-r--r-- | app-editors/gedit/gedit-42.2.ebuild | 91 |
2 files changed, 0 insertions, 92 deletions
diff --git a/app-editors/gedit/Manifest b/app-editors/gedit/Manifest index 2f6895525764..f388533bf2cb 100644 --- a/app-editors/gedit/Manifest +++ b/app-editors/gedit/Manifest @@ -1,2 +1 @@ -DIST gedit-42.2.tar.xz 6917596 BLAKE2B fd7b0a1c113e944b1b3f0c2bb55a061e76e7ee71ebbfe8d64c6d5b0c7e47b8dd54519bde1b7b095a1cab27a169427eecdf35d06422c1a984f51dab82e19c7cb0 SHA512 d50f021f33764e0cdd3ac51650db0e37dacb5b6edeadddfd8136e8120e83eb740db66ada25ae43eac810896714859d6f8876640a8976ddfd6e7e602c278dcc99 DIST gedit-43.2.tar.xz 2724036 BLAKE2B 64039018c604874945cc6835bba14d80f969b0a860c0384d969af7fc81cdc4ade568539a80571440af605f14eaf33730140a48b48b92d1bdb652199770ca3411 SHA512 447f0da946ff7474637bb6b88f41eb53e5ba886c66e8b9f8c17e67d2f52e3eb115d905a850300f70488cfebcd6654a14ce8c57044760f4fdb3394cedf4e91f23 diff --git a/app-editors/gedit/gedit-42.2.ebuild b/app-editors/gedit/gedit-42.2.ebuild deleted file mode 100644 index 5b4aa2eea9bc..000000000000 --- a/app-editors/gedit/gedit-42.2.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{8..11} ) - -inherit gnome.org gnome2-utils meson python-single-r1 vala xdg - -DESCRIPTION="A text editor for the GNOME desktop" -HOMEPAGE="https://wiki.gnome.org/Apps/Gedit https://gitlab.gnome.org/GNOME/gedit" - -LICENSE="GPL-2+ CC-BY-SA-3.0" -SLOT="0" - -IUSE="+python gtk-doc spell" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86" - -DEPEND=" - >=dev-libs/glib-2.64:2 - >=x11-libs/gtk+-3.22.0:3[introspection] - >=x11-libs/gtksourceview-4.0.2:4[introspection,vala] - >=dev-libs/libpeas-1.14.1[gtk] - >=dev-libs/libxml2-2.5.0:2 - >=dev-libs/gobject-introspection-1.54:= - - spell? ( >=app-text/gspell-0.2.5:0= ) - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/pycairo[${PYTHON_USEDEP}] - >=dev-python/pygobject-3:3[cairo,${PYTHON_USEDEP}] - dev-libs/libpeas[python,${PYTHON_SINGLE_USEDEP}] - ') - ) -" -RDEPEND="${DEPEND} - x11-themes/adwaita-icon-theme - gnome-base/gsettings-desktop-schemas - gnome-base/gvfs -" -BDEPEND=" - $(vala_depend) - app-text/docbook-xml-dtd:4.1.2 - dev-util/glib-utils - gtk-doc? ( >=dev-util/gtk-doc-1 ) - dev-util/itstool - >=sys-devel/gettext-0.18 - virtual/pkgconfig -" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - default - vala_setup - xdg_environment_reset -} - -src_configure() { - local emesonargs=( - $(meson_use gtk-doc gtk_doc) - $(meson_use python) - $(meson_feature spell) - -Duser_documentation=true - -Denable-gvfs-metadata=yes - - ) - meson_src_configure -} - -src_install() { - meson_src_install - if use python; then - python_optimize - python_optimize "${ED}/usr/$(get_libdir)/gedit/plugins/" - fi -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update -} |