commit:     f8cedace6a6c08e6210970e2cf204da145d80273
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  4 08:53:11 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sun Dec  4 08:55:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8cedace

net-misc/putty: drop 0.77-r3

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 net-misc/putty/Manifest                        |   1 -
 net-misc/putty/files/putty-0.77-nogssapi.patch |  18 -----
 net-misc/putty/putty-0.77-r3.ebuild            | 101 -------------------------
 3 files changed, 120 deletions(-)

diff --git a/net-misc/putty/Manifest b/net-misc/putty/Manifest
index d83a3d0407d0..df4e3c0e67ea 100644
--- a/net-misc/putty/Manifest
+++ b/net-misc/putty/Manifest
@@ -1,3 +1,2 @@
-DIST putty-0.77.tar.gz 2619481 BLAKE2B 
83b0838a3923c93f95020297d6402872605609da81d33f864d72074d1e5cae2fcf2710a038aef1de56077de2e296f4c5e573af077f4b55e433563f680cd9cc4b
 SHA512 
35eb1e3f98a07611365bedc492c69a5475ce9b3d920ecebc78c76813505684c16cfcbfbb2306c1106fb5a9b72ca3dd52cbd39b9e9805c6689c9a9464910c0e7d
 DIST putty-0.78.tar.gz 2811628 BLAKE2B 
544fa7d3f7acfeb76cdb19e5ff3b60c81e4a1101ba16fab107d1f403745f792ab562d438d64a8a0a429b31ec426806c296a7b4e03916f8f32d2c227a54c32c71
 SHA512 
d7a3e2eabd5f1f65fc0f3f1ee0789c30fbe891b57f63ddeac0b92befcb6aecd4a748f04a21c76ee42d992deb77c2e1a0454a71cc620ef26fbf23af660bd84bb5
 DIST putty-icons.tar.bz2 4878 BLAKE2B 
589f1bace82e3fd202b70bd35661d2ec4ef383363f8ae6716d4a6828bd822ef624b0acde39354d3d837e2d2bb49a34dbb89e031c64c520cbc675cad79813acff
 SHA512 
4e419a71e26770e159221f6b516e7210d29272917b4b9a9e0b67c72e73508b97278e56c82111b02e106c5d513c2561fec6da372b4b18246f29372ae618ff5f71

diff --git a/net-misc/putty/files/putty-0.77-nogssapi.patch 
b/net-misc/putty/files/putty-0.77-nogssapi.patch
deleted file mode 100644
index 84d36e1849e0..000000000000
--- a/net-misc/putty/files/putty-0.77-nogssapi.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Define NO_GSSAPI when -DPUTTY_GSSAPI=OFF
-
-Previously it would only be defined if -DPUTTY_GSSAPI=DYNAMIC and libdl is
-not found on the system. Setting -DPUTTY_GSSAPI=OFF on systems with glibc
-2.33 and earlier causes a build failure, because libdl is not linked in.
-
-Bug: https://bugs.gentoo.org/873355
---- a/cmake/platforms/unix.cmake
-+++ b/cmake/platforms/unix.cmake
-@@ -105,6 +105,8 @@
-       "Could not find libdl -- cannot provide dynamic GSSAPI support")
-     set(NO_GSSAPI ON)
-   endif()
-+else()
-+  set(NO_GSSAPI ON)
- endif()
- 
- if(PUTTY_GSSAPI STREQUAL STATIC)

diff --git a/net-misc/putty/putty-0.77-r3.ebuild 
b/net-misc/putty/putty-0.77-r3.ebuild
deleted file mode 100644
index 737dcfe68966..000000000000
--- a/net-misc/putty/putty-0.77-r3.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
-inherit cmake desktop xdg-utils
-
-DESCRIPTION="A Free Telnet/SSH Client"
-HOMEPAGE="https://www.chiark.greenend.org.uk/~sgtatham/putty/";
-SRC_URI="https://dev.gentoo.org/~matthew/distfiles/${PN}-icons.tar.bz2";
-if [[ ${PV} == *9999 ]] ; then
-       inherit git-r3
-       EGIT_REPO_URI="https://git.tartarus.org/simon/putty.git";
-else
-       SRC_URI+=" https://the.earth.li/~sgtatham/${PN}/${PV}/${P}.tar.gz";
-       KEYWORDS="~alpha amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
-fi
-LICENSE="MIT"
-
-SLOT="0"
-IUSE="debug doc +gtk gtk2 gssapi"
-
-RDEPEND="
-       !net-misc/pssh
-       gtk? (
-               dev-libs/glib:2
-               x11-libs/gdk-pixbuf
-               x11-libs/libX11
-               x11-libs/pango
-               gtk2? ( x11-libs/gtk+:2 )
-               !gtk2? ( x11-libs/gtk+:3[X] )
-       )
-       gssapi? ( virtual/krb5 )
-"
-DEPEND="
-       ${RDEPEND}
-"
-BDEPEND="
-       dev-lang/perl
-       virtual/pkgconfig
-       doc? ( app-doc/halibut )
-"
-
-REQUIRED_USE="
-       gtk2? ( gtk )
-"
-
-PATCHES=(
-       # Bug #873355
-       "${FILESDIR}"/putty-0.77-nogssapi.patch
-)
-
-src_unpack() {
-       [[ ${PV} == *9999 ]] && git-r3_src_unpack
-       default
-}
-
-src_configure() {
-       cd "${S}"/unix || die
-       local mycmakeargs=(
-               -DPUTTY_DEBUG="$(usex debug)"
-               -DPUTTY_GSSAPI="$(usex gssapi DYNAMIC OFF)"
-               -DPUTTY_GTK_VERSION=$(usex gtk $(usex gtk2 2 3 ) '')
-               -DPUTTY_IPV6=yes
-       )
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile all doc
-}
-
-src_install() {
-       cmake_src_install
-
-       doman "${BUILD_DIR}"/doc/*.1
-
-       if use doc ; then
-               docinto html
-               dodoc "${BUILD_DIR}"/doc/html/*.html
-       fi
-
-       if use gtk ; then
-               local i
-               for i in 16 22 24 32 48 64 128 256; do
-                       newicon -s ${i} \
-                               "${WORKDIR}"/${PN}-icons/${PN}-${i}.png \
-                               ${PN}.png
-               done
-
-               # install desktop file provided by Gustav Schaffter in #49577
-               make_desktop_entry ${PN} PuTTY ${PN} Network
-       fi
-}
-
-pkg_postinst() {
-       use gtk && xdg_icon_cache_update
-}
-
-pkg_postrm() {
-       use gtk && xdg_icon_cache_update
-}

Reply via email to