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

2022-03-13 Thread Pacho Ramos
commit: 4db30f83cf7491d14157c555c7dbea59a535b804
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Mar 13 17:58:08 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Mar 13 18:36:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4db30f83

dev-libs/libreport: Bump to 2.17.1

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 0c523b06126e..80eb3f59d09c 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,2 +1,3 @@
 DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B 
f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b
 SHA512 
c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc
 DIST libreport-2.16.0.tar.gz 1901880 BLAKE2B 
520ad157de02dbe5fd15b2ffcfc9b0a09587c3696b41a202f0a78b53a2d366a2991906437aa38d7c84407dcd4a788d358b9e320f70c30e602f1b903433288717
 SHA512 
cbb456bb63b92a255fecb87191160c2e515b4434cbaaa9404fb69f4f78421fe98c4057969f4b6b99e1b52e815d83c483bdbbe606a4bd2e34cf5268769e7bd40f
+DIST libreport-2.17.1.tar.gz 1904056 BLAKE2B 
3bb4bade768e585af620cdf9f0f353528f24145a157a295fed449b6064ab846757946d38db5fd607e82b784156637f02e7eb66e01ac70c170b2006f4edd950f5
 SHA512 
35c5031e0a361040153ea45a249613b9f2d2bb38191c6375b197cb797be153f1a4b46480dbfa5fcdd9c5c00b075f84997f6da70c3b59b8b8251fd29a7180bd9b

diff --git a/dev-libs/libreport/libreport-2.17.1.ebuild 
b/dev-libs/libreport/libreport-2.17.1.ebuild
new file mode 100644
index ..f8d64e4b1687
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.17.1.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit autotools python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0/2"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   app-arch/libarchive:0=
+   >=dev-libs/glib-2.43.4:2
+   >=dev-libs/satyr-0.38:0=
+   dev-libs/json-c:=
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2022-03-13 Thread Pacho Ramos
commit: d2e6aef52193bae86d6ddf645fbc30792b16776b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Mar 13 17:58:23 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Mar 13 18:36:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e6aef5

dev-libs/libreport: Drop old

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

 dev-libs/libreport/Manifest|   1 -
 dev-libs/libreport/libreport-2.15.2.ebuild | 100 -
 2 files changed, 101 deletions(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 80eb3f59d09c..79692f1cdbb7 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,3 +1,2 @@
-DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B 
f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b
 SHA512 
c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc
 DIST libreport-2.16.0.tar.gz 1901880 BLAKE2B 
520ad157de02dbe5fd15b2ffcfc9b0a09587c3696b41a202f0a78b53a2d366a2991906437aa38d7c84407dcd4a788d358b9e320f70c30e602f1b903433288717
 SHA512 
cbb456bb63b92a255fecb87191160c2e515b4434cbaaa9404fb69f4f78421fe98c4057969f4b6b99e1b52e815d83c483bdbbe606a4bd2e34cf5268769e7bd40f
 DIST libreport-2.17.1.tar.gz 1904056 BLAKE2B 
3bb4bade768e585af620cdf9f0f353528f24145a157a295fed449b6064ab846757946d38db5fd607e82b784156637f02e7eb66e01ac70c170b2006f4edd950f5
 SHA512 
35c5031e0a361040153ea45a249613b9f2d2bb38191c6375b197cb797be153f1a4b46480dbfa5fcdd9c5c00b075f84997f6da70c3b59b8b8251fd29a7180bd9b

diff --git a/dev-libs/libreport/libreport-2.15.2.ebuild 
b/dev-libs/libreport/libreport-2.15.2.ebuild
deleted file mode 100644
index debf3b612b4a..
--- a/dev-libs/libreport/libreport-2.15.2.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# 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 python-r1
-
-DESCRIPTION="Generic library for reporting software bugs"
-HOMEPAGE="https://github.com/abrt/libreport";
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0/2"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="gtk +python"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-   app-admin/augeas
-   app-arch/libarchive:0=
-   >=dev-libs/glib-2.43.4:2
-   dev-libs/satyr:0=
-   dev-libs/json-c:=
-   dev-libs/libxml2:2
-   dev-libs/nettle:=
-   dev-libs/newt:=
-   dev-libs/xmlrpc-c:=
-   net-libs/libproxy:=
-   net-misc/curl:=[ssl]
-   sys-apps/dbus
-   sys-apps/systemd
-   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
-   python? ( ${PYTHON_DEPS} )
-   x11-misc/xdg-utils
-"
-RDEPEND="${DEPEND}
-   acct-user/abrt
-   acct-group/abrt
-"
-BDEPEND="
-   app-text/asciidoc
-   app-text/xmlto
-   >=dev-util/intltool-0.3.50
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-# Tests require python-meh, which is highly redhat-specific.
-RESTRICT="test"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needed to be run before autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   use python && python_setup
-
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-bugzilla
-   $(use_with gtk)
-   $(use_with python python3)
-   )
-   if use python; then
-   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   if use python; then
-   python_foreach_impl run_in_build_dir default
-   else
-   default
-   fi
-}
-
-src_install() {
-   if use python; then
-   python_install() {
-   default
-   python_optimize
-   }
-   python_foreach_impl run_in_build_dir python_install
-   else
-   default
-   fi
-
-   # Need to set correct ownership for use by app-admin/abrt
-   diropts -o abrt -g abrt
-   keepdir /var/spool/abrt
-
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}



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

2022-01-22 Thread Pacho Ramos
commit: 07b5195672f710e700de7dca39519ea1b58d60b6
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 22 09:08:40 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 22 09:14:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b51956

dev-libs/libreport: Bump to 2.16.0

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 7116c7dea91f..0c523b06126e 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1 +1,2 @@
 DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B 
f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b
 SHA512 
c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc
+DIST libreport-2.16.0.tar.gz 1901880 BLAKE2B 
520ad157de02dbe5fd15b2ffcfc9b0a09587c3696b41a202f0a78b53a2d366a2991906437aa38d7c84407dcd4a788d358b9e320f70c30e602f1b903433288717
 SHA512 
cbb456bb63b92a255fecb87191160c2e515b4434cbaaa9404fb69f4f78421fe98c4057969f4b6b99e1b52e815d83c483bdbbe606a4bd2e34cf5268769e7bd40f

diff --git a/dev-libs/libreport/libreport-2.16.0.ebuild 
b/dev-libs/libreport/libreport-2.16.0.ebuild
new file mode 100644
index ..f8d64e4b1687
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.16.0.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit autotools python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0/2"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   app-arch/libarchive:0=
+   >=dev-libs/glib-2.43.4:2
+   >=dev-libs/satyr-0.38:0=
+   dev-libs/json-c:=
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2021-09-26 Thread Pacho Ramos
commit: 6b74615163204a296cbc05b1957ce9fe2e364bd1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Sep 26 10:13:01 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Sep 26 10:13:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b746151

