public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-libs/libyui/
@ 2016-06-16 20:05 Michal Hrušecký
  0 siblings, 0 replies; 4+ messages in thread
From: Michal Hrušecký @ 2016-06-16 20:05 UTC (permalink / raw
  To: gentoo-commits

commit:     914d64fa6bb2598db6071e7a78022b98f537654e
Author:     Michal Hrusecky <miska <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 16 19:38:45 2016 +0000
Commit:     Michal Hrušecký <miska <AT> gentoo <DOT> org>
CommitDate: Thu Jun 16 20:04:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914d64fa

x11-libs/libyui: Update to the latest upstream version 3.2.5

Package-Manager: portage-2.3.0_rc1

 x11-libs/libyui/Manifest            |  1 +
 x11-libs/libyui/libyui-3.2.5.ebuild | 51 +++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/x11-libs/libyui/Manifest b/x11-libs/libyui/Manifest
index 64dd43b..c85a74d 100644
--- a/x11-libs/libyui/Manifest
+++ b/x11-libs/libyui/Manifest
@@ -1 +1,2 @@
 DIST libyui-3.0.13.tar.gz 204028 SHA256 aa3d961f4424365efdfffd4de1facdcd870570890681ebc9e59d16ea3687e44f SHA512 b698c4d44d9fa1d888b52f8d5e2216ff4a490ef97c153fac52674a237527807140663d87ceac7b36b0c6092e9035eaec7bfe7a2e1e93922de106873130a69c66 WHIRLPOOL a7c01af68f800e1f27ce5631c0b34ea35d3f82c3d173caea1516887de9bef557662ce0e577daa6ffb2003070adac40f958c7f3dd9c64d32b46fc11d4fed72b15
+DIST libyui-3.2.5.tar.gz 218517 SHA256 0fa6bc8f226ff74c5658fea27dfea532ca1c3199bd4ed9f70b3c1bb76cca5387 SHA512 174ec6893f749bc81495c2ee620e8c7d85e9cdb61db08d4f7d800c13306eb76e0f40d20a1eafeb579344b35d99f9735b65e63525ddd804cbe30ab7f4c18bec43 WHIRLPOOL 4bd63127753f329b4e8a8d8937c80b61eecdc1d634d2985e0f97d0d5497896c853042af319721d9c86ffddfe7802f2e4ef3c41f650d30428d7c5dfd91caa8ecd

diff --git a/x11-libs/libyui/libyui-3.2.5.ebuild b/x11-libs/libyui/libyui-3.2.5.ebuild
new file mode 100644
index 0000000..2683388
--- /dev/null
+++ b/x11-libs/libyui/libyui-3.2.5.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+DESCRIPTION="UI abstraction library"
+HOMEPAGE="https://github.com/libyui/libyui"
+SRC_URI="https://github.com/libyui/${PN}/archive/${PN}/master/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/6"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk ncurses qt4 static-libs"
+
+# Only Boost headers are needed
+DEPEND="dev-libs/boost"
+PDEPEND="
+	qt4? ( x11-libs/libyui-qt:${SLOT} )
+	ncurses? ( x11-libs/libyui-ncurses:${SLOT} )
+	gtk? ( x11-libs/libyui-gtk:${SLOT} )
+	"
+
+PATCHES=( "${FILESDIR}/${PN}-3.0.13-fix-qt-libs-check.patch" )
+
+REQUIRED_USE="|| ( gtk ncurses qt4 )"
+
+S="${WORKDIR}/${PN}-${PN}-master-${PV}"
+
+src_prepare() {
+	cp buildtools/CMakeLists.common CMakeLists.txt || die
+
+	# TODO: set proper docs deps and USE flag for building them
+	sed -i -e '/SET_AUTODOCS/d' CMakeLists.txt || die 'sed on CMakeLists.txt failed'
+	sed -i -e 's/src examples/src/' PROJECTINFO.cmake || die 'sed on PROJECTINFO.cmake failed'
+
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_WERROR=OFF
+		-DDOC_DIR="${EPREFIX}/usr/share/doc/${P}"
+		-DRESPECT_FLAGS=ON
+		$(cmake-utils_use_enable static-libs STATIC)
+	)
+	cmake-utils_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/libyui/
@ 2017-09-15 10:20 Michael Palimaka
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Palimaka @ 2017-09-15 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     17dc51d1b0cf4b9e18155252840cf9eb6a52fdf8
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 15 10:20:05 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Sep 15 10:20:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17dc51d1

x11-libs/libyui: version bump 3.3.3

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 x11-libs/libyui/Manifest            |  1 +
 x11-libs/libyui/libyui-3.3.3.ebuild | 45 +++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/x11-libs/libyui/Manifest b/x11-libs/libyui/Manifest
index c85a74de8f9..aca8ab13c13 100644
--- a/x11-libs/libyui/Manifest
+++ b/x11-libs/libyui/Manifest
@@ -1,2 +1,3 @@
 DIST libyui-3.0.13.tar.gz 204028 SHA256 aa3d961f4424365efdfffd4de1facdcd870570890681ebc9e59d16ea3687e44f SHA512 b698c4d44d9fa1d888b52f8d5e2216ff4a490ef97c153fac52674a237527807140663d87ceac7b36b0c6092e9035eaec7bfe7a2e1e93922de106873130a69c66 WHIRLPOOL a7c01af68f800e1f27ce5631c0b34ea35d3f82c3d173caea1516887de9bef557662ce0e577daa6ffb2003070adac40f958c7f3dd9c64d32b46fc11d4fed72b15
 DIST libyui-3.2.5.tar.gz 218517 SHA256 0fa6bc8f226ff74c5658fea27dfea532ca1c3199bd4ed9f70b3c1bb76cca5387 SHA512 174ec6893f749bc81495c2ee620e8c7d85e9cdb61db08d4f7d800c13306eb76e0f40d20a1eafeb579344b35d99f9735b65e63525ddd804cbe30ab7f4c18bec43 WHIRLPOOL 4bd63127753f329b4e8a8d8937c80b61eecdc1d634d2985e0f97d0d5497896c853042af319721d9c86ffddfe7802f2e4ef3c41f650d30428d7c5dfd91caa8ecd
+DIST libyui-3.3.3.tar.gz 230452 SHA256 37b0ccd93f7226248cd228a669f5f61ced5f615d17e9fb88db46470213b948f2 SHA512 1db31218703c90e7b8b877b613997e0984275a0923c7837c6e813626c0037d56d524168e0f56e8ca36561c1af5480a0f379e8f87fbc4a380570a6d9ab336977f WHIRLPOOL c6e0d163a2881c289a592d9153d28157298e1fb9c50e122771338d719ace38356087531f1f1ef5586308efb0c44a2cde5eb2660e205346863da6fcc537205ab2

diff --git a/x11-libs/libyui/libyui-3.3.3.ebuild b/x11-libs/libyui/libyui-3.3.3.ebuild
new file mode 100644
index 00000000000..66ac3137191
--- /dev/null
+++ b/x11-libs/libyui/libyui-3.3.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="UI abstraction library"
+HOMEPAGE="https://github.com/libyui/libyui"
+SRC_URI="https://github.com/libyui/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/6"
+KEYWORDS="~amd64 ~x86"
+IUSE="gtk ncurses qt5 static-libs"
+
+# Only Boost headers are needed
+DEPEND="dev-libs/boost"
+PDEPEND="
+	gtk? ( x11-libs/libyui-gtk:${SLOT} )
+	ncurses? ( x11-libs/libyui-ncurses:${SLOT} )
+	qt5? ( x11-libs/libyui-qt:${SLOT} )
+"
+
+REQUIRED_USE="|| ( gtk ncurses qt5 )"
+
+src_prepare() {
+	cp buildtools/CMakeLists.common CMakeLists.txt || die
+
+	# TODO: set proper docs deps and USE flag for building them
+	sed -i -e '/SET_AUTODOCS/d' CMakeLists.txt || die 'sed on CMakeLists.txt failed'
+	sed -i -e 's/src examples/src/' PROJECTINFO.cmake || die 'sed on PROJECTINFO.cmake failed'
+
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DDOC_DIR="${EPREFIX%/}/usr/share/doc/${PF}"
+		-DENABLE_STATIC=$(usex static-libs)
+		-DENABLE_WERROR=OFF
+		-DRESPECT_FLAGS=ON
+	)
+	cmake-utils_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/libyui/
@ 2018-03-10 13:22 Pacho Ramos
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2018-03-10 13:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1c07cb46832650fe1285f0760e62130aac383ac8
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 13:13:06 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 13:20:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c07cb46

x11-libs/libyui: Update maintainer due to bug #357919

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libyui/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/x11-libs/libyui/metadata.xml b/x11-libs/libyui/metadata.xml
index 18160984a06..ed5e7e2f3f0 100644
--- a/x11-libs/libyui/metadata.xml
+++ b/x11-libs/libyui/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>miska@gentoo.org</email>
-		<name>Michal Hrušecký</name>
-	</maintainer>
 	<longdescription lang="en">
 YaST2 user interface engine that provides the abstraction from graphical user interfaces (Qt, Gtk) and text based user interfaces (ncurses). This can be used independently of YaST2 for generic (C++) applications.
 </longdescription>


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

* [gentoo-commits] repo/gentoo:master commit in: x11-libs/libyui/
@ 2020-02-08 16:53 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2020-02-08 16:53 UTC (permalink / raw
  To: gentoo-commits

commit:     7133af336e4130d937ec20df2729181904e39d3c
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  8 16:52:56 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb  8 16:52:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7133af33

x11-libs/libyui: [QA] Fix UnnecessarySlashStrip

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 x11-libs/libyui/libyui-3.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libyui/libyui-3.3.3.ebuild b/x11-libs/libyui/libyui-3.3.3.ebuild
index 66ac3137191..b3e24c56ad7 100644
--- a/x11-libs/libyui/libyui-3.3.3.ebuild
+++ b/x11-libs/libyui/libyui-3.3.3.ebuild
@@ -36,7 +36,7 @@ src_prepare() {
 
 src_configure() {
 	local mycmakeargs=(
-		-DDOC_DIR="${EPREFIX%/}/usr/share/doc/${PF}"
+		-DDOC_DIR="${EPREFIX}/usr/share/doc/${PF}"
 		-DENABLE_STATIC=$(usex static-libs)
 		-DENABLE_WERROR=OFF
 		-DRESPECT_FLAGS=ON


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

end of thread, other threads:[~2020-02-08 16:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-15 10:20 [gentoo-commits] repo/gentoo:master commit in: x11-libs/libyui/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2020-02-08 16:53 David Seifert
2018-03-10 13:22 Pacho Ramos
2016-06-16 20:05 Michal Hrušecký

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