* [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/
@ 2020-08-19 10:48 Jeroen Roovers
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers @ 2020-08-19 10:48 UTC (permalink / raw
To: gentoo-commits
commit: 73cbd59f71f886dbf701c652611a746ead33bc03
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 19 10:44:53 2020 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Aug 19 10:48:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73cbd59f
app-dicts/libydpdict: Version 1.0.4
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
app-dicts/libydpdict/Manifest | 1 +
app-dicts/libydpdict/libydpdict-1.0.4.ebuild | 23 +++++++++++++++++++++++
2 files changed, 24 insertions(+)
diff --git a/app-dicts/libydpdict/Manifest b/app-dicts/libydpdict/Manifest
index 478ff93a45d..dd74924755f 100644
--- a/app-dicts/libydpdict/Manifest
+++ b/app-dicts/libydpdict/Manifest
@@ -1 +1,2 @@
DIST libydpdict-1.0.2.tar.gz 297184 BLAKE2B 1e7e4aa905c5e3468b914ed48a1307edcfce8f563a2e5a622a2a47442b12025265b3c60350898b9dbc080af345635a85516444240699476af1ae59c5c58682bf SHA512 ccf2335e627a820a580c4cc95e04eca372f88232c4ca4d86bd5c8c5f9af1756f4642addaf39fa2702d3abe816d31f650d86cb480dbaf5f66f0a20b66cf5181b5
+DIST libydpdict-1.0.4.tar.gz 20550 BLAKE2B a68573a74db3b7ef5aa4565b85f17830800c4551db9d2d6cd80f0517e8c5f1adb7e1d6caad3768e5e9e7665a68eb2ac0eb7b261a7f69a5280c4c65f5787c9359 SHA512 09178c620410c5f43f52a4ffc691fc656e7d1a92fd5724ca31c6f99397d4e702d440dc0bf191e56dd83439c3067ac7638ee7ce071bc26399e8306cadbe705fdd
diff --git a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
new file mode 100644
index 00000000000..76fd75b2888
--- /dev/null
+++ b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+DESCRIPTION="Library for handling the Collins Dictionary database"
+HOMEPAGE="https://github.com/wojtekka/libydpdict"
+SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_install() {
+ default
+ dodoc AUTHORS
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/
@ 2020-11-15 23:24 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2020-11-15 23:24 UTC (permalink / raw
To: gentoo-commits
commit: 8d8e8d31730f990f83fb9676accf97a8bca18b34
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Nov 15 23:22:40 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov 15 23:22:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d8e8d31
app-dicts/libydpdict: disable static libs
Closes: https://bugs.gentoo.org/726498
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-dicts/libydpdict/libydpdict-1.0.4.ebuild | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
index 76fd75b2888..aff0de2c35a 100644
--- a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
+++ b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
@@ -2,6 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
+
inherit autotools
DESCRIPTION="Library for handling the Collins Dictionary database"
@@ -12,12 +13,18 @@ LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+DOCS=( AUTHORS )
+
src_prepare() {
default
eautoreconf
}
+src_configure() {
+ econf --disable-static
+}
+
src_install() {
default
- dodoc AUTHORS
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/
@ 2021-01-04 3:31 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-01-04 3:31 UTC (permalink / raw
To: gentoo-commits
commit: f87b6031c693572245b7f74fbcbb42f00ad537c0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 4 03:30:23 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 4 03:30:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87b6031
app-dicts/libydpdict: Stabilize 1.0.4 amd64, #763474
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-dicts/libydpdict/libydpdict-1.0.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
index aff0de2c35a..489c6d571c4 100644
--- a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
+++ b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
DOCS=( AUTHORS )
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/
@ 2021-01-07 1:24 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-01-07 1:24 UTC (permalink / raw
To: gentoo-commits
commit: 0eb20630161d9e7fa2da3cff7300a64b66c9fa1a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 7 01:23:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 01:23:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb20630
app-dicts/libydpdict: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-dicts/libydpdict/Manifest | 1 -
app-dicts/libydpdict/libydpdict-1.0.2.ebuild | 21 ---------------------
2 files changed, 22 deletions(-)
diff --git a/app-dicts/libydpdict/Manifest b/app-dicts/libydpdict/Manifest
index dd74924755f..fc148dd3d9b 100644
--- a/app-dicts/libydpdict/Manifest
+++ b/app-dicts/libydpdict/Manifest
@@ -1,2 +1 @@
-DIST libydpdict-1.0.2.tar.gz 297184 BLAKE2B 1e7e4aa905c5e3468b914ed48a1307edcfce8f563a2e5a622a2a47442b12025265b3c60350898b9dbc080af345635a85516444240699476af1ae59c5c58682bf SHA512 ccf2335e627a820a580c4cc95e04eca372f88232c4ca4d86bd5c8c5f9af1756f4642addaf39fa2702d3abe816d31f650d86cb480dbaf5f66f0a20b66cf5181b5
DIST libydpdict-1.0.4.tar.gz 20550 BLAKE2B a68573a74db3b7ef5aa4565b85f17830800c4551db9d2d6cd80f0517e8c5f1adb7e1d6caad3768e5e9e7665a68eb2ac0eb7b261a7f69a5280c4c65f5787c9359 SHA512 09178c620410c5f43f52a4ffc691fc656e7d1a92fd5724ca31c6f99397d4e702d440dc0bf191e56dd83439c3067ac7638ee7ce071bc26399e8306cadbe705fdd
diff --git a/app-dicts/libydpdict/libydpdict-1.0.2.ebuild b/app-dicts/libydpdict/libydpdict-1.0.2.ebuild
deleted file mode 100644
index deac724709f..00000000000
--- a/app-dicts/libydpdict/libydpdict-1.0.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Library for handling the Collins Dictionary database"
-HOMEPAGE="http://toxygen.net/ydpdict/"
-SRC_URI="http://toxygen.net/ydpdict/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc AUTHORS
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/
@ 2021-09-29 14:12 Yixun Lan
0 siblings, 0 replies; 6+ messages in thread
From: Yixun Lan @ 2021-09-29 14:12 UTC (permalink / raw
To: gentoo-commits
commit: a3a3d3b2a07e7445affbf85153eb623a1dce53fb
Author: Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Tue Sep 28 05:55:34 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 29 14:11:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a3d3b2
app-dicts/libydpdict: keyword 1.0.4 for ~riscv
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-dicts/libydpdict/libydpdict-1.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
index 296af3da981..e4316c1e638 100644
--- a/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
+++ b/app-dicts/libydpdict/libydpdict-1.0.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/wojtekka/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
DOCS=( AUTHORS )
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/
@ 2022-12-24 2:59 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-12-24 2:59 UTC (permalink / raw
To: gentoo-commits
commit: b10f0b6eece6b23d0987020c5bde88a49a2aae83
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 24 02:53:07 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 02:59:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b10f0b6e
app-dicts/libydpdict: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-dicts/libydpdict/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-dicts/libydpdict/metadata.xml b/app-dicts/libydpdict/metadata.xml
index 85e4ed814fa2..cc6d8743c599 100644
--- a/app-dicts/libydpdict/metadata.xml
+++ b/app-dicts/libydpdict/metadata.xml
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<!-- maintainer-needed -->
+ <!-- maintainer-needed -->
+ <upstream>
+ <remote-id type="github">wojtekka/libydpdict</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-12-24 2:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-04 3:31 [gentoo-commits] repo/gentoo:master commit in: app-dicts/libydpdict/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2022-12-24 2:59 Sam James
2021-09-29 14:12 Yixun Lan
2021-01-07 1:24 Sam James
2020-11-15 23:24 David Seifert
2020-08-19 10:48 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox