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

2021-12-21 Thread Pacho Ramos
commit: dd8cb817ad5974e28ff5b62b4084177a31e2a70f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Dec 21 18:10:29 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Dec 21 18:25:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd8cb817

dev-libs/satyr: Bump to 0.39

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

 dev-libs/satyr/Manifest  |   1 +
 dev-libs/satyr/satyr-0.39.ebuild | 101 +++
 2 files changed, 102 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 12fe8b7800d4..9969e66ff3ef 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1 +1,2 @@
 DIST satyr-0.38.tar.gz 433626 BLAKE2B 
682d28a932758353e986d2906baf294183756d60a063ce03ba79506b58c92e4fc039c2246c0d43910f6d27d62dd674ffd3b772eeb6e8de46d8080735754b3d3a
 SHA512 
09168050ca7bae00fb3d39f23f8c1e0adcf9cc4d3e491aa002bf9a0a7a265df980d12e430ea7f3eaa9010e0432821b106db5ce3b1e8d935d78b1e56d37110051
+DIST satyr-0.39.tar.gz 434581 BLAKE2B 
7b4e11d8027877aa3b9e8144f8917f03b489b157c1112794a3c2bea9998a4367a7ec06cdec6c144fd96ecdabc83a85c5fb2644df02d59086ea3a113b1402fabe
 SHA512 
f6d24ae054867ccdbb2dabdd63c6b351f7eec9ffe5426bdeffa86d585a52d13b07dd31e26b7d14e4850a1fdca748b0d5e23bb51fbc2843af79bf306f09d3145f

diff --git a/dev-libs/satyr/satyr-0.39.ebuild b/dev-libs/satyr/satyr-0.39.ebuild
new file mode 100644
index ..754906da9469
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.39.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit autotools multiprocessing python-r1
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/4"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+   dev-libs/glib:2
+   dev-libs/json-c:=
+   dev-libs/nettle:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   dev-util/gperf
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   if use python; then
+   python_configure() {
+   econf "${myargs[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+
+}
+
+src_test() {
+   local extra_args
+
+   # In order to pass --jobs to the test runner
+   run_tests() {
+   cd tests || die
+   emake testsuite
+   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
+
+   # Only run the python bindings tests for other python impls
+   extra_args=('-k' 'python3_bindings.*')
+   }
+
+   if use python; then
+   python_foreach_impl run_in_build_dir run_tests
+   else
+   run_tests SKIP_PYTHON3=yes
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   find "${D}" -name '*.la' -type f -delete || die
+}



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

2021-09-07 Thread Pacho Ramos
commit: 5b976b68d5b994d7d24860bce8ab2a4bce9faacd
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Sep  7 14:59:35 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Sep  7 15:08:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b976b68

dev-libs/satyr: Drop old

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

 dev-libs/satyr/Manifest  |   2 -
 dev-libs/satyr/satyr-0.31.ebuild |  99 --
 dev-libs/satyr/satyr-0.37.ebuild | 100 ---
 3 files changed, 201 deletions(-)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 22ac70b8935..12fe8b7800d 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1,3 +1 @@
-DIST satyr-0.31.tar.gz 428719 BLAKE2B 
23c6ea53db261fee366566101c2b0f1e23cf530728332fe752897ee982ffac057b98de3d9a52dbfc64932cdb73aaff7e35c976e7a55e30b4417f3880782f9125
 SHA512 
a5aafa1ca5f85a0a817c6fa9a3b428672c9f4f529fb7d73a3e819cc836b78c01a0ca44b47317fcdd4a40dc6386688a450bd78564b6e466091cdc9a2c730c3fda
-DIST satyr-0.37.tar.gz 433804 BLAKE2B 
3d243f1ea4254767740fbab4aff5d42537e4ec7d6cfded9af36b022bbcb76a08172f36cac98fb9d199aefcf3f7fefd443e3573426f5cd84eb5bf404d36dbfb29
 SHA512 
ac67c931dcf3031b0fabca6d0be572381b8027da588add85d22ba7058304a0ec457379be77cd99ce0607ceac35a45d42b6c293751f7471797cc9eba280ce91b5
 DIST satyr-0.38.tar.gz 433626 BLAKE2B 
