public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libxsd-frontend/
@ 2016-10-15 16:36 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2016-10-15 16:36 UTC (permalink / raw
  To: gentoo-commits

commit:     10adf90b3ef081369f26aa6d6b57787447ff11cb
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 15 13:40:39 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Oct 15 16:35:55 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10adf90b

dev-cpp/libxsd-frontend: Version bump to 2.0.0

Gentoo-bug: 585738, 594542
* EAPI=6

Package-Manager: portage-2.3.2

 dev-cpp/libxsd-frontend/Manifest                   |  1 +
 .../libxsd-frontend/libxsd-frontend-2.0.0.ebuild   | 88 ++++++++++++++++++++++
 dev-cpp/libxsd-frontend/metadata.xml               |  8 +-
 3 files changed, 93 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/libxsd-frontend/Manifest b/dev-cpp/libxsd-frontend/Manifest
index 72d108a..49005b4 100644
--- a/dev-cpp/libxsd-frontend/Manifest
+++ b/dev-cpp/libxsd-frontend/Manifest
@@ -1 +1,2 @@
 DIST libxsd-frontend-1.18.0.tar.bz2 66937 SHA256 78382d44ae0575fec04eb2e2e70c2bb751b49eb995aad725d3c2e9ee8ac98590 SHA512 fdff24659037d99ca37a15c2bc33a91e9864d2df20210c13230ab64c3c5ecd7aebefe5c7b3b316812d8f844ca38c297931d74d19a278bf986de80e2f0c54d223 WHIRLPOOL 94f092087f17b0694821ab1f7864fa80639c7daf73e6926d665365d624f46d69d1f74e0de4af901a399593bf52020311614c000d94160505a429728f0d3e2818
+DIST libxsd-frontend-2.0.0.tar.bz2 66784 SHA256 35ba30988c67bc4ce9278d869ec0a04305eabf55287456af34c66ebe3564bfda SHA512 8a296fdfe2e562237d46774b33ee82e8f67835b0869c03ffdf04570db1e6f398cf97734685d44c2207abbb73cea20b57e53c8fd80a121f98196c1c7d4bacbc68 WHIRLPOOL 44f75d2d394f3db4edf773b4f36f74982600f5e55a445c4d0e6eb6254c1150c3eaf18b87d343d1728eccb5f6f92cd8888d80f86a7dc01f513d476dda056e0f89

diff --git a/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild b/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
new file mode 100644
index 00000000..5550137
--- /dev/null
+++ b/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs versionator
+
+DESCRIPTION="A compiler frontend for the W3C XML Schema definition language"
+HOMEPAGE="http://www.codesynthesis.com/projects/libxsd-frontend/"
+SRC_URI="http://www.codesynthesis.com/download/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="
+	>=dev-libs/xerces-c-3.0.0
+	dev-libs/boost:=[threads]
+	dev-cpp/libcutl"
+DEPEND="${RDEPEND}
+	>=dev-util/build-0.3.10"
+
+src_configure() {
+	mkdir -p \
+		build/{ld,cxx/gnu} \
+		build/import/lib{boost,cult,frontend-elements,xerces-c} || die
+
+	cat >> build/cxx/configuration-dynamic.make <<- EOF || die
+		cxx_id       := gnu
+		cxx_optimize := n
+		cxx_debug    := n
+		cxx_rpath    := n
+		cxx_pp_extra_options :=
+		cxx_extra_options    := ${CXXFLAGS}
+		cxx_ld_extra_options := ${LDFLAGS}
+		cxx_extra_libs       :=
+		cxx_extra_lib_paths  :=
+	EOF
+
+	cat >> build/cxx/gnu/configuration-dynamic.make <<- EOF || die
+		cxx_gnu := $(tc-getCXX)
+		cxx_gnu_libraries :=
+		cxx_gnu_optimization_options :=
+	EOF
+
+	cat >> build/ld/configuration-lib-dynamic.make <<- EOF || die
+		ld_lib_type   := shared
+	EOF
+
+	# boost
+	cat >> build/import/libboost/configuration-dynamic.make <<- EOF || die
+		libboost_installed := y
+		libboost_system := y
+	EOF
+
+	# libcutl
+	cat >> build/import/libcutl/configuration-dynamic.make <<- EOF || die
+		libcutl_installed := y
+	EOF
+
+	# xerces-c
+	cat >> build/import/libxerces-c/configuration-dynamic.make <<- EOF || die
+		libxerces_c_installed := y
+	EOF
+}
+
+src_compile() {
+	emake verbose=1
+}
+
+src_install() {
+	einstalldocs
+
+	dolib.so xsd-frontend/libxsd-frontend.so
+
+	# clean header dir of build files
+	find xsd-frontend \( -iname '*.cxx' -o -iname 'makefile*' \
+		-o -iname '*.o' -o -iname '*.d' -o -iname '*.m4' -o -iname '*.l' \
+		-o -iname '*.cpp-options' -o -iname '*.so' \) -exec rm -rf '{}' + || die
+	rm -rf xsd-frontend/arch || die
+	doheader -r xsd-frontend
+}
+
+src_test() {
+	export LD_LIBRARY_PATH="${S}/xsd-frontend:${LD_LIBRARY_PATH}"
+	default
+}

diff --git a/dev-cpp/libxsd-frontend/metadata.xml b/dev-cpp/libxsd-frontend/metadata.xml
index acd00be..d4905c8 100644
--- a/dev-cpp/libxsd-frontend/metadata.xml
+++ b/dev-cpp/libxsd-frontend/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>dev-zero@gentoo.org</email>
-    <name>Tiziano Müller</name>
-  </maintainer>
+	<maintainer type="project">
+		<email>cpp@gentoo.org</email>
+		<name>Gentoo C++ Project</name>
+	</maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libxsd-frontend/
@ 2018-04-13 23:22 Aaron Bauman
  0 siblings, 0 replies; 2+ messages in thread
From: Aaron Bauman @ 2018-04-13 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     4abe2dc8a1ebb3ba262d6b8aa47252c026e412b5
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Apr 10 11:29:27 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Apr 13 23:21:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4abe2dc8

dev-cpp/libxsd-frontend: use HTTPS

 dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild b/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
index c456de58e93..1152c229155 100644
--- a/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
+++ b/dev-cpp/libxsd-frontend/libxsd-frontend-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,8 +6,8 @@ EAPI=6
 inherit toolchain-funcs versionator
 
 DESCRIPTION="A compiler frontend for the W3C XML Schema definition language"
-HOMEPAGE="http://www.codesynthesis.com/projects/libxsd-frontend/"
-SRC_URI="http://www.codesynthesis.com/download/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"
+HOMEPAGE="https://www.codesynthesis.com/projects/libxsd-frontend/"
+SRC_URI="https://www.codesynthesis.com/download/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"


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

end of thread, other threads:[~2018-04-13 23:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-13 23:22 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libxsd-frontend/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2016-10-15 16:36 David Seifert

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