* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2023-10-26 12:49 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-10-26 12:49 UTC (permalink / raw
To: gentoo-commits
commit: 11f008996f2e030890358bdcdc45626890f96559
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 26 12:47:51 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 26 12:48:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11f00899
sys-libs/libsmbios: Stabilize 2.4.3-r1 x86, #916284
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild
index 9da8fc96fa16..d730612f8ea6 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
SLOT="0"
-KEYWORDS="-* amd64 ~ia64 ~x86"
+KEYWORDS="-* amd64 ~ia64 x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2023-11-21 10:05 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2023-11-21 10:05 UTC (permalink / raw
To: gentoo-commits
commit: d02f2dbc02f985a82a158df4bef31b0d9a989b41
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 21 09:42:59 2023 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 10:04:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d02f2dbc
sys-libs/libsmbios: drop 2.4.3
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 91 -------------------------------
1 file changed, 91 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
deleted file mode 100644
index dd4417be8270..000000000000
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit autotools flag-o-matic python-single-r1
-
-DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="https://github.com/dell/libsmbios"
-SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
-SLOT="0"
-KEYWORDS="-* amd64 ~ia64 x86"
-IUSE="doc graphviz nls +python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
- test? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/libxml2
- sys-libs/zlib
- nls? ( virtual/libintl )
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- graphviz? ( media-gfx/graphviz )
- nls? ( sys-devel/gettext )"
-BDEPEND="test? (
- ${PYTHON_DEPS}
- >=dev-util/cppunit-1.9.6
-)"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
- "${FILESDIR}/${PN}-2.4.3-avoid_bashisms.patch" #715202
- "${FILESDIR}/${PN}-2.4.3-insecure_rpaths.patch"
-)
-
-pkg_setup() {
- if use python || use test; then
- python-single-r1_pkg_setup
- fi
-}
-
-src_prepare() {
- default
-
- # Don't build yum-plugin - we don't need it
- sed '/yum-plugin/d' -i Makefile.am || die
-
- if use test; then
- python_fix_shebang src/pyunit/test*.py
- fi
-
- eautoreconf
-}
-
-src_configure() {
- #Remove -O3 for bug #290097
- replace-flags -O3 -O2
-
- local myeconfargs=(
- $(use_enable doc doxygen)
- $(use_enable graphviz)
- $(use_enable nls)
- $(use_enable python)
- $(use_enable static-libs static)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- if use python; then
- python_scriptinto /usr/sbin
- python_doscript "${ED}"/usr/sbin/smbios-{{battery,keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
- fi
-
- insinto /usr/include/
- doins -r src/include/smbios_c
-
- einstalldocs
-
- if ! use static-libs ; then
- find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2023-10-26 12:49 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-10-26 12:49 UTC (permalink / raw
To: gentoo-commits
commit: e782dbf0a22c9fdce45499552807a96a01b913ae
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 26 12:47:49 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 26 12:48:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e782dbf0
sys-libs/libsmbios: Stabilize 2.4.3-r1 amd64, #916284
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild
index e1bb901b8e36..9da8fc96fa16 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
SLOT="0"
-KEYWORDS="-* ~amd64 ~ia64 ~x86"
+KEYWORDS="-* amd64 ~ia64 ~x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2023-08-09 18:14 Piotr Karbowski
0 siblings, 0 replies; 43+ messages in thread
From: Piotr Karbowski @ 2023-08-09 18:14 UTC (permalink / raw
To: gentoo-commits
commit: e7ac2f7b84769667f3b1e1a4da55551324f93f28
Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 9 18:13:21 2023 +0000
Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Wed Aug 9 18:14:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7ac2f7b
sys-libs/libsmbios: drop myself as maintainer.
Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
sys-libs/libsmbios/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sys-libs/libsmbios/metadata.xml b/sys-libs/libsmbios/metadata.xml
index 199ebe99ce07..b131555971d7 100644
--- a/sys-libs/libsmbios/metadata.xml
+++ b/sys-libs/libsmbios/metadata.xml
@@ -5,10 +5,6 @@
<email>marecki@gentoo.org</email>
<name>Marek Szuba</name>
</maintainer>
- <maintainer type="person">
- <email>slashbeast@gentoo.org</email>
- <name>Piotr Karbowski</name>
- </maintainer>
<longdescription>
The libsmbios project aims towards providing access to as much
BIOS information as possible. It does this by providing a library of functions
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-10-07 12:39 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-10-07 12:39 UTC (permalink / raw
To: gentoo-commits
commit: 3670f06a1fae8b4cf51223a540837a34cc286e07
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 7 12:28:27 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 7 12:38:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3670f06a
sys-libs/libsmbios: fix incorrect KEYWORDS
Mark as -* until upstream is properly fixed to not require <sys/io.h>
unconditionally. The ~arm64 and ~riscv keywords were added by mistake;
they both fail to build due to absence of said header.
Based on glibc availability of <sys/io.h>, alpha is the only other
architecture that can build the package in any case, but SMBIOS is not
relevant on alpha anyway so ~alpha is not tested or included.
Closes: https://bugs.gentoo.org/875830
Closes: https://github.com/gentoo/gentoo/pull/27672
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 15ae620a9e16..c0eabb98e876 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 ~riscv x86"
+KEYWORDS="-* amd64 ~ia64 x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
test? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-09-09 14:02 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-09-09 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 0261ac8eed2ce27592c36eca311f923f86e0d55c
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 13:35:15 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 14:02:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0261ac8e
sys-libs/libsmbios: enable py3.11
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 9fc8294ebd04..0ffef7c562fa 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit autotools flag-o-matic python-single-r1
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-09-09 14:02 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-09-09 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 26185bf7720aa5404298416b8014bc9929731f07
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 13:54:39 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 14:02:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26185bf7
sys-libs/libsmbios: add separate Python handling for USE=test
libsmbios actually uses Python in two ways: in installed scripts
and in the test suite. Previous incarnations of these ebuilds
made the handling of all Python stuff under USE=python but it is
entirely possible for someone want to run the test suite without
installing all the Python scripts - after all as the name suggests
this package IS first and foremost a library.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 0ffef7c562fa..15ae620a9e16 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -14,7 +14,8 @@ LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ia64 ~riscv x86"
IUSE="doc graphviz nls +python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+ test? ( ${PYTHON_REQUIRED_USE} )"
RESTRICT="!test? ( test )"
@@ -26,8 +27,11 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
graphviz? ( media-gfx/graphviz )
- nls? ( sys-devel/gettext )
- test? ( >=dev-util/cppunit-1.9.6 )"
+ nls? ( sys-devel/gettext )"
+BDEPEND="test? (
+ ${PYTHON_DEPS}
+ >=dev-util/cppunit-1.9.6
+)"
PATCHES=(
"${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
@@ -36,7 +40,9 @@ PATCHES=(
)
pkg_setup() {
- use python && python-single-r1_pkg_setup
+ if use python || use test; then
+ python-single-r1_pkg_setup
+ fi
}
src_prepare() {
@@ -45,7 +51,7 @@ src_prepare() {
# Don't build yum-plugin - we don't need it
sed '/yum-plugin/d' -i Makefile.am || die
- if use test && use python; then
+ if use test; then
python_fix_shebang src/pyunit/test*.py
fi
@@ -69,7 +75,7 @@ src_configure() {
src_install() {
emake install DESTDIR="${D}"
- if use python ; then
+ if use python; then
python_scriptinto /usr/sbin
python_doscript "${ED}"/usr/sbin/smbios-{{battery,keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
fi
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-09-09 13:25 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-09-09 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 65e13519d31aad18c7458a52be961a4edc728569
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 13:23:09 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Sep 9 13:24:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e13519
sys-libs/libsmbios: only fix Python shebangs if USE='python test'
Closes: https://bugs.gentoo.org/869341
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 1a480d6268b6..9fc8294ebd04 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -45,7 +45,9 @@ src_prepare() {
# Don't build yum-plugin - we don't need it
sed '/yum-plugin/d' -i Makefile.am || die
- python_fix_shebang src/pyunit/test*.py
+ if use test && use python; then
+ python_fix_shebang src/pyunit/test*.py
+ fi
eautoreconf
}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-09-07 14:30 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-09-07 14:30 UTC (permalink / raw
To: gentoo-commits
commit: aec467bece26b0d6ea4399849e1125bb30cf9db4
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 7 14:04:03 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Sep 7 14:30:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aec467be
sys-libs/libsmbios: fix Python shebangs where necessary
Closes: https://bugs.gentoo.org/777012
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index ce9ff13b731d..1bec5f76a965 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -44,6 +44,8 @@ src_prepare() {
# Don't build yum-plugin - we don't need it
sed '/yum-plugin/d' -i Makefile.am || die
+ python_fix_shebang src/pyunit/test*.py
+
eautoreconf
}
@@ -66,7 +68,7 @@ src_install() {
if use python ; then
python_scriptinto /usr/sbin
- python_doscript "${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ python_doscript "${ED}"/usr/sbin/smbios-{{battery,keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
fi
insinto /usr/include/
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-07-28 0:30 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-07-28 0:30 UTC (permalink / raw
To: gentoo-commits
commit: 80d1354670fb77c627715706e7a29310112fe375
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 00:22:51 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 00:30:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80d13546
sys-libs/libsmbios: update HOMEPAGE
The original dell.com page now redirects to the GitHub project.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 4ee63a217cb1..ce9ff13b731d 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8..10} )
inherit autotools flag-o-matic python-single-r1
DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="http://linux.dell.com/files/libsmbios/"
+HOMEPAGE="https://github.com/dell/libsmbios"
SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-07-03 18:42 Piotr Karbowski
0 siblings, 0 replies; 43+ messages in thread
From: Piotr Karbowski @ 2022-07-03 18:42 UTC (permalink / raw
To: gentoo-commits
commit: a8d740e9ca8531ccfff45085596edcbfaf59bbee
Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 3 18:41:37 2022 +0000
Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
CommitDate: Sun Jul 3 18:41:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8d740e9
sys-libs/libsmbios: joining as maintainer.
Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
sys-libs/libsmbios/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sys-libs/libsmbios/metadata.xml b/sys-libs/libsmbios/metadata.xml
index b131555971d7..199ebe99ce07 100644
--- a/sys-libs/libsmbios/metadata.xml
+++ b/sys-libs/libsmbios/metadata.xml
@@ -5,6 +5,10 @@
<email>marecki@gentoo.org</email>
<name>Marek Szuba</name>
</maintainer>
+ <maintainer type="person">
+ <email>slashbeast@gentoo.org</email>
+ <name>Piotr Karbowski</name>
+ </maintainer>
<longdescription>
The libsmbios project aims towards providing access to as much
BIOS information as possible. It does this by providing a library of functions
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-06-29 10:59 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-06-29 10:59 UTC (permalink / raw
To: gentoo-commits
commit: ff44b056293edb2ffc5a1d31ef6418a930c19d2c
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 10:58:36 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 10:58:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff44b056
sys-libs/libsmbios: unify metadata formatting
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/metadata.xml | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/sys-libs/libsmbios/metadata.xml b/sys-libs/libsmbios/metadata.xml
index f5775f177c86..b131555971d7 100644
--- a/sys-libs/libsmbios/metadata.xml
+++ b/sys-libs/libsmbios/metadata.xml
@@ -5,10 +5,12 @@
<email>marecki@gentoo.org</email>
<name>Marek Szuba</name>
</maintainer>
- <longdescription>The libsmbios project aims towards providing access to as much
-BIOS information as possible. It does this by providing a library of functions
-that can be used as well as sample binaries.</longdescription>
- <upstream>
- <remote-id type="github">dell/libsmbios</remote-id>
- </upstream>
+ <longdescription>
+ The libsmbios project aims towards providing access to as much
+ BIOS information as possible. It does this by providing a library of functions
+ that can be used as well as sample binaries.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">dell/libsmbios</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-06-29 10:59 Marek Szuba
0 siblings, 0 replies; 43+ messages in thread
From: Marek Szuba @ 2022-06-29 10:59 UTC (permalink / raw
To: gentoo-commits
commit: af19ab0ef39e828f9695db6a5322c30c266984ec
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 10:58:04 2022 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 10:58:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af19ab0e
sys-libs/libsmbios: add myself as a maintainer
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-libs/libsmbios/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/metadata.xml b/sys-libs/libsmbios/metadata.xml
index ba1e3d8a3ecf..f5775f177c86 100644
--- a/sys-libs/libsmbios/metadata.xml
+++ b/sys-libs/libsmbios/metadata.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>marecki@gentoo.org</email>
+ <name>Marek Szuba</name>
+ </maintainer>
<longdescription>The libsmbios project aims towards providing access to as much
BIOS information as possible. It does this by providing a library of functions
that can be used as well as sample binaries.</longdescription>
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-06-22 10:31 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2022-06-22 10:31 UTC (permalink / raw
To: gentoo-commits
commit: 2122dea1a2909566e942c5726397fa9b276016dc
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 22 10:27:48 2022 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Jun 22 10:30:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2122dea1
sys-libs/libsmbios: update LICENSE
Thanks-to: Ulrich Müller <ulm <AT> gentoo.org>
Closes: https://bugs.gentoo.org/853724
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index f982ee3c0391..4ee63a217cb1 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Provide access to (SM)BIOS information"
HOMEPAGE="http://linux.dell.com/files/libsmbios/"
SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2 OSL-2.0"
+LICENSE="|| ( GPL-2+ OSL-2.1 ) BSD Boost-1.0"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ia64 ~riscv x86"
IUSE="doc graphviz nls +python static-libs test"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2022-05-02 6:05 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-05-02 6:05 UTC (permalink / raw
To: gentoo-commits
commit: f8a32402b91f5588cd7a7dd11f6b8814eea7558c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 2 06:05:41 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 2 06:05:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a32402
sys-libs/libsmbios: enable py3.10 and disable py3.7
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 56a475848ec4..f982ee3c0391 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit autotools flag-o-matic python-single-r1
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2021-09-01 9:24 Yixun Lan
0 siblings, 0 replies; 43+ messages in thread
From: Yixun Lan @ 2021-09-01 9:24 UTC (permalink / raw
To: gentoo-commits
commit: 9736d1abebe70f14c115d14f688e5e8e01b48e71
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 29 07:52:19 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 1 08:32:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9736d1ab
sys-libs/libsmbios: keyword ~riscv
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 17810868d1e..56a475848ec 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ia64 x86"
+KEYWORDS="amd64 ~arm64 ~ia64 ~riscv x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2021-06-15 23:04 Thomas Deutschmann
0 siblings, 0 replies; 43+ messages in thread
From: Thomas Deutschmann @ 2021-06-15 23:04 UTC (permalink / raw
To: gentoo-commits
commit: b646f27ddb9b3fdde545a92f3b88adbe39738dd2
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 15 23:00:03 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 23:00:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b646f27d
sys-libs/libsmbios: add myself as co-maintainer
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-libs/libsmbios/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sys-libs/libsmbios/metadata.xml b/sys-libs/libsmbios/metadata.xml
index 426debbdad9..842c57e6157 100644
--- a/sys-libs/libsmbios/metadata.xml
+++ b/sys-libs/libsmbios/metadata.xml
@@ -5,6 +5,10 @@
<email>polynomial-c@gentoo.org</email>
<name>Lars Wendler</name>
</maintainer>
+ <maintainer type="person">
+ <email>whissi@gentoo.org</email>
+ <name>Thomas Deutschmann</name>
+ </maintainer>
<longdescription>The libsmbios project aims towards providing access to as much
BIOS information as possible. It does this by providing a library of functions
that can be used as well as sample binaries.</longdescription>
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2021-02-15 2:19 Rick Farina
0 siblings, 0 replies; 43+ messages in thread
From: Rick Farina @ 2021-02-15 2:19 UTC (permalink / raw
To: gentoo-commits
commit: 7d9fcd24382a03e5cd35d3290a4e074864f8f4f5
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 02:18:13 2021 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 02:19:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d9fcd24
sys-libs/libsmbios: python bump
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 80d5c181054..17810868d1e 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
inherit autotools flag-o-matic python-single-r1
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-12-14 0:46 Sam James
0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2020-12-14 0:46 UTC (permalink / raw
To: gentoo-commits
commit: ff8a59057d90ca7a69a9db108d29eda4aa8c3939
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 14 00:45:24 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 14 00:45:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff8a5905
sys-libs/libsmbios: arm64 keyworded (bug #756310)
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 7c6936d2e72..867d00becf2 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
+KEYWORDS="amd64 ~arm64 ~ia64 x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-11-30 8:59 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2020-11-30 8:59 UTC (permalink / raw
To: gentoo-commits
commit: 2a0d04363b570d0802e74b9e28acc1e5482f0a37
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 08:58:56 2020 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 08:59:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a0d0436
sys-libs/libsmbios: set CONFIG_SHELL="/bin/bash"
until upstream provides a POSIX compliant configure file.
Bug: https://bugs.gentoo.org/715202
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index f19e11df65a..7c6936d2e72 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -57,6 +57,7 @@ src_configure() {
$(use_enable python)
$(use_enable static-libs static)
)
+ CONFIG_SHELL="/bin/bash" \
econf "${myeconfargs[@]}"
}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-05-19 0:55 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2020-05-19 0:55 UTC (permalink / raw
To: gentoo-commits
commit: 9a49e70e9e707f7bc83a13d4ffba53b892b02514
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue May 19 00:55:16 2020 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue May 19 00:55:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a49e70e
sys-libs/libsmbios: Removed old
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/Manifest | 1 -
sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild | 79 ----------------------------
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 79 ----------------------------
3 files changed, 159 deletions(-)
diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index a55b7cb2abb..073360b7c6e 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1,2 +1 @@
-DIST libsmbios-2.4.2.tar.gz 668042 BLAKE2B 2106206dce95e481ae36e033d2abe9f39402368a09686b92fd1de7d85e87ea494514e85bdf1267adb6b52060a4e6bb6001714c5d891a4c0342c814942c0458af SHA512 51d1b11447d50b768658473d01bcb6cc7f9dd5c96c26ec343f222115ffb5047ca1f035a0bfb67f94f53165eaea7a0d9b70cf01f03333a30885bbac153bf761bd
DIST libsmbios-2.4.3.tar.gz 644140 BLAKE2B 684bff4f6cf755796f785e9a93d4ddbe2a1af52082cdebc27d203772a6a2a0259edb4b9d19921f90fc78b48d54700223fbc2628665b963ebcb601010ff4340ab SHA512 7f6fb36fa9653e123b416b275953fb5652025e76dac3b4ec5600168e193ea56f8ac3ea1a3b5db29d2770e73d88152d712a35bf77a9b3fc5596570fae885585ad
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
deleted file mode 100644
index 229a12173e1..00000000000
--- a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools flag-o-matic python-single-r1
-
-DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="http://linux.dell.com/files/libsmbios/"
-SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 OSL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
-IUSE="doc graphviz nls python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/libxml2
- sys-libs/zlib
- nls? ( virtual/libintl )
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- graphviz? ( media-gfx/graphviz )
- nls? ( sys-devel/gettext )
- test? ( >=dev-util/cppunit-1.9.6 )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
-)
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- default
-
- # Don't build yum-plugin - we don't need it
- sed '/yum-plugin/d' -i Makefile.am || die
-
- eautoreconf
-}
-
-src_configure() {
- #Remove -O3 for bug #290097
- replace-flags -O3 -O2
-
- local myeconfargs=(
- $(use_enable doc doxygen)
- $(use_enable graphviz)
- $(use_enable nls)
- $(use_enable python)
- $(use_enable static-libs static)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- if use python ; then
- python_scriptinto /usr/sbin
- python_doscript "${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
- fi
-
- insinto /usr/include/
- doins -r src/include/smbios_c
-
- einstalldocs
-
- if ! use static-libs ; then
- find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
- fi
-}
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
deleted file mode 100644
index 93eb8476f8c..00000000000
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_6 )
-
-inherit autotools flag-o-matic python-single-r1
-
-DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="http://linux.dell.com/files/libsmbios/"
-SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 OSL-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
-IUSE="doc graphviz nls python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/libxml2
- sys-libs/zlib
- nls? ( virtual/libintl )
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- graphviz? ( media-gfx/graphviz )
- nls? ( sys-devel/gettext )
- test? ( >=dev-util/cppunit-1.9.6 )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
-)
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- default
-
- # Don't build yum-plugin - we don't need it
- sed '/yum-plugin/d' -i Makefile.am || die
-
- eautoreconf
-}
-
-src_configure() {
- #Remove -O3 for bug #290097
- replace-flags -O3 -O2
-
- local myeconfargs=(
- $(use_enable doc doxygen)
- $(use_enable graphviz)
- $(use_enable nls)
- $(use_enable python)
- $(use_enable static-libs static)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- if use python ; then
- python_scriptinto /usr/sbin
- python_doscript "${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
- fi
-
- insinto /usr/include/
- doins -r src/include/smbios_c
-
- einstalldocs
-
- if ! use static-libs ; then
- find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
- fi
-}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-05-18 21:13 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2020-05-18 21:13 UTC (permalink / raw
To: gentoo-commits
commit: 41e43bc24ee874ec007526df026cba0a9d07762c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 18 21:12:55 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 18 21:12:55 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e43bc2
sys-libs/libsmbios: x86 stable wrt bug #721610
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 19c9392b972..f19e11df65a 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-05-18 21:10 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2020-05-18 21:10 UTC (permalink / raw
To: gentoo-commits
commit: 4723fabd2530dac3d0a1b8027833b8e445fc6080
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 18 21:09:53 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 18 21:09:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4723fabd
sys-libs/libsmbios: amd64 stable wrt bug #721610
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 4e9e41d7a52..19c9392b972 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 ~x86"
IUSE="doc graphviz nls +python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-02-10 13:02 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2020-02-10 13:02 UTC (permalink / raw
To: gentoo-commits
commit: d7c9498b322fddbb1f26cd671281535b73dbecf8
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 13:02:11 2020 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 13:02:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c9498b
sys-libs/libsmbios: Bump to version 2.4.3
Default enable "python" USE flag.
Closes: https://bugs.gentoo.org/708290
Closes: https://bugs.gentoo.org/708288
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/Manifest | 1 +
sys-libs/libsmbios/libsmbios-2.4.3.ebuild | 79 +++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index 49464a42fb0..a55b7cb2abb 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1 +1,2 @@
DIST libsmbios-2.4.2.tar.gz 668042 BLAKE2B 2106206dce95e481ae36e033d2abe9f39402368a09686b92fd1de7d85e87ea494514e85bdf1267adb6b52060a4e6bb6001714c5d891a4c0342c814942c0458af SHA512 51d1b11447d50b768658473d01bcb6cc7f9dd5c96c26ec343f222115ffb5047ca1f035a0bfb67f94f53165eaea7a0d9b70cf01f03333a30885bbac153bf761bd
+DIST libsmbios-2.4.3.tar.gz 644140 BLAKE2B 684bff4f6cf755796f785e9a93d4ddbe2a1af52082cdebc27d203772a6a2a0259edb4b9d19921f90fc78b48d54700223fbc2628665b963ebcb601010ff4340ab SHA512 7f6fb36fa9653e123b416b275953fb5652025e76dac3b4ec5600168e193ea56f8ac3ea1a3b5db29d2770e73d88152d712a35bf77a9b3fc5596570fae885585ad
diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
new file mode 100644
index 00000000000..4e9e41d7a52
--- /dev/null
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit autotools flag-o-matic python-single-r1
+
+DESCRIPTION="Provide access to (SM)BIOS information"
+HOMEPAGE="http://linux.dell.com/files/libsmbios/"
+SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 OSL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86"
+IUSE="doc graphviz nls +python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-libs/libxml2
+ sys-libs/zlib
+ nls? ( virtual/libintl )
+ python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ graphviz? ( media-gfx/graphviz )
+ nls? ( sys-devel/gettext )
+ test? ( >=dev-util/cppunit-1.9.6 )"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
+)
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ # Don't build yum-plugin - we don't need it
+ sed '/yum-plugin/d' -i Makefile.am || die
+
+ eautoreconf
+}
+
+src_configure() {
+ #Remove -O3 for bug #290097
+ replace-flags -O3 -O2
+
+ local myeconfargs=(
+ $(use_enable doc doxygen)
+ $(use_enable graphviz)
+ $(use_enable nls)
+ $(use_enable python)
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ if use python ; then
+ python_scriptinto /usr/sbin
+ python_doscript "${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ fi
+
+ insinto /usr/include/
+ doins -r src/include/smbios_c
+
+ einstalldocs
+
+ if ! use static-libs ; then
+ find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2020-02-10 12:12 Michał Górny
0 siblings, 0 replies; 43+ messages in thread
From: Michał Górny @ 2020-02-10 12:12 UTC (permalink / raw
To: gentoo-commits
commit: c7e4b509e64c51c6e0705a018bafa1fad1f9a3c2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 10 12:09:45 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 10 12:12:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e4b509
sys-libs/libsmbios: Remove py2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild | 2 +-
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
index d2e8d299a25..229a12173e1 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
+PYTHON_COMPAT=( python3_{6,7,8} )
inherit autotools flag-o-matic python-single-r1
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
index 2220b96ec94..5590649e2e7 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6} )
+PYTHON_COMPAT=( python3_6 )
inherit autotools flag-o-matic python-single-r1
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2019-11-29 23:26 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2019-11-29 23:26 UTC (permalink / raw
To: gentoo-commits
commit: 4c9f71af233dc6a3dd50b5e1f13c56820794698c
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 29 23:25:50 2019 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Nov 29 23:26:02 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9f71af
sys-libs/libsmbios: Fixed QA warnings
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild | 4 +++-
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
index b9eae5cffc9..7d6570c7500 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
@@ -16,6 +16,8 @@ KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="doc graphviz nls python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+RESTRICT="!test? ( test )"
+
RDEPEND="dev-libs/libxml2
sys-libs/zlib
nls? ( virtual/libintl )
@@ -63,7 +65,7 @@ src_install() {
if use python ; then
python_scriptinto /usr/sbin
- python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ python_doscript "${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
fi
insinto /usr/include/
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
index 4a5c54da1b9..d6391e78821 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
@@ -16,6 +16,8 @@ KEYWORDS="amd64 ia64 x86"
IUSE="doc graphviz nls python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+RESTRICT="!test? ( test )"
+
RDEPEND="dev-libs/libxml2
sys-libs/zlib
nls? ( virtual/libintl )
@@ -63,7 +65,7 @@ src_install() {
if use python ; then
python_scriptinto /usr/sbin
- python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ python_doscript "${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
fi
insinto /usr/include/
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2019-11-29 18:14 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2019-11-29 18:14 UTC (permalink / raw
To: gentoo-commits
commit: b7922b2c47ea005c6b8061e9ddeb29bda9635153
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 29 18:11:53 2019 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Nov 29 18:13:56 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7922b2c
sys-libs/libsmbios: Revbump to enable python3_7 and python3_8
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild | 77 ++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
new file mode 100644
index 00000000000..b9eae5cffc9
--- /dev/null
+++ b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} )
+
+inherit autotools flag-o-matic python-single-r1
+
+DESCRIPTION="Provide access to (SM)BIOS information"
+HOMEPAGE="http://linux.dell.com/files/libsmbios/"
+SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 OSL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86"
+IUSE="doc graphviz nls python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="dev-libs/libxml2
+ sys-libs/zlib
+ nls? ( virtual/libintl )
+ python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ graphviz? ( media-gfx/graphviz )
+ nls? ( sys-devel/gettext )
+ test? ( >=dev-util/cppunit-1.9.6 )"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
+)
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ # Don't build yum-plugin - we don't need it
+ sed '/yum-plugin/d' -i Makefile.am || die
+
+ eautoreconf
+}
+
+src_configure() {
+ #Remove -O3 for bug #290097
+ replace-flags -O3 -O2
+
+ local myeconfargs=(
+ $(use_enable doc doxygen)
+ $(use_enable graphviz)
+ $(use_enable nls)
+ $(use_enable python)
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ if use python ; then
+ python_scriptinto /usr/sbin
+ python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ fi
+
+ insinto /usr/include/
+ doins -r src/include/smbios_c
+
+ einstalldocs
+
+ if ! use static-libs ; then
+ find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2019-10-03 8:07 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2019-10-03 8:07 UTC (permalink / raw
To: gentoo-commits
commit: 1b96a47430c03f18f573ef46ece5c7ab6c3c5759
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 3 08:06:34 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Oct 3 08:06:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b96a474
sys-libs/libsmbios: ia64 stable wrt bug #685580
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
index fa2eba17465..4a5c54da1b9 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
+KEYWORDS="amd64 ia64 x86"
IUSE="doc graphviz nls python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2019-05-18 18:07 Mikle Kolyada
0 siblings, 0 replies; 43+ messages in thread
From: Mikle Kolyada @ 2019-05-18 18:07 UTC (permalink / raw
To: gentoo-commits
commit: b44572313b12630ec43ede9cc4e5074c84171b3a
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 18:07:16 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat May 18 18:07:16 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4457231
sys-libs/libsmbios: amd64 stable wrt bug #685580
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
index 45d5bb68517..fa2eba17465 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 x86"
+KEYWORDS="amd64 ~ia64 x86"
IUSE="doc graphviz nls python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2019-05-16 23:56 Thomas Deutschmann
0 siblings, 0 replies; 43+ messages in thread
From: Thomas Deutschmann @ 2019-05-16 23:56 UTC (permalink / raw
To: gentoo-commits
commit: a1932bd8d5c56407c2f021eea39441683eb0bf60
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu May 16 23:40:56 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu May 16 23:40:56 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1932bd8
sys-libs/libsmbios: x86 stable (bug #685580)
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
index bedad6f331f..45d5bb68517 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~ia64 x86"
IUSE="doc graphviz nls python static-libs test"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2018-07-10 10:01 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2018-07-10 10:01 UTC (permalink / raw
To: gentoo-commits
commit: 9712dce50b198837e876e1f93ab78f15fe9b7020
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 10 10:01:37 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Jul 10 10:01:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9712dce5
sys-libs/libsmbios: Bump to version 2.4.2
Package-Manager: Portage-2.3.41, Repoman-2.3.9
sys-libs/libsmbios/Manifest | 1 +
sys-libs/libsmbios/libsmbios-2.4.2.ebuild | 77 +++++++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index 7037664f80e..c7fd744d19a 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1,3 +1,4 @@
DIST libsmbios-2.3.2.tar.gz 800862 BLAKE2B da888dbe3b3dfa10b39fbc4da90fe643982abc49f756f033d492f29d06631c722da7ec11a2b77780c06a74b7b0e3f70d5d3fc1ce895be7a7c8d136f654a22f7e SHA512 6ef3d71892e157d81fc466689b67c19b83567ee1c4893816da935cfc42738cf958f972eed811aad375fee5bb7d4a6b4e13fb1b5760cd0d7cdb5e65170ebeb129
DIST libsmbios-2.3.3.tar.gz 801164 BLAKE2B 22d04d4071ec3111d80acbbc10dbd51c15e5f8db06575f3079654da42e33dbbfcb364e1bdc8470d2a66475159da1179cafc9ae5284be0c35c4199dc5b16a1a2e SHA512 d4ee556fc0b734827e1a0def9c9914e79130ce9f164f62a5aa752276772f9ed27874fd8a285b65e016f16f001cdfa23c7c9d228533bb8a03134db90b9cc4f96d
DIST libsmbios-2.4.1.tar.gz 667796 BLAKE2B 119198783004215c269ae0846aad58fafcdd0ee2148e0014f77271c38511cc61430db2b81c43bbc0da507b40342c923731e06c61829f9604b84b26f7f527b37a SHA512 dd71e45f8047480a669b70efebb9bdbbea4870f96437fc45eb4088fd66331d117b29a65c45cee2e5c4628d0536072a5939eb83f1905857a85bd0567b3d1c22fb
+DIST libsmbios-2.4.2.tar.gz 668042 BLAKE2B 2106206dce95e481ae36e033d2abe9f39402368a09686b92fd1de7d85e87ea494514e85bdf1267adb6b52060a4e6bb6001714c5d891a4c0342c814942c0458af SHA512 51d1b11447d50b768658473d01bcb6cc7f9dd5c96c26ec343f222115ffb5047ca1f035a0bfb67f94f53165eaea7a0d9b70cf01f03333a30885bbac153bf761bd
diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
new file mode 100644
index 00000000000..3293aedcc96
--- /dev/null
+++ b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit autotools flag-o-matic python-single-r1
+
+DESCRIPTION="Provide access to (SM)BIOS information"
+HOMEPAGE="http://linux.dell.com/files/libsmbios/"
+SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 OSL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86"
+IUSE="doc graphviz nls python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="dev-libs/libxml2
+ sys-libs/zlib
+ nls? ( virtual/libintl )
+ python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ graphviz? ( media-gfx/graphviz )
+ nls? ( sys-devel/gettext )
+ test? ( >=dev-util/cppunit-1.9.6 )"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
+)
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ # Don't build yum-plugin - we don't need it
+ sed '/yum-plugin/d' -i Makefile.am || die
+
+ eautoreconf
+}
+
+src_configure() {
+ #Remove -O3 for bug #290097
+ replace-flags -O3 -O2
+
+ local myeconfargs=(
+ $(use_enable doc doxygen)
+ $(use_enable graphviz)
+ $(use_enable nls)
+ $(use_enable python)
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ if use python ; then
+ python_scriptinto /usr/sbin
+ python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ fi
+
+ insinto /usr/include/
+ doins -r src/include/smbios_c
+
+ einstalldocs
+
+ if ! use static-libs ; then
+ find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2018-03-05 9:14 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2018-03-05 9:14 UTC (permalink / raw
To: gentoo-commits
commit: 7cdc5d9a38b93ca714f65fc0b6a55ae203410fb0
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 5 09:14:42 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar 5 09:14:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cdc5d9a
sys-libs/libsmbios: Removed old.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-libs/libsmbios/Manifest | 1 -
sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild | 76 ----------------------------
2 files changed, 77 deletions(-)
diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index 197a9f8bf7e..7037664f80e 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1,4 +1,3 @@
-DIST libsmbios-2.3.0.tar.xz 830840 BLAKE2B 1ddbddd5c9837a44cfbd97bdb1862a90137ba6caf7c19fe4cdde1e7dceef1a6f2c9bcba6329a5dde6736d6b252e37cbb100ba9f555d0dc15a0946fb1717c7f3b SHA512 944df2dde0df8a02d4c5a84ff6e535e112e6d72b81177c8faba7c45b349ec8c8b2149439c4dc6ea834c5eedad1ac59d8bf073a3d48bf7caccc73d0317f00e216
DIST libsmbios-2.3.2.tar.gz 800862 BLAKE2B da888dbe3b3dfa10b39fbc4da90fe643982abc49f756f033d492f29d06631c722da7ec11a2b77780c06a74b7b0e3f70d5d3fc1ce895be7a7c8d136f654a22f7e SHA512 6ef3d71892e157d81fc466689b67c19b83567ee1c4893816da935cfc42738cf958f972eed811aad375fee5bb7d4a6b4e13fb1b5760cd0d7cdb5e65170ebeb129
DIST libsmbios-2.3.3.tar.gz 801164 BLAKE2B 22d04d4071ec3111d80acbbc10dbd51c15e5f8db06575f3079654da42e33dbbfcb364e1bdc8470d2a66475159da1179cafc9ae5284be0c35c4199dc5b16a1a2e SHA512 d4ee556fc0b734827e1a0def9c9914e79130ce9f164f62a5aa752276772f9ed27874fd8a285b65e016f16f001cdfa23c7c9d228533bb8a03134db90b9cc4f96d
DIST libsmbios-2.4.1.tar.gz 667796 BLAKE2B 119198783004215c269ae0846aad58fafcdd0ee2148e0014f77271c38511cc61430db2b81c43bbc0da507b40342c923731e06c61829f9604b84b26f7f527b37a SHA512 dd71e45f8047480a669b70efebb9bdbbea4870f96437fc45eb4088fd66331d117b29a65c45cee2e5c4628d0536072a5939eb83f1905857a85bd0567b3d1c22fb
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
deleted file mode 100644
index 9c7ce6e794e..00000000000
--- a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools eutils flag-o-matic python-single-r1
-
-DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="http://linux.dell.com/libsmbios/main/index.html"
-SRC_URI="http://linux.dell.com/libsmbios/download/libsmbios/${P}/${P}.tar.xz
- http://linux.dell.com/libsmbios/download/libsmbios/old/${P}/${P}.tar.xz"
-
-LICENSE="GPL-2 OSL-2.0"
-SLOT="0"
-KEYWORDS="amd64 ia64 x86"
-IUSE="doc graphviz nls python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="dev-libs/libxml2
- sys-libs/zlib
- nls? ( virtual/libintl )
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- graphviz? ( media-gfx/graphviz )
- nls? ( sys-devel/gettext )
- test? ( >=dev-util/cppunit-1.9.6 )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-fix-pie.patch"
- "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
- "${FILESDIR}/${PN}-2.3.0-doxygen_target.patch"
-)
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- default
-
- # Don't build yum-plugin - we don't need it
- sed '/yum-plugin/d' -i Makefile.am || die
-
- eautoreconf
-}
-
-src_configure() {
- #Remove -O3 for bug #290097
- replace-flags -O3 -O2
-
- econf \
- $(use_enable doc doxygen) \
- $(use_enable graphviz) \
- $(use_enable nls) \
- $(use_enable python) \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- if use python ; then
- python_scriptinto /usr/sbin
- python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,rbu-bios-update,sys-info}
- fi
-
- insinto /usr/include/
- doins -r src/include/smbios/
-
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- use static-libs || prune_libtool_files --all
-}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2018-03-05 9:14 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2018-03-05 9:14 UTC (permalink / raw
To: gentoo-commits
commit: a4ab9d97d65891f91a523ea6f4abba665b63e509
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 5 09:14:05 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar 5 09:14:05 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ab9d97
sys-libs/libsmbios: Bump to version 2.4.1
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-libs/libsmbios/Manifest | 1 +
sys-libs/libsmbios/libsmbios-2.4.1.ebuild | 77 +++++++++++++++++++++++++++++++
2 files changed, 78 insertions(+)
diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index 3753fceca76..197a9f8bf7e 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1,3 +1,4 @@
DIST libsmbios-2.3.0.tar.xz 830840 BLAKE2B 1ddbddd5c9837a44cfbd97bdb1862a90137ba6caf7c19fe4cdde1e7dceef1a6f2c9bcba6329a5dde6736d6b252e37cbb100ba9f555d0dc15a0946fb1717c7f3b SHA512 944df2dde0df8a02d4c5a84ff6e535e112e6d72b81177c8faba7c45b349ec8c8b2149439c4dc6ea834c5eedad1ac59d8bf073a3d48bf7caccc73d0317f00e216
DIST libsmbios-2.3.2.tar.gz 800862 BLAKE2B da888dbe3b3dfa10b39fbc4da90fe643982abc49f756f033d492f29d06631c722da7ec11a2b77780c06a74b7b0e3f70d5d3fc1ce895be7a7c8d136f654a22f7e SHA512 6ef3d71892e157d81fc466689b67c19b83567ee1c4893816da935cfc42738cf958f972eed811aad375fee5bb7d4a6b4e13fb1b5760cd0d7cdb5e65170ebeb129
DIST libsmbios-2.3.3.tar.gz 801164 BLAKE2B 22d04d4071ec3111d80acbbc10dbd51c15e5f8db06575f3079654da42e33dbbfcb364e1bdc8470d2a66475159da1179cafc9ae5284be0c35c4199dc5b16a1a2e SHA512 d4ee556fc0b734827e1a0def9c9914e79130ce9f164f62a5aa752276772f9ed27874fd8a285b65e016f16f001cdfa23c7c9d228533bb8a03134db90b9cc4f96d
+DIST libsmbios-2.4.1.tar.gz 667796 BLAKE2B 119198783004215c269ae0846aad58fafcdd0ee2148e0014f77271c38511cc61430db2b81c43bbc0da507b40342c923731e06c61829f9604b84b26f7f527b37a SHA512 dd71e45f8047480a669b70efebb9bdbbea4870f96437fc45eb4088fd66331d117b29a65c45cee2e5c4628d0536072a5939eb83f1905857a85bd0567b3d1c22fb
diff --git a/sys-libs/libsmbios/libsmbios-2.4.1.ebuild b/sys-libs/libsmbios/libsmbios-2.4.1.ebuild
new file mode 100644
index 00000000000..b6928795370
--- /dev/null
+++ b/sys-libs/libsmbios/libsmbios-2.4.1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit autotools flag-o-matic python-single-r1 versionator
+
+DESCRIPTION="Provide access to (SM)BIOS information"
+HOMEPAGE="http://linux.dell.com/files/libsmbios/"
+SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 OSL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86"
+IUSE="doc graphviz nls python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="dev-libs/libxml2
+ sys-libs/zlib
+ nls? ( virtual/libintl )
+ python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ graphviz? ( media-gfx/graphviz )
+ nls? ( sys-devel/gettext )
+ test? ( >=dev-util/cppunit-1.9.6 )"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
+)
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ # Don't build yum-plugin - we don't need it
+ sed '/yum-plugin/d' -i Makefile.am || die
+
+ eautoreconf
+}
+
+src_configure() {
+ #Remove -O3 for bug #290097
+ replace-flags -O3 -O2
+
+ local myeconfargs=(
+ $(use_enable doc doxygen)
+ $(use_enable graphviz)
+ $(use_enable nls)
+ $(use_enable python)
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ if use python ; then
+ python_scriptinto /usr/sbin
+ python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ fi
+
+ insinto /usr/include/
+ doins -r src/include/smbios_c
+
+ einstalldocs
+
+ if ! use static-libs ; then
+ find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2017-05-26 22:54 David Seifert
0 siblings, 0 replies; 43+ messages in thread
From: David Seifert @ 2017-05-26 22:54 UTC (permalink / raw
To: gentoo-commits
commit: cea7b6884b73aeffa1083ce8d83911c31e294290
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 22:44:00 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri May 26 22:53:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea7b688
sys-libs/libsmbios: [QA] Add missing python metadata variables
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild | 3 +--
sys-libs/libsmbios/libsmbios-2.3.2.ebuild | 3 +--
sys-libs/libsmbios/libsmbios-2.3.3.ebuild | 3 +--
3 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
index b751c8eb01c..9c7ce6e794e 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
@@ -15,6 +15,7 @@ LICENSE="GPL-2 OSL-2.0"
SLOT="0"
KEYWORDS="amd64 ia64 x86"
IUSE="doc graphviz nls python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="dev-libs/libxml2
sys-libs/zlib
@@ -40,8 +41,6 @@ pkg_setup() {
src_prepare() {
default
- >pkg/py-compile
-
# Don't build yum-plugin - we don't need it
sed '/yum-plugin/d' -i Makefile.am || die
diff --git a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
index 36ba9288627..1d257c3a29f 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
@@ -14,6 +14,7 @@ LICENSE="GPL-2 OSL-2.0"
SLOT="0"
KEYWORDS="amd64 ~ia64 x86"
IUSE="doc graphviz nls python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="dev-libs/libxml2
sys-libs/zlib
@@ -39,8 +40,6 @@ pkg_setup() {
src_prepare() {
default
- >pkg/py-compile
-
# Don't build yum-plugin - we don't need it
sed '/yum-plugin/d' -i Makefile.am || die
diff --git a/sys-libs/libsmbios/libsmbios-2.3.3.ebuild b/sys-libs/libsmbios/libsmbios-2.3.3.ebuild
index 9064df57b93..f6024bfa347 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.3.ebuild
@@ -14,6 +14,7 @@ LICENSE="GPL-2 OSL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="doc graphviz nls python static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="dev-libs/libxml2
sys-libs/zlib
@@ -39,8 +40,6 @@ pkg_setup() {
src_prepare() {
default
- >pkg/py-compile
-
# Don't build yum-plugin - we don't need it
sed '/yum-plugin/d' -i Makefile.am || die
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2017-05-26 14:05 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2017-05-26 14:05 UTC (permalink / raw
To: gentoo-commits
commit: 83c925e9db463a26ea7c5c98fe5956f6ce05faa6
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 14:03:56 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri May 26 14:03:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c925e9
sys-libs/libsmbios: x86 stable wrt bug #619566
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
index 421a0ef0f72..36ba9288627 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 x86"
IUSE="doc graphviz nls python static-libs test"
RDEPEND="dev-libs/libxml2
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2017-05-25 10:44 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2017-05-25 10:44 UTC (permalink / raw
To: gentoo-commits
commit: 4d6a3f8303803732fca6980a20e7dadf564e4f6e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 25 10:43:17 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 25 10:43:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d6a3f83
sys-libs/libsmbios: amd64 stable wrt bug #619566
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
index d8d00cbe04f..421a0ef0f72 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 ~x86"
IUSE="doc graphviz nls python static-libs test"
RDEPEND="dev-libs/libxml2
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2017-02-21 13:56 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2017-02-21 13:56 UTC (permalink / raw
To: gentoo-commits
commit: b2b9e66897477dbbee590c4e235b5e906d8fb97e
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 21 13:56:39 2017 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 13:56:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b9e668
sys-libs/libsmbios: Bump to version 2.3.2
Package-Manager: Portage-2.3.3, Repoman-2.3.1
sys-libs/libsmbios/Manifest | 1 +
sys-libs/libsmbios/libsmbios-2.3.2.ebuild | 83 +++++++++++++++++++++++++++++++
2 files changed, 84 insertions(+)
diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index 5f2b626164..741a9a7cbc 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1 +1,2 @@
DIST libsmbios-2.3.0.tar.xz 830840 SHA256 c71f040df170f6b55a874f292929792449ba1fad6029ba18544ed04a88343c1c SHA512 944df2dde0df8a02d4c5a84ff6e535e112e6d72b81177c8faba7c45b349ec8c8b2149439c4dc6ea834c5eedad1ac59d8bf073a3d48bf7caccc73d0317f00e216 WHIRLPOOL ac2acbb780f45ebcc9c616881432c981fc9907682b3b4d1e7164921cfa6beeef1a25bdde949375455843209556938ce45a92df8b2a190ab689f1673e72561ac9
+DIST libsmbios-2.3.2.tar.gz 800862 SHA256 527874a2abad8f8a9320eeb6b5dd11b6d5b8fff6cdc90bb0f757c39da519714f SHA512 6ef3d71892e157d81fc466689b67c19b83567ee1c4893816da935cfc42738cf958f972eed811aad375fee5bb7d4a6b4e13fb1b5760cd0d7cdb5e65170ebeb129 WHIRLPOOL 499c27d690b2f7b26272423ac9835c7726ef6667e34ed9212cb41d1ff207fddd75749228995de746b2daf5c24b9c4bb7d6d6e72b009c56f4fd53caa455ecf755
diff --git a/sys-libs/libsmbios/libsmbios-2.3.2.ebuild b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
new file mode 100644
index 0000000000..737f293061
--- /dev/null
+++ b/sys-libs/libsmbios/libsmbios-2.3.2.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools flag-o-matic python-single-r1 versionator
+
+DESCRIPTION="Provide access to (SM)BIOS information"
+HOMEPAGE="http://linux.dell.com/files/libsmbios/"
+SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2 OSL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~x86"
+IUSE="doc graphviz nls python static-libs test"
+
+RDEPEND="dev-libs/libxml2
+ sys-libs/zlib
+ nls? ( virtual/libintl )
+ python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ graphviz? ( media-gfx/graphviz )
+ nls? ( sys-devel/gettext )
+ test? ( >=dev-util/cppunit-1.9.6 )"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-fix-pie.patch"
+ "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
+ "${FILESDIR}/${PN}-2.3.0-doxygen_target.patch"
+)
+
+pkg_setup() {
+ use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ >pkg/py-compile
+
+ # Don't build yum-plugin - we don't need it
+ sed '/yum-plugin/d' -i Makefile.am || die
+
+ # Fix version string in build system
+ sed "/release_micro_version/s@\[1\]@[$(get_version_component_range 3)]@" \
+ -i configure.ac || die
+
+ eautoreconf
+}
+
+src_configure() {
+ #Remove -O3 for bug #290097
+ replace-flags -O3 -O2
+
+ econf \
+ $(use_enable doc doxygen) \
+ $(use_enable graphviz) \
+ $(use_enable nls) \
+ $(use_enable python) \
+ $(use_enable static-libs static)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ if use python ; then
+ python_scriptinto /usr/sbin
+ python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
+ fi
+
+ insinto /usr/include/
+ doins -r src/include/smbios/
+
+ einstalldocs
+
+ if ! use static-libs ; then
+ find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+ fi
+}
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2017-01-04 17:09 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2017-01-04 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 34e4e9db59c0478cbe1c0b60f05d3af621a8c861
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 4 17:08:45 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jan 4 17:08:45 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e4e9db
sys-libs/libsmbios: x86 stable wrt bug #604380
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
index e35a4df..46a8596 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://linux.dell.com/libsmbios/download/libsmbios/${P}/${P}.tar.xz
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 x86"
IUSE="doc graphviz nls python static-libs test"
RDEPEND="dev-libs/libxml2
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2017-01-04 16:56 Agostino Sarubbo
0 siblings, 0 replies; 43+ messages in thread
From: Agostino Sarubbo @ 2017-01-04 16:56 UTC (permalink / raw
To: gentoo-commits
commit: d0c6a757d32d9c6e4ee7a083ec1479093a0ae314
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 4 16:56:48 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jan 4 16:56:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0c6a757
sys-libs/libsmbios: amd64 stable wrt bug #604380
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
index 1a5f971..e35a4df 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -14,7 +14,7 @@ SRC_URI="http://linux.dell.com/libsmbios/download/libsmbios/${P}/${P}.tar.xz
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 ~x86"
IUSE="doc graphviz nls python static-libs test"
RDEPEND="dev-libs/libxml2
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2016-05-14 7:20 Michał Górny
0 siblings, 0 replies; 43+ messages in thread
From: Michał Górny @ 2016-05-14 7:20 UTC (permalink / raw
To: gentoo-commits
commit: f7e98dcc1318911c576194c9b828695ecdaaca92
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 14 07:10:22 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 14 07:19:57 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e98dcc
sys-libs/libsmbios: python_scriptroot -> python_scriptinto
sys-libs/libsmbios/libsmbios-2.2.28.ebuild | 4 ++--
sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.2.28.ebuild b/sys-libs/libsmbios/libsmbios-2.2.28.ebuild
index ff0f797..5661670 100644
--- a/sys-libs/libsmbios/libsmbios-2.2.28.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.2.28.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -67,7 +67,7 @@ src_install() {
rmdir "${D}libsmbios_c" "${D}usr/share/smbios-utils"
rm -rf "${D}etc"
else
- local python_scriptroot="/usr/sbin"
+ python_scriptinto /usr/sbin
python_doscript "${D}"/usr/sbin/smbios-{lcd-brightness,passwd,rbu-bios-update,sys-info,token-ctl,wakeup-ctl,wireless-ctl}
fi
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
index 08e83cb..1a5f971 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
@@ -65,7 +65,7 @@ src_install() {
emake install DESTDIR="${D}"
if use python ; then
- local python_scriptroot="/usr/sbin"
+ python_scriptinto /usr/sbin
python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,rbu-bios-update,sys-info}
fi
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2016-03-15 14:34 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2016-03-15 14:34 UTC (permalink / raw
To: gentoo-commits
commit: 94b31c831ca409947d239ade0a516d739fbf5ea5
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 14:33:48 2016 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 14:34:03 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b31c83
sys-libs/libsmbios: Fixed installation with USE="-python" (bug #577474).
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
index 495b64e..08e83cb 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
@@ -64,10 +64,7 @@ src_configure() {
src_install() {
emake install DESTDIR="${D}"
- if ! use python ; then
- rmdir "${ED%/}/libsmbios_c" "${ED%/}/usr/share/smbios-utils" || die
- rm -r "${ED%/}/etc" || die
- else
+ if use python ; then
local python_scriptroot="/usr/sbin"
python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,rbu-bios-update,sys-info}
fi
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2016-03-14 16:16 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2016-03-14 16:16 UTC (permalink / raw
To: gentoo-commits
commit: 28357a789bbe994addd26906770a5ecc4067c53a
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 16:15:46 2016 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 16:16:31 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28357a78
sys-libs/libsmbios: Don't build yum-plugin ever (fixes bug #577402).
Use some more python scripts via python-exec wrapper.
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
.../{libsmbios-2.3.0.ebuild => libsmbios-2.3.0-r1.ebuild} | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.3.0.ebuild b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
similarity index 83%
rename from sys-libs/libsmbios/libsmbios-2.3.0.ebuild
rename to sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
index 8cceca9..495b64e 100644
--- a/sys-libs/libsmbios/libsmbios-2.3.0.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.3.0-r1.ebuild
@@ -43,6 +43,9 @@ src_prepare() {
>pkg/py-compile
+ # Don't build yum-plugin - we don't need it
+ sed '/yum-plugin/d' -i Makefile.am || die
+
eautoreconf
}
@@ -61,14 +64,12 @@ src_configure() {
src_install() {
emake install DESTDIR="${D}"
- rm -r "${D}etc/yum" || die
- rm -r "${D}usr/lib/yum-plugins" || die
if ! use python ; then
- rmdir "${D}libsmbios_c" "${D}usr/share/smbios-utils" || die
- rm -r "${D}etc" || die
+ rmdir "${ED%/}/libsmbios_c" "${ED%/}/usr/share/smbios-utils" || die
+ rm -r "${ED%/}/etc" || die
else
local python_scriptroot="/usr/sbin"
- python_doscript "${D}"/usr/sbin/smbios-{lcd-brightness,passwd,rbu-bios-update,sys-info,token-ctl,wakeup-ctl,wireless-ctl}
+ python_doscript "${ED%/}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,rbu-bios-update,sys-info}
fi
insinto /usr/include/
^ permalink raw reply related [flat|nested] 43+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/
@ 2016-03-14 10:10 Lars Wendler
0 siblings, 0 replies; 43+ messages in thread
From: Lars Wendler @ 2016-03-14 10:10 UTC (permalink / raw
To: gentoo-commits
commit: 88e990ee8e7a470adf9493a7741419c1d700aae6
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 09:43:50 2016 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 10:10:50 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e990ee
sys-libs/libsmbios: Added second SRC_URI for older releases.
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
sys-libs/libsmbios/libsmbios-2.2.28.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sys-libs/libsmbios/libsmbios-2.2.28.ebuild b/sys-libs/libsmbios/libsmbios-2.2.28.ebuild
index e3eb600..ff0f797 100644
--- a/sys-libs/libsmbios/libsmbios-2.2.28.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.2.28.ebuild
@@ -9,7 +9,8 @@ inherit eutils python-single-r1 flag-o-matic autotools
DESCRIPTION="Provide access to (SM)BIOS information"
HOMEPAGE="http://linux.dell.com/libsmbios/main/index.html"
-SRC_URI="http://linux.dell.com/libsmbios/download/libsmbios/${P}/${P}.tar.bz2"
+SRC_URI="http://linux.dell.com/libsmbios/download/libsmbios/${P}/${P}.tar.bz2
+ http://linux.dell.com/libsmbios/download/libsmbios/old/${P}/${P}.tar.bz2"
LICENSE="GPL-2 OSL-2.0"
SLOT="0"
^ permalink raw reply related [flat|nested] 43+ messages in thread
end of thread, other threads:[~2023-11-21 10:05 UTC | newest]
Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-26 12:49 [gentoo-commits] repo/gentoo:master commit in: sys-libs/libsmbios/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-11-21 10:05 Marek Szuba
2023-10-26 12:49 Sam James
2023-08-09 18:14 Piotr Karbowski
2022-10-07 12:39 Sam James
2022-09-09 14:02 Marek Szuba
2022-09-09 14:02 Marek Szuba
2022-09-09 13:25 Marek Szuba
2022-09-07 14:30 Marek Szuba
2022-07-28 0:30 Marek Szuba
2022-07-03 18:42 Piotr Karbowski
2022-06-29 10:59 Marek Szuba
2022-06-29 10:59 Marek Szuba
2022-06-22 10:31 Lars Wendler
2022-05-02 6:05 Sam James
2021-09-01 9:24 Yixun Lan
2021-06-15 23:04 Thomas Deutschmann
2021-02-15 2:19 Rick Farina
2020-12-14 0:46 Sam James
2020-11-30 8:59 Lars Wendler
2020-05-19 0:55 Lars Wendler
2020-05-18 21:13 Agostino Sarubbo
2020-05-18 21:10 Agostino Sarubbo
2020-02-10 13:02 Lars Wendler
2020-02-10 12:12 Michał Górny
2019-11-29 23:26 Lars Wendler
2019-11-29 18:14 Lars Wendler
2019-10-03 8:07 Agostino Sarubbo
2019-05-18 18:07 Mikle Kolyada
2019-05-16 23:56 Thomas Deutschmann
2018-07-10 10:01 Lars Wendler
2018-03-05 9:14 Lars Wendler
2018-03-05 9:14 Lars Wendler
2017-05-26 22:54 David Seifert
2017-05-26 14:05 Agostino Sarubbo
2017-05-25 10:44 Agostino Sarubbo
2017-02-21 13:56 Lars Wendler
2017-01-04 17:09 Agostino Sarubbo
2017-01-04 16:56 Agostino Sarubbo
2016-05-14 7:20 Michał Górny
2016-03-15 14:34 Lars Wendler
2016-03-14 16:16 Lars Wendler
2016-03-14 10:10 Lars Wendler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox