* [gentoo-commits] proj/sci:master commit in: dev-libs/libconfig/
@ 2015-01-12 20:24 Christoph Junghans
0 siblings, 0 replies; 3+ messages in thread
From: Christoph Junghans @ 2015-01-12 20:24 UTC (permalink / raw
To: gentoo-commits
commit: 047e3b9f951118c93be4c7a3722237ade79337b0
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sun Jan 11 13:15:04 2015 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sun Jan 11 13:15:04 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=047e3b9f
dev-libs/libconfig-9999: Add ebuild to overlay
---
dev-libs/libconfig/ChangeLog | 7 ++++
dev-libs/libconfig/libconfig-9999.ebuild | 62 ++++++++++++++++++++++++++++++++
dev-libs/libconfig/metadata.xml | 12 +++++++
3 files changed, 81 insertions(+)
diff --git a/dev-libs/libconfig/ChangeLog b/dev-libs/libconfig/ChangeLog
new file mode 100644
index 0000000..81bc2ab
--- /dev/null
+++ b/dev-libs/libconfig/ChangeLog
@@ -0,0 +1,7 @@
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 11 Jan 2015; Marius Brehler <marbre@linux.sungazer.de>
+ +libconfig-9999.ebuild:
+ Add ebuild based on libconfig-1.4.9-r1 to the overlay
+
diff --git a/dev-libs/libconfig/libconfig-9999.ebuild b/dev-libs/libconfig/libconfig-9999.ebuild
new file mode 100644
index 0000000..b1e1ffc
--- /dev/null
+++ b/dev-libs/libconfig/libconfig-9999.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF="1"
+inherit eutils autotools-multilib
+
+DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
+HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+if [[ ${PV} == "9999" ]] ; then
+ EGIT_REPO_URI="https://github.com/hyperrealm/libconfig.git"
+ EGIT_BRANCH="master"
+ inherit git-r3
+ KEYWORDS=""
+else
+ SRC_URI="http://www.hyperrealm.com/${PN}/${P}.tar.gz"
+ KEYWORDS="amd64 ~arm ~mips ppc ppc64 sparc x86 ~x86-linux"
+ PATCHES=( "${FILESDIR}/${P}-out-of-source-build.patch" )
+fi
+
+IUSE="+cxx examples static-libs"
+
+DEPEND="
+ sys-devel/libtool
+ sys-devel/bison"
+
+src_prepare() {
+ sed -i configure.ac -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
+ autotools-multilib_src_prepare
+}
+
+multilib_src_configure() {
+ local myeconfargs=(
+ $(use_enable cxx)
+ --disable-examples
+ )
+ autotools-utils_src_configure
+}
+
+multilib_src_test() {
+ # It responds to check but that does not work as intended
+ emake test
+}
+
+multilib_src_install_all() {
+ einstalldocs
+ prune_libtool_files
+
+ if use examples; then
+ find examples/ -name "Makefile.*" -delete || die
+ local dir
+ for dir in examples/c examples/c++; do
+ insinto /usr/share/doc/${PF}/${dir}
+ doins ${dir}/*
+ done
+ fi
+}
diff --git a/dev-libs/libconfig/metadata.xml b/dev-libs/libconfig/metadata.xml
new file mode 100644
index 0000000..b76530a
--- /dev/null
+++ b/dev-libs/libconfig/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+ <longdescription lang="en">
+ Libconfig is a simple library for processing structured configuration files.
+ Libconfig is very compact — a fraction of the size of the expat XML parser library.
+ This makes it well-suited for memory-constrained systems like handheld devices.
+ The library includes bindings for both the C and C++ languages.
+ It works on POSIX-compliant UNIX systems (GNU/Linux, Mac OS X, Solaris, FreeBSD).
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-libs/libconfig/
@ 2015-01-12 20:24 Christoph Junghans
0 siblings, 0 replies; 3+ messages in thread
From: Christoph Junghans @ 2015-01-12 20:24 UTC (permalink / raw
To: gentoo-commits
commit: 9b198052e9105e978da6537d39238a48e25b8a73
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Jan 12 08:08:04 2015 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Jan 12 08:08:04 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9b198052
libconfig/libconfig-9999: Minor fixes
---
dev-libs/libconfig/libconfig-9999.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dev-libs/libconfig/libconfig-9999.ebuild b/dev-libs/libconfig/libconfig-9999.ebuild
index b1e1ffc..e56d00d 100644
--- a/dev-libs/libconfig/libconfig-9999.ebuild
+++ b/dev-libs/libconfig/libconfig-9999.ebuild
@@ -13,8 +13,7 @@ HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
LICENSE="LGPL-2.1"
SLOT="0"
if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/hyperrealm/libconfig.git"
- EGIT_BRANCH="master"
+ EGIT_REPO_URI="https://github.com/hyperrealm/libconfig.git git://github.com/hyperrealm/libconfig.git"
inherit git-r3
KEYWORDS=""
else
@@ -27,7 +26,7 @@ IUSE="+cxx examples static-libs"
DEPEND="
sys-devel/libtool
- sys-devel/bison"
+ virtual/yacc"
src_prepare() {
sed -i configure.ac -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-libs/libconfig/
@ 2020-09-22 1:56 Aisha Tammy
0 siblings, 0 replies; 3+ messages in thread
From: Aisha Tammy @ 2020-09-22 1:56 UTC (permalink / raw
To: gentoo-commits
commit: 812ad6749c5eec034b009571a7fe9a87e43d123d
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 01:56:40 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 01:56:50 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=812ad674
dev-libs/libconfig: drop package
present in ::gentoo
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-libs/libconfig/libconfig-9999.ebuild | 60 --------------------------------
dev-libs/libconfig/metadata.xml | 15 --------
2 files changed, 75 deletions(-)
diff --git a/dev-libs/libconfig/libconfig-9999.ebuild b/dev-libs/libconfig/libconfig-9999.ebuild
deleted file mode 100644
index dda594548..000000000
--- a/dev-libs/libconfig/libconfig-9999.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF="1"
-inherit eutils autotools-multilib
-
-DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
-HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/hyperrealm/libconfig.git git://github.com/hyperrealm/libconfig.git"
- inherit git-r3
- KEYWORDS=""
-else
- SRC_URI="http://www.hyperrealm.com/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
- PATCHES=( "${FILESDIR}/${P}-out-of-source-build.patch" )
-fi
-
-IUSE="+cxx examples static-libs"
-
-DEPEND="
- sys-devel/libtool
- virtual/yacc"
-
-src_prepare() {
- sed -i configure.ac -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die
- autotools-multilib_src_prepare
-}
-
-multilib_src_configure() {
- local myeconfargs=(
- $(use_enable cxx)
- --disable-examples
- )
- autotools-utils_src_configure
-}
-
-multilib_src_test() {
- # It responds to check but that does not work as intended
- emake test
-}
-
-multilib_src_install_all() {
- einstalldocs
- prune_libtool_files
-
- if use examples; then
- find examples/ -name "Makefile.*" -delete || die
- local dir
- for dir in examples/c examples/c++; do
- insinto /usr/share/doc/${PF}/${dir}
- doins ${dir}/*
- done
- fi
-}
diff --git a/dev-libs/libconfig/metadata.xml b/dev-libs/libconfig/metadata.xml
deleted file mode 100644
index 2d70bee59..000000000
--- a/dev-libs/libconfig/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
-Libconfig is a simple library for processing structured configuration files.
-Libconfig is very compact — a fraction of the size of the expat XML parser library.
-This makes it well-suited for memory-constrained systems like handheld devices.
-The library includes bindings for both the C and C++ languages.
-It works on POSIX-compliant UNIX systems (GNU/Linux, Mac OS X, Solaris, FreeBSD).
-</longdescription>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-09-22 1:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-12 20:24 [gentoo-commits] proj/sci:master commit in: dev-libs/libconfig/ Christoph Junghans
-- strict thread matches above, loose matches on Subject: below --
2020-09-22 1:56 Aisha Tammy
2015-01-12 20:24 Christoph Junghans
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox