Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-mathematics/metamath/, sci-mathematics/metamath/files/
Date: Fri, 26 Nov 2021 09:45:42
Message-Id: 1637919919.1977e3f1b9481913970d3f59e9aebdacdf6aefda.xgqt@gentoo
1 commit: 1977e3f1b9481913970d3f59e9aebdacdf6aefda
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 09:45:19 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 09:45:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1977e3f1
7
8 sci-mathematics: moved metamath to ::gentoo
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 sci-mathematics/metamath/Manifest | 1 -
13 .../metamath/files/dont_force_optimize.patch | 16 -------------
14 sci-mathematics/metamath/metadata.xml | 18 --------------
15 sci-mathematics/metamath/metamath-0.198.ebuild | 28 ----------------------
16 4 files changed, 63 deletions(-)
17
18 diff --git a/sci-mathematics/metamath/Manifest b/sci-mathematics/metamath/Manifest
19 deleted file mode 100644
20 index 32df01b83..000000000
21 --- a/sci-mathematics/metamath/Manifest
22 +++ /dev/null
23 @@ -1 +0,0 @@
24 -DIST metamath-0.198.tar.gz 468593 BLAKE2B 030bc61f5d8f0c02d473fcd2802b3411c96eff04f7144b966f1f098aec3a65218137228f4d97ba96aaa190386802db00865b9e997b399ce06b19d421c335f2bf SHA512 607c0a8208b9414b36bf82a1fcb0b826e9bfa4cbcec0337be58f3e890b91473649b115403227f440b9774e5653434ffdf09f0ab82c2f5af59eac0d11b9d09942
25
26 diff --git a/sci-mathematics/metamath/files/dont_force_optimize.patch b/sci-mathematics/metamath/files/dont_force_optimize.patch
27 deleted file mode 100644
28 index 548b0042e..000000000
29 --- a/sci-mathematics/metamath/files/dont_force_optimize.patch
30 +++ /dev/null
31 @@ -1,16 +0,0 @@
32 -index 263d3d8..68a8fea 100644
33 ---- a/configure.ac
34 -+++ b/configure.ac
35 -@@ -45,11 +45,9 @@ int f() {
36 -
37 - # Try to optimize.
38 - AC_MSG_CHECKING([[for optimization flags]])
39 --new_CFLAGS="-O3 -funroll-loops -finline-functions -fomit-frame-pointer"
40 -+new_CFLAGS=""
41 - saved_CFLAGS="$CFLAGS"
42 - CFLAGS="$CFLAGS $new_CFLAGS"
43 --# Remove any existing "-O2", or it will override what we're doing.
44 --CFLAGS=$( printf "%s" "$CFLAGS" | sed -e 's/ -O2/ /' )
45 - AC_LINK_IFELSE(
46 - [AC_LANG_PROGRAM([[
47 - #include <stdio.h>
48
49 diff --git a/sci-mathematics/metamath/metadata.xml b/sci-mathematics/metamath/metadata.xml
50 deleted file mode 100644
51 index 853d8b8e7..000000000
52 --- a/sci-mathematics/metamath/metadata.xml
53 +++ /dev/null
54 @@ -1,18 +0,0 @@
55 -<?xml version="1.0" encoding="UTF-8"?>
56 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
57 -
58 -<pkgmetadata>
59 - <maintainer type="person">
60 - <email>xgqt@××××××.net</email>
61 - <name>Maciej Barć</name>
62 - </maintainer>
63 - <longdescription lang="en">
64 - Metamath is a tiny language that can express theorems in abstract
65 - mathematics, accompanied by proofs that can be verified by a computer
66 - program.
67 - </longdescription>
68 - <upstream>
69 - <bugs-to>https://github.com/metamath/metamath-exe/issues</bugs-to>
70 - <remote-id type="github">metamath/metamath-exe</remote-id>
71 - </upstream>
72 -</pkgmetadata>
73
74 diff --git a/sci-mathematics/metamath/metamath-0.198.ebuild b/sci-mathematics/metamath/metamath-0.198.ebuild
75 deleted file mode 100644
76 index 5d86657e0..000000000
77 --- a/sci-mathematics/metamath/metamath-0.198.ebuild
78 +++ /dev/null
79 @@ -1,28 +0,0 @@
80 -# Copyright 1999-2021 Gentoo Authors
81 -# Distributed under the terms of the GNU General Public License v2
82 -
83 -EAPI=8
84 -
85 -inherit autotools
86 -
87 -DESCRIPTION="Proof verifier based on a minimalistic formalism"
88 -HOMEPAGE="http://us.metamath.org/"
89 -
90 -if [[ "${PV}" == *9999* ]]; then
91 - inherit git-r3
92 - EGIT_REPO_URI="https://github.com/${PN}/${PN}-exe.git"
93 -else
94 - SRC_URI="https://github.com/${PN}/${PN}-exe/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
95 - KEYWORDS="~amd64"
96 - S="${WORKDIR}/${PN}-exe-${PV}"
97 -fi
98 -
99 -LICENSE="GPL-2"
100 -SLOT="0"
101 -
102 -PATCHES=( "${FILESDIR}/dont_force_optimize.patch" )
103 -
104 -src_prepare() {
105 - default
106 - eautoreconf
107 -}