[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2022-05-25 Thread WANG Xuerui
commit: c6363117b2738dde95b38e0a60aa96e31b89cf9d
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu May 26 04:39:33 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu May 26 04:45:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6363117

dev-libs/libatasmart: keyword 0.19_p5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index b25a58b51f21..488991a76989 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2021-05-27 Thread Yixun Lan
commit: 861197c2555a2186bf091b7cd455b1a8e032345c
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu May 27 13:35:29 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu May 27 14:32:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=861197c2

dev-libs/libatasmart: add riscv keyword

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index ca77a0f760a..b25a58b51f2 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2020-12-28 Thread Mike Gilbert
commit: c726509edbce1bb066d87a43aaac8fdfb741c272
Author: David Michael  gmail  com>
AuthorDate: Sat Dec 26 02:50:51 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Dec 28 17:35:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c726509e

dev-libs/libatasmart: support cross-compiling

The strpool directory must be compiled natively.  The build system
makes an attempt to handle this by setting CC, AM_CFLAGS, etc., but
configure substitutes CFLAGS directly, so it winds up with CBUILD
CC and CHOST CFLAGS which breaks everything.  This just runs emake
in that directory while overriding flags with command arguments.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: David Michael  gmail.com>
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 7da99e26ec2..8afa393021d 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=7
 
+inherit toolchain-funcs
+
 DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard 
disks"
 HOMEPAGE="https://salsa.debian.org/utopia-team/libatasmart;
 SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
@@ -15,9 +17,7 @@ IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="
 DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-"
+BDEPEND="virtual/pkgconfig"
 
 S="${WORKDIR}/${P/_p*}"
 
@@ -34,6 +34,17 @@ src_configure() {
econf $(use_enable static-libs static)
 }
 
+src_compile() {
+   if tc-is-cross-compiler; then
+   tc-export_build_env
+   emake -C strpool strpool \
+   CFLAGS="${BUILD_CFLAGS}" \
+   CPPFLAGS="${BUILD_CPPFLAGS}" \
+   LDFLAGS="${BUILD_LDFLAGS}"
+   fi
+   emake
+}
+
 src_install() {
default
find "${ED}" -type f -name "*.la" -delete || die



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-12-14 Thread Pacho Ramos
commit: 600a340ffe54f0db52408ce1636a839c7c043b9e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Dec 14 22:17:03 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Dec 14 23:05:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=600a340f

dev-libs/libatasmart: Drop old

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Pacho Ramos  gentoo.org>

 dev-libs/libatasmart/Manifest   |  2 --
 dev-libs/libatasmart/libatasmart-0.19-r2.ebuild | 41 -
 2 files changed, 43 deletions(-)

diff --git a/dev-libs/libatasmart/Manifest b/dev-libs/libatasmart/Manifest
index 74a2b4dea5b..fc6fc6b74d9 100644
--- a/dev-libs/libatasmart/Manifest
+++ b/dev-libs/libatasmart/Manifest
@@ -1,4 +1,2 @@
-DIST libatasmart-0.19.tar.xz 251204 BLAKE2B 
7e2a9823c27eee5a41f93464b28236239891349639162c5fdc114c241a70fb39a3046c3de16ce402787cd86e13609fff0578bd26f7a2c994fefe3c9756d45968
 SHA512 
ec9edb019c477873b01289ba365ad0ed0946505d651c1f6f83a63ef61b3976a5db6439c8a0c74d9a55325db9a3a587ad6f655f8d1af9387b0d08356eccabdb62
-DIST libatasmart_0.19-2.debian.tar.gz 6511 BLAKE2B 
d283dd1db988b95436a99cf804790b6c9b22d48b41d561a6fd2b9aff0948241ab5e775c5c35691692103acd5e73ad2e46278b9d37f886cd48c91cc69353a1564
 SHA512 
78e86b0c1d2a56dddc8d9ac97ee325871e319ad2226f1fbd5a048d792cd05e5d8162d282c1f767086da5329cd1ee67b37fbb5a2fd3c950f84e9efab11abcf754
 DIST libatasmart_0.19-5.debian.tar.xz 6452 BLAKE2B 
09bde3d5d79062d4df82e5582e932b6b566a91607086ddd805925d1966cdee4cb4ba43863f4b7d26a98588479b117841050f762d23c6719448635bf1e681b315
 SHA512 
434b6ef3ea377485ce745e147da8bb72851b2eeabe6f418379511650f0161f15a9ee21f4f0b5f9beb218b99eb417c1aeafdea4640995efbaf45024f40ce71802
 DIST libatasmart_0.19.orig.tar.xz 251204 BLAKE2B 
7e2a9823c27eee5a41f93464b28236239891349639162c5fdc114c241a70fb39a3046c3de16ce402787cd86e13609fff0578bd26f7a2c994fefe3c9756d45968
 SHA512 
ec9edb019c477873b01289ba365ad0ed0946505d651c1f6f83a63ef61b3976a5db6439c8a0c74d9a55325db9a3a587ad6f655f8d1af9387b0d08356eccabdb62

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
deleted file mode 100644
index 059a6224249..000
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils
-
-PATCH_LEVEL=2
-
-DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard 
disks"
-HOMEPAGE="http://0pointer.de/blog/projects/being-smart.html;
-SRC_URI="http://0pointer.de/public/${P}.tar.xz
-   
mirror://debian/pool/main/liba/${PN}/${PN}_${PV}-${PATCH_LEVEL}.debian.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/4"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
-IUSE="static-libs"
-
-RDEPEND="virtual/libudev:="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   # https://bugs.gentoo.org/470874
-   local d="${WORKDIR}"/debian/patches
-   sed -i -e '/#/d' \
-   -e "s|^|${d}/|" "${d}"/series || die
-   eapply $(<"${d}"/series)
-   eapply_user
-}
-
-src_configure() {
-   econf \
-   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   prune_libtool_files --all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-24 Thread Sergei Trofimovich
commit: 72f28fbbbe0576943a48927b0372b18e90594b78
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Nov 25 06:53:43 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov 25 07:30:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f28fbb

dev-libs/libatasmart: stable 0.19_p5 for hppa, bug #700526

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 3f90690247a..a9e0d81fb64 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-22 Thread Aaron Bauman
commit: 6428e9b7ca2a3417bf54b4aca55ecbf9859a6cef
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Nov 23 01:53:33 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Nov 23 01:53:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6428e9b7

dev-libs/libatasmart: arm64 stable (bug #700526)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.79, Repoman-2.3.18

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 31c40866538..3f90690247a 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-22 Thread Matt Turner
commit: ea5c86737bba977de456c2889e198a08b60e309d
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Nov 22 13:44:18 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 22 13:44:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea5c8673

dev-libs/libatasmart-0.19_p5: alpha stable, bug 700526

Signed-off-by: Matt Turner  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index dc96ef0da8e..31c40866538 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-22 Thread Mikle Kolyada
commit: a0c1825f56df28cb2cdccefa617e3e9fc62f9f73
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Nov 22 10:00:58 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Nov 22 10:00:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0c1825f

dev-libs/libatasmart: arm stable wrt bug #700526

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 8be42724513..dc96ef0da8e 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-20 Thread Agostino Sarubbo
commit: 8b7eedd21207e20b1860df3c7be53c177ffa382b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 20 13:23:11 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 20 13:23:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7eedd2

dev-libs/libatasmart: x86 stable wrt bug #700526

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 90ef8d04072..8be42724513 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-20 Thread Agostino Sarubbo
commit: f21f289c76bf77a06632a942ac501c21fe6280e9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 20 11:47:52 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 20 11:47:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21f289c

dev-libs/libatasmart: sparc stable wrt bug #700526

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 2578273a107..90ef8d04072 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc ~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-20 Thread Agostino Sarubbo
commit: 95043c916460f134a48ed415b78c9b1ff4f32f47
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 20 11:26:06 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 20 11:26:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95043c91

dev-libs/libatasmart: ppc stable wrt bug #700526

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index d4902175577..14ef5d1d219 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-11-20 Thread Agostino Sarubbo
commit: 8a255baa8aaed12d0e767aaa8921f2617fd9afb0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 20 11:15:45 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 20 11:15:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a255baa

dev-libs/libatasmart: amd64 stable wrt bug #700526

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
index 14cb1e0f3a0..67f99c05997 100644
--- a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-10-14 Thread Lars Wendler
commit: 259d2c63cb50e2cd36d6f15129c131be6af59267
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Oct 14 14:22:29 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Oct 14 14:23:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=259d2c63

dev-libs/libatasmart: Bump to version 0.19_p5

New upstream (Debian?)

Bug: https://bugs.gentoo.org/697702
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Lars Wendler  gentoo.org>

 dev-libs/libatasmart/Manifest   |  2 ++
 dev-libs/libatasmart/libatasmart-0.19_p5.ebuild | 44 +
 2 files changed, 46 insertions(+)

diff --git a/dev-libs/libatasmart/Manifest b/dev-libs/libatasmart/Manifest
index 4d371de4ba6..74a2b4dea5b 100644
--- a/dev-libs/libatasmart/Manifest
+++ b/dev-libs/libatasmart/Manifest
@@ -1,2 +1,4 @@
 DIST libatasmart-0.19.tar.xz 251204 BLAKE2B 
7e2a9823c27eee5a41f93464b28236239891349639162c5fdc114c241a70fb39a3046c3de16ce402787cd86e13609fff0578bd26f7a2c994fefe3c9756d45968
 SHA512 
ec9edb019c477873b01289ba365ad0ed0946505d651c1f6f83a63ef61b3976a5db6439c8a0c74d9a55325db9a3a587ad6f655f8d1af9387b0d08356eccabdb62
 DIST libatasmart_0.19-2.debian.tar.gz 6511 BLAKE2B 
d283dd1db988b95436a99cf804790b6c9b22d48b41d561a6fd2b9aff0948241ab5e775c5c35691692103acd5e73ad2e46278b9d37f886cd48c91cc69353a1564
 SHA512 
78e86b0c1d2a56dddc8d9ac97ee325871e319ad2226f1fbd5a048d792cd05e5d8162d282c1f767086da5329cd1ee67b37fbb5a2fd3c950f84e9efab11abcf754
+DIST libatasmart_0.19-5.debian.tar.xz 6452 BLAKE2B 
09bde3d5d79062d4df82e5582e932b6b566a91607086ddd805925d1966cdee4cb4ba43863f4b7d26a98588479b117841050f762d23c6719448635bf1e681b315
 SHA512 
434b6ef3ea377485ce745e147da8bb72851b2eeabe6f418379511650f0161f15a9ee21f4f0b5f9beb218b99eb417c1aeafdea4640995efbaf45024f40ce71802
+DIST libatasmart_0.19.orig.tar.xz 251204 BLAKE2B 
7e2a9823c27eee5a41f93464b28236239891349639162c5fdc114c241a70fb39a3046c3de16ce402787cd86e13609fff0578bd26f7a2c994fefe3c9756d45968
 SHA512 
ec9edb019c477873b01289ba365ad0ed0946505d651c1f6f83a63ef61b3976a5db6439c8a0c74d9a55325db9a3a587ad6f655f8d1af9387b0d08356eccabdb62

diff --git a/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
new file mode 100644
index 000..14cb1e0f3a0
--- /dev/null
+++ b/dev-libs/libatasmart/libatasmart-0.19_p5.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard 
disks"
+HOMEPAGE="https://salsa.debian.org/utopia-team/libatasmart;
+SRC_URI="mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p*}.orig.tar.xz
+   mirror://debian/pool/main/liba/${PN}/${PN}_${PV/_p/-}.debian.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/4"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
+IUSE="static-libs"
+
+RDEPEND="virtual/libudev:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+"
+
+S="${WORKDIR}/${P/_p*}"
+
+src_prepare() {
+   # https://bugs.gentoo.org/470874
+   local d="${WORKDIR}/debian/patches"
+   sed -i -e '/#/d' \
+   -e "s|^|${d}/|" "${d}"/series || die
+   eapply $(<"${d}"/series)
+   eapply_user
+}
+
+src_configure() {
+   local myeconfargs=(
+   --docdir="${EPREFIX}"/usr/share/doc/${PF}
+   $(use_enable static-libs static)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   find "${ED}" -type f -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-10-14 Thread Lars Wendler
commit: 8dc9f93a360d726b014712762ec3993f25c66c4c
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Oct 14 14:12:03 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Oct 14 14:12:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc9f93a

dev-libs/libatasmart: Removed old

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Lars Wendler  gentoo.org>

 dev-libs/libatasmart/libatasmart-0.19-r1.ebuild | 41 -
 1 file changed, 41 deletions(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r1.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r1.ebuild
deleted file mode 100644
index f2820bf64e2..000
--- a/dev-libs/libatasmart/libatasmart-0.19-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-PATCH_LEVEL=2
-
-DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard 
disks"
-HOMEPAGE="http://0pointer.de/blog/projects/being-smart.html;
-SRC_URI="http://0pointer.de/public/${P}.tar.xz
-   
mirror://debian/pool/main/liba/${PN}/${PN}_${PV}-${PATCH_LEVEL}.debian.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
-IUSE="static-libs"
-
-RDEPEND="virtual/udev"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS="README"
-
-src_prepare() {
-   # https://bugs.gentoo.org/470874
-   local d="${WORKDIR}"/debian/patches
-   sed -i -e '/#/d' "${d}"/series || die
-   EPATCH_SOURCE="${d}" epatch $(<"${d}"/series)
-}
-
-src_configure() {
-   econf \
-   --docdir=/usr/share/doc/${PF} \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   prune_libtool_files --all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2019-05-22 Thread Aaron Bauman
commit: 36d0caa8e63630514a782c79387623fb714065cb
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed May 22 20:52:23 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 22 21:19:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d0caa8

dev-libs/libatasmart: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 211752c..059a6224249 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2018-04-03 Thread Matt Turner
commit: 646683089c56d582ef849cad9e98e4a6a5f599a9
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Apr  3 21:02:05 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Apr  3 21:02:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64668308

dev-libs/libatasmart-0.19-r2: hppa stable, bug 630338

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 46c17c3288b..211752c 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-11-05 Thread Sergei Trofimovich
commit: f50e535e7997076ca2da9b0d4904d07846090a7e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Nov  5 22:16:02 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Nov  5 22:16:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f50e535e

dev-libs/libatasmart: stable 0.19-r2 for sparc, bug #630338 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 49c61709c62..46c17c3288b 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-10-28 Thread Manuel Rüger
commit: f6a860db828fad75a332043a2727019a949ce621
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sat Oct 28 14:15:07 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sat Oct 28 14:15:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a860db

dev-libs/libatasmart: Stable on amd64

Package-Manager: Portage-2.3.13, Repoman-2.3.3

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 49b5a281b75..49c61709c62 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-10-27 Thread Thomas Deutschmann
commit: c0bc46141b6638d122e6b19450bd4b3e9fe48224
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Oct 27 13:48:47 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 27 13:49:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0bc4614

dev-libs/libatasmart: x86 stable (bug #630338)

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index c1f7c6738d1..49b5a281b75 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-10-05 Thread Sergei Trofimovich
commit: 6ae99c791de49bead5e52f6d51e09ab4caac9dd0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct  5 08:34:29 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct  5 08:37:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ae99c79

dev-libs/libatasmart: stable 0.19-r2 for ppc, bug #630338

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 3575c9829eb..c1f7c6738d1 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc ~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-09-19 Thread Markus Meier
commit: f72f53e4745b345849beb0c8b98e20bb3b0b9e90
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Sep 19 19:44:22 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Sep 19 19:44:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f72f53e4

dev-libs/libatasmart: arm stable, bug #630338

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 2e3420063b7..3575c9829eb 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-09-15 Thread Tobias Klausmann
commit: 35b8eba73fea3d0381ed63d2cb1169bc26706d90
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Sep 15 15:37:50 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Sep 15 15:37:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b8eba7

dev-libs/libatasmart-0.19-r2: alpha stable

Gentoo-Bug: 630338

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index eb7c709c765..2e3420063b7 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc 
~x86"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-09-10 Thread Sergei Trofimovich
commit: 2a465a8662eebab7e71095c57b3793844e89d2d9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 10 20:45:41 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 10 20:46:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a465a86

dev-libs/libatasmart: stable 0.19-r2 for ppc64, bug #630338

Package-Manager: Portage-2.3.8, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index e71f07d7bea..eb7c709c765 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc 
~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-09-09 Thread Sergei Trofimovich
commit: 4176565bb24a33184a4d152cb5cff085deeb8f00
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Sep  9 11:52:37 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Sep  9 11:53:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4176565b

dev-libs/libatasmart: stable 0.19-r2 for ia64, bug #630338

Package-Manager: Portage-2.3.8, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 4f15d0711ac..e71f07d7bea 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz
 
 LICENSE="LGPL-2.1"
 SLOT="0/4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
 IUSE="static-libs"
 
 RDEPEND="virtual/libudev:="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2017-02-18 Thread Michael Palimaka
commit: 9a63c1c83f1460939bfc4d0a12d95a289d51e60a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Feb 19 03:06:36 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Feb 19 03:06:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a63c1c8

dev-libs/libatasmart: add subslot operator

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/libatasmart/libatasmart-0.19-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index 0cf955c025..b57f4c52c2 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.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$
 
@@ -17,7 +17,7 @@ SLOT="0/4"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
 IUSE="static-libs"
 
-RDEPEND="virtual/libudev"
+RDEPEND="virtual/libudev:="
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2016-12-16 Thread Fabian Groffen
commit: 132ff29775e1a153faaca83c4092d065f4dc6053
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Dec 16 08:42:05 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Dec 16 08:42:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132ff297

dev-libs/libatasmart: fix Prefix installation by Jens Lindenmeier, bug #602574

Package-Manager: portage-2.3.0

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

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
index f232df3..0cf955c 100644
--- a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -32,7 +32,7 @@ src_prepare() {
 
 src_configure() {
econf \
-   --docdir=/usr/share/doc/${PF} \
+   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
$(use_enable static-libs static)
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2016-11-12 Thread Gilles Dartiguelongue
commit: 8b341e9fa966f90def1ffb00d368182c3c2da055
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Nov 12 23:27:13 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Nov 13 00:29:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b341e9f

dev-libs/libatasmart: fix dependency on udev

And switch to EAPI=6.

Gentoo-Bug: 562750

Package-Manager: portage-2.3.2

 dev-libs/libatasmart/libatasmart-0.19-r2.ebuild | 42 +
 1 file changed, 42 insertions(+)

diff --git a/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
new file mode 100644
index ..f232df3
--- /dev/null
+++ b/dev-libs/libatasmart/libatasmart-0.19-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+PATCH_LEVEL=2
+
+DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard 
disks"
+HOMEPAGE="http://0pointer.de/blog/projects/being-smart.html;
+SRC_URI="http://0pointer.de/public/${P}.tar.xz
+   
mirror://debian/pool/main/liba/${PN}/${PN}_${PV}-${PATCH_LEVEL}.debian.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/4"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86"
+IUSE="static-libs"
+
+RDEPEND="virtual/libudev"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   # https://bugs.gentoo.org/470874
+   local d="${WORKDIR}"/debian/patches
+   sed -i -e '/#/d' \
+   -e "s|^|${d}/|" "${d}"/series || die
+   eapply $(<"${d}"/series)
+   eapply_user
+}
+
+src_configure() {
+   econf \
+   --docdir=/usr/share/doc/${PF} \
+   $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   prune_libtool_files --all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libatasmart/

2016-09-29 Thread Michael Palimaka
commit: 5d248ff1d27cac2c06966ace74bba2ddfae299ae
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Sep 29 15:49:16 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Sep 29 15:51:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d248ff1

dev-libs/libatasmart: remove old

Package-Manager: portage-2.3.1

 dev-libs/libatasmart/libatasmart-0.19.ebuild | 32 
 1 file changed, 32 deletions(-)

diff --git a/dev-libs/libatasmart/libatasmart-0.19.ebuild 
b/dev-libs/libatasmart/libatasmart-0.19.ebuild
deleted file mode 100644
index 2cd1c62..
--- a/dev-libs/libatasmart/libatasmart-0.19.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="A small and lightweight parser library for ATA S.M.A.R.T. hard 
disks"
-HOMEPAGE="http://0pointer.de/blog/projects/being-smart.html;
-SRC_URI="http://0pointer.de/public/${P}.tar.xz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86"
-IUSE="static-libs"
-
-RDEPEND="virtual/udev"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS="README"
-
-src_configure() {
-   econf \
-   --docdir=/usr/share/doc/${PF} \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   default
-   prune_libtool_files --all
-}