682d28a932758353e986d2906baf294183756d60a063ce03ba79506b58c92e4fc039c2246c0d43910f6d27d62dd674ffd3b772eeb6e8de46d8080735754b3d3a
 SHA512 
09168050ca7bae00fb3d39f23f8c1e0adcf9cc4d3e491aa002bf9a0a7a265df980d12e430ea7f3eaa9010e0432821b106db5ce3b1e8d935d78b1e56d37110051

diff --git a/dev-libs/satyr/satyr-0.31.ebuild b/dev-libs/satyr/satyr-0.31.ebuild
deleted file mode 100644
index 362a8ca2186..000
--- a/dev-libs/satyr/satyr-0.31.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit autotools multiprocessing python-r1
-
-DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
-HOMEPAGE="https://github.com/abrt/satyr;
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0/4"
-
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
-   >=dev-libs/elfutils-0.158
-   dev-libs/json-c:=
-   dev-libs/nettle:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-   dev-util/gperf
-"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needs to be run before full autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   use python && python_setup
-
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-rpm
-   $(usex python "--with-python3" "--without-python3")
-   )
-
-   if use python; then
-   python_configure() {
-   econf "${myargs[@]}"
-   }
-   python_foreach_impl run_in_build_dir python_configure
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   if use python; then
-   python_foreach_impl run_in_build_dir default
-   else
-   default
-   fi
-
-}
-
-src_test() {
-   local extra_args
-
-   # In order to pass --jobs to the test runner
-   run_tests() {
-   cd tests || die
-   emake testsuite
-   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
-
-   # Only run the python bindings tests for other python impls
-   extra_args=('-k' 'python3_bindings.*')
-   }
-
-   if use python; then
-   python_foreach_impl run_in_build_dir run_tests
-   else
-   run_tests SKIP_PYTHON3=yes
-   fi
-}
-
-src_install() {
-   if use python; then
-   python_install() {
-   default
-   python_optimize
-   }
-   python_foreach_impl run_in_build_dir python_install
-   else
-   default
-   fi
-
-   find "${D}" -name '*.la' -type f -delete || die
-}

diff --git a/dev-libs/satyr/satyr-0.37.ebuild b/dev-libs/satyr/satyr-0.37.ebuild
deleted file mode 100644
index cd25deaf9e4..000
--- a/dev-libs/satyr/satyr-0.37.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit autotools multiprocessing python-r1
-
-DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
-HOMEPAGE="https://github.com/abrt/satyr;

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

2021-09-07 Thread Pacho Ramos
commit: f0cb1d76d9f4cd8372d215cae53649091080ea8c
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Sep  7 14:59:23 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Sep  7 15:08:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0cb1d76

dev-libs/satyr: Bump to 0.38

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

 dev-libs/satyr/Manifest  |   1 +
 dev-libs/satyr/satyr-0.38.ebuild | 101 +++
 2 files changed, 102 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 66c5c71c375..22ac70b8935 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1,2 +1,3 @@
 DIST satyr-0.31.tar.gz 428719 BLAKE2B 
23c6ea53db261fee366566101c2b0f1e23cf530728332fe752897ee982ffac057b98de3d9a52dbfc64932cdb73aaff7e35c976e7a55e30b4417f3880782f9125
 SHA512 
a5aafa1ca5f85a0a817c6fa9a3b428672c9f4f529fb7d73a3e819cc836b78c01a0ca44b47317fcdd4a40dc6386688a450bd78564b6e466091cdc9a2c730c3fda
 DIST satyr-0.37.tar.gz 433804 BLAKE2B 
3d243f1ea4254767740fbab4aff5d42537e4ec7d6cfded9af36b022bbcb76a08172f36cac98fb9d199aefcf3f7fefd443e3573426f5cd84eb5bf404d36dbfb29
 SHA512 
ac67c931dcf3031b0fabca6d0be572381b8027da588add85d22ba7058304a0ec457379be77cd99ce0607ceac35a45d42b6c293751f7471797cc9eba280ce91b5
+DIST satyr-0.38.tar.gz 433626 BLAKE2B 
682d28a932758353e986d2906baf294183756d60a063ce03ba79506b58c92e4fc039c2246c0d43910f6d27d62dd674ffd3b772eeb6e8de46d8080735754b3d3a
 SHA512 
09168050ca7bae00fb3d39f23f8c1e0adcf9cc4d3e491aa002bf9a0a7a265df980d12e430ea7f3eaa9010e0432821b106db5ce3b1e8d935d78b1e56d37110051

diff --git a/dev-libs/satyr/satyr-0.38.ebuild b/dev-libs/satyr/satyr-0.38.ebuild
new file mode 100644
index 000..754906da946
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.38.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit autotools multiprocessing python-r1
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/4"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+   dev-libs/glib:2
+   dev-libs/json-c:=
+   dev-libs/nettle:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   dev-util/gperf
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   if use python; then
+   python_configure() {
+   econf "${myargs[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+
+}
+
+src_test() {
+   local extra_args
+
+   # In order to pass --jobs to the test runner
+   run_tests() {
+   cd tests || die
+   emake testsuite
+   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
+
+   # Only run the python bindings tests for other python impls
+   extra_args=('-k' 'python3_bindings.*')
+   }
+
+   if use python; then
+   python_foreach_impl run_in_build_dir run_tests
+   else
+   run_tests SKIP_PYTHON3=yes
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   find "${D}" -name '*.la' -type f -delete || die
+}



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

2021-08-08 Thread Pacho Ramos
commit: 5f21b72489767249c3cca51a7a90fb21d84cf054
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Aug  8 12:50:15 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Aug  8 12:50:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f21b724

dev-libs/satyr: Take package

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

 dev-libs/satyr/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/satyr/metadata.xml b/dev-libs/satyr/metadata.xml
index 39980802b1d..f6188168081 100644
--- a/dev-libs/satyr/metadata.xml
+++ b/dev-libs/satyr/metadata.xml
@@ -1,8 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
+
+   pa...@gentoo.org
+   Pacho Ramos
 
 



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

2021-05-01 Thread Matt Turner
commit: 991344348e6f44b89fa02d5a026f40d944f38b4b
Author: Matt Turner  gentoo  org>
AuthorDate: Sat May  1 13:55:21 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat May  1 14:06:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99134434

dev-libs/satyr: Version bump to 0.37

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

 dev-libs/satyr/Manifest  |   1 +
 dev-libs/satyr/satyr-0.37.ebuild | 100 +++
 2 files changed, 101 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index b78f27a448f..66c5c71c375 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1 +1,2 @@
 DIST satyr-0.31.tar.gz 428719 BLAKE2B 
23c6ea53db261fee366566101c2b0f1e23cf530728332fe752897ee982ffac057b98de3d9a52dbfc64932cdb73aaff7e35c976e7a55e30b4417f3880782f9125
 SHA512 
a5aafa1ca5f85a0a817c6fa9a3b428672c9f4f529fb7d73a3e819cc836b78c01a0ca44b47317fcdd4a40dc6386688a450bd78564b6e466091cdc9a2c730c3fda
+DIST satyr-0.37.tar.gz 433804 BLAKE2B 
3d243f1ea4254767740fbab4aff5d42537e4ec7d6cfded9af36b022bbcb76a08172f36cac98fb9d199aefcf3f7fefd443e3573426f5cd84eb5bf404d36dbfb29
 SHA512 
ac67c931dcf3031b0fabca6d0be572381b8027da588add85d22ba7058304a0ec457379be77cd99ce0607ceac35a45d42b6c293751f7471797cc9eba280ce91b5

diff --git a/dev-libs/satyr/satyr-0.37.ebuild b/dev-libs/satyr/satyr-0.37.ebuild
new file mode 100644
index 000..cd25deaf9e4
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.37.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit autotools multiprocessing python-r1
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/4"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+   dev-libs/glib:2
+   dev-libs/json-c:=
+   dev-libs/nettle:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   dev-util/gperf
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   if use python; then
+   python_configure() {
+   econf "${myargs[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+
+}
+
+src_test() {
+   local extra_args
+
+   # In order to pass --jobs to the test runner
+   run_tests() {
+   cd tests || die
+   emake testsuite
+   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
+
+   # Only run the python bindings tests for other python impls
+   extra_args=('-k' 'python3_bindings.*')
+   }
+
+   if use python; then
+   python_foreach_impl run_in_build_dir run_tests
+   else
+   run_tests SKIP_PYTHON3=yes
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   find "${D}" -name '*.la' -type f -delete || die
+}



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

2020-11-08 Thread Matt Turner
commit: f82f0839dbd3e156fe7c8b63da8291773c27
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  8 16:23:22 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  8 16:26:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82f0333

dev-libs/satyr: Drop stable keywords

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

 dev-libs/satyr/satyr-0.27.ebuild | 2 +-
 dev-libs/satyr/satyr-0.30.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/satyr/satyr-0.27.ebuild b/dev-libs/satyr/satyr-0.27.ebuild
index face20cac54..8293ade15b7 100644
--- a/dev-libs/satyr/satyr-0.27.ebuild
+++ b/dev-libs/satyr/satyr-0.27.ebuild
@@ -16,7 +16,7 @@ SLOT="0/3"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158

diff --git a/dev-libs/satyr/satyr-0.30.ebuild b/dev-libs/satyr/satyr-0.30.ebuild
index 525f046328c..f654d70e26b 100644
--- a/dev-libs/satyr/satyr-0.30.ebuild
+++ b/dev-libs/satyr/satyr-0.30.ebuild
@@ -16,7 +16,7 @@ SLOT="0/4"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2020-11-08 Thread Matt Turner
commit: 16484703032dce5bd38936631aad4f2f779a8479
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  8 16:23:55 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  8 16:26:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16484703

dev-libs/satyr: Drop old versions

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

 dev-libs/satyr/Manifest  |  2 -
 dev-libs/satyr/satyr-0.27.ebuild | 45 --
 dev-libs/satyr/satyr-0.30.ebuild | 99 
 3 files changed, 146 deletions(-)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 69fd9486808..b78f27a448f 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1,3 +1 @@
-DIST satyr-0.27.tar.gz 435341 BLAKE2B 
ade40bc6a1c48e6fc0af7913ff94ed044c63fdb63b8d86ba010bebcfd2098831bc6c7361d116851aee88f49c640d1457dd8953becad60b6ff6dc32deec6c7942
 SHA512 
7b01cf16489644fbfbe2150477279a94c6fa9b3310edebc84b83bab58d1058df0be478ab6bf4c6910b4168122721dde10d573711abb983b0eb5ccda09cb80710
-DIST satyr-0.30.tar.gz 427940 BLAKE2B 
97fedef59cc77b2ae81857c491532552c352a272658d02564d2661d06a4ccc99c18bcd57e5e68e5a612e9e65c5878f19b2f18bbe74066874a7295e2f65d64149
 SHA512 
ebc6e9c0fd8cd130cf1701573c8ecdadf73fe54efa563759a47f990a91b217cf1dec01045be624d15cfa96b1370ddf2412b0537e57ed628dc27e860be46e21cf
 DIST satyr-0.31.tar.gz 428719 BLAKE2B 
23c6ea53db261fee366566101c2b0f1e23cf530728332fe752897ee982ffac057b98de3d9a52dbfc64932cdb73aaff7e35c976e7a55e30b4417f3880782f9125
 SHA512 
a5aafa1ca5f85a0a817c6fa9a3b428672c9f4f529fb7d73a3e819cc836b78c01a0ca44b47317fcdd4a40dc6386688a450bd78564b6e466091cdc9a2c730c3fda

diff --git a/dev-libs/satyr/satyr-0.27.ebuild b/dev-libs/satyr/satyr-0.27.ebuild
deleted file mode 100644
index 8293ade15b7..000
--- a/dev-libs/satyr/satyr-0.27.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit autotools python-r1 toolchain-funcs
-
-DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
-HOMEPAGE="https://github.com/abrt/satyr;
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0/3"
-
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
-   >=dev-libs/elfutils-0.158
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needs to be run before full autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-rpm
-   # Build breaks without and we aren't supporting Python2 anyway
-   --without-python2
-   $(usex python "--with-python3" "--without-python3")
-   )
-
-   econf "${myargs[@]}"
-}

diff --git a/dev-libs/satyr/satyr-0.30.ebuild b/dev-libs/satyr/satyr-0.30.ebuild
deleted file mode 100644
index f654d70e26b..000
--- a/dev-libs/satyr/satyr-0.30.ebuild
+++ /dev/null
@@ -1,99 +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 multiprocessing python-r1
-
-DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
-HOMEPAGE="https://github.com/abrt/satyr;
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0/4"
-
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
-   >=dev-libs/elfutils-0.158
-   dev-libs/json-c:=
-   dev-libs/nettle:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-   dev-util/gperf
-"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needs to be run before full autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   use python && python_setup
-
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-rpm
-   $(usex python "--with-python3" "--without-python3")
-   )
-
-   if use python; then
-   python_configure() {
-   econf "${myargs[@]}"
-   }
-   python_foreach_impl run_in_build_dir python_configure
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   if use python; then
-   python_foreach_impl run_in_build_dir default
-   else
-   default
-   fi
-
-}
-
-src_test() {
-   local extra_args
-
-   # In order to pass --jobs to the test runner
-   run_tests() {
-   cd tests || die
-   

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

2020-08-24 Thread Matt Turner
commit: 61c3559ec27d3548921a07f9a828bb265940c9c8
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug 24 21:05:14 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug 24 22:23:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c3559e

dev-libs/satyr: Version bump to 0.31

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

 dev-libs/satyr/Manifest  |  1 +
 dev-libs/satyr/satyr-0.31.ebuild | 99 
 2 files changed, 100 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 6a336244dea..69fd9486808 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1,2 +1,3 @@
 DIST satyr-0.27.tar.gz 435341 BLAKE2B 
ade40bc6a1c48e6fc0af7913ff94ed044c63fdb63b8d86ba010bebcfd2098831bc6c7361d116851aee88f49c640d1457dd8953becad60b6ff6dc32deec6c7942
 SHA512 
7b01cf16489644fbfbe2150477279a94c6fa9b3310edebc84b83bab58d1058df0be478ab6bf4c6910b4168122721dde10d573711abb983b0eb5ccda09cb80710
 DIST satyr-0.30.tar.gz 427940 BLAKE2B 
97fedef59cc77b2ae81857c491532552c352a272658d02564d2661d06a4ccc99c18bcd57e5e68e5a612e9e65c5878f19b2f18bbe74066874a7295e2f65d64149
 SHA512 
ebc6e9c0fd8cd130cf1701573c8ecdadf73fe54efa563759a47f990a91b217cf1dec01045be624d15cfa96b1370ddf2412b0537e57ed628dc27e860be46e21cf
+DIST satyr-0.31.tar.gz 428719 BLAKE2B 
23c6ea53db261fee366566101c2b0f1e23cf530728332fe752897ee982ffac057b98de3d9a52dbfc64932cdb73aaff7e35c976e7a55e30b4417f3880782f9125
 SHA512 
a5aafa1ca5f85a0a817c6fa9a3b428672c9f4f529fb7d73a3e819cc836b78c01a0ca44b47317fcdd4a40dc6386688a450bd78564b6e466091cdc9a2c730c3fda

diff --git a/dev-libs/satyr/satyr-0.31.ebuild b/dev-libs/satyr/satyr-0.31.ebuild
new file mode 100644
index 000..362a8ca2186
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.31.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit autotools multiprocessing python-r1
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/4"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+   dev-libs/json-c:=
+   dev-libs/nettle:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   dev-util/gperf
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   if use python; then
+   python_configure() {
+   econf "${myargs[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+
+}
+
+src_test() {
+   local extra_args
+
+   # In order to pass --jobs to the test runner
+   run_tests() {
+   cd tests || die
+   emake testsuite
+   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
+
+   # Only run the python bindings tests for other python impls
+   extra_args=('-k' 'python3_bindings.*')
+   }
+
+   if use python; then
+   python_foreach_impl run_in_build_dir run_tests
+   else
+   run_tests SKIP_PYTHON3=yes
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   find "${D}" -name '*.la' -type f -delete || die
+}



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

2020-05-12 Thread Mikle Kolyada
commit: 1ba587e2ebe890fa24472a47b2f1264ec592ccbf
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue May 12 08:53:07 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue May 12 08:53:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba587e2

dev-libs/satyr: amd64 stable wrt bug #717916

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-libs/satyr/satyr-0.30.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/satyr/satyr-0.30.ebuild b/dev-libs/satyr/satyr-0.30.ebuild
index f654d70e26b..6c96de3ef6c 100644
--- a/dev-libs/satyr/satyr-0.30.ebuild
+++ b/dev-libs/satyr/satyr-0.30.ebuild
@@ -16,7 +16,7 @@ SLOT="0/4"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2020-05-12 Thread Mikle Kolyada
commit: 8e896abbe84393dce60503026027e01c854bd4be
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue May 12 08:53:41 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue May 12 08:53:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e896abb

dev-libs/satyr: x86 stable wrt bug #717916

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-libs/satyr/satyr-0.30.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/satyr/satyr-0.30.ebuild b/dev-libs/satyr/satyr-0.30.ebuild
index 6c96de3ef6c..525f046328c 100644
--- a/dev-libs/satyr/satyr-0.30.ebuild
+++ b/dev-libs/satyr/satyr-0.30.ebuild
@@ -16,7 +16,7 @@ SLOT="0/4"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2020-03-18 Thread Matt Turner
commit: 644345d76393f81e58eae1ec950b4494aba2cfb0
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Mar 18 21:16:53 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 19 00:19:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=644345d7

dev-libs/satyr: Version bump to 0.30

Closes: https://bugs.gentoo.org/710220
Signed-off-by: Matt Turner  gentoo.org>

 dev-libs/satyr/Manifest  |  1 +
 dev-libs/satyr/satyr-0.30.ebuild | 99 
 2 files changed, 100 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index b4a7736f4bc..6a336244dea 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1 +1,2 @@
 DIST satyr-0.27.tar.gz 435341 BLAKE2B 
ade40bc6a1c48e6fc0af7913ff94ed044c63fdb63b8d86ba010bebcfd2098831bc6c7361d116851aee88f49c640d1457dd8953becad60b6ff6dc32deec6c7942
 SHA512 
7b01cf16489644fbfbe2150477279a94c6fa9b3310edebc84b83bab58d1058df0be478ab6bf4c6910b4168122721dde10d573711abb983b0eb5ccda09cb80710
+DIST satyr-0.30.tar.gz 427940 BLAKE2B 
97fedef59cc77b2ae81857c491532552c352a272658d02564d2661d06a4ccc99c18bcd57e5e68e5a612e9e65c5878f19b2f18bbe74066874a7295e2f65d64149
 SHA512 
ebc6e9c0fd8cd130cf1701573c8ecdadf73fe54efa563759a47f990a91b217cf1dec01045be624d15cfa96b1370ddf2412b0537e57ed628dc27e860be46e21cf

diff --git a/dev-libs/satyr/satyr-0.30.ebuild b/dev-libs/satyr/satyr-0.30.ebuild
new file mode 100644
index 000..f654d70e26b
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.30.ebuild
@@ -0,0 +1,99 @@
+# 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 multiprocessing python-r1
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/4"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+   dev-libs/json-c:=
+   dev-libs/nettle:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   dev-util/gperf
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   if use python; then
+   python_configure() {
+   econf "${myargs[@]}"
+   }
+   python_foreach_impl run_in_build_dir python_configure
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+
+}
+
+src_test() {
+   local extra_args
+
+   # In order to pass --jobs to the test runner
+   run_tests() {
+   cd tests || die
+   emake testsuite
+   ./testsuite --jobs=$(makeopts_jobs) ${extra_args[@]} $@
+
+   # Only run the python bindings tests for other python impls
+   extra_args=('-k' 'python3_bindings.*')
+   }
+
+   if use python; then
+   python_foreach_impl run_in_build_dir run_tests
+   else
+   run_tests SKIP_PYTHON3=yes
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   find "${D}" -name '*.la' -type f -delete || die
+}



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

2020-01-28 Thread Mart Raudsepp
commit: 706b2598eb5d296972237be7be6eed6b851f95ae
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Jan 28 09:24:17 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Jan 28 09:34:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706b2598

dev-libs/satyr: remove old

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/satyr/Manifest  |  1 -
 dev-libs/satyr/satyr-0.26.ebuild | 45 
 2 files changed, 46 deletions(-)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index 84736d4b19e..b4a7736f4bc 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1,2 +1 @@
-DIST satyr-0.26.tar.gz 434820 BLAKE2B 
4463c69e6ac2eb8237f599bfeed308265a906c6e3efa154b14eb6ee7acdc65580da9baf5ecb99e4efa4f8c00f7656ff2a747e607f2293b12a513ed680986fe08
 SHA512 
45dfc42e05e93fa0417c8c5d6811097cabaa0f4dcfb79df13d3840d789cfd41c84382ae84882ca120b1a3120987123a306656324cf39f306046a5d30547db656
 DIST satyr-0.27.tar.gz 435341 BLAKE2B 
ade40bc6a1c48e6fc0af7913ff94ed044c63fdb63b8d86ba010bebcfd2098831bc6c7361d116851aee88f49c640d1457dd8953becad60b6ff6dc32deec6c7942
 SHA512 
7b01cf16489644fbfbe2150477279a94c6fa9b3310edebc84b83bab58d1058df0be478ab6bf4c6910b4168122721dde10d573711abb983b0eb5ccda09cb80710

diff --git a/dev-libs/satyr/satyr-0.26.ebuild b/dev-libs/satyr/satyr-0.26.ebuild
deleted file mode 100644
index face20cac54..000
--- a/dev-libs/satyr/satyr-0.26.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-
-inherit autotools python-r1 toolchain-funcs
-
-DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
-HOMEPAGE="https://github.com/abrt/satyr;
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0/3"
-
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-KEYWORDS="amd64 x86"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
-   >=dev-libs/elfutils-0.158
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needs to be run before full autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-rpm
-   # Build breaks without and we aren't supporting Python2 anyway
-   --without-python2
-   $(usex python "--with-python3" "--without-python3")
-   )
-
-   econf "${myargs[@]}"
-}



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

2020-01-27 Thread Mikle Kolyada
commit: f9d8a02b4f9e22b20eede704fbcbad3de8625833
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 27 09:42:14 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 27 09:45:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d8a02b

dev-libs/satyr: amd64 stable wrt bug #706524

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-libs/satyr/satyr-0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/satyr/satyr-0.27.ebuild b/dev-libs/satyr/satyr-0.27.ebuild
index 4ca04b83b3c..face20cac54 100644
--- a/dev-libs/satyr/satyr-0.27.ebuild
+++ b/dev-libs/satyr/satyr-0.27.ebuild
@@ -16,7 +16,7 @@ SLOT="0/3"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2020-01-26 Thread Thomas Deutschmann
commit: 8c9152e0811766c8c63456e8d20e6da401ba70f8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jan 26 22:19:11 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jan 26 22:39:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c9152e0

dev-libs/satyr: x86 stable (bug #706524)

Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-libs/satyr/satyr-0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/satyr/satyr-0.27.ebuild b/dev-libs/satyr/satyr-0.27.ebuild
index 8293ade15b7..4ca04b83b3c 100644
--- a/dev-libs/satyr/satyr-0.27.ebuild
+++ b/dev-libs/satyr/satyr-0.27.ebuild
@@ -16,7 +16,7 @@ SLOT="0/3"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2019-02-17 Thread Dennis Lamm
commit: 0a2a64f88c72fc5da7a9ea9865dc05a74679fda6
Author: Dennis Lamm  gentoo  org>
AuthorDate: Sun Feb 17 20:00:46 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Sun Feb 17 20:00:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2a64f8

dev-libs/satyr: bump to 0.27

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-libs/satyr/Manifest  |  1 +
 dev-libs/satyr/satyr-0.27.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
index cb6c8364e06..84736d4b19e 100644
--- a/dev-libs/satyr/Manifest
+++ b/dev-libs/satyr/Manifest
@@ -1 +1,2 @@
 DIST satyr-0.26.tar.gz 434820 BLAKE2B 
4463c69e6ac2eb8237f599bfeed308265a906c6e3efa154b14eb6ee7acdc65580da9baf5ecb99e4efa4f8c00f7656ff2a747e607f2293b12a513ed680986fe08
 SHA512 
45dfc42e05e93fa0417c8c5d6811097cabaa0f4dcfb79df13d3840d789cfd41c84382ae84882ca120b1a3120987123a306656324cf39f306046a5d30547db656
+DIST satyr-0.27.tar.gz 435341 BLAKE2B 
ade40bc6a1c48e6fc0af7913ff94ed044c63fdb63b8d86ba010bebcfd2098831bc6c7361d116851aee88f49c640d1457dd8953becad60b6ff6dc32deec6c7942
 SHA512 
7b01cf16489644fbfbe2150477279a94c6fa9b3310edebc84b83bab58d1058df0be478ab6bf4c6910b4168122721dde10d573711abb983b0eb5ccda09cb80710

diff --git a/dev-libs/satyr/satyr-0.27.ebuild b/dev-libs/satyr/satyr-0.27.ebuild
new file mode 100644
index 000..2ff1248e54f
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.27.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit autotools python-r1 toolchain-funcs
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/3"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   # Build breaks without and we aren't supporting Python2 anyway
+   --without-python2
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   econf "${myargs[@]}"
+}



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