dev-libs/libreport: Drop old

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

 dev-libs/libreport/Manifest|   1 -
 dev-libs/libreport/libreport-2.15.1.ebuild | 100 -
 2 files changed, 101 deletions(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index c75d817e335..7116c7dea91 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,2 +1 @@
-DIST libreport-2.15.1.tar.gz 1860410 BLAKE2B 
43743fc7a7698851e247956621286cc94dbfcc451b8d95aaff9263e65f787b23f7bbf5d7ec087196d5f9f30a697c66e547bbccdc913b3ea2a17ea4c7bf77ee02
 SHA512 
70f947690173a0afa57981c9755a18bdd0ad44c888c00713de74624296b81ff25203d5dda5d5c57eac85da4a1631585184b77715c7adf6688b469e32d4113cf4
 DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B 
f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b
 SHA512 
c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc

diff --git a/dev-libs/libreport/libreport-2.15.1.ebuild 
b/dev-libs/libreport/libreport-2.15.1.ebuild
deleted file mode 100644
index 2cdc5d5a57d..000
--- a/dev-libs/libreport/libreport-2.15.1.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 python-r1
-
-DESCRIPTION="Generic library for reporting software bugs"
-HOMEPAGE="https://github.com/abrt/libreport";
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0/1"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="gtk +python"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-   app-admin/augeas
-   app-arch/libarchive:0=
-   >=dev-libs/glib-2.43.4:2
-   dev-libs/satyr:0=
-   dev-libs/json-c:=
-   dev-libs/libxml2:2
-   dev-libs/nettle:=
-   dev-libs/newt:=
-   dev-libs/xmlrpc-c:=
-   net-libs/libproxy:=
-   net-misc/curl:=[ssl]
-   sys-apps/dbus
-   sys-apps/systemd
-   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
-   python? ( ${PYTHON_DEPS} )
-   x11-misc/xdg-utils
-"
-RDEPEND="${DEPEND}
-   acct-user/abrt
-   acct-group/abrt
-"
-BDEPEND="
-   app-text/asciidoc
-   app-text/xmlto
-   >=dev-util/intltool-0.3.50
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-# Tests require python-meh, which is highly redhat-specific.
-RESTRICT="test"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needed to be run before autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   use python && python_setup
-
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-bugzilla
-   $(use_with gtk)
-   $(use_with python python3)
-   )
-   if use python; then
-   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   if use python; then
-   python_foreach_impl run_in_build_dir default
-   else
-   default
-   fi
-}
-
-src_install() {
-   if use python; then
-   python_install() {
-   default
-   python_optimize
-   }
-   python_foreach_impl run_in_build_dir python_install
-   else
-   default
-   fi
-
-   # Need to set correct ownership for use by app-admin/abrt
-   diropts -o abrt -g abrt
-   keepdir /var/spool/abrt
-
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}



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

2021-09-07 Thread Pacho Ramos
commit: 494801581f193b97af6c61e361c995757d5232ec
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Sep  7 15:05:48 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Sep  7 15:08:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49480158

dev-libs/libreport: Drop old

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

 dev-libs/libreport/Manifest|   2 -
 dev-libs/libreport/libreport-2.13.1.ebuild | 100 -
 dev-libs/libreport/libreport-2.15.0.ebuild | 100 -
 3 files changed, 202 deletions(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 640e49ba9cd..c75d817e335 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,4 +1,2 @@
-DIST libreport-2.13.1.tar.gz 1841698 BLAKE2B 
e0fbebbb557fb9fb320dea0a8face6a2eabdb0ad80b5de092e5e4dfe2a0439a4804d4ec99c1286aaafa31064496a94fabce5e26f851001eb9c3bb9989a46e4bb
 SHA512 
6c2ea47e6efa36f23030fbe08946d1e524690e5f6279cbfdaf7c463ef71b23ae82a5e4471ddce89b35d4024f58197cef9f58a07dfcf5bbc1a9b310e39966f81a
-DIST libreport-2.15.0.tar.gz 1859305 BLAKE2B 
ceedd392bd0c7fc5c3f0db5d4a63ced6a1e430b09d1d085996ce735daef5f48cd18267fb1401d9343857619daef6f7f3dcea8508c62313a9f908e5573508649c
 SHA512 
7baaa1fb65face910e55ad06e53af08c5e31f058bf5936c3c1d45581e050380b5db75659b5a493cc626a81795d82616a2dfad696d60c107929cfb8e2905e7f4c
 DIST libreport-2.15.1.tar.gz 1860410 BLAKE2B 
43743fc7a7698851e247956621286cc94dbfcc451b8d95aaff9263e65f787b23f7bbf5d7ec087196d5f9f30a697c66e547bbccdc913b3ea2a17ea4c7bf77ee02
 SHA512 
70f947690173a0afa57981c9755a18bdd0ad44c888c00713de74624296b81ff25203d5dda5d5c57eac85da4a1631585184b77715c7adf6688b469e32d4113cf4
 DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B 
f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b
 SHA512 
c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc

diff --git a/dev-libs/libreport/libreport-2.13.1.ebuild 
b/dev-libs/libreport/libreport-2.13.1.ebuild
deleted file mode 100644
index 991965f07e0..000
--- a/dev-libs/libreport/libreport-2.13.1.ebuild
+++ /dev/null
@@ -1,100 +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 python-r1
-
-DESCRIPTION="Generic library for reporting software bugs"
-HOMEPAGE="https://github.com/abrt/libreport";
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="gtk +python"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-   app-admin/augeas
-   >=dev-libs/glib-2.43.4:2
-   dev-libs/satyr:0=
-   dev-libs/json-c:=
-   dev-libs/libtar
-   dev-libs/libxml2:2
-   dev-libs/nettle:=
-   dev-libs/newt:=
-   dev-libs/xmlrpc-c:=
-   net-libs/libproxy:=
-   net-misc/curl:=[ssl]
-   sys-apps/dbus
-   sys-apps/systemd
-   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
-   python? ( ${PYTHON_DEPS} )
-   x11-misc/xdg-utils
-"
-RDEPEND="${DEPEND}
-   acct-user/abrt
-   acct-group/abrt
-"
-BDEPEND="
-   app-text/asciidoc
-   app-text/xmlto
-   >=dev-util/intltool-0.3.50
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-# Tests require python-meh, which is highly redhat-specific.
-RESTRICT="test"
-
-src_prepare() {
-   default
-   ./gen-version || die # Needed to be run before autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   use python && python_setup
-
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-bugzilla
-   $(use_with gtk)
-   $(use_with python python3)
-   )
-   if use python; then
-   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   if use python; then
-   python_foreach_impl run_in_build_dir default
-   else
-   default
-   fi
-}
-
-src_install() {
-   if use python; then
-   python_install() {
-   default
-   python_optimize
-   }
-   python_foreach_impl run_in_build_dir python_install
-   else
-   default
-   fi
-
-   # Need to set correct ownership for use by app-admin/abrt
-   diropts -o abrt -g abrt
-   keepdir /var/spool/abrt
-
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}

diff --git a/dev-libs/libreport/libreport-2.15.0.ebuild 
b/dev-libs/libreport/libreport-2.15.0.ebuild
deleted file mode 100644
index 886cb5a64cc..000
--- a/de

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

2021-09-07 Thread Pacho Ramos
commit: 16478b44b865d25cd538ff9b2d2716beba62d601
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Sep  7 15:05:34 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Sep  7 15:08:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16478b44

dev-libs/libreport: Bump to 2.15.2

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 3986245a165..640e49ba9cd 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,3 +1,4 @@
 DIST libreport-2.13.1.tar.gz 1841698 BLAKE2B 
e0fbebbb557fb9fb320dea0a8face6a2eabdb0ad80b5de092e5e4dfe2a0439a4804d4ec99c1286aaafa31064496a94fabce5e26f851001eb9c3bb9989a46e4bb
 SHA512 
6c2ea47e6efa36f23030fbe08946d1e524690e5f6279cbfdaf7c463ef71b23ae82a5e4471ddce89b35d4024f58197cef9f58a07dfcf5bbc1a9b310e39966f81a
 DIST libreport-2.15.0.tar.gz 1859305 BLAKE2B 
ceedd392bd0c7fc5c3f0db5d4a63ced6a1e430b09d1d085996ce735daef5f48cd18267fb1401d9343857619daef6f7f3dcea8508c62313a9f908e5573508649c
 SHA512 
7baaa1fb65face910e55ad06e53af08c5e31f058bf5936c3c1d45581e050380b5db75659b5a493cc626a81795d82616a2dfad696d60c107929cfb8e2905e7f4c
 DIST libreport-2.15.1.tar.gz 1860410 BLAKE2B 
43743fc7a7698851e247956621286cc94dbfcc451b8d95aaff9263e65f787b23f7bbf5d7ec087196d5f9f30a697c66e547bbccdc913b3ea2a17ea4c7bf77ee02
 SHA512 
70f947690173a0afa57981c9755a18bdd0ad44c888c00713de74624296b81ff25203d5dda5d5c57eac85da4a1631585184b77715c7adf6688b469e32d4113cf4
+DIST libreport-2.15.2.tar.gz 1859867 BLAKE2B 
f890e3cb8b2a23647e4c3fb0caaf984b1b21fd32e066d04f835f8a475e317cbc75287375e0a10a01b91670d04bba1f15b1180065f7029b8d7d1c0a2fb890914b
 SHA512 
c98003325fa70d674177c9f602a7f121815a9675701ee780ad8908ed69862f2c69be65c7483fd3f017ba299dda51ba304f0908c771c9d97cb5bba057e3a9c5dc

diff --git a/dev-libs/libreport/libreport-2.15.2.ebuild 
b/dev-libs/libreport/libreport-2.15.2.ebuild
new file mode 100644
index 000..debf3b612b4
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.15.2.ebuild
@@ -0,0 +1,100 @@
+# 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 python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0/2"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   app-arch/libarchive:0=
+   >=dev-libs/glib-2.43.4:2
+   dev-libs/satyr:0=
+   dev-libs/json-c:=
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2021-08-08 Thread Pacho Ramos
commit: ea7b6743a6d7e25057e25f953a55fcfc7aae8b32
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Aug  8 12:49:07 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Aug  8 12:49:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7b6743

dev-libs/libreport: Take package

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

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

diff --git a/dev-libs/libreport/metadata.xml b/dev-libs/libreport/metadata.xml
index 39980802b1d..f6188168081 100644
--- a/dev-libs/libreport/metadata.xml
+++ b/dev-libs/libreport/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/libreport/

2021-05-09 Thread Pacho Ramos
commit: 634d08d83119770b8adb863ca750dd0ccf03
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun May  9 19:46:58 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun May  9 19:46:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=634d0811

dev-libs/libreport: Add subslot

Reverse deps like gnome-abrt need to be rebuilt when soname changes

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

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

diff --git a/dev-libs/libreport/libreport-2.15.1.ebuild 
b/dev-libs/libreport/libreport-2.15.1.ebuild
index 886cb5a64cc..2cdc5d5a57d 100644
--- a/dev-libs/libreport/libreport-2.15.1.ebuild
+++ b/dev-libs/libreport/libreport-2.15.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/abrt/libreport";
 SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
-SLOT="0"
+SLOT="0/1"
 KEYWORDS="~amd64 ~x86"
 
 IUSE="gtk +python"



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

2021-05-08 Thread Matt Turner
commit: f212a7216a118c74966f2138c6b70b318ab28db7
Author: Matt Turner  gentoo  org>
AuthorDate: Sat May  8 17:40:43 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat May  8 17:42:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f212a721

dev-libs/libreport: Version bump to 2.15.1

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 1d7fd373044..3986245a165 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,2 +1,3 @@
 DIST libreport-2.13.1.tar.gz 1841698 BLAKE2B 
e0fbebbb557fb9fb320dea0a8face6a2eabdb0ad80b5de092e5e4dfe2a0439a4804d4ec99c1286aaafa31064496a94fabce5e26f851001eb9c3bb9989a46e4bb
 SHA512 
6c2ea47e6efa36f23030fbe08946d1e524690e5f6279cbfdaf7c463ef71b23ae82a5e4471ddce89b35d4024f58197cef9f58a07dfcf5bbc1a9b310e39966f81a
 DIST libreport-2.15.0.tar.gz 1859305 BLAKE2B 
ceedd392bd0c7fc5c3f0db5d4a63ced6a1e430b09d1d085996ce735daef5f48cd18267fb1401d9343857619daef6f7f3dcea8508c62313a9f908e5573508649c
 SHA512 
7baaa1fb65face910e55ad06e53af08c5e31f058bf5936c3c1d45581e050380b5db75659b5a493cc626a81795d82616a2dfad696d60c107929cfb8e2905e7f4c
+DIST libreport-2.15.1.tar.gz 1860410 BLAKE2B 
43743fc7a7698851e247956621286cc94dbfcc451b8d95aaff9263e65f787b23f7bbf5d7ec087196d5f9f30a697c66e547bbccdc913b3ea2a17ea4c7bf77ee02
 SHA512 
70f947690173a0afa57981c9755a18bdd0ad44c888c00713de74624296b81ff25203d5dda5d5c57eac85da4a1631585184b77715c7adf6688b469e32d4113cf4

diff --git a/dev-libs/libreport/libreport-2.15.1.ebuild 
b/dev-libs/libreport/libreport-2.15.1.ebuild
new file mode 100644
index 000..886cb5a64cc
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.15.1.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 python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   app-arch/libarchive:0=
+   >=dev-libs/glib-2.43.4:2
+   dev-libs/satyr:0=
+   dev-libs/json-c:=
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2021-05-01 Thread Matt Turner
commit: 704afae47302a5837f97ec8385e962ff2b08bca0
Author: Matt Turner  gentoo  org>
AuthorDate: Sat May  1 14:00:51 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat May  1 14:06:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704afae4

dev-libs/libreport: Version bump to 2.15.0

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index da5d5dc3381..1d7fd373044 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1 +1,2 @@
 DIST libreport-2.13.1.tar.gz 1841698 BLAKE2B 
e0fbebbb557fb9fb320dea0a8face6a2eabdb0ad80b5de092e5e4dfe2a0439a4804d4ec99c1286aaafa31064496a94fabce5e26f851001eb9c3bb9989a46e4bb
 SHA512 
