commit:     e4b75196b40c712b7aa1c776564dcbec419d765e
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  3 15:19:10 2023 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Tue Jan  3 15:20:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b75196

media-libs/hamlib: drop 4.5, 4.5.1

Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>

 media-libs/hamlib/Manifest            |   2 -
 media-libs/hamlib/hamlib-4.5.1.ebuild |  97 --------------------------------
 media-libs/hamlib/hamlib-4.5.ebuild   | 101 ----------------------------------
 3 files changed, 200 deletions(-)

diff --git a/media-libs/hamlib/Manifest b/media-libs/hamlib/Manifest
index 7a18497ef0b7..bce411fa3727 100644
--- a/media-libs/hamlib/Manifest
+++ b/media-libs/hamlib/Manifest
@@ -1,4 +1,2 @@
 DIST hamlib-4.4.tar.gz 2401399 BLAKE2B 
4256b5b4374c62ef4fb957d29deda95aa9d15a8b52b81c5db1c07f3ebbf4c8e48c6c082769cef82c8457b3f813ac00ef7a37136615747f2c93e5275a112891e7
 SHA512 
37366ba180031de34da447c3d4e0086f156b893f57b5ab9bbc38b8e1f4bf9310fa1a9eb2a6d7884f1f11900dbdb811b4071e023aba571ea0ac5d07ddb122bf7b
-DIST hamlib-4.5.1.tar.gz 2588713 BLAKE2B 
11b45fe82adc0bedfabed1847589ee67fe3612c8b2c34e0c91bbf33b237f2992c97ab266687f7173767bf01db81747ea1b710af0bd3fdb3aa5c4035190d35ceb
 SHA512 
3fbfa18f3f04890eb0bb2ffef5347ffc3759fa276d613785a0e585dd3613837db4461eb79bf7e3794f6ce33dcae8a4357b3f27c8be44a9d838fcb82cb0a60753
 DIST hamlib-4.5.3.tar.gz 2590200 BLAKE2B 
7c06a20a1185a2e413fee56231f3e0f6aa77a7585b9853896b00abb773e2e23fc5e97a8a3fbb873528282756ee674b1ca5b2b14f0fe8e6b9b8e8f7e8ffa223f2
 SHA512 
be3b58c7276c1289d85b4dc9054016757200fde06d66116f7a1687442e53bf322f0a3ae974c9b784cbd0bff0c64b901b97fac74184f4b4a0fdf1f5079d0ea509
-DIST hamlib-4.5.tar.gz 2568061 BLAKE2B 
6ccb0c1faf8f64453c3696e75ced413048e7705184c7755fdde200be1d9b17f5495427ba492317cf7e75b5f373b859840d1d364db1f057c28f7779f8284fd96a
 SHA512 
671da06aed54951ca810b4de7291a16de3a2f6ed54b8d024d4d9bfed9dfc6a21336c3cadd6f5b128c3ab54f1edd2b22db491b074b7759b9dfd9e71e1ce4055f3

diff --git a/media-libs/hamlib/hamlib-4.5.1.ebuild 
b/media-libs/hamlib/hamlib-4.5.1.ebuild
deleted file mode 100644
index a519e701d933..000000000000
--- a/media-libs/hamlib/hamlib-4.5.1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-MY_P=${P/_rc2/~rc2}
-
-inherit autotools python-single-r1
-
-DESCRIPTION="Ham radio backend rig control libraries"
-HOMEPAGE="http://www.hamlib.org";
-SRC_URI="mirror://sourceforge/hamlib/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2 GPL-2"
-SLOT="0/4.2"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-IUSE="doc perl python tcl"
-
-RESTRICT="test"
-
-RDEPEND="
-       =virtual/libusb-0*
-       dev-libs/libxml2
-       sys-libs/readline:0=
-       perl? ( dev-lang/perl )
-       python? ( ${PYTHON_DEPS} )
-       tcl? ( dev-lang/tcl:0= )"
-
-DEPEND=" ${RDEPEND}
-       virtual/pkgconfig
-       dev-lang/swig
-       >=sys-devel/libtool-2.2
-       doc? ( app-doc/doxygen
-               dev-util/source-highlight )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DOCS=(AUTHORS NEWS PLAN README README.betatester README.developer)
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-       use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-       default
-
-       # fix hardcoded libdir paths
-       sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
-               -e "s#fix}/include#fix}/include/hamlib#" \
-               hamlib.pc.in || die "sed failed"
-
-       # Correct install target to whatever INSTALLDIRS says and use vendor
-       # installdirs everywhere (bug #611550)
-       sed -i -e "s#install_site#install#"     \
-       -e 's#MAKEFILE="Hamlib-pl.mk"#MAKEFILE="Hamlib-pl.mk" 
INSTALLDIRS=vendor#' \
-       bindings/Makefile.am || die "sed failed patching for perl"
-
-       # make building of documentation compatible with autotools-utils
-       sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed"
-
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               --libdir=/usr/$(get_libdir)/hamlib \
-               --disable-static \
-               --with-xml-support \
-               $(use_with perl perl-binding) \
-               $(use_with python python-binding) \
-               $(use_with tcl tcl-binding)
-}
-
-src_compile() {
-       emake
-       use doc && emake html
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-
-       use python && python_optimize
-
-       use doc && HTML_DOCS=( doc/html/ )
-       einstalldocs
-
-       insinto /usr/$(get_libdir)/pkgconfig
-       doins hamlib.pc
-
-       echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
-       doenvd "${T}"/73hamlib
-
-       find "${ED}" -name '*.la' -delete || die
-}

diff --git a/media-libs/hamlib/hamlib-4.5.ebuild 
b/media-libs/hamlib/hamlib-4.5.ebuild
deleted file mode 100644
index 18a7511241b4..000000000000
--- a/media-libs/hamlib/hamlib-4.5.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-MY_P=${P/_rc2/~rc2}
-
-inherit autotools python-single-r1
-
-DESCRIPTION="Ham radio backend rig control libraries"
-HOMEPAGE="http://www.hamlib.org";
-SRC_URI="mirror://sourceforge/hamlib/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2 GPL-2"
-SLOT="0/4.2"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-IUSE="doc perl python tcl"
-
-RESTRICT="test"
-
-RDEPEND="
-       =virtual/libusb-0*
-       dev-libs/libxml2
-       sys-libs/readline:0=
-       perl? ( dev-lang/perl )
-       python? ( ${PYTHON_DEPS} )
-       tcl? ( dev-lang/tcl:0= )"
-
-DEPEND=" ${RDEPEND}
-       virtual/pkgconfig
-       dev-lang/swig
-       >=sys-devel/libtool-2.2
-       doc? ( app-doc/doxygen
-               dev-util/source-highlight )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DOCS=(AUTHORS NEWS PLAN README README.betatester README.developer)
-
-PATCHES=(
-       "${FILESDIR}/${PN}-4.4-fix-clang-warnings.patch" # 880961
-)
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-       use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-       default
-
-       # fix hardcoded libdir paths
-       sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
-               -e "s#fix}/include#fix}/include/hamlib#" \
-               hamlib.pc.in || die "sed failed"
-
-       # Correct install target to whatever INSTALLDIRS says and use vendor
-       # installdirs everywhere (bug #611550)
-       sed -i -e "s#install_site#install#"     \
-       -e 's#MAKEFILE="Hamlib-pl.mk"#MAKEFILE="Hamlib-pl.mk" 
INSTALLDIRS=vendor#' \
-       bindings/Makefile.am || die "sed failed patching for perl"
-
-       # make building of documentation compatible with autotools-utils
-       sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed"
-
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               --libdir=/usr/$(get_libdir)/hamlib \
-               --disable-static \
-               --with-xml-support \
-               $(use_with perl perl-binding) \
-               $(use_with python python-binding) \
-               $(use_with tcl tcl-binding)
-}
-
-src_compile() {
-       emake
-       use doc && emake html
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-
-       use python && python_optimize
-
-       use doc && HTML_DOCS=( doc/html/ )
-       einstalldocs
-
-       insinto /usr/$(get_libdir)/pkgconfig
-       doins hamlib.pc
-
-       echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
-       doenvd "${T}"/73hamlib
-
-       find "${ED}" -name '*.la' -delete || die
-}

Reply via email to