2018-12-12 Thread Mikle Kolyada
commit: 698230ace1d022f988960f83bf38b0b7dce4123b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Dec 12 16:29:55 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Dec 12 16:29:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=698230ac

dev-libs/satyr: amd64 stable wrt bug #546912

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-libs/satyr/satyr-0.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/satyr/satyr-0.26.ebuild b/dev-libs/satyr/satyr-0.26.ebuild
index d065a129e08..a00468b24ad 100644
--- a/dev-libs/satyr/satyr-0.26.ebuild
+++ b/dev-libs/satyr/satyr-0.26.ebuild
@@ -16,7 +16,7 @@ SLOT="0/3"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2018-12-06 Thread Thomas Deutschmann
commit: 591f455ee4433197ae78d1e6df930b36e96933ea
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  7 02:19:22 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  7 02:40:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=591f455e

dev-libs/satyr: x86 stable (bug #546912)

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-libs/satyr/satyr-0.26.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/satyr/satyr-0.26.ebuild b/dev-libs/satyr/satyr-0.26.ebuild
index 400a2a442d4..d065a129e08 100644
--- a/dev-libs/satyr/satyr-0.26.ebuild
+++ b/dev-libs/satyr/satyr-0.26.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ SLOT="0/3"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
>=dev-libs/elfutils-0.158



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

2018-05-22 Thread Aaron Bauman
commit: 8e9e8ff169019c6c772cfeae7a17bc3b66361c5e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue May 22 16:09:08 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue May 22 16:09:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9e8ff1

dev-libs/satyr: new package

Package is to support the revbump of dev-libs/libreport.

Closes: https://bugs.gentoo.org/619538
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-libs/satyr/Manifest  |  1 +
 dev-libs/satyr/metadata.xml  |  8 +++
 dev-libs/satyr/satyr-0.26.ebuild | 45 
 3 files changed, 54 insertions(+)

diff --git a/dev-libs/satyr/Manifest b/dev-libs/satyr/Manifest
new file mode 100644
index 000..cb6c8364e06
--- /dev/null
+++ b/dev-libs/satyr/Manifest
@@ -0,0 +1 @@
+DIST satyr-0.26.tar.gz 434820 BLAKE2B 
4463c69e6ac2eb8237f599bfeed308265a906c6e3efa154b14eb6ee7acdc65580da9baf5ecb99e4efa4f8c00f7656ff2a747e607f2293b12a513ed680986fe08
 SHA512 
45dfc42e05e93fa0417c8c5d6811097cabaa0f4dcfb79df13d3840d789cfd41c84382ae84882ca120b1a3120987123a306656324cf39f306046a5d30547db656

diff --git a/dev-libs/satyr/metadata.xml b/dev-libs/satyr/metadata.xml
new file mode 100644
index 000..39980802b1d
--- /dev/null
+++ b/dev-libs/satyr/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+
+

diff --git a/dev-libs/satyr/satyr-0.26.ebuild b/dev-libs/satyr/satyr-0.26.ebuild
new file mode 100644
index 000..400a2a442d4
--- /dev/null
+++ b/dev-libs/satyr/satyr-0.26.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit autotools python-r1 toolchain-funcs
+
+DESCRIPTION="Satyr is a collection of low-level algorithms for program failure 
processing"
+HOMEPAGE="https://github.com/abrt/satyr;
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0/3"
+
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )
+   >=dev-libs/elfutils-0.158
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needs to be run before full autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-rpm
+   # Build breaks without and we aren't supporting Python2 anyway
+   --without-python2
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   econf "${myargs[@]}"
+}