6c2ea47e6efa36f23030fbe08946d1e524690e5f6279cbfdaf7c463ef71b23ae82a5e4471ddce89b35d4024f58197cef9f58a07dfcf5bbc1a9b310e39966f81a
+DIST libreport-2.15.0.tar.gz 1859305 BLAKE2B 
ceedd392bd0c7fc5c3f0db5d4a63ced6a1e430b09d1d085996ce735daef5f48cd18267fb1401d9343857619daef6f7f3dcea8508c62313a9f908e5573508649c
 SHA512 
7baaa1fb65face910e55ad06e53af08c5e31f058bf5936c3c1d45581e050380b5db75659b5a493cc626a81795d82616a2dfad696d60c107929cfb8e2905e7f4c

diff --git a/dev-libs/libreport/libreport-2.15.0.ebuild 
b/dev-libs/libreport/libreport-2.15.0.ebuild
new file mode 100644
index 000..886cb5a64cc
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.15.0.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 python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   app-arch/libarchive:0=
+   >=dev-libs/glib-2.43.4:2
+   dev-libs/satyr:0=
+   dev-libs/json-c:=
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2020-11-08 Thread Matt Turner
commit: b75077c7d79d3096276942b0d859c3c883028e69
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Nov  8 16:24:21 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Nov  8 16:26:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b75077c7

dev-libs/libreport: Drop old versions

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

 dev-libs/libreport/Manifest|   3 -
 dev-libs/libreport/libreport-2.10.0.ebuild |  89 -
 dev-libs/libreport/libreport-2.12.0.ebuild |  99 
 dev-libs/libreport/libreport-2.13.0.ebuild | 100 -
 4 files changed, 291 deletions(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index d0e14d2ccf7..da5d5dc3381 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,4 +1 @@
-DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
-DIST libreport-2.12.0.tar.gz 1842875 BLAKE2B 
930666ec0c675a8ff457412a80511652dfa3bd3d771115506370432a7b74f3d1d9f6264dc3696c582b4a0939b2493137a18e1379eca268f25bc787a03a7d6c39
 SHA512 
d85c1beea330e4b21ce66b6f4acadaa132010738496a6701d161ee75b2254e629c496270145a6167e8eb81cf2204b0488aa0eb15c1e898f49aa3aec1331bff0c
-DIST libreport-2.13.0.tar.gz 1840841 BLAKE2B 
822bbbfb1e03a6e486f12263fe60231045c9b2153dc743168b93c976b2db76f2bbff3c98da0107e660d713a0d9bac25bf36ee55064a15e0c72ae66fa7fdf0aaa
 SHA512 
f650ba83bfa48d3c897ec4415d4942ed3412a55240d950d78e15b935ea71c3665cdfe1c155f3eee202911e7bb4c09a0a50fbfdc2b54f4d32d00da1a98c1fe7e2
 DIST libreport-2.13.1.tar.gz 1841698 BLAKE2B 
e0fbebbb557fb9fb320dea0a8face6a2eabdb0ad80b5de092e5e4dfe2a0439a4804d4ec99c1286aaafa31064496a94fabce5e26f851001eb9c3bb9989a46e4bb
 SHA512 
6c2ea47e6efa36f23030fbe08946d1e524690e5f6279cbfdaf7c463ef71b23ae82a5e4471ddce89b35d4024f58197cef9f58a07dfcf5bbc1a9b310e39966f81a

diff --git a/dev-libs/libreport/libreport-2.10.0.ebuild 
b/dev-libs/libreport/libreport-2.10.0.ebuild
deleted file mode 100644
index f44fc8f3ffb..000
--- a/dev-libs/libreport/libreport-2.10.0.ebuild
+++ /dev/null
@@ -1,89 +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} )
-
-inherit autotools python-r1 user
-
-DESCRIPTION="Generic library for reporting software bugs"
-HOMEPAGE="https://github.com/abrt/libreport";
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="+gtk python"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   app-admin/augeas
-   >=dev-libs/glib-2.43.4:2
-   dev-libs/satyr:0=
-   dev-libs/json-c:=
-   dev-libs/libtar
-   dev-libs/libxml2:2
-   dev-libs/newt:=
-   dev-libs/xmlrpc-c:=
-   net-libs/libproxy:=
-   net-misc/curl:=[ssl]
-   sys-apps/dbus
-   sys-apps/systemd
-   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
-   python? ( ${PYTHON_DEPS} )
-   x11-misc/xdg-utils
-"
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/asciidoc
-   app-text/xmlto
-   >=dev-util/intltool-0.3.50
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-# Tests require python-meh, which is highly redhat-specific.
-RESTRICT="test"
-
-pkg_setup() {
-   enewgroup abrt
-   enewuser abrt -1 -1 -1 abrt
-}
-
-src_prepare() {
-   default
-   ./gen-version || die # Needed to be run before autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-bugzilla
-   # Fixes "syntax error in VERSION script" and we aren't 
supporting Python2 anyway
-   --without-python2
-   $(usex python "--with-python3" "--without-python3")
-   )
-   if use python; then
-   python_foreach_impl run_in_build_dir \
-   econf "${myargs[@]}"
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   use python && python_foreach_impl run_in_build_dir default
-}
-
-src_install() {
-   use python && python_foreach_impl run_in_build_dir default
-   # Need to set correct ownership for use by app-admin/abrt
-   diropts -o abrt -g abrt
-   keepdir /var/spool/abrt
-
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}

diff --git a/dev-libs/libreport/libreport-2.12.0.ebuild 
b/dev-libs/libreport/libreport-2.12.0.ebuild
deleted file mode 100644
index 4c4304d9da2..000
--- a/dev-libs/libreport/libreport-2.12.0.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 19

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

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

dev-libs/libreport: Drop stable keywords

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

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

diff --git a/dev-libs/libreport/libreport-2.10.0.ebuild 
b/dev-libs/libreport/libreport-2.10.0.ebuild
index 16e818b499d..f44fc8f3ffb 100644
--- a/dev-libs/libreport/libreport-2.10.0.ebuild
+++ b/dev-libs/libreport/libreport-2.10.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="~amd64 ~x86"
 
 IUSE="+gtk python"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2020-08-24 Thread Matt Turner
commit: 4af8199a6c421c2c8531c230423cc1236d6a2d45
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug 24 21:11:52 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug 24 22:23:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4af8199a

dev-libs/libreport: Version bump to 2.13.1

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index bcd69feef69..d0e14d2ccf7 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,3 +1,4 @@
 DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
 DIST libreport-2.12.0.tar.gz 1842875 BLAKE2B 
930666ec0c675a8ff457412a80511652dfa3bd3d771115506370432a7b74f3d1d9f6264dc3696c582b4a0939b2493137a18e1379eca268f25bc787a03a7d6c39
 SHA512 
d85c1beea330e4b21ce66b6f4acadaa132010738496a6701d161ee75b2254e629c496270145a6167e8eb81cf2204b0488aa0eb15c1e898f49aa3aec1331bff0c
 DIST libreport-2.13.0.tar.gz 1840841 BLAKE2B 
822bbbfb1e03a6e486f12263fe60231045c9b2153dc743168b93c976b2db76f2bbff3c98da0107e660d713a0d9bac25bf36ee55064a15e0c72ae66fa7fdf0aaa
 SHA512 
