sci-mathematics/factmsieve: remove last-rited pkg
authorMikle Kolyada <zlogene@gentoo.org>
Sun, 12 Jan 2020 17:38:55 +0000 (20:38 +0300)
committerMikle Kolyada <zlogene@gentoo.org>
Sun, 12 Jan 2020 17:38:55 +0000 (20:38 +0300)
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
sci-mathematics/factmsieve/Manifest [deleted file]
sci-mathematics/factmsieve/factmsieve-76-r1.ebuild [deleted file]
sci-mathematics/factmsieve/files/factmsieve-76.patch [deleted file]
sci-mathematics/factmsieve/metadata.xml [deleted file]

diff --git a/sci-mathematics/factmsieve/Manifest b/sci-mathematics/factmsieve/Manifest
deleted file mode 100644 (file)
index 4100ac3..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST factmsieve.76.zip 19563 BLAKE2B 466378c331f47fd302768b0902a1753e512bbebda0582916fb720045dea044873ea36849de11acc6016b6013aaa20634c84d8e987af3c6fa96358b54e47dc681 SHA512 b07b0676a635ff746b1edfaf064d27388df8f9c5c2fe1bd1e80d4c839c6e518e3a0b39a06b76f3d59c9fa3f4cc99df0831ba6309a2a7d2eb779b952a29996431
diff --git a/sci-mathematics/factmsieve/factmsieve-76-r1.ebuild b/sci-mathematics/factmsieve/factmsieve-76-r1.ebuild
deleted file mode 100644 (file)
index b8e6074..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-DESCRIPTION="Convenient factorization helper script using msieve and ggnfs"
-HOMEPAGE="http://gladman.plushost.co.uk/oldsite/computing/factoring.php"
-SRC_URI="http://gladman.plushost.co.uk/oldsite/computing/${PN}.${PV}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-       sci-mathematics/msieve
-       sci-mathematics/ggnfs"
-DEPEND=""
-
-S="${WORKDIR}"
-PATCHES=( "${FILESDIR}/${P}.patch" )
-
-src_install() {
-       python_fix_shebang ${PN}.py
-       dobin ${PN}.py
-}
diff --git a/sci-mathematics/factmsieve/files/factmsieve-76.patch b/sci-mathematics/factmsieve/files/factmsieve-76.patch
deleted file mode 100644 (file)
index eaf50ef..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
---- a/factmsieve.py
-+++ b/factmsieve.py
-@@ -1,3 +1,4 @@
-+#!/usr/bin/env python
- # factmsieve.py - A Python driver for GGNFS and MSIEVE
- #
- # Copyright (c) 2010, Brian Gladman
-@@ -56,9 +57,12 @@
- import time, subprocess, gzip, glob, math, tempfile, datetime
- import atexit, threading, collections, multiprocessing, platform
-+# need to save pwd
-+CUR_DIR=os.path.realpath(os.curdir)
-+
- # Set binary directory paths
--GGNFS_PATH = '../../bin/x64/Release/'
--MSIEVE_PATH = '../../../msieve/build.vc10/x64/Release/'
-+GGNFS_PATH = '/usr/bin/'
-+MSIEVE_PATH = '/usr/bin/'
- # Set the number of CPU cores and threads
- NUM_CORES = 4
-@@ -69,7 +73,7 @@
- # number of linear algebra threads to launch
- LA_THREADS = NUM_CORES * THREADS_PER_CORE
--USE_CUDA = True
-+USE_CUDA = False
- GPU_NUM = 0
- MSIEVE_POLY_TIME_LIMIT = 0
-@@ -103,8 +107,8 @@
- # default parameter files
--DEFAULT_PAR_FILE = GGNFS_PATH + 'def-par.txt'
--DEFAULT_POLSEL_PAR_FILE = GGNFS_PATH + 'def-nm-params.txt'
-+DEFAULT_PAR_FILE = '/usr/share/doc/ggnfs/def-par.txt'
-+DEFAULT_POLSEL_PAR_FILE = '/usr/share/doc/ggnfs/def-nm-params.txt'
- # temporary files
-@@ -258,7 +262,8 @@
- # write string to log(s):
- def write_string_to_log(s):
--  with open(LOGNAME, 'a') as out_f:
-+  # XXX hax
-+  with open(CUR_DIR+'/'+LOGNAME, 'a') as out_f:
-     print(date_time_string() + s, file = out_f)
- def output(s, console = True, log = True):
diff --git a/sci-mathematics/factmsieve/metadata.xml b/sci-mathematics/factmsieve/metadata.xml
deleted file mode 100644 (file)
index 40aa45d..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-       <maintainer type="person">
-               <email>patrick@gentoo.org</email>
-               <name>Patrick Lauer</name>
-       </maintainer>
-</pkgmetadata>