summaryrefslogtreecommitdiff
path: root/sys-auth
diff options
context:
space:
mode:
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/Manifest.gzbin9419 -> 9259 bytes
-rw-r--r--sys-auth/pam_ssh/Manifest6
-rw-r--r--sys-auth/pam_ssh/files/pam_ssh-2.1-dot-ssh-check.patch22
-rw-r--r--sys-auth/pam_ssh/files/pam_ssh-gcc10-fix.patch11
-rw-r--r--sys-auth/pam_ssh/files/pam_symbols.ver4
-rw-r--r--sys-auth/pam_ssh/metadata.xml8
-rw-r--r--sys-auth/pam_ssh/pam_ssh-2.3-r1.ebuild75
7 files changed, 0 insertions, 126 deletions
diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz
index 2ba613036e8f..617201322af7 100644
--- a/sys-auth/Manifest.gz
+++ b/sys-auth/Manifest.gz
Binary files differ
diff --git a/sys-auth/pam_ssh/Manifest b/sys-auth/pam_ssh/Manifest
deleted file mode 100644
index efdfdd757991..000000000000
--- a/sys-auth/pam_ssh/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-AUX pam_ssh-2.1-dot-ssh-check.patch 701 BLAKE2B 64b7ed30c85e67125ff74f1507454510bab083a9eff458096645bc86e7eba50c4ffcc0ae31e9880b03f5b93834d900883545fd9961289a398b52d4df67db1a54 SHA512 96fd0d648115f5004a5a8b67f23240abdb2a58e46ba10009030bb1162561c1554fdf5c14c56605d7e1758dd1c2560a1b7647532a4c69c75df85e141df394d794
-AUX pam_ssh-gcc10-fix.patch 218 BLAKE2B ce70db54ab4267d71ec5b39770ae7b0df601ef2a24f721c19648b76a7915aab8e655906458295647cd7b31736235fe77c9a6482920410d393277914d3711cba6 SHA512 064036f99f88c142d585b0825bf6c20d10d40fb1ca06ad09be51804fd49cb2dfcbee7633a9ae5237e54b0c9aa20b2ef687fea2fa883e3022b352c78c25fc4d3f
-AUX pam_symbols.ver 35 BLAKE2B 7a18277fef3362b21eb99b602781493de6818e93d86a0553fc97e67b780644b38a5233757a0b9b728d9a1cbc26513078bf99177809b6b5f68af273352b377819 SHA512 40e2d23783153bdfefc9ec7d9caf818e1d157bfa4f3074434e034aae47e3aa7d08b04dedbe06ef60ed2a93729f0e04aa09cf8e9f6929dfb15e4ae49c75c9d0d9
-DIST pam_ssh-2.3.tar.xz 380396 BLAKE2B e228e30c6f353f631c0a1c41e82e31e7a8c573b04ab1cad4038a245b500666b42c0efa9f686d28f2386688596de761085afb1318b94fef5541f8c0ffc1e18b25 SHA512 e3ddcf851ffd8f6fb831e2dee7269c1b89283ae2f8f6aa3487bf7b1bc71d26ac9bcbd2a01c5a67a983b980bbb5151e991402940f4752741286d057843c817895
-EBUILD pam_ssh-2.3-r1.ebuild 1891 BLAKE2B a6af2c4e1af661f8b4dff892912c49c9950072f4a1f7e369fa9b0bc3071a0569b25504e40808b2199324e29c10451650fa4c35f5c2a3c3a3aea14014e0776de4 SHA512 2f8e3e2e12c55df9d01134e30143d8148967a96735d4040a2dac1e0f39d75065bd7899bd546e1a651c68928560dbd8de30cdc9151f3487a40f5e00b510d49db4
-MISC metadata.xml 245 BLAKE2B a4081752e8a1bc3e5fea1a531f0da0fed1b9f8ad7c7291752257ba6a6859aa922df628db17a44b1e6e1ec4dbc22d9c6820445448037ef1746570756060db4163 SHA512 e334b038287072858c75345b41af065c564c27feca2633af0b89c186e313d5d988452d44706aa7f769eeea05a6d17466fa1bbd77c64be753b295382b33ac3fc4
diff --git a/sys-auth/pam_ssh/files/pam_ssh-2.1-dot-ssh-check.patch b/sys-auth/pam_ssh/files/pam_ssh-2.1-dot-ssh-check.patch
deleted file mode 100644
index a0737b377bea..000000000000
--- a/sys-auth/pam_ssh/files/pam_ssh-2.1-dot-ssh-check.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://bugs.gentoo.org/503424#c5
-https://sourceforge.net/p/pam-ssh/bugs/16/
-
---- a/pam_ssh.c
-+++ b/pam_ssh.c
-@@ -867,6 +867,7 @@
- int attempt; /* No. of attempt to contact agent */
- const char *user; /* username */
- struct options options; /* PAM options */
-+ struct stat sb; /* to check for existing .ssh */
-
- #if HAVE_PAM_STRUCT_OPTIONS || !HAVE_PAM_STD_OPTION
- memset(&options, 0, sizeof options);
-@@ -916,7 +917,7 @@
- openpam_restore_cred(pamh);
- return PAM_SERVICE_ERR;
- }
-- if ((access(dotdir,F_OK)) == -1) {
-+ if (stat(dotdir, &sb) == -1) {
- pam_ssh_log(LOG_DEBUG, "inexistent configuration directory");
- free(dotdir);
- openpam_restore_cred(pamh);
diff --git a/sys-auth/pam_ssh/files/pam_ssh-gcc10-fix.patch b/sys-auth/pam_ssh/files/pam_ssh-gcc10-fix.patch
deleted file mode 100644
index 9871b4297c7b..000000000000
--- a/sys-auth/pam_ssh/files/pam_ssh-gcc10-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/ge25519.h
-+++ b/ge25519.h
-@@ -28,7 +28,7 @@
- fe25519 t;
- } ge25519;
-
--const ge25519 ge25519_base;
-+extern const ge25519 ge25519_base;
-
- int ge25519_unpackneg_vartime(ge25519 *r, const unsigned char p[32]);
-
diff --git a/sys-auth/pam_ssh/files/pam_symbols.ver b/sys-auth/pam_ssh/files/pam_symbols.ver
deleted file mode 100644
index dbc677b77a2d..000000000000
--- a/sys-auth/pam_ssh/files/pam_symbols.ver
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- global: pam_sm_*;
- local: *;
-};
diff --git a/sys-auth/pam_ssh/metadata.xml b/sys-auth/pam_ssh/metadata.xml
deleted file mode 100644
index f57c2717374a..000000000000
--- a/sys-auth/pam_ssh/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="sourceforge">pam-ssh</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-auth/pam_ssh/pam_ssh-2.3-r1.ebuild b/sys-auth/pam_ssh/pam_ssh-2.3-r1.ebuild
deleted file mode 100644
index 45da1e18f5e5..000000000000
--- a/sys-auth/pam_ssh/pam_ssh-2.3-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit pam flag-o-matic readme.gentoo-r1
-
-DESCRIPTION="Uses ssh-agent to provide single sign-on"
-HOMEPAGE="http://pam-ssh.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/pam-ssh/${P}.tar.xz"
-
-LICENSE="BSD-2 BSD ISC"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
-
-# Only supports OpenSSH via `ssh-agent` #282993
-DEPEND="sys-libs/pam
- dev-libs/openssl:0="
-
-RDEPEND="${DEPEND}
- virtual/openssh"
-
-PATCHES=(
- # 503424#c5
- "${FILESDIR}"/${PN}-2.1-dot-ssh-check.patch
- "${FILESDIR}"/${PN}-gcc10-fix.patch
-)
-
-src_configure() {
- # hide all the otherwise-exported symbols that may clash with
- # other software loading the PAM modules (see bug #274924 as an
- # example).
- append-ldflags -Wl,--version-script="${FILESDIR}"/pam_symbols.ver
-
- # Set the cache var so the configure script doesn't go probing hardcoded
- # file system paths and picking up the wrong thing.
- export ac_cv_openssldir=''
-
- # not needed now
- export ac_cv_exeext=no
-
- # Avoid cross-compiling funkiness and requiring openssh at build time.
- export PATH_SSH_AGENT="${EPREFIX}/usr/bin/ssh-agent"
-
- econf \
- "--with-pam-dir=$(getpam_mod_dir)"
-}
-
-src_install() {
- default
-
- # pam_ssh only builds plugins
- find "${D}" -name '*.la' -delete || die
-
- local DOC_CONTENTS="
- You can enable pam_ssh for system authentication by enabling
- the pam_ssh USE flag on sys-auth/pambase.
- "
- readme.gentoo_create_doc
-}
-
-pkg_preinst() {
- local i
- for i in "${REPLACING_VERSIONS}"; do
- if [[ ${i} == 1.* ]]; then #554150
- ewarn "Upstream pam_ssh has changed where ssh keys live. Only keys in your"
- ewarn "~/.ssh/login-keys.d/ will be accepted for authentication."
- return
- fi
- done
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}