f650ba83bfa48d3c897ec4415d4942ed3412a55240d950d78e15b935ea71c3665cdfe1c155f3eee202911e7bb4c09a0a50fbfdc2b54f4d32d00da1a98c1fe7e2
+DIST libreport-2.13.1.tar.gz 1841698 BLAKE2B 
e0fbebbb557fb9fb320dea0a8face6a2eabdb0ad80b5de092e5e4dfe2a0439a4804d4ec99c1286aaafa31064496a94fabce5e26f851001eb9c3bb9989a46e4bb
 SHA512 
6c2ea47e6efa36f23030fbe08946d1e524690e5f6279cbfdaf7c463ef71b23ae82a5e4471ddce89b35d4024f58197cef9f58a07dfcf5bbc1a9b310e39966f81a

diff --git a/dev-libs/libreport/libreport-2.13.1.ebuild 
b/dev-libs/libreport/libreport-2.13.1.ebuild
new file mode 100644
index 000..991965f07e0
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.13.1.ebuild
@@ -0,0 +1,100 @@
+# 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 python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   >=dev-libs/glib-2.43.4:2
+   dev-libs/satyr:0=
+   dev-libs/json-c:=
+   dev-libs/libtar
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2020-04-25 Thread Matt Turner
commit: 22ef0787ef44e6cbc4805ed9d8a698de59595dd7
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Apr 26 01:35:41 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Apr 26 01:53:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22ef0787

dev-libs/libreport: Version bump to 2.13.0

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

 dev-libs/libreport/Manifest | 1 +
 dev-libs/libreport/libreport-2.12.0.ebuild  | 1 -
 dev-libs/libreport/{libreport-2.12.0.ebuild => libreport-2.13.0.ebuild} | 0
 3 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 1c28bd0fb52..bcd69feef69 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,2 +1,3 @@
 DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
 DIST libreport-2.12.0.tar.gz 1842875 BLAKE2B 
930666ec0c675a8ff457412a80511652dfa3bd3d771115506370432a7b74f3d1d9f6264dc3696c582b4a0939b2493137a18e1379eca268f25bc787a03a7d6c39
 SHA512 
d85c1beea330e4b21ce66b6f4acadaa132010738496a6701d161ee75b2254e629c496270145a6167e8eb81cf2204b0488aa0eb15c1e898f49aa3aec1331bff0c
+DIST libreport-2.13.0.tar.gz 1840841 BLAKE2B 
822bbbfb1e03a6e486f12263fe60231045c9b2153dc743168b93c976b2db76f2bbff3c98da0107e660d713a0d9bac25bf36ee55064a15e0c72ae66fa7fdf0aaa
 SHA512 
f650ba83bfa48d3c897ec4415d4942ed3412a55240d950d78e15b935ea71c3665cdfe1c155f3eee202911e7bb4c09a0a50fbfdc2b54f4d32d00da1a98c1fe7e2

diff --git a/dev-libs/libreport/libreport-2.12.0.ebuild 
b/dev-libs/libreport/libreport-2.12.0.ebuild
index 7be92707775..4c4304d9da2 100644
--- a/dev-libs/libreport/libreport-2.12.0.ebuild
+++ b/dev-libs/libreport/libreport-2.12.0.ebuild
@@ -29,7 +29,6 @@ DEPEND="${PYTHON_DEPS}
dev-libs/xmlrpc-c:=
net-libs/libproxy:=
net-misc/curl:=[ssl]
-   sys-apps/dbus
sys-apps/systemd
gtk? ( >=x11-libs/gtk+-3.3.12:3 )
python? ( ${PYTHON_DEPS} )

diff --git a/dev-libs/libreport/libreport-2.12.0.ebuild 
b/dev-libs/libreport/libreport-2.13.0.ebuild
similarity index 100%
copy from dev-libs/libreport/libreport-2.12.0.ebuild
copy to dev-libs/libreport/libreport-2.13.0.ebuild



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

2020-03-18 Thread Matt Turner
commit: a04b0728b477fe78d8bf5cb691c24d02fd03fd9f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 19 01:37:50 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 19 02:06:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a04b0728

dev-libs/libreport: Version bump to 2.12.0

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

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

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 1c1906dd4ca..1c28bd0fb52 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1 +1,2 @@
 DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
+DIST libreport-2.12.0.tar.gz 1842875 BLAKE2B 
930666ec0c675a8ff457412a80511652dfa3bd3d771115506370432a7b74f3d1d9f6264dc3696c582b4a0939b2493137a18e1379eca268f25bc787a03a7d6c39
 SHA512 
d85c1beea330e4b21ce66b6f4acadaa132010738496a6701d161ee75b2254e629c496270145a6167e8eb81cf2204b0488aa0eb15c1e898f49aa3aec1331bff0c

