public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/
@ 2018-05-29 20:10 Aaron Bauman
  0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2018-05-29 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     e117ee0627f56429147540c5d0ecbb21ca45af74
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue May 29 14:42:48 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue May 29 20:10:07 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e117ee06

app-text/tokyodystopia: bump EAPI and add EPREFIX

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 27 ++++++++++------------
 1 file changed, 12 insertions(+), 15 deletions(-)

diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
index 9a0508821fb..cbd327fef5f 100644
--- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
+++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="2"
-
-inherit eutils
+EAPI=7
 
 DESCRIPTION="A fulltext search engine for Tokyo Cabinet"
 HOMEPAGE="http://fallabs.com/tokyodystopia/"
@@ -17,28 +15,27 @@ IUSE="examples"
 DEPEND="dev-db/tokyocabinet"
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-	epatch "${FILESDIR}/fix_rpath.patch"
-	epatch "${FILESDIR}/fix_ldconfig.patch"
-	epatch "${FILESDIR}/remove_docinst.patch"
-}
+PATCHES=(
+	"${FILESDIR}/fix_rpath.patch"
+	"${FILESDIR}/fix_ldconfig.patch"
+	"${FILESDIR}/remove_docinst.patch"
+)
 
 src_configure() {
-	econf --libexecdir=/usr/libexec/${PN} || die
+	econf --libexecdir="${EPREFIX}"/usr/libexec/${PN}
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "Install failed"
+	HTML_DOCS=( doc/* )
 
-	dohtml doc/* || die
+	default
 
 	if use examples; then
 		insinto /usr/share/${PF}/example
-		doins example/* || die "Install failed"
+		doins example/*
 	fi
-
 }
 
 src_test() {
-	emake -j1 check || die "Tests failed"
+	emake -j1 check
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/
@ 2018-05-29 20:10 Aaron Bauman
  0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2018-05-29 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     2c3f278b79616715e6f6475e3f8a1c1708aa5a25
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue May 29 19:55:53 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue May 29 20:10:22 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c3f278b

app-text/tokyodystopia: avoid unnecessary globs

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
index cbd327fef5f..853fc3b700e 100644
--- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
+++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
@@ -26,13 +26,13 @@ src_configure() {
 }
 
 src_install() {
-	HTML_DOCS=( doc/* )
+	HTML_DOCS=( doc/. )
 
 	default
 
 	if use examples; then
 		insinto /usr/share/${PF}/example
-		doins example/*
+		doins example/.
 	fi
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/
@ 2019-06-18  0:35 Aaron Bauman
  0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2019-06-18  0:35 UTC (permalink / raw
  To: gentoo-commits

commit:     832b3ba10b16b2d0a637c62718a957c85b7e9b36
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri May 31 17:01:09 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 00:35:07 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=832b3ba1

app-text/tokyodystopia: use HTTPS

Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12141
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
index 853fc3b700e..6b5ad208292 100644
--- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
+++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="A fulltext search engine for Tokyo Cabinet"
-HOMEPAGE="http://fallabs.com/tokyodystopia/"
+HOMEPAGE="https://fallabs.com/tokyodystopia/"
 SRC_URI="${HOMEPAGE}${P}.tar.gz"
 
 LICENSE="LGPL-2.1"


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/
@ 2019-08-29 11:39 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2019-08-29 11:39 UTC (permalink / raw
  To: gentoo-commits

commit:     5e3716f51e1232d3efe5711c691d4df280da9d78
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 29 11:38:41 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 11:38:41 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e3716f5

app-text/tokyodystopia: [QA] Fix ${HOMEPAGE} in SRC_URI

Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
index 6b5ad208292..6bb8c6f4467 100644
--- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
+++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="A fulltext search engine for Tokyo Cabinet"
 HOMEPAGE="https://fallabs.com/tokyodystopia/"
-SRC_URI="${HOMEPAGE}${P}.tar.gz"
+SRC_URI="https://fallabs.com/tokyodystopia/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"


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

end of thread, other threads:[~2019-08-29 11:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-29 20:10 [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2019-08-29 11:39 David Seifert
2019-06-18  0:35 Aaron Bauman
2018-05-29 20:10 Aaron Bauman

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