public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-01-11 22:11 Andreas Hüttel
  0 siblings, 0 replies; 8+ messages in thread
From: Andreas Hüttel @ 2018-01-11 22:11 UTC (permalink / raw
  To: gentoo-commits

commit:     a31fdf10b2123589d65169047841dd1efbb42551
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 11 22:10:40 2018 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 22:10:40 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a31fdf10

dev-libs/libunicode: EAPI bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
new file mode 100644
index 00000000000..88dcbf104bb
--- /dev/null
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Unicode library"
+HOMEPAGE="https://www.gnome.org/"
+SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+src_prepare() {
+	default
+	# The build system is too old, regenerate here to fix crossbuild and
+	# respect LDFLAGS and probably other problems too.
+	sed -i -e "/testsuite/d" configure.in || die
+	eautoreconf
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-01-12  9:07 David Seifert
  0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2018-01-12  9:07 UTC (permalink / raw
  To: gentoo-commits

commit:     16218f3bb128f3a2fc4e08b62bb90e298be5e2e0
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 09:06:49 2018 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 09:07:16 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16218f3b

dev-libs/libunicode: [QA] Minor touchups

* Avoid installing static libs
* Remove .la files
* Remove old src_install that shadows
  the same default one in EAPI 6

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
index 88dcbf104bb..ffece83e393 100644
--- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -19,10 +19,17 @@ src_prepare() {
 	# The build system is too old, regenerate here to fix crossbuild and
 	# respect LDFLAGS and probably other problems too.
 	sed -i -e "/testsuite/d" configure.in || die
+	mv configure.{in,ac} || die
 	eautoreconf
 }
 
+src_configure() {
+	econf --disable-static
+}
+
 src_install() {
-	emake DESTDIR="${D}" install
-	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
+	default
+
+	# no static libs installed
+	find "${D}" -name '*.la' -delete || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-02-18 22:15 Thomas Deutschmann
  0 siblings, 0 replies; 8+ messages in thread
From: Thomas Deutschmann @ 2018-02-18 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     0125031d71580e33909d1661a1b864d7300e08d5
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 22:14:48 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 22:14:48 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0125031d

dev-libs/libunicode: x86 stable (bug #648046)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
index ffece83e393..cb85395b3f3 100644
--- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc x86"
 IUSE=""
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-02-18 23:36 Sergei Trofimovich
  0 siblings, 0 replies; 8+ messages in thread
From: Sergei Trofimovich @ 2018-02-18 23:36 UTC (permalink / raw
  To: gentoo-commits

commit:     c8dc28f17ecbf7bf8756d40c39d011245af3b8a4
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 18 23:36:18 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 23:36:18 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8dc28f1

dev-libs/libunicode: stable 0.4-r2 for ia64, bug #648046

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ia64"

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
index cb85395b3f3..f8112319365 100644
--- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~ppc ~sparc x86"
 IUSE=""
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-02-21 23:01 Sergei Trofimovich
  0 siblings, 0 replies; 8+ messages in thread
From: Sergei Trofimovich @ 2018-02-21 23:01 UTC (permalink / raw
  To: gentoo-commits

commit:     8cd928168fc27e4b32ac47a124c8729761e93a98
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 21 23:01:15 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Feb 21 23:01:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd92816

dev-libs/libunicode: stable 0.4-r2 for ppc, bug #648046

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
index f8112319365..12f31a054da 100644
--- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~ppc ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ppc ~sparc x86"
 IUSE=""
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-03-05 13:57 Tobias Klausmann
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann @ 2018-03-05 13:57 UTC (permalink / raw
  To: gentoo-commits

commit:     e3224a617b4e65cfa8a752d6f0ce28b53e77ac3a
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  5 12:31:42 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Mar  5 13:57:52 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3224a61

dev-libs/libunicode-0.4-r2: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/648046

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
index de8eeaa51ac..fdae045ecea 100644
--- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ~sparc x86"
 IUSE=""
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-03-10 20:57 Mikle Kolyada
  0 siblings, 0 replies; 8+ messages in thread
From: Mikle Kolyada @ 2018-03-10 20:57 UTC (permalink / raw
  To: gentoo-commits

commit:     88ed3ed7b9e357e83a917c0e45c9d668386b7812
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 20:57:30 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 20:57:43 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88ed3ed7

dev-libs/libunicode: arm/hppa stable wrt bug #648046

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
index fdae045ecea..469332e132f 100644
--- a/dev-libs/libunicode/libunicode-0.4-r2.ebuild
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ~sparc x86"
 IUSE=""
 
 src_prepare() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/
@ 2018-03-10 20:58 Mikle Kolyada
  0 siblings, 0 replies; 8+ messages in thread
From: Mikle Kolyada @ 2018-03-10 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     df621c4bd52efbcb77d5a05dda7aae581286ee98
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 20:58:26 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 20:58:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df621c4b

dev-libs/libunicode: Drop old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/libunicode/libunicode-0.4-r1.ebuild | 26 --------------------------
 1 file changed, 26 deletions(-)

diff --git a/dev-libs/libunicode/libunicode-0.4-r1.ebuild b/dev-libs/libunicode/libunicode-0.4-r1.ebuild
deleted file mode 100644
index f67e16cfcc2..00000000000
--- a/dev-libs/libunicode/libunicode-0.4-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=3
-inherit autotools toolchain-funcs
-
-DESCRIPTION="Unicode library"
-HOMEPAGE="https://www.gnome.org/"
-SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc sparc x86"
-IUSE=""
-
-src_prepare() {
-	# The build system is too old, regenerate here to fix crossbuild and
-	# respect LDFLAGS and probably other problems too.
-	sed -i -e "/testsuite/d" configure.in || die
-	eautoreconf
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die
-	dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die "dodoc failed"
-}


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

end of thread, other threads:[~2018-03-10 20:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-18 23:36 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunicode/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2018-03-10 20:58 Mikle Kolyada
2018-03-10 20:57 Mikle Kolyada
2018-03-05 13:57 Tobias Klausmann
2018-02-21 23:01 Sergei Trofimovich
2018-02-18 22:15 Thomas Deutschmann
2018-01-12  9:07 David Seifert
2018-01-11 22:11 Andreas Hüttel

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