diff --git a/dev-libs/libreport/libreport-2.12.0.ebuild 
b/dev-libs/libreport/libreport-2.12.0.ebuild
new file mode 100644
index 000..7be92707775
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.12.0.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit autotools python-r1
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="gtk +python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   >=dev-libs/glib-2.43.4:2
+   dev-libs/satyr:0=
+   dev-libs/json-c:=
+   dev-libs/libtar
+   dev-libs/libxml2:2
+   dev-libs/nettle:=
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${DEPEND}
+   acct-user/abrt
+   acct-group/abrt
+"
+BDEPEND="
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   use python && python_setup
+
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   $(use_with gtk)
+   $(use_with python python3)
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   if use python; then
+   python_foreach_impl run_in_build_dir default
+   else
+   default
+   fi
+}
+
+src_install() {
+   if use python; then
+   python_install() {
+   default
+   python_optimize
+   }
+   python_foreach_impl run_in_build_dir python_install
+   else
+   default
+   fi
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2020-01-28 Thread Mart Raudsepp
commit: adb049af09c9c7de2585def08090c4d72a557f4f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Jan 28 09:22:56 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Jan 28 09:34:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb049af

dev-libs/libreport: remove old

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

 dev-libs/libreport/Manifest   |  1 -
 dev-libs/libreport/libreport-2.9.5.ebuild | 89 ---
 2 files changed, 90 deletions(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 78869811184..1c1906dd4ca 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,2 +1 @@
 DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
-DIST libreport-2.9.5.tar.gz 2271742 BLAKE2B 
e74d694c0012e984aab8044e99fee8e12a197c0a2edb933e78f045260043d40557509056b1093bc13cbe983976d5525cde1f7596a942760df10c857e99d6b56e
 SHA512 
f207710d88f39870d08e3a5fdfa3e1d5a808625bd36b1dcce363cefd39e582bad6be6dc4224db5e1df4404734c3dd69c437c377303fe978ae21b608fceb833ce

diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild 
b/dev-libs/libreport/libreport-2.9.5.ebuild
deleted file mode 100644
index ff234bf99f2..000
--- a/dev-libs/libreport/libreport-2.9.5.ebuild
+++ /dev/null
@@ -1,89 +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 user
-
-DESCRIPTION="Generic library for reporting software bugs"
-HOMEPAGE="https://github.com/abrt/libreport";
-SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="+gtk python"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   app-admin/augeas
-   >=dev-libs/glib-2.43:2
-   dev-libs/satyr
-   dev-libs/json-c:=
-   dev-libs/libtar
-   dev-libs/libxml2:2
-   dev-libs/newt:=
-   dev-libs/xmlrpc-c:=
-   net-libs/libproxy:=
-   net-misc/curl:=[ssl]
-   sys-apps/dbus
-   sys-apps/systemd
-   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
-   python? ( ${PYTHON_DEPS} )
-   x11-misc/xdg-utils
-"
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/asciidoc
-   app-text/xmlto
-   >=dev-util/intltool-0.3.50
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-# Tests require python-meh, which is highly redhat-specific.
-RESTRICT="test"
-
-pkg_setup() {
-   enewgroup abrt
-   enewuser abrt -1 -1 -1 abrt
-}
-
-src_prepare() {
-   default
-   ./gen-version || die # Needed to be run before autoreconf
-   eautoreconf
-   use python && python_copy_sources
-}
-
-src_configure() {
-   local myargs=(
-   --localstatedir="${EPREFIX}/var"
-   --without-bugzilla
-   # Fixes "syntax error in VERSION script" and we aren't 
supporting Python2 anyway
-   --without-python2
-   $(usex python "--with-python3" "--without-python3")
-   )
-   if use python; then
-   python_foreach_impl run_in_build_dir \
-   econf "${myargs[@]}"
-   else
-   econf "${myargs[@]}"
-   fi
-}
-
-src_compile() {
-   use python && python_foreach_impl run_in_build_dir default
-}
-
-src_install() {
-   use python && python_foreach_impl run_in_build_dir default
-   # Need to set correct ownership for use by app-admin/abrt
-   diropts -o abrt -g abrt
-   keepdir /var/spool/abrt
-
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}



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

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

dev-libs/libreport: 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/libreport/libreport-2.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libreport/libreport-2.10.0.ebuild 
b/dev-libs/libreport/libreport-2.10.0.ebuild
index f8865c17386..16e818b499d 100644
--- a/dev-libs/libreport/libreport-2.10.0.ebuild
+++ b/dev-libs/libreport/libreport-2.10.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 IUSE="+gtk python"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2020-01-26 Thread Thomas Deutschmann
commit: cfd4da8acced030a26034d9e3f1f69e81d4a4f02
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jan 26 22:18:51 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jan 26 22:39:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfd4da8a

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

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

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

diff --git a/dev-libs/libreport/libreport-2.10.0.ebuild 
b/dev-libs/libreport/libreport-2.10.0.ebuild
index f44fc8f3ffb..f8865c17386 100644
--- a/dev-libs/libreport/libreport-2.10.0.ebuild
+++ b/dev-libs/libreport/libreport-2.10.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 IUSE="+gtk python"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libreport/files/, dev-libs/libreport/

2019-11-17 Thread Mart Raudsepp
commit: 6f33e78f43a77d2374fc1acbece49d038bb8fd9f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Nov 17 18:01:40 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Nov 17 18:01:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f33e78f

dev-libs/libreport: remove old

Closes: https://bugs.gentoo.org/698998
Package-Manager: Portage-2.3.69, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/libreport/Manifest|   1 -
 .../files/libreport-2.0.13-automake-1.12.patch |  80 --
 .../libreport/files/libreport-2.0.13-gentoo.patch  | 295 -
 .../files/libreport-2.0.13-json-c-0.11-pc.patch|  51 
 .../files/libreport-2.0.13-json-c-0.11.patch   |  35 ---
 .../libreport-2.0.7-uploader_event-syntax.patch|  19 --
 dev-libs/libreport/libreport-2.0.13-r1.ebuild  |  94 ---
 7 files changed, 575 deletions(-)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 963e44cf4c3..78869811184 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,3 +1,2 @@
-DIST libreport-2.0.13.tar.gz 1190147 BLAKE2B 
fe79d924fbf7bd11cc3fd23956a137fb296baf9c40f12f3ecfefe68c82281f62299887511a096196b4fdcdc9245ab268592dace4e728c2c34af47581e52f5132
 SHA512 
cfe963db8091b245f8ceb7d8501466f4f9464c28d298faeafc9f6e57deafdfdc6501d468bf5ffd83703adb67bc1e05e06c56b5c0e0028bb2e0134788ddbb2181
 DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
 DIST libreport-2.9.5.tar.gz 2271742 BLAKE2B 
e74d694c0012e984aab8044e99fee8e12a197c0a2edb933e78f045260043d40557509056b1093bc13cbe983976d5525cde1f7596a942760df10c857e99d6b56e
 SHA512 
f207710d88f39870d08e3a5fdfa3e1d5a808625bd36b1dcce363cefd39e582bad6be6dc4224db5e1df4404734c3dd69c437c377303fe978ae21b608fceb833ce

diff --git a/dev-libs/libreport/files/libreport-2.0.13-automake-1.12.patch 
b/dev-libs/libreport/files/libreport-2.0.13-automake-1.12.patch
deleted file mode 100644
index 4baaedd4d8e..000
--- a/dev-libs/libreport/files/libreport-2.0.13-automake-1.12.patch
+++ /dev/null
@@ -1,80 +0,0 @@
-From cb7d7fe5b2daf4dac3b8a1616461a0c840e18b73 Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev 
-Date: Sat, 22 Sep 2012 03:06:03 -0400
-Subject: [PATCH] Fix automake-1.12 autoreconf issues.
-
-Need -Wno-portablity for '%'-style pattern rules in doc/Makefile.am
-
-Need AM_PROG_CC_C_O for src/cli/cli.c
-
-gettext-0.18.1.1's AM_GNU_GETTEXT requires AM_PROG_MKDIR_P, causing
-problems for automake-1.12.

- configure.ac| 8 +++-
- src/lib/Makefile.am | 2 +-
- src/plugins/Makefile.am | 2 +-
- 3 files changed, 5 insertions(+), 7 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index dd50bcf..3955689 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -3,7 +3,7 @@ AC_INIT([libreport],
-   [crash-catc...@fedorahosted.org])
- 
- AC_CONFIG_MACRO_DIR([m4])
--AM_INIT_AUTOMAKE([-Wall -Werror foreign])
-+AM_INIT_AUTOMAKE([-Wall -Wno-portability -Werror foreign])
- # Support silent build rules. Disable by either passing --disable-silent-rules
- # to ./configure or passing V=1 to make
- m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
-@@ -11,8 +11,9 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
- AM_SILENT_RULES([yes])
- 
- AC_DISABLE_STATIC
-+AM_PROG_AR
- AC_PROG_LIBTOOL
--AC_PROG_CC
-+AM_PROG_CC_C_O
- AC_PROG_LN_S
- 
- AC_SYS_LARGEFILE
-@@ -33,9 +34,6 @@ GETTEXT_PACKAGE=libreport
- AC_SUBST(GETTEXT_PACKAGE)
- AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for 
gettext])
- 
--AM_GNU_GETTEXT([external])
--AM_GNU_GETTEXT_VERSION([0.17])
--
- IT_PROG_INTLTOOL([0.35.0])
- 
- dnl ** END 
-diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
-index 5befe7d..2c51931 100644
 a/src/lib/Makefile.am
