summaryrefslogtreecommitdiff
path: root/app-misc/when
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-04-28 20:21:43 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-04-28 20:21:43 +0100
commit40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 (patch)
tree758c221bad35c9288d0bd6df9c7dfc226728e52c /app-misc/when
parent8d5dbd847cbc704a6a06405856e94b461011afe3 (diff)
gentoo resync : 28.04.2021
Diffstat (limited to 'app-misc/when')
-rw-r--r--app-misc/when/Manifest2
-rw-r--r--app-misc/when/when-1.1.37.ebuild41
2 files changed, 0 insertions, 43 deletions
diff --git a/app-misc/when/Manifest b/app-misc/when/Manifest
index 81acde86a6a7..a1c48385a937 100644
--- a/app-misc/when/Manifest
+++ b/app-misc/when/Manifest
@@ -1,5 +1,3 @@
-DIST when-1.1.37.tar.gz 51020 BLAKE2B 242d7833c91279bc7a73effc108a0f7d5edad9838006d8ff632c46215b7cd2a2187660075e2525a352a458a494abc648a9518945cdf18e2e7d58261e428efd8f SHA512 b1f0cb9cb797a5a32263ef2851498dfbf6a769d3e708b79ca1c5b37c7c877124194dd9b5ae78bfafebc0e73e82f306b3ae734a5ef7140fe3bf0e6b2cfcc4bb18
DIST when-1.1.40.tar.gz 55306 BLAKE2B 3d4bdc962ccff64b09f5dda7a2c7be1daa0fd5fed2039f784ea6279e9aac495823159098f6a05c281de40d7964cc244a76c6b3bda1c4227748c04c98effac54d SHA512 0d70f2c9c4d44bbd922dc0d6b1a4e1eb90561a81add3ad4f1e1fc467a6331ca856d66725361d4e5ea3f1ce9ea1ed59d91ad18178e022b029c04c0c15747ecbcd
-EBUILD when-1.1.37.ebuild 883 BLAKE2B 6c9dfcb07bbb0952a21d2394af310032d98069cbfcce5467ea85c80b76114673d49b2aab91b399e029151ed22676bbcc8ab980cd8030ebef7ce117f0305b26dc SHA512 904b9f973b8db0fbd57f09e9a1620e8b0056ddb2e2be5674ef8d8045c8470b30290d2858bce9e44c15fe194f0767ffe0ec5b75e73bbb1f0ee42d2b0231751bcb
EBUILD when-1.1.40.ebuild 900 BLAKE2B ec3e9967163ac70897ae0b8a96dda7f379ee694cdc400caa70b3fa31fadc1ddf3adf9466df9834a1fcf1d0e1199a9bb25cbfe18759f0f89ff14c8b68c73445e2 SHA512 5d799b94f8751c4030caf276386f856325d04ea9e15c688a756fa3a72f9a320c1d6975700bd7081621ea67bbbcb151ff60ea9d779295757ced70da0069e4ea76
MISC metadata.xml 296 BLAKE2B a32736982613d5d7d4c99169fc5bc6af3607a89fef7351aee4230615611df20107c0ab865192d7c5bdc7ad84e41887a4ce34c8eb9c3a4228568fdfa8d4f92050 SHA512 8a2af01ba19649adce33f89067295923c603df7c8a14eb1563e4024ab0a41d55a885d95c020d263d6a8ad5e9e59d9c00ab79a809f79fc9f6d6724f1671807783
diff --git a/app-misc/when/when-1.1.37.ebuild b/app-misc/when/when-1.1.37.ebuild
deleted file mode 100644
index 251c08dade9a..000000000000
--- a/app-misc/when/when-1.1.37.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Minimalistic personal calendar program"
-HOMEPAGE="http://www.lightandmatter.com/when/when.html"
-SRC_URI="http://www.lightandmatter.com/when/when.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-DEPEND="dev-lang/perl"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/when_dist"
-
-DOCS=( README )
-
-src_prepare() {
- default
-
- # Fix path for tests
- sed -i 's,^ when, ./when,' Makefile || die 'sed failed'
-}
-
-src_compile() { :; }
-
-src_test() {
- # The when command requires these files, or attempts to run setup function.
- mkdir "${HOME}"/.when || die 'mkdir failed'
- touch "${HOME}"/.when/{calendar,preferences} || die 'touch failed'
- emake test
-}
-
-src_install() {
- dobin "${PN}"
- doman "${PN}.1"
- einstalldocs
-}