public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2017-08-23 16:07 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2017-08-23 16:07 UTC (permalink / raw
  To: gentoo-commits

commit:     246106225d9b9f2a294a0da9ada3ec16e823e0d9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 23 15:55:58 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 23 16:07:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24610622

app-editors/ted: [QA] Use relative symlink target(s)

 app-editors/ted/ted-2.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23.ebuild b/app-editors/ted/ted-2.23.ebuild
index a72197e9a32..790d41379b1 100644
--- a/app-editors/ted/ted-2.23.ebuild
+++ b/app-editors/ted/ted-2.23.ebuild
@@ -62,5 +62,5 @@ src_compile() {
 
 src_install() {
 	default
-	dosym /usr/share/Ted/examples/rtf2pdf.sh /usr/bin/rtf2pdf.sh
+	dosym ../share/Ted/examples/rtf2pdf.sh /usr/bin/rtf2pdf.sh
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2017-09-03  6:32 Michael Palimaka
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Palimaka @ 2017-09-03  6:32 UTC (permalink / raw
  To: gentoo-commits

commit:     d0a6839307fa41f04929a0848cf7f1bc387b3982
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  3 06:28:29 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Sep  3 06:29:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0a68393

app-editors/ted: update desktop mimeinfo cache

Closes: https://bugs.gentoo.org/628718
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-editors/ted/ted-2.23.ebuild | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/app-editors/ted/ted-2.23.ebuild b/app-editors/ted/ted-2.23.ebuild
index 790d41379b1..47c86d46a25 100644
--- a/app-editors/ted/ted-2.23.ebuild
+++ b/app-editors/ted/ted-2.23.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit eutils toolchain-funcs
+inherit eutils toolchain-funcs xdg-utils
 
 DESCRIPTION="X-based rich text editor"
 HOMEPAGE="http://www.nllgg.nl/Ted"
@@ -64,3 +64,11 @@ src_install() {
 	default
 	dosym ../share/Ted/examples/rtf2pdf.sh /usr/bin/rtf2pdf.sh
 }
+
+pkg_postinst() {
+	xdg_desktop_database_update
+}
+
+pkg_postrm() {
+	xdg_desktop_database_update
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2021-04-13  7:30 Joonas Niilola
  0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2021-04-13  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c9422388cbb9cb3ae5a652302215d968743897f6
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 13 07:16:33 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Apr 13 07:16:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9422388

app-editors/ted: add missing dies to 2.23-r1

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-editors/ted/ted-2.23-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r1.ebuild
index b3584d9589e..0fdbbde6164 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r1.ebuild
@@ -68,11 +68,11 @@ src_configure() {
 
 	local dir
 	for dir in appUtil textEncoding utilPs bitmap docFont docBase docBuf ind drawMeta docRtf docEdit docLayout docHtml; do
-		cd "${S}"/${dir}
+		cd "${S}"/${dir} || die
 		econf --cache-file=../config.cache
 	done
 	for dir in appFrame; do
-		cd "${S}"/${dir}
+		cd "${S}"/${dir} || die
 		econf --cache-file=../config.cache --with-MOTIF
 	done
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2021-04-19 19:18 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-19 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     f33948dbd77a658a8321efac6e495fe63c743d71
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 19:18:05 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 19:18:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f33948db

app-editors/ted: Stabilize 2.23-r1 ppc, #784209

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/ted/ted-2.23-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r1.ebuild
index 0fdbbde6164..675e28ef872 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r1.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/Ted-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ppc ~sparc ~x86"
 
 RDEPEND="
 	app-text/libpaper


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2021-04-20 17:06 Sergei Trofimovich
  0 siblings, 0 replies; 10+ messages in thread
From: Sergei Trofimovich @ 2021-04-20 17:06 UTC (permalink / raw
  To: gentoo-commits

commit:     1644fd87bfbc1e7f39cdf49e4e7405b210fdcd20
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Apr 20 13:46:38 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Apr 20 17:05:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1644fd87

app-editors/ted: stable 2.23-r1 for sparc, bug #784209

Package-Manager: Portage-3.0.17, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 app-editors/ted/ted-2.23-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r1.ebuild
index 675e28ef872..939c413563f 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r1.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/Ted-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~sparc ~x86"
+KEYWORDS="~amd64 ppc sparc ~x86"
 
 RDEPEND="
 	app-text/libpaper


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2021-04-21 18:53 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-21 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     2985e4bcb2edef513020b838b6de2ec9eef767c3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 21 18:53:10 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 21 18:53:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2985e4bc

app-editors/ted: Stabilize 2.23-r1 amd64, #784209

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/ted/ted-2.23-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r1.ebuild
index 939c413563f..2c8f9f7b25e 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r1.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/Ted-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc sparc ~x86"
+KEYWORDS="amd64 ppc sparc ~x86"
 
 RDEPEND="
 	app-text/libpaper


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2021-04-22  2:59 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-22  2:59 UTC (permalink / raw
  To: gentoo-commits

commit:     1570f1412bbce155c7d7c74e945d8e475106f110
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 22 02:58:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 22 02:58:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1570f141

app-editors/ted: Stabilize 2.23-r1 x86, #784209

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/ted/ted-2.23-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r1.ebuild
index 2c8f9f7b25e..6ad6952c107 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r1.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/Ted-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc sparc ~x86"
+KEYWORDS="amd64 ppc sparc x86"
 
 RDEPEND="
 	app-text/libpaper


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2021-10-29 13:31 Yixun Lan
  0 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2021-10-29 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     1987c002c1a64252f1cd7f842074f9aa916909df
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Wed Oct 27 18:14:46 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 13:29:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1987c002

app-editors/ted: keyword ~riscv

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-editors/ted/ted-2.23-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r1.ebuild
index 6ad6952c107..bf664679bfb 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r1.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/Ted-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
+KEYWORDS="amd64 ppc ~riscv sparc x86"
 
 RDEPEND="
 	app-text/libpaper


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2022-07-02  9:38 Matthew Smith
  0 siblings, 0 replies; 10+ messages in thread
From: Matthew Smith @ 2022-07-02  9:38 UTC (permalink / raw
  To: gentoo-commits

commit:     2320c82116cac76d5bda93ac47dfa590d882a816
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 09:20:32 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 09:37:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2320c821

app-editors/ted: replace virtual/jpeg dependency

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 app-editors/ted/{ted-2.23-r1.ebuild => ted-2.23-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/ted/ted-2.23-r1.ebuild b/app-editors/ted/ted-2.23-r2.ebuild
similarity index 96%
rename from app-editors/ted/ted-2.23-r1.ebuild
rename to app-editors/ted/ted-2.23-r2.ebuild
index bf664679bfba..4ae1b4f5741b 100644
--- a/app-editors/ted/ted-2.23-r1.ebuild
+++ b/app-editors/ted/ted-2.23-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,10 +18,10 @@ RDEPEND="
 	dev-libs/libpcre2
 	media-libs/fontconfig
 	media-libs/freetype
+	media-libs/libjpeg-turbo:=
 	media-libs/libpng:=
 	media-libs/tiff:=
 	sys-libs/zlib
-	virtual/jpeg
 	virtual/libiconv
 	x11-libs/libXft
 	x11-libs/libXpm


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

* [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/
@ 2022-09-15 13:20 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-09-15 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     df3d344e132e9122ddf3f3486d5a7a9df8f34801
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 15 13:18:55 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 15 13:18:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df3d344e

app-editors/ted: add libpaper slot dep

ABI broke.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/ted/{ted-2.23-r2.ebuild => ted-2.23-r3.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ted/ted-2.23-r2.ebuild b/app-editors/ted/ted-2.23-r3.ebuild
similarity index 99%
rename from app-editors/ted/ted-2.23-r2.ebuild
rename to app-editors/ted/ted-2.23-r3.ebuild
index 4ae1b4f5741b..014951358fd3 100644
--- a/app-editors/ted/ted-2.23-r2.ebuild
+++ b/app-editors/ted/ted-2.23-r3.ebuild
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="amd64 ppc ~riscv sparc x86"
 
 RDEPEND="
-	app-text/libpaper
+	app-text/libpaper:=
 	dev-libs/libpcre2
 	media-libs/fontconfig
 	media-libs/freetype


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

end of thread, other threads:[~2022-09-15 13:20 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-02  9:38 [gentoo-commits] repo/gentoo:master commit in: app-editors/ted/ Matthew Smith
  -- strict thread matches above, loose matches on Subject: below --
2022-09-15 13:20 Sam James
2021-10-29 13:31 Yixun Lan
2021-04-22  2:59 Sam James
2021-04-21 18:53 Sam James
2021-04-20 17:06 Sergei Trofimovich
2021-04-19 19:18 Sam James
2021-04-13  7:30 Joonas Niilola
2017-09-03  6:32 Michael Palimaka
2017-08-23 16:07 Michał Górny

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