-+++ b/src/lib/Makefile.am
-@@ -121,7 +121,7 @@ libreport_web_la_LIBADD = \
- libreport.la
- 
- $(DESTDIR)/$(DEBUG_DUMPS_DIR):
--  $(mkdir_p) '$@'
-+  $(MKDIR_P) '$@'
- # no need to chmod it here
- #chmod 1777 '$@'
- install-data-local: $(DESTDIR)/$(DEBUG_DUMPS_DIR)
-diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
-index 3f9dfd7..795d198 100644
 a/src/plugins/Makefile.am
-+++ b/src/plugins/Makefile.am
-@@ -40,7 +40,7 @@ EXTRA_DIST = \
- report_Uploader.xml.in
- 
- $(DESTDIR)/$(DEBUG_INFO_DIR):
--  $(mkdir_p) '$@'
-+  $(MKDIR_P) '$@'
- 
- reporter_upload_SOURCES = \
- reporter-upload.c
--- 
-1.7.12
-

diff --git a/dev-libs/libreport/files/libreport-2.0.13-gentoo.patch 
b/dev-libs/libreport/files/libreport-2.0.13-gentoo.patch
deleted file mode 100644
index 89c6a17354a..000
--- a/dev-libs/libreport/files/libreport-2.0.13-gentoo.patch
+++ /de

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

2019-02-23 Thread Pacho Ramos
commit: 89d02633a473d31ec655dc0b45ec72948687194e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Feb 23 15:38:50 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Feb 23 15:59:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d02633

dev-libs/libreport: Version bump to 2.10.0

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

 dev-libs/libreport/Manifest|  1 +
 dev-libs/libreport/libreport-2.10.0.ebuild | 89 ++
 2 files changed, 90 insertions(+)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 40bdba4ed1d..963e44cf4c3 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1,2 +1,3 @@
 DIST libreport-2.0.13.tar.gz 1190147 BLAKE2B 
fe79d924fbf7bd11cc3fd23956a137fb296baf9c40f12f3ecfefe68c82281f62299887511a096196b4fdcdc9245ab268592dace4e728c2c34af47581e52f5132
 SHA512 
cfe963db8091b245f8ceb7d8501466f4f9464c28d298faeafc9f6e57deafdfdc6501d468bf5ffd83703adb67bc1e05e06c56b5c0e0028bb2e0134788ddbb2181
+DIST libreport-2.10.0.tar.gz 2278084 BLAKE2B 
95ac1fbf32e6e021e9553b35b10f9e46b7ea2e9cc6f21e53eb39a32a5261f7a6e49b2172381fdea30341fcc4311928691e68749a8bb5c41a4bf709151935687a
 SHA512 
978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
 DIST libreport-2.9.5.tar.gz 2271742 BLAKE2B 
e74d694c0012e984aab8044e99fee8e12a197c0a2edb933e78f045260043d40557509056b1093bc13cbe983976d5525cde1f7596a942760df10c857e99d6b56e
 SHA512 
f207710d88f39870d08e3a5fdfa3e1d5a808625bd36b1dcce363cefd39e582bad6be6dc4224db5e1df4404734c3dd69c437c377303fe978ae21b608fceb833ce

diff --git a/dev-libs/libreport/libreport-2.10.0.ebuild 
b/dev-libs/libreport/libreport-2.10.0.ebuild
new file mode 100644
index 000..d64adf865ab
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.10.0.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{4,5,6,7} )
+
+inherit autotools python-r1 user
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+gtk python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   >=dev-libs/glib-2.43.4:2
+   dev-libs/satyr:0=
+   dev-libs/json-c:=
+   dev-libs/libtar
+   dev-libs/libxml2:2
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   sys-apps/systemd
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup abrt
+   enewuser abrt -1 -1 -1 abrt
+}
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   # Fixes "syntax error in VERSION script" and we aren't 
supporting Python2 anyway
+   --without-python2
+   $(usex python "--with-python3" "--without-python3")
+   )
+   if use python; then
+   python_foreach_impl run_in_build_dir \
+   econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
+
+src_compile() {
+   use python && python_foreach_impl run_in_build_dir default
+}
+
+src_install() {
+   use python && python_foreach_impl run_in_build_dir default
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2018-12-12 Thread Mikle Kolyada
commit: 0d2fda19cf919610415b1dfe6686a2ed7d044a0e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Dec 12 16:30:08 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Dec 12 16:30:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2fda19

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

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

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

diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild 
b/dev-libs/libreport/libreport-2.9.5.ebuild
index 732be609bef..7c31200a613 100644
--- a/dev-libs/libreport/libreport-2.9.5.ebuild
+++ b/dev-libs/libreport/libreport-2.9.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 IUSE="+gtk python"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2018-12-06 Thread Thomas Deutschmann
commit: 8bb31b98c00019dc6ae91390eac4cee1bbdd5d05
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec  7 02:19:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec  7 02:40:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb31b98

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

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

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

diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild 
b/dev-libs/libreport/libreport-2.9.5.ebuild
index 9d1da641fb0..732be609bef 100644
--- a/dev-libs/libreport/libreport-2.9.5.ebuild
+++ b/dev-libs/libreport/libreport-2.9.5.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
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 IUSE="+gtk python"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2018-05-23 Thread Aaron Bauman
commit: 0010f554940e720df968ab8c3131e96aaa84988a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed May 23 22:36:20 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 23 22:36:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0010f554

dev-libs/libreport: sys-apps/systemd to COMMON_DEPEND

Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --force

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

diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild 
b/dev-libs/libreport/libreport-2.9.5.ebuild
index c9250a6e69a..9d1da641fb0 100644
--- a/dev-libs/libreport/libreport-2.9.5.ebuild
+++ b/dev-libs/libreport/libreport-2.9.5.ebuild
@@ -29,6 +29,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
net-libs/libproxy:=
net-misc/curl:=[ssl]
sys-apps/dbus
+   sys-apps/systemd
gtk? ( >=x11-libs/gtk+-3.3.12:3 )
python? ( ${PYTHON_DEPS} )
x11-misc/xdg-utils
@@ -39,7 +40,6 @@ DEPEND="${COMMON_DEPEND}
app-text/asciidoc
app-text/xmlto
>=dev-util/intltool-0.3.50
-   sys-apps/systemd
>=sys-devel/gettext-0.17
virtual/pkgconfig
 "



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

2018-05-23 Thread Aaron Bauman
commit: ce93a9787f446e44986a48edeb68412fbc1c6a43
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed May 23 22:29:11 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 23 22:30:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce93a978

dev-libs/libreport: fix Python install

This fixes the Python installation when Python USE is enabled.  Also,
drop ltprune eclass and strip .la files properly.

Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --force

 dev-libs/libreport/libreport-2.9.5.ebuild | 17 +
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild 
b/dev-libs/libreport/libreport-2.9.5.ebuild
index fab10399795..c9250a6e69a 100644
--- a/dev-libs/libreport/libreport-2.9.5.ebuild
+++ b/dev-libs/libreport/libreport-2.9.5.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 PYTHON_COMPAT=( python3_{4,5,6} )
 
-inherit autotools ltprune python-r1 user
+inherit autotools python-r1 user
 
 DESCRIPTION="Generic library for reporting software bugs"
 HOMEPAGE="https://github.com/abrt/libreport";
@@ -39,6 +39,7 @@ DEPEND="${COMMON_DEPEND}
app-text/asciidoc
app-text/xmlto
>=dev-util/intltool-0.3.50
+   sys-apps/systemd
>=sys-devel/gettext-0.17
virtual/pkgconfig
 "
@@ -66,15 +67,23 @@ src_configure() {
--without-python2
$(usex python "--with-python3" "--without-python3")
)
+   if use python; then
+   python_foreach_impl run_in_build_dir \
+   econf "${myargs[@]}"
+   else
+   econf "${myargs[@]}"
+   fi
+}
 
