commit: 330a6218ffa7fd84c84e3ae5199168530df5e181
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 18 16:22:35 2018 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sun Mar 18 16:22:35 2018 +0000
URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=330a6218
dev-lisp/rsm-rsa: Drops package
.../1.3_p20040330-gentoo-fix-defconstant.patch | 41 ---------------------
dev-lisp/rsm-rsa/rsm-rsa-1.3_p20040330.ebuild | 42 ----------------------
2 files changed, 83 deletions(-)
diff --git a/dev-lisp/rsm-rsa/files/1.3_p20040330-gentoo-fix-defconstant.patch
b/dev-lisp/rsm-rsa/files/1.3_p20040330-gentoo-fix-defconstant.patch
deleted file mode 100644
index 275442e6..00000000
--- a/dev-lisp/rsm-rsa/files/1.3_p20040330-gentoo-fix-defconstant.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-diff -Naur cl-rsm-rsa.orig/rsa.lisp cl-rsm-rsa/rsa.lisp
---- cl-rsm-rsa.orig/rsa.lisp 2003-10-22 01:08:40.000000000 +0200
-+++ cl-rsm-rsa/rsa.lisp 2008-12-16 01:58:12.000000000 +0100
-@@ -22,14 +22,17 @@
- (defconstant +alphabet-size+ 97
- "The number of characters of the alphabet.")
-
--(defconstant +digits+ "0123456789"
-- "All the digits.")
--
--(defconstant +pos-digits+ "123456789"
-- "All digits except 0.")
--
--(defconstant +odd-digits+ "13579"
-- "All odd digits.")
-+(alexandria:define-constant +digits+ "0123456789"
-+ :test #'string=
-+ :documentation "All the digits.")
-+
-+(alexandria:define-constant +pos-digits+ "123456789"
-+ :test #'string=
-+ :documentation "All digits except 0.")
-+
-+(alexandria:define-constant +odd-digits+ "13579"
-+ :test #'string=
-+ :documentation "All odd digits.")
-
- (defvar *name-key-hash* (make-hash-table :test #'equal)
- "Associates a name with an rsa-keys structure.")
-diff -Naur cl-rsm-rsa.orig/rsm-rsa.asd cl-rsm-rsa/rsm-rsa.asd
---- cl-rsm-rsa.orig/rsm-rsa.asd 2003-10-22 01:08:40.000000000 +0200
-+++ cl-rsm-rsa/rsm-rsa.asd 2008-12-16 01:56:49.000000000 +0100
-@@ -25,7 +25,7 @@
- :licence "BSD-style"
- :description "RSA encryption utilities."
-
-- :depends-on (rsm-mod)
-+ :depends-on (rsm-mod alexandria)
-
- :components
- ((:file "package")
diff --git a/dev-lisp/rsm-rsa/rsm-rsa-1.3_p20040330.ebuild
b/dev-lisp/rsm-rsa/rsm-rsa-1.3_p20040330.ebuild
deleted file mode 100644
index 9ad23985..00000000
--- a/dev-lisp/rsm-rsa/rsm-rsa-1.3_p20040330.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit common-lisp-3
-
-MY_PV=${PV:0:3}
-CVS_PV=${PV:5:4}.${PV:9:2}.${PV:11}
-FULL_PV=${MY_PV}+cvs.${CVS_PV}
-MY_P=cl-${PN}_${FULL_PV}
-
-DESCRIPTION="McIntire's Common Lisp RSA Library"
-HOMEPAGE="http://packages.debian.org/unstable/devel/cl-rsm-rsa"
-SRC_URI="mirror://debian/pool/main/c/cl-${PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-RDEPEND="!dev-lisp/cl-${PN}
- dev-lisp/rsm-mod
- dev-lisp/rsm-string
- dev-lisp/cl-plus"
-
-S="${WORKDIR}"/cl-${PN}
-
-src_unpack() {
- unpack ${A}
-}
-
-src_prepare() {
- eapply "${FILESDIR}"/${PV}-gentoo-fix-defconstant.patch
- eapply_user
-}
-
-src_install() {
- common-lisp-install-sources *.lisp
- common-lisp-install-asdf
- dohtml ${PN}.html
-}