public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2019-03-01 14:35 Patrice Clement
  0 siblings, 0 replies; 10+ messages in thread
From: Patrice Clement @ 2019-03-01 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     eeb2b87de2404dcb7220f810304ee1050d556ab2
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  1 14:34:46 2019 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Mar  1 14:35:30 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeb2b87d

app-misc/tdl: set VARTEXFONTS=${T}/fonts to prevent sandbox violations.

Also bump EAPI to version 6 whilst at it.

Closes: https://bugs.gentoo.org/652008
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-misc/tdl/tdl-1.5.2-r3.ebuild | 81 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 81 insertions(+)

diff --git a/app-misc/tdl/tdl-1.5.2-r3.ebuild b/app-misc/tdl/tdl-1.5.2-r3.ebuild
new file mode 100644
index 00000000000..5585cf30099
--- /dev/null
+++ b/app-misc/tdl/tdl-1.5.2-r3.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="Command line To Do List manager"
+HOMEPAGE="http://www.rc0.org.uk/tdl/"
+SRC_URI="
+	http://www.rpcurnow.force9.co.uk/tdl/${P}.tar.gz
+	https://dev.gentoo.org/~jlec/distfiles/${PN}-screenshot.png.tar"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc readline"
+
+RDEPEND="
+	sys-libs/ncurses:0=
+	sys-libs/readline:0="
+
+DEPEND="
+	${RDEPEND}
+	sys-apps/sed
+	sys-apps/texinfo
+	doc? ( virtual/texi2dvi )"
+
+PATCHES=(
+	"${FILESDIR}"/${PV}-ldflags.patch
+	"${FILESDIR}"/${P}-list.c.patch
+	"${FILESDIR}"/${P}-main.c.patch
+	"${FILESDIR}"/${P}-man.patch
+)
+
+DOCS=( README NEWS tdl.txt "${WORKDIR}"/screenshot.png tdl.html )
+
+src_prepare() {
+	default
+	tc-export CC
+}
+
+src_configure() {
+	local myconf=( --prefix=${EPREFIX}/usr )
+
+	if ! use readline; then
+		myconf+=( "${myconf} --without-readline" )
+		sed -i 's#\($(LIB_READLINE)\)#\1 -lncurses##g' "${S}"/Makefile.in || die
+	fi
+
+	sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure || die
+	"${S}"/configure "${myconf[@]}" || die "configure failed"
+}
+
+src_compile() {
+	export VARTEXFONTS="${T}/fonts"
+	emake all tdl.info tdl.html tdl.txt
+
+	if use doc; then
+		emake tdl.dvi tdl.ps tdl.pdf
+	fi
+}
+
+src_install() {
+	einstalldocs
+	doinfo tdl.info
+
+	dobin tdl
+	doman tdl.1
+
+	local i
+	for i in tdl{a,l,d,g}
+	do
+		dosym tdl /usr/bin/${i}
+		dosym tdl.1 /usr/share/man/man1/${i}.1
+	done
+
+	if use doc; then
+		dodoc tdl.dvi tdl.ps tdl.pdf
+	fi
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2019-06-04 14:45 Thomas Deutschmann
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Deutschmann @ 2019-06-04 14:45 UTC (permalink / raw
  To: gentoo-commits

commit:     9a85f76043809a2da0e073c7efcf8a30b79c8ef5
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  4 14:28:40 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Jun  4 14:44:18 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a85f760

app-misc/tdl: x86 stable (bug #683884)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 app-misc/tdl/tdl-1.5.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r3.ebuild b/app-misc/tdl/tdl-1.5.2-r3.ebuild
index 5585cf30099..bf296a8e67c 100644
--- a/app-misc/tdl/tdl-1.5.2-r3.ebuild
+++ b/app-misc/tdl/tdl-1.5.2-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="doc readline"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2019-06-04 20:54 Agostino Sarubbo
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2019-06-04 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     9cd3074fbc74bc668338b37357936aa3218ce5e9
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  4 20:53:23 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jun  4 20:53:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd3074f

app-misc/tdl: amd64 stable wrt bug #683884

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-misc/tdl/tdl-1.5.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r3.ebuild b/app-misc/tdl/tdl-1.5.2-r3.ebuild
index bf296a8e67c..28dca9d47c7 100644
--- a/app-misc/tdl/tdl-1.5.2-r3.ebuild
+++ b/app-misc/tdl/tdl-1.5.2-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="doc readline"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2019-11-13  1:37 Aaron Bauman
  0 siblings, 0 replies; 10+ messages in thread
From: Aaron Bauman @ 2019-11-13  1:37 UTC (permalink / raw
  To: gentoo-commits

commit:     62999d61fbeae3037c8ed104ecfe5eeeda394d31
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 13 01:32:01 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 01:32:01 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62999d61

app-misc/tdl: drop old EAPI

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 app-misc/tdl/tdl-1.5.2-r2.ebuild | 75 ----------------------------------------
 1 file changed, 75 deletions(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r2.ebuild b/app-misc/tdl/tdl-1.5.2-r2.ebuild
deleted file mode 100644
index 3b105616d7c..00000000000
--- a/app-misc/tdl/tdl-1.5.2-r2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Command line To Do List manager"
-HOMEPAGE="http://www.rc0.org.uk/tdl/"
-SRC_URI="
-	http://www.rpcurnow.force9.co.uk/tdl/${P}.tar.gz
-	https://dev.gentoo.org/~jlec/distfiles/${PN}-screenshot.png.tar"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc readline"
-
-RDEPEND="
-	sys-libs/ncurses
-	sys-libs/readline"
-DEPEND="${RDEPEND}
-	sys-apps/sed
-	sys-apps/texinfo
-	doc? ( virtual/texi2dvi )"
-
-src_prepare() {
-	epatch \
-		"${FILESDIR}"/${PV}-ldflags.patch \
-		"${FILESDIR}"/${P}-list.c.patch \
-		"${FILESDIR}"/${P}-main.c.patch \
-		"${FILESDIR}"/${P}-man.patch
-
-	tc-export CC
-}
-
-src_configure() {
-	local myconf="--prefix=${EPREFIX}/usr"
-
-	if ! use readline; then
-		myconf="${myconf} --without-readline"
-
-		sed -i 's#\($(LIB_READLINE)\)#\1 -lncurses##g' "${S}"/Makefile.in || die
-	fi
-	sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure || die
-
-	# XXX: do not replace with econf.
-	"${S}"/configure ${myconf} || die "configure failed, sorry!"
-}
-
-src_compile() {
-	emake all tdl.info tdl.html tdl.txt
-	use doc && emake tdl.dvi tdl.ps tdl.pdf
-}
-
-src_install() {
-	local i
-
-	dodoc README NEWS tdl.txt "${WORKDIR}"/screenshot.png
-	doinfo tdl.info
-	dohtml tdl.html
-
-	dobin tdl
-	doman tdl.1
-
-	for i in tdl{a,l,d,g}
-	do
-		dosym tdl /usr/bin/${i}
-		dosym tdl.1 /usr/share/man/man1/${i}.1
-	done
-
-	if use doc; then
-		dodoc tdl.dvi tdl.ps tdl.pdf
-	fi
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2023-11-21 17:31 Ulrich Müller
  0 siblings, 0 replies; 10+ messages in thread
From: Ulrich Müller @ 2023-11-21 17:31 UTC (permalink / raw
  To: gentoo-commits

commit:     3938c3a514ba47849c777089957f78d0dc583410
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Nov 19 09:50:20 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 17:31:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3938c3a5

app-misc/tdl: add github remote-id

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-misc/tdl/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-misc/tdl/metadata.xml b/app-misc/tdl/metadata.xml
index e5bb155ae783..776135cc6019 100644
--- a/app-misc/tdl/metadata.xml
+++ b/app-misc/tdl/metadata.xml
@@ -10,4 +10,7 @@
 		tasks that you have to do. It can organise tasks in a hierarchy, produce
 		weekly reports of completed tasks and so on.
 	</longdescription>
+	<upstream>
+		<remote-id type="github">rc0/tdl</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2023-11-21 17:31 Ulrich Müller
  0 siblings, 0 replies; 10+ messages in thread
From: Ulrich Müller @ 2023-11-21 17:31 UTC (permalink / raw
  To: gentoo-commits

commit:     ad6c1028d163d7025ce59f173bf684624bc05b4e
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Nov 19 09:48:27 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 17:31:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad6c1028

app-misc/tdl: EAPI8 bump, fix LICENSE, minor improvements

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-misc/tdl/Manifest            |  1 +
 app-misc/tdl/tdl-1.5.2-r4.ebuild | 80 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)

diff --git a/app-misc/tdl/Manifest b/app-misc/tdl/Manifest
index d46b62fcc4a3..51017ec91023 100644
--- a/app-misc/tdl/Manifest
+++ b/app-misc/tdl/Manifest
@@ -1,2 +1,3 @@
+DIST tdl-1.5.2.gh.tar.gz 66542 BLAKE2B 7e7017ee3937d8775907e907a1eb4ab34880013c85cddbdfcc9239e35bf788904f232e668345074966b5940ab518af91df842cf38a50517dcfdf9953b403cf33 SHA512 c00abe14a0a4e2d0bec83e4f5cf3c28749976d42f5a15d0f4065f928fae20d7bfdf4339dc4d863ab4d4006d307a8797fc12e20cf1ef5b9a71c5018ec98d4f732
 DIST tdl-1.5.2.tar.gz 66057 BLAKE2B cc2d5581126d995098b5dc3032c97213614acaea3b984a507a824da2ba4d3be9afff954722f29acf0b9bd26db42ada22d67fc9110496961c2cb3104d9b4b7ece SHA512 8c07a5b6a5434bb567a2d68b6e0215bbfa7be3f7176ae1042652ac18684289117230af25d8d161fcf1ba27d9b740fd3fcd43c3213467b533de64390686481fe0
 DIST tdl-screenshot.png.tar 20480 BLAKE2B ce9284501ba1550179e1c3da54399a802aae3c0fb23b9a1ea25a1adb0f5c0404fe7694a360435913bb91cc1977d71561050ec0fe4e1681db775cdc7ec5fa11b7 SHA512 caca9793626b320ded4c7f16425b98e4bfde9ab0ca3c1bea60ecc8aaa8db080ab6fc3c474aef4d56e394b6415ec1162671329912aa22452dbd5dc72b50c7c8f6

diff --git a/app-misc/tdl/tdl-1.5.2-r4.ebuild b/app-misc/tdl/tdl-1.5.2-r4.ebuild
new file mode 100644
index 000000000000..cfb61ffaa85e
--- /dev/null
+++ b/app-misc/tdl/tdl-1.5.2-r4.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo toolchain-funcs
+
+MY_PV="$(ver_rs 1- '_')"
+DESCRIPTION="Command line To Do List manager"
+HOMEPAGE="https://github.com/rc0/tdl"
+SRC_URI="https://github.com/rc0/tdl/archive/V${MY_PV}/V${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc readline"
+
+RDEPEND="
+	sys-libs/ncurses:0=
+	sys-libs/readline:0="
+
+DEPEND="
+	${RDEPEND}
+	sys-apps/texinfo
+	doc? ( virtual/texi2dvi )"
+
+PATCHES=(
+	"${FILESDIR}"/${PV}-ldflags.patch
+	"${FILESDIR}"/${P}-list.c.patch
+	"${FILESDIR}"/${P}-main.c.patch
+	"${FILESDIR}"/${P}-man.patch
+)
+
+DOCS=( README NEWS tdl.txt tdl.html )
+
+src_prepare() {
+	default
+	tc-export CC
+}
+
+src_configure() {
+	local myconf=( --prefix="${EPREFIX}"/usr )
+
+	if ! use readline; then
+		myconf+=( "${myconf} --without-readline" )
+		sed -i 's#\($(LIB_READLINE)\)#\1 -lncurses##g' "${S}"/Makefile.in || die
+	fi
+
+	sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure || die
+	edo "${S}"/configure "${myconf[@]}"
+}
+
+src_compile() {
+	export VARTEXFONTS="${T}/fonts"
+	emake all tdl.info tdl.html tdl.txt
+
+	if use doc; then
+		emake tdl.dvi tdl.ps tdl.pdf
+	fi
+}
+
+src_install() {
+	einstalldocs
+	doinfo tdl.info
+
+	dobin tdl
+	doman tdl.1
+
+	local i
+	for i in tdl{a,l,d,g}
+	do
+		dosym tdl /usr/bin/${i}
+		dosym tdl.1 /usr/share/man/man1/${i}.1
+	done
+
+	if use doc; then
+		dodoc tdl.dvi tdl.ps tdl.pdf
+	fi
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2023-12-23 15:47 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2023-12-23 15:47 UTC (permalink / raw
  To: gentoo-commits

commit:     8ccf47a234ecfee17f7fc3dbe672db8289cad6fc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 15:47:27 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 15:47:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ccf47a2

app-misc/tdl: Stabilize 1.5.2-r4 amd64, #920574

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/tdl/tdl-1.5.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r4.ebuild b/app-misc/tdl/tdl-1.5.2-r4.ebuild
index cfb61ffaa85e..b0e15b9a3ff3 100644
--- a/app-misc/tdl/tdl-1.5.2-r4.ebuild
+++ b/app-misc/tdl/tdl-1.5.2-r4.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="doc readline"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2023-12-23 15:54 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2023-12-23 15:54 UTC (permalink / raw
  To: gentoo-commits

commit:     a9f5732bd1f25fb70cba9780b06e4aaf71eac0dd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 15:54:15 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 15:54:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f5732b

app-misc/tdl: Stabilize 1.5.2-r4 ppc, #920574

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/tdl/tdl-1.5.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r4.ebuild b/app-misc/tdl/tdl-1.5.2-r4.ebuild
index b0e15b9a3ff3..f0f5d2ddd8c1 100644
--- a/app-misc/tdl/tdl-1.5.2-r4.ebuild
+++ b/app-misc/tdl/tdl-1.5.2-r4.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="doc readline"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2023-12-23 16:41 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2023-12-23 16:41 UTC (permalink / raw
  To: gentoo-commits

commit:     000934f1a6c759ce6fa5b0a9793bd929ed9d8f0d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 16:40:58 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 16:40:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=000934f1

app-misc/tdl: Stabilize 1.5.2-r4 x86, #920574

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/tdl/tdl-1.5.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r4.ebuild b/app-misc/tdl/tdl-1.5.2-r4.ebuild
index f0f5d2ddd8c1..e1592498ee84 100644
--- a/app-misc/tdl/tdl-1.5.2-r4.ebuild
+++ b/app-misc/tdl/tdl-1.5.2-r4.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc readline"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/
@ 2024-04-11 14:53 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2024-04-11 14:53 UTC (permalink / raw
  To: gentoo-commits

commit:     f8e9405f76c2b01094716effd73df96220b5b01c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 14:49:18 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 14:53:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8e9405f

app-misc/tdl: drop 1.5.2-r3, EAPI6--

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/tdl/Manifest            |  2 -
 app-misc/tdl/tdl-1.5.2-r3.ebuild | 80 ----------------------------------------
 2 files changed, 82 deletions(-)

diff --git a/app-misc/tdl/Manifest b/app-misc/tdl/Manifest
index 51017ec91023..ce65d5af2603 100644
--- a/app-misc/tdl/Manifest
+++ b/app-misc/tdl/Manifest
@@ -1,3 +1 @@
 DIST tdl-1.5.2.gh.tar.gz 66542 BLAKE2B 7e7017ee3937d8775907e907a1eb4ab34880013c85cddbdfcc9239e35bf788904f232e668345074966b5940ab518af91df842cf38a50517dcfdf9953b403cf33 SHA512 c00abe14a0a4e2d0bec83e4f5cf3c28749976d42f5a15d0f4065f928fae20d7bfdf4339dc4d863ab4d4006d307a8797fc12e20cf1ef5b9a71c5018ec98d4f732
-DIST tdl-1.5.2.tar.gz 66057 BLAKE2B cc2d5581126d995098b5dc3032c97213614acaea3b984a507a824da2ba4d3be9afff954722f29acf0b9bd26db42ada22d67fc9110496961c2cb3104d9b4b7ece SHA512 8c07a5b6a5434bb567a2d68b6e0215bbfa7be3f7176ae1042652ac18684289117230af25d8d161fcf1ba27d9b740fd3fcd43c3213467b533de64390686481fe0
-DIST tdl-screenshot.png.tar 20480 BLAKE2B ce9284501ba1550179e1c3da54399a802aae3c0fb23b9a1ea25a1adb0f5c0404fe7694a360435913bb91cc1977d71561050ec0fe4e1681db775cdc7ec5fa11b7 SHA512 caca9793626b320ded4c7f16425b98e4bfde9ab0ca3c1bea60ecc8aaa8db080ab6fc3c474aef4d56e394b6415ec1162671329912aa22452dbd5dc72b50c7c8f6

diff --git a/app-misc/tdl/tdl-1.5.2-r3.ebuild b/app-misc/tdl/tdl-1.5.2-r3.ebuild
deleted file mode 100644
index f4f63c471a56..000000000000
--- a/app-misc/tdl/tdl-1.5.2-r3.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Command line To Do List manager"
-HOMEPAGE="http://www.rc0.org.uk/tdl/"
-SRC_URI="
-	http://www.rpcurnow.force9.co.uk/tdl/${P}.tar.gz
-	https://dev.gentoo.org/~jlec/distfiles/${PN}-screenshot.png.tar"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc readline"
-
-RDEPEND="
-	sys-libs/ncurses:0=
-	sys-libs/readline:0="
-
-DEPEND="
-	${RDEPEND}
-	sys-apps/texinfo
-	doc? ( virtual/texi2dvi )"
-
-PATCHES=(
-	"${FILESDIR}"/${PV}-ldflags.patch
-	"${FILESDIR}"/${P}-list.c.patch
-	"${FILESDIR}"/${P}-main.c.patch
-	"${FILESDIR}"/${P}-man.patch
-)
-
-DOCS=( README NEWS tdl.txt "${WORKDIR}"/screenshot.png tdl.html )
-
-src_prepare() {
-	default
-	tc-export CC
-}
-
-src_configure() {
-	local myconf=( --prefix="${EPREFIX}"/usr )
-
-	if ! use readline; then
-		myconf+=( "${myconf} --without-readline" )
-		sed -i 's#\($(LIB_READLINE)\)#\1 -lncurses##g' "${S}"/Makefile.in || die
-	fi
-
-	sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure || die
-	"${S}"/configure "${myconf[@]}" || die "configure failed"
-}
-
-src_compile() {
-	export VARTEXFONTS="${T}/fonts"
-	emake all tdl.info tdl.html tdl.txt
-
-	if use doc; then
-		emake tdl.dvi tdl.ps tdl.pdf
-	fi
-}
-
-src_install() {
-	einstalldocs
-	doinfo tdl.info
-
-	dobin tdl
-	doman tdl.1
-
-	local i
-	for i in tdl{a,l,d,g}
-	do
-		dosym tdl /usr/bin/${i}
-		dosym tdl.1 /usr/share/man/man1/${i}.1
-	done
-
-	if use doc; then
-		dodoc tdl.dvi tdl.ps tdl.pdf
-	fi
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-04-11 14:53 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-11 14:53 [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2023-12-23 16:41 Arthur Zamarin
2023-12-23 15:54 Arthur Zamarin
2023-12-23 15:47 Arthur Zamarin
2023-11-21 17:31 Ulrich Müller
2023-11-21 17:31 Ulrich Müller
2019-11-13  1:37 Aaron Bauman
2019-06-04 20:54 Agostino Sarubbo
2019-06-04 14:45 Thomas Deutschmann
2019-03-01 14:35 Patrice Clement

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox