commit:     7a3ef537518ad0989851bcfd3c26245b3761d70d
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  9 22:36:29 2024 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Nov  9 22:37:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3ef537

sci-electronics/geda: drop 1.10.2-r2, 1.10.2-r100

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 sci-electronics/geda/geda-1.10.2-r100.ebuild | 96 ----------------------------
 sci-electronics/geda/geda-1.10.2-r2.ebuild   | 83 ------------------------
 2 files changed, 179 deletions(-)

diff --git a/sci-electronics/geda/geda-1.10.2-r100.ebuild 
b/sci-electronics/geda/geda-1.10.2-r100.ebuild
deleted file mode 100644
index a136e0771607..000000000000
--- a/sci-electronics/geda/geda-1.10.2-r100.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="doxygen"
-DOCS_DEPEND="
-       media-gfx/graphviz
-       media-gfx/imagemagick
-       virtual/latex-base
-"
-GUILE_COMPAT=( 2-2 )
-inherit autotools docs guile-single xdg
-
-MY_PN=${PN}-gaf
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="GPL Electronic Design Automation (gEDA):gaf core package"
-HOMEPAGE="http://geda-project.org/ http://wiki.geda-project.org/geda:gaf";
-SRC_URI="http://ftp.geda-project.org/${MY_PN}/stable/v$(ver_cut 
1-2)/${PV}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
-IUSE="debug fam nls"
-REQUIRED_USE="${GUILE_REQUIRED_USE}"
-
-RDEPEND="
-       ${GUILE_DEPS}
-       dev-libs/glib:2
-       sci-electronics/electronics-menu
-       x11-libs/cairo
-       x11-libs/gdk-pixbuf
-       x11-libs/gtk+:2
-       x11-libs/pango
-       nls? ( virtual/libintl )
-       fam? ( app-admin/gamin )
-"
-
-DEPEND="${RDEPEND}
-       dev-util/desktop-file-utils
-       x11-misc/shared-mime-info"
-BDEPEND="
-       sys-apps/groff
-       virtual/pkgconfig
-       nls? ( sys-devel/gettext )
-"
-
-PATCHES=(
-       # Xorn requires python2
-       "${FILESDIR}/${P}-drop-xorn.patch"
-
-       "${FILESDIR}/${PN}-1.10.2-fix-gtk-sheet.patch"
-)
-
-pkg_setup() {
-       guile-single_pkg_setup
-}
-
-src_prepare() {
-       guile-single_src_prepare
-       rm -r xorn || die
-
-       # remove compressed files, compressed by portage in install phase
-       rm docs/wiki/media/geda/gsch2pcb-libs.tar.gz || die
-       rm docs/wiki/media/geda/pcb_plugin_template.tar.gz || die
-       rm docs/wiki/media/pcb/plugin_debug_window.tar.gz || die
-
-       # -Wmaybe-uninitialized is made fatal, which is not ideal for building
-       # releases. Upstream is working on fixing these anyway.
-       sed -i '/Werror_maybe_uninitialized_IF_SUPPORTED/d' configure.ac || die
-
-       eautoreconf
-}
-
-src_configure() {
-       local myconf=(
-               --disable-rpath
-               --disable-update-xdg-database
-               $(use_enable doc doxygen)
-               $(use_enable debug assert)
-               $(use_enable nls)
-               $(use_with fam libfam)
-       )
-
-       local -x GUILE_SNARF="${GUILESNARF}"
-
-       econf "${myconf[@]}"
-}
-
-src_install() {
-       guile_src_install
-
-       find "${D}" -name '*.la' -delete || die
-}

diff --git a/sci-electronics/geda/geda-1.10.2-r2.ebuild 
b/sci-electronics/geda/geda-1.10.2-r2.ebuild
deleted file mode 100644
index 24b2e1b10dd4..000000000000
--- a/sci-electronics/geda/geda-1.10.2-r2.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="doxygen"
-DOCS_DEPEND="
-       media-gfx/graphviz
-       media-gfx/imagemagick
-       virtual/latex-base
-"
-inherit autotools docs xdg
-
-MY_PN=${PN}-gaf
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="GPL Electronic Design Automation (gEDA):gaf core package"
-HOMEPAGE="http://geda-project.org/ http://wiki.geda-project.org/geda:gaf";
-SRC_URI="http://ftp.geda-project.org/${MY_PN}/stable/v$(ver_cut 
1-2)/${PV}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
-IUSE="debug fam nls"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-       dev-libs/glib:2
-       dev-scheme/guile
-       sci-electronics/electronics-menu
-       x11-libs/cairo
-       x11-libs/gdk-pixbuf
-       x11-libs/gtk+:2
-       x11-libs/pango
-       nls? ( virtual/libintl )
-       fam? ( app-admin/gamin )
-"
-
-DEPEND="${RDEPEND}
-       dev-util/desktop-file-utils
-       x11-misc/shared-mime-info"
-BDEPEND="
-       sys-apps/groff
-       virtual/pkgconfig
-       nls? ( sys-devel/gettext )
-"
-
-PATCHES=(
-       # Xorn requires python2
-       "${FILESDIR}/${P}-drop-xorn.patch"
-
-       "${FILESDIR}/${PN}-1.10.2-fix-gtk-sheet.patch"
-)
-
-src_prepare() {
-       default
-       rm -r xorn || die
-
-       # remove compressed files, compressed by portage in install phase
-       rm docs/wiki/media/geda/gsch2pcb-libs.tar.gz || die
-       rm docs/wiki/media/geda/pcb_plugin_template.tar.gz || die
-       rm docs/wiki/media/pcb/plugin_debug_window.tar.gz || die
-
-       # -Wmaybe-uninitialized is made fatal, which is not ideal for building
-       # releases. Upstream is working on fixing these anyway.
-       sed -i '/Werror_maybe_uninitialized_IF_SUPPORTED/d' configure.ac || die
-
-       eautoreconf
-}
-
-src_configure() {
-       local myconf=(
-               --disable-rpath
-               --disable-update-xdg-database
-               $(use_enable doc doxygen)
-               $(use_enable debug assert)
-               $(use_enable nls)
-               $(use_with fam libfam)
-       )
-
-       econf "${myconf[@]}"
-}

Reply via email to