-   econf "${myargs[@]}"
+src_compile() {
+   use python && python_foreach_impl run_in_build_dir default
 }
 
 src_install() {
-
+   use python && python_foreach_impl run_in_build_dir default
# Need to set correct ownership for use by app-admin/abrt
diropts -o abrt -g abrt
keepdir /var/spool/abrt
 
-   prune_libtool_files --modules
+   find "${D}" -name '*.la' -exec rm -f {} + || die
 }



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

2018-05-23 Thread Aaron Bauman
commit: 5a3269ea24eb26fbec3b6bb29ab89f9ecb1b3642
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed May 23 21:24:40 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 23 21:24:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3269ea

dev-libs/libreport: bump

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

 dev-libs/libreport/Manifest   |  1 +
 dev-libs/libreport/libreport-2.9.5.ebuild | 80 +++
 2 files changed, 81 insertions(+)

diff --git a/dev-libs/libreport/Manifest b/dev-libs/libreport/Manifest
index 109cc1378f4..40bdba4ed1d 100644
--- a/dev-libs/libreport/Manifest
+++ b/dev-libs/libreport/Manifest
@@ -1 +1,2 @@
 DIST libreport-2.0.13.tar.gz 1190147 BLAKE2B 
fe79d924fbf7bd11cc3fd23956a137fb296baf9c40f12f3ecfefe68c82281f62299887511a096196b4fdcdc9245ab268592dace4e728c2c34af47581e52f5132
 SHA512 
cfe963db8091b245f8ceb7d8501466f4f9464c28d298faeafc9f6e57deafdfdc6501d468bf5ffd83703adb67bc1e05e06c56b5c0e0028bb2e0134788ddbb2181
+DIST libreport-2.9.5.tar.gz 2271742 BLAKE2B 
e74d694c0012e984aab8044e99fee8e12a197c0a2edb933e78f045260043d40557509056b1093bc13cbe983976d5525cde1f7596a942760df10c857e99d6b56e
 SHA512 
f207710d88f39870d08e3a5fdfa3e1d5a808625bd36b1dcce363cefd39e582bad6be6dc4224db5e1df4404734c3dd69c437c377303fe978ae21b608fceb833ce

diff --git a/dev-libs/libreport/libreport-2.9.5.ebuild 
b/dev-libs/libreport/libreport-2.9.5.ebuild
new file mode 100644
index 000..fab10399795
--- /dev/null
+++ b/dev-libs/libreport/libreport-2.9.5.ebuild
@@ -0,0 +1,80 @@
+# 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 ltprune python-r1 user
+
+DESCRIPTION="Generic library for reporting software bugs"
+HOMEPAGE="https://github.com/abrt/libreport";
+SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+gtk python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   app-admin/augeas
+   >=dev-libs/glib-2.43:2
+   dev-libs/satyr
+   dev-libs/json-c:=
+   dev-libs/libtar
+   dev-libs/libxml2:2
+   dev-libs/newt:=
+   dev-libs/xmlrpc-c:=
+   net-libs/libproxy:=
+   net-misc/curl:=[ssl]
+   sys-apps/dbus
+   gtk? ( >=x11-libs/gtk+-3.3.12:3 )
+   python? ( ${PYTHON_DEPS} )
+   x11-misc/xdg-utils
+"
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/asciidoc
+   app-text/xmlto
+   >=dev-util/intltool-0.3.50
+   >=sys-devel/gettext-0.17
+   virtual/pkgconfig
+"
+
+# Tests require python-meh, which is highly redhat-specific.
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup abrt
+   enewuser abrt -1 -1 -1 abrt
+}
+
+src_prepare() {
+   default
+   ./gen-version || die # Needed to be run before autoreconf
+   eautoreconf
+   use python && python_copy_sources
+}
+
+src_configure() {
+   local myargs=(
+   --localstatedir="${EPREFIX}/var"
+   --without-bugzilla
+   # Fixes "syntax error in VERSION script" and we aren't 
supporting Python2 anyway
+   --without-python2
+   $(usex python "--with-python3" "--without-python3")
+   )
+
+   econf "${myargs[@]}"
+}
+
+src_install() {
+
+   # Need to set correct ownership for use by app-admin/abrt
+   diropts -o abrt -g abrt
+   keepdir /var/spool/abrt
+
+   prune_libtool_files --modules
+}



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

2018-01-23 Thread Andreas Sturmlechner
commit: d177f06c9e34612ad7232bbac379ce9f8935feea
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jan 23 20:27:12 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jan 23 20:28:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d177f06c

dev-libs/libreport: Drop invalid alt. dependency

kde-apps/kwallet is gone for a long time.

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-libs/libreport/libreport-2.0.13-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libreport/libreport-2.0.13-r1.ebuild 
b/dev-libs/libreport/libreport-2.0.13-r1.ebuild
index 0fde323e9f3..13ec36a6da4 100644
--- a/dev-libs/libreport/libreport-2.0.13-r1.ebuild
+++ b/dev-libs/libreport/libreport-2.0.13-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -33,7 +33,7 @@ COMMON_DEPEND=">=dev-libs/btparser-0.18:=
${PYTHON_DEPS}
 "
 RDEPEND="${COMMON_DEPEND}
-   || ( gnome-base/gnome-keyring >=kde-frameworks/kwallet-5.34.0-r1  
>=kde-apps/kwalletd-4.8 )
+   || ( gnome-base/gnome-keyring >=kde-frameworks/kwallet-5.34.0-r1 )
 "
 DEPEND="${COMMON_DEPEND}
app-text/asciidoc



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

2017-07-09 Thread Andreas Sturmlechner
commit: e2f508232e25d2a576435762d8da7d5ef6dbfd42
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jul  9 20:55:27 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul  9 20:55:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2f50823

dev-libs/libreport: Add alternative kwallet provider

Gentoo-bug: 623394

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-libs/libreport/libreport-2.0.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libreport/libreport-2.0.13-r1.ebuild 
b/dev-libs/libreport/libreport-2.0.13-r1.ebuild
index 4fce1fbe6bc..0fde323e9f3 100644
--- a/dev-libs/libreport/libreport-2.0.13-r1.ebuild
+++ b/dev-libs/libreport/libreport-2.0.13-r1.ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND=">=dev-libs/btparser-0.18:=
${PYTHON_DEPS}
 "
 RDEPEND="${COMMON_DEPEND}
-   || ( gnome-base/gnome-keyring >=kde-apps/kwalletd-4.8 )
+   || ( gnome-base/gnome-keyring >=kde-frameworks/kwallet-5.34.0-r1  
>=kde-apps/kwalletd-4.8 )
 "
 DEPEND="${COMMON_DEPEND}
app-text/asciidoc