[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2022-07-31 Thread Sam James
commit: f39b58243b63c3a4fbf97f6d2989159acbda82ce
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  1 02:26:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  1 02:29:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f39b5824

app-text/cb2bib: [QA] fix duplicate phase (pkg_postinst)

Shadowed optfeature-like messages.

Bug: https://bugs.gentoo.org/861497
Signed-off-by: Sam James  gentoo.org>

 app-text/cb2bib/cb2bib-2.0.0-r1.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild
index 746edabdcd52..a46e68c271d4 100644
--- a/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild
+++ b/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -51,6 +51,8 @@ src_install() {
 }
 
 pkg_postinst() {
+   xdg_desktop_database_update
+
elog "For best functionality, emerge the following packages:"
elog "app-text/poppler[utils] - for data import from PDF files"
elog "app-text/dvipdfm- for data import from DVI files"
@@ -62,10 +64,6 @@ pkg_postinst() {
elog "  nice printing through the shell 
script bib2pdf"
 }
 
-pkg_postinst() {
-   xdg_desktop_database_update
-}
-
 pkg_postrm() {
xdg_desktop_database_update
 }



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-10-23 Thread Andreas Sturmlechner
commit: b3e349ba4e523b5c7fdf3ac2171c0f3101a9185c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct 23 18:08:41 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Oct 23 23:26:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3e349ba

app-text/cb2bib: Drop IUSE=webkit

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cb2bib/cb2bib-2.0.0-r1.ebuild | 71 ++
 1 file changed, 71 insertions(+)

diff --git a/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild
new file mode 100644
index 000..746edabdcd5
--- /dev/null
+++ b/app-text/cb2bib/cb2bib-2.0.0-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils xdg-utils
+
+DESCRIPTION="Tool for extracting unformatted bibliographic references"
+HOMEPAGE="https://www.molspaces.com/cb2bib/;
+SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="+lzo"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwebengine:5[widgets]
+   dev-qt/qtwidgets:5
+   lzo? ( dev-libs/lzo:2 )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS CHANGELOG COPYRIGHT )
+
+src_prepare() {
+   default
+
+   sed -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" \
+   -i src/src.pro || die
+
+   sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" src/src.pro || die
+}
+
+src_configure() {
+   eqmake5 \
+   $(use !lzo && echo -config disable_lzo)
+}
+
+src_compile() {
+   # bug #709940
+   emake -j1
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   elog "For best functionality, emerge the following packages:"
+   elog "app-text/poppler[utils] - for data import from PDF files"
+   elog "app-text/dvipdfm- for data import from DVI files"
+   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
+   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
+   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
+   elog "  text strings"
+   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
+   elog "  nice printing through the shell 
script bib2pdf"
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-10-23 Thread Andreas Sturmlechner
commit: 14d11055e007713e5daf4dd45b54357ec567b533
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct 23 18:09:18 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Oct 23 23:26:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14d11055

app-text/cb2bib: Drop 2.0.0 (r0)

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cb2bib/cb2bib-2.0.0.ebuild | 76 -
 app-text/cb2bib/metadata.xml|  3 --
 2 files changed, 79 deletions(-)

diff --git a/app-text/cb2bib/cb2bib-2.0.0.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0.ebuild
deleted file mode 100644
index da1a1c1f278..000
--- a/app-text/cb2bib/cb2bib-2.0.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils xdg-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="https://www.molspaces.com/cb2bib/;
-SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+lzo webkit"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   lzo? ( dev-libs/lzo:2 )
-   !webkit? ( dev-qt/qtwebengine:5[widgets] )
-   webkit? ( dev-qt/qtwebkit:5 )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS CHANGELOG COPYRIGHT )
-
-src_prepare() {
-   default
-
-   sed -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" \
-   -i src/src.pro || die
-
-   if use webkit; then
-   sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
-   else
-   sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" src/src.pro 
|| die
-   fi
-}
-
-src_configure() {
-   eqmake5 \
-   $(use !lzo && echo -config disable_lzo)
-}
-
-src_compile() {
-   # bug #709940
-   emake -j1
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_postinst() {
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-}

diff --git a/app-text/cb2bib/metadata.xml b/app-text/cb2bib/metadata.xml
index bb01d3fe4e6..57bbf03e3c9 100644
--- a/app-text/cb2bib/metadata.xml
+++ b/app-text/cb2bib/metadata.xml
@@ -5,9 +5,6 @@
q...@gentoo.org
Gentoo Qt Project

-   
-   Use dev-qt/qtwebkit instead of 
dev-qt/qtwebengine
-   

mailto:webmas...@molspaces.com




[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-10-12 Thread Andreas Sturmlechner
commit: b50cd8e2f5c04e20f0bb070bc2b072e8e375d3f6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct 12 15:21:19 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct 12 16:15:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50cd8e2

app-text/cb2bib: Drop useless REQUIRED_USE, drop IUSE="webengine"

- Non-deprecated QtWebEngine is default now
- IUSE=webkit alone checks preference

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cb2bib/cb2bib-2.0.0.ebuild | 16 +---
 app-text/cb2bib/metadata.xml|  2 +-
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/app-text/cb2bib/cb2bib-2.0.0.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0.ebuild
index 3eb3286f590..da1a1c1f278 100644
--- a/app-text/cb2bib/cb2bib-2.0.0.ebuild
+++ b/app-text/cb2bib/cb2bib-2.0.0.ebuild
@@ -12,9 +12,7 @@ SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="+lzo webengine +webkit"
-
-REQUIRED_USE="?? ( webkit webengine )"
+IUSE="+lzo webkit"
 
 DEPEND="
dev-qt/qtcore:5
@@ -22,7 +20,7 @@ DEPEND="
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
lzo? ( dev-libs/lzo:2 )
-   webengine? ( dev-qt/qtwebengine:5[widgets] )
+   !webkit? ( dev-qt/qtwebengine:5[widgets] )
webkit? ( dev-qt/qtwebkit:5 )
 "
 RDEPEND="${DEPEND}"
@@ -32,10 +30,14 @@ DOCS=( AUTHORS CHANGELOG COPYRIGHT )
 src_prepare() {
default
 
-   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
+   sed -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" \
+   -i src/src.pro || die
 
-   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
-   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
+   if use webkit; then
+   sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
+   else
+   sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" src/src.pro 
|| die
+   fi
 }
 
 src_configure() {

diff --git a/app-text/cb2bib/metadata.xml b/app-text/cb2bib/metadata.xml
index dca6445c892..bb01d3fe4e6 100644
--- a/app-text/cb2bib/metadata.xml
+++ b/app-text/cb2bib/metadata.xml
@@ -6,7 +6,7 @@
Gentoo Qt Project


-   Use dev-qt/qtwebengine 
instead of dev-qt/qtwebkit
+   Use dev-qt/qtwebkit instead of 
dev-qt/qtwebengine


mailto:webmas...@molspaces.com



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-08-16 Thread Andreas Sturmlechner
commit: 414ae246dea19bebfcac83208ae4d4e9e14584c0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Aug 16 22:19:14 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Aug 16 22:25:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=414ae246

app-text/cb2bib: Drop 1.9.8

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cb2bib/Manifest|  1 -
 app-text/cb2bib/cb2bib-1.9.8.ebuild | 61 -
 2 files changed, 62 deletions(-)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 833fae0f44f..94794685346 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,2 +1 @@
-DIST cb2bib-1.9.8.tar.gz 1180660 BLAKE2B 
86a826a9285ecd5ecd266b3935ddfa330153cba4b28f378519b464719d5a2bcaa6043470d36ba5c443202a07a18bbaeb28c3371db07063f0d682b54d2a8fe373
 SHA512 
717f9b4de3e261e6d22a7e514e2ec5891723572f1624280edc8a980171f4dada6e177a3e95748fc39ff0ba1c137406e38dd14f43a0f1e0995c1f39992842f38a
 DIST cb2bib-2.0.0.tar.gz 1337422 BLAKE2B 
6b1137c162f69f6d875aa3ae73b5995a067b332b3a7c0a5e69b787f352810768559c227c793204ca40ec594667624d329b5202c28056bca2e13110afebe57f63
 SHA512 
de1f3a36b98e016c5fa7317ba3fa8c5b767bd4b37bad1318298a57999bead4cc70d18ac49bb87fde57c4379f3347988846a7aa9b88e23a381d6c193bb1354cc2

diff --git a/app-text/cb2bib/cb2bib-1.9.8.ebuild 
b/app-text/cb2bib/cb2bib-1.9.8.ebuild
deleted file mode 100644
index e91077411de..000
--- a/app-text/cb2bib/cb2bib-1.9.8.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="https://www.molspaces.com/cb2bib/;
-SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+lzo webengine +webkit"
-
-REQUIRED_USE="?? ( webkit webengine )"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   lzo? ( dev-libs/lzo:2 )
-   webengine? ( dev-qt/qtwebengine:5[widgets] )
-   webkit? ( dev-qt/qtwebkit:5 )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS CHANGELOG COPYRIGHT )
-
-src_prepare() {
-   default
-
-   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
-
-   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
-   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
-}
-
-src_configure() {
-   eqmake5 \
-   $(use !lzo && echo -config disable_lzo)
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_postinst() {
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-08-12 Thread Agostino Sarubbo
commit: 93548f3ba9e17289b3e4a0951aca571dbe76c358
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Aug 12 06:00:25 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Aug 12 06:00:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93548f3b

app-text/cb2bib: x86 stable wrt bug #709846

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

 app-text/cb2bib/cb2bib-2.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cb2bib/cb2bib-2.0.0.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0.ebuild
index cf527a6f376..3eb3286f590 100644
--- a/app-text/cb2bib/cb2bib-2.0.0.ebuild
+++ b/app-text/cb2bib/cb2bib-2.0.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+lzo webengine +webkit"
 
 REQUIRED_USE="?? ( webkit webengine )"



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-08-09 Thread Andreas Sturmlechner
commit: 85f4b124f62d9d03d0f446d01148d4f15829887f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Aug  9 11:52:30 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Aug  9 11:55:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f4b124

app-text/cb2bib: Workaround parallel build failure

See also: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=966814

Closes: https://bugs.gentoo.org/709940
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cb2bib/cb2bib-2.0.0.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/app-text/cb2bib/cb2bib-2.0.0.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0.ebuild
index 70c2922ef25..cf527a6f376 100644
--- a/app-text/cb2bib/cb2bib-2.0.0.ebuild
+++ b/app-text/cb2bib/cb2bib-2.0.0.ebuild
@@ -43,6 +43,11 @@ src_configure() {
$(use !lzo && echo -config disable_lzo)
 }
 
+src_compile() {
+   # bug #709940
+   emake -j1
+}
+
 src_install() {
emake INSTALL_ROOT="${D}" install
einstalldocs



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-08-09 Thread Andreas Sturmlechner
commit: d1918768ce3fdbc81565ea2f2cf57d9fc5f5eccf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Aug  9 11:55:35 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Aug  9 11:55:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1918768

app-text/cb2bib: Drop 1.9.9

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/cb2bib/Manifest|  1 -
 app-text/cb2bib/cb2bib-1.9.9.ebuild | 61 -
 2 files changed, 62 deletions(-)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 026a0095126..833fae0f44f 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,3 +1,2 @@
 DIST cb2bib-1.9.8.tar.gz 1180660 BLAKE2B 
86a826a9285ecd5ecd266b3935ddfa330153cba4b28f378519b464719d5a2bcaa6043470d36ba5c443202a07a18bbaeb28c3371db07063f0d682b54d2a8fe373
 SHA512 
717f9b4de3e261e6d22a7e514e2ec5891723572f1624280edc8a980171f4dada6e177a3e95748fc39ff0ba1c137406e38dd14f43a0f1e0995c1f39992842f38a
-DIST cb2bib-1.9.9.tar.gz 1292720 BLAKE2B 
7263d09ab077d1029129b81abbf7a745405d476776ab91d4b73dc9799b3d945e46283fe565fee32b08df7a8734c027cbeacf0e7a44c4e15efaa6c992c69f9b7a
 SHA512 
66e81ea8d86cdf374c9e1109d26e02c0b3101608e751ab6bbded76cca42eb8c2c1d43f6a993b9003b6013d815683f644bff7513ce63dc750ffa8d608cccb49b3
 DIST cb2bib-2.0.0.tar.gz 1337422 BLAKE2B 
6b1137c162f69f6d875aa3ae73b5995a067b332b3a7c0a5e69b787f352810768559c227c793204ca40ec594667624d329b5202c28056bca2e13110afebe57f63
 SHA512 
de1f3a36b98e016c5fa7317ba3fa8c5b767bd4b37bad1318298a57999bead4cc70d18ac49bb87fde57c4379f3347988846a7aa9b88e23a381d6c193bb1354cc2

diff --git a/app-text/cb2bib/cb2bib-1.9.9.ebuild 
b/app-text/cb2bib/cb2bib-1.9.9.ebuild
deleted file mode 100644
index 1a3068c56e8..000
--- a/app-text/cb2bib/cb2bib-1.9.9.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="https://www.molspaces.com/cb2bib/;
-SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+lzo webengine +webkit"
-
-REQUIRED_USE="?? ( webkit webengine )"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   lzo? ( dev-libs/lzo:2 )
-   webengine? ( dev-qt/qtwebengine:5[widgets] )
-   webkit? ( dev-qt/qtwebkit:5 )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS CHANGELOG COPYRIGHT )
-
-src_prepare() {
-   default
-
-   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
-
-   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
-   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
-}
-
-src_configure() {
-   eqmake5 \
-   $(use !lzo && echo -config disable_lzo)
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_postinst() {
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2020-02-17 Thread Agostino Sarubbo
commit: 367b38c7ece8b7c3fcab06b8dbb53e35d02be516
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Feb 17 12:12:59 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Feb 17 12:12:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=367b38c7

app-text/cb2bib: amd64 stable wrt bug #709846

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

 app-text/cb2bib/cb2bib-2.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/cb2bib/cb2bib-2.0.0.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0.ebuild
index 966c0a15b77..70c2922ef25 100644
--- a/app-text/cb2bib/cb2bib-2.0.0.ebuild
+++ b/app-text/cb2bib/cb2bib-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+lzo webengine +webkit"
 
 REQUIRED_USE="?? ( webkit webengine )"



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2019-03-31 Thread Michael Palimaka
commit: faf8c980546aa2e09a6ab65da79cd06b1cd1df8f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Mar 31 12:02:22 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Mar 31 12:02:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf8c980

app-text/cb2bib: version bump 2.0.0

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

 app-text/cb2bib/Manifest|  1 +
 app-text/cb2bib/cb2bib-2.0.0.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 87c0323c3ee..026a0095126 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,2 +1,3 @@
 DIST cb2bib-1.9.8.tar.gz 1180660 BLAKE2B 
86a826a9285ecd5ecd266b3935ddfa330153cba4b28f378519b464719d5a2bcaa6043470d36ba5c443202a07a18bbaeb28c3371db07063f0d682b54d2a8fe373
 SHA512 
717f9b4de3e261e6d22a7e514e2ec5891723572f1624280edc8a980171f4dada6e177a3e95748fc39ff0ba1c137406e38dd14f43a0f1e0995c1f39992842f38a
 DIST cb2bib-1.9.9.tar.gz 1292720 BLAKE2B 
7263d09ab077d1029129b81abbf7a745405d476776ab91d4b73dc9799b3d945e46283fe565fee32b08df7a8734c027cbeacf0e7a44c4e15efaa6c992c69f9b7a
 SHA512 
66e81ea8d86cdf374c9e1109d26e02c0b3101608e751ab6bbded76cca42eb8c2c1d43f6a993b9003b6013d815683f644bff7513ce63dc750ffa8d608cccb49b3
+DIST cb2bib-2.0.0.tar.gz 1337422 BLAKE2B 
6b1137c162f69f6d875aa3ae73b5995a067b332b3a7c0a5e69b787f352810768559c227c793204ca40ec594667624d329b5202c28056bca2e13110afebe57f63
 SHA512 
de1f3a36b98e016c5fa7317ba3fa8c5b767bd4b37bad1318298a57999bead4cc70d18ac49bb87fde57c4379f3347988846a7aa9b88e23a381d6c193bb1354cc2

diff --git a/app-text/cb2bib/cb2bib-2.0.0.ebuild 
b/app-text/cb2bib/cb2bib-2.0.0.ebuild
new file mode 100644
index 000..966c0a15b77
--- /dev/null
+++ b/app-text/cb2bib/cb2bib-2.0.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils xdg-utils
+
+DESCRIPTION="Tool for extracting unformatted bibliographic references"
+HOMEPAGE="https://www.molspaces.com/cb2bib/;
+SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+lzo webengine +webkit"
+
+REQUIRED_USE="?? ( webkit webengine )"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   lzo? ( dev-libs/lzo:2 )
+   webengine? ( dev-qt/qtwebengine:5[widgets] )
+   webkit? ( dev-qt/qtwebkit:5 )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS CHANGELOG COPYRIGHT )
+
+src_prepare() {
+   default
+
+   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
+
+   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
+   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
+}
+
+src_configure() {
+   eqmake5 \
+   $(use !lzo && echo -config disable_lzo)
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   elog "For best functionality, emerge the following packages:"
+   elog "app-text/poppler[utils] - for data import from PDF files"
+   elog "app-text/dvipdfm- for data import from DVI files"
+   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
+   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
+   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
+   elog "  text strings"
+   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
+   elog "  nice printing through the shell 
script bib2pdf"
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2018-11-08 Thread Michael Palimaka
commit: d17671591526bde83b7bf955928125289d480606
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Nov  8 13:45:00 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov  8 13:45:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1767159

app-text/cb2bib: version bump 1.9.9

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 app-text/cb2bib/Manifest|  1 +
 app-text/cb2bib/cb2bib-1.9.9.ebuild | 61 +
 2 files changed, 62 insertions(+)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 38be98b53e9..87c0323c3ee 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1 +1,2 @@
 DIST cb2bib-1.9.8.tar.gz 1180660 BLAKE2B 
86a826a9285ecd5ecd266b3935ddfa330153cba4b28f378519b464719d5a2bcaa6043470d36ba5c443202a07a18bbaeb28c3371db07063f0d682b54d2a8fe373
 SHA512 
717f9b4de3e261e6d22a7e514e2ec5891723572f1624280edc8a980171f4dada6e177a3e95748fc39ff0ba1c137406e38dd14f43a0f1e0995c1f39992842f38a
+DIST cb2bib-1.9.9.tar.gz 1292720 BLAKE2B 
7263d09ab077d1029129b81abbf7a745405d476776ab91d4b73dc9799b3d945e46283fe565fee32b08df7a8734c027cbeacf0e7a44c4e15efaa6c992c69f9b7a
 SHA512 
66e81ea8d86cdf374c9e1109d26e02c0b3101608e751ab6bbded76cca42eb8c2c1d43f6a993b9003b6013d815683f644bff7513ce63dc750ffa8d608cccb49b3

diff --git a/app-text/cb2bib/cb2bib-1.9.9.ebuild 
b/app-text/cb2bib/cb2bib-1.9.9.ebuild
new file mode 100644
index 000..1a3068c56e8
--- /dev/null
+++ b/app-text/cb2bib/cb2bib-1.9.9.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+DESCRIPTION="Tool for extracting unformatted bibliographic references"
+HOMEPAGE="https://www.molspaces.com/cb2bib/;
+SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+lzo webengine +webkit"
+
+REQUIRED_USE="?? ( webkit webengine )"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   lzo? ( dev-libs/lzo:2 )
+   webengine? ( dev-qt/qtwebengine:5[widgets] )
+   webkit? ( dev-qt/qtwebkit:5 )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS CHANGELOG COPYRIGHT )
+
+src_prepare() {
+   default
+
+   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
+
+   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
+   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
+}
+
+src_configure() {
+   eqmake5 \
+   $(use !lzo && echo -config disable_lzo)
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   elog "For best functionality, emerge the following packages:"
+   elog "app-text/poppler[utils] - for data import from PDF files"
+   elog "app-text/dvipdfm- for data import from DVI files"
+   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
+   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
+   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
+   elog "  text strings"
+   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
+   elog "  nice printing through the shell 
script bib2pdf"
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2018-09-10 Thread Andreas Sturmlechner
commit: 780b5b79ff237703bc9ca6209f8088117702c59b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep  9 20:46:58 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Sep 10 19:46:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=780b5b79

app-text/cb2bib: Drop 1.9.7

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 app-text/cb2bib/Manifest|  1 -
 app-text/cb2bib/cb2bib-1.9.7.ebuild | 63 -
 2 files changed, 64 deletions(-)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index baf069bb8ce..38be98b53e9 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,2 +1 @@
-DIST cb2bib-1.9.7.tar.gz 845121 BLAKE2B 
eafce83874e82c20a45de5dc4c1558aa40346821f26bf2d9f53332f337e5cdaffb92c70972fd8b99823f72615608ea848808c9875e16ed50f02cf1d9655d552e
 SHA512 
87a438288c6e7776db136de63de1a8e27f2abf8499d28c0691b60ad3ef4f848e8987af4fc47d1f2cfb1d47009e28e7535f6bab998811cb721bfc9f384941b1e4
 DIST cb2bib-1.9.8.tar.gz 1180660 BLAKE2B 
86a826a9285ecd5ecd266b3935ddfa330153cba4b28f378519b464719d5a2bcaa6043470d36ba5c443202a07a18bbaeb28c3371db07063f0d682b54d2a8fe373
 SHA512 
717f9b4de3e261e6d22a7e514e2ec5891723572f1624280edc8a980171f4dada6e177a3e95748fc39ff0ba1c137406e38dd14f43a0f1e0995c1f39992842f38a

diff --git a/app-text/cb2bib/cb2bib-1.9.7.ebuild 
b/app-text/cb2bib/cb2bib-1.9.7.ebuild
deleted file mode 100644
index ee41902c48f..000
--- a/app-text/cb2bib/cb2bib-1.9.7.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="http://www.molspaces.com/cb2bib/;
-SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+lzo webengine +webkit"
-
-REQUIRED_USE="?? ( webkit webengine )"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   lzo? ( dev-libs/lzo:2 )
-   webkit? ( dev-qt/qtwebkit:5 )
-   webengine? ( dev-qt/qtwebengine:5[widgets] )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS CHANGELOG COPYRIGHT )
-
-src_prepare() {
-   default
-
-   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
-
-   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
-   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
-}
-
-src_configure() {
-   eqmake5 \
-   $(use !lzo && echo -config disable_lzo)
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_postinst() {
-   einfo
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-   einfo
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2018-09-09 Thread Mikle Kolyada
commit: 2633df1fb278c9120d1dcc68020e19afcaab6928
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep  9 08:19:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep  9 08:19:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2633df1f

app-text/cb2bib: amd64 stable wrt bug #664552

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-text/cb2bib/cb2bib-1.9.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cb2bib/cb2bib-1.9.8.ebuild 
b/app-text/cb2bib/cb2bib-1.9.8.ebuild
index bc5cb3cf60d..e91077411de 100644
--- a/app-text/cb2bib/cb2bib-1.9.8.ebuild
+++ b/app-text/cb2bib/cb2bib-1.9.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+lzo webengine +webkit"
 
 REQUIRED_USE="?? ( webkit webengine )"



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2018-08-18 Thread Andreas Sturmlechner
commit: bbd9c800f98da76d62518e23b94216f109389159
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Aug 18 06:40:44 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Aug 18 06:49:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd9c800

app-text/cb2bib: 1.9.8 version bump, fix build with Qt 5.11

Closes: https://bugs.gentoo.org/662764
Package-Manager: Portage-2.3.46, Repoman-2.3.10

 app-text/cb2bib/Manifest|  1 +
 app-text/cb2bib/cb2bib-1.9.8.ebuild | 61 +
 2 files changed, 62 insertions(+)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 0df2a7f4625..baf069bb8ce 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1 +1,2 @@
 DIST cb2bib-1.9.7.tar.gz 845121 BLAKE2B 
eafce83874e82c20a45de5dc4c1558aa40346821f26bf2d9f53332f337e5cdaffb92c70972fd8b99823f72615608ea848808c9875e16ed50f02cf1d9655d552e
 SHA512 
87a438288c6e7776db136de63de1a8e27f2abf8499d28c0691b60ad3ef4f848e8987af4fc47d1f2cfb1d47009e28e7535f6bab998811cb721bfc9f384941b1e4
+DIST cb2bib-1.9.8.tar.gz 1180660 BLAKE2B 
86a826a9285ecd5ecd266b3935ddfa330153cba4b28f378519b464719d5a2bcaa6043470d36ba5c443202a07a18bbaeb28c3371db07063f0d682b54d2a8fe373
 SHA512 
717f9b4de3e261e6d22a7e514e2ec5891723572f1624280edc8a980171f4dada6e177a3e95748fc39ff0ba1c137406e38dd14f43a0f1e0995c1f39992842f38a

diff --git a/app-text/cb2bib/cb2bib-1.9.8.ebuild 
b/app-text/cb2bib/cb2bib-1.9.8.ebuild
new file mode 100644
index 000..295b6e26046
--- /dev/null
+++ b/app-text/cb2bib/cb2bib-1.9.8.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+DESCRIPTION="Tool for extracting unformatted bibliographic references"
+HOMEPAGE="https://www.molspaces.com/cb2bib/;
+SRC_URI="https://www.molspaces.com/dl/progs/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+lzo webengine +webkit"
+
+REQUIRED_USE="?? ( webkit webengine )"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   lzo? ( dev-libs/lzo:2 )
+   webengine? ( dev-qt/qtwebengine:5[widgets] )
+   webkit? ( dev-qt/qtwebkit:5 )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS CHANGELOG COPYRIGHT )
+
+src_prepare() {
+   default
+
+   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
+
+   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
+   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
+}
+
+src_configure() {
+   eqmake5 \
+   $(use !lzo && echo -config disable_lzo)
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   elog "For best functionality, emerge the following packages:"
+   elog "app-text/poppler[utils] - for data import from PDF files"
+   elog "app-text/dvipdfm- for data import from DVI files"
+   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
+   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
+   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
+   elog "  text strings"
+   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
+   elog "  nice printing through the shell 
script bib2pdf"
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2017-07-28 Thread Michael Palimaka
commit: 3a66100aa62a4ee7514692bd62e72ea826ceac4a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jul 29 03:52:41 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jul 29 03:52:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a66100a

app-text/cb2bib: remove 1.9.6

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/cb2bib/Manifest|  1 -
 app-text/cb2bib/cb2bib-1.9.6.ebuild | 63 -
 2 files changed, 64 deletions(-)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index dd6f15c733d..4336bcdc948 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,2 +1 @@
-DIST cb2bib-1.9.6.tar.gz 845129 SHA256 
a2715a670ad405d6599b237d058cccf9e0dbe47070ee8e5d7f799c24ea4715af SHA512 
2e13d50996a5461f544ece6cac96ca32f1df1c703b9872d0ec8852a43fd0ba51041a136363fbed433b464163254b4d42ab2e6239a48567961155ae068ad6b27c
 WHIRLPOOL 
fbaaa3c77c5d90098d33c31dd13c75484be05b8c5fbf81d33b5a9a620bd9dec452fb9877f2d3c69213354763c63b56d07ff0c282d0ddd2077b8a58942a6d0571
 DIST cb2bib-1.9.7.tar.gz 845121 SHA256 
fae8520d85a01066434dbdc9357663467c20b4578229cea3047cc6f069dd283f SHA512 
87a438288c6e7776db136de63de1a8e27f2abf8499d28c0691b60ad3ef4f848e8987af4fc47d1f2cfb1d47009e28e7535f6bab998811cb721bfc9f384941b1e4
 WHIRLPOOL 
a4dc37345e93f815a50503108b9997717ea96885869a6aef5991f39aa1698810d7289a55da6cf330729e8e12c8399781b0eaebdbae256ac245d2700900da9529

diff --git a/app-text/cb2bib/cb2bib-1.9.6.ebuild 
b/app-text/cb2bib/cb2bib-1.9.6.ebuild
deleted file mode 100644
index ee41902c48f..000
--- a/app-text/cb2bib/cb2bib-1.9.6.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="http://www.molspaces.com/cb2bib/;
-SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+lzo webengine +webkit"
-
-REQUIRED_USE="?? ( webkit webengine )"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   lzo? ( dev-libs/lzo:2 )
-   webkit? ( dev-qt/qtwebkit:5 )
-   webengine? ( dev-qt/qtwebengine:5[widgets] )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS CHANGELOG COPYRIGHT )
-
-src_prepare() {
-   default
-
-   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
-
-   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
-   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
-}
-
-src_configure() {
-   eqmake5 \
-   $(use !lzo && echo -config disable_lzo)
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_postinst() {
-   einfo
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-   einfo
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2017-07-28 Thread Michael Palimaka
commit: 1851dff3cb20e136d0f8f3ecd33f6cdf20ec0ac2
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jul 29 03:52:31 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jul 29 03:52:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1851dff3

app-text/cb2bib: amd64/x86 stable

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/cb2bib/cb2bib-1.9.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cb2bib/cb2bib-1.9.7.ebuild 
b/app-text/cb2bib/cb2bib-1.9.7.ebuild
index 43999dbe529..ee41902c48f 100644
--- a/app-text/cb2bib/cb2bib-1.9.7.ebuild
+++ b/app-text/cb2bib/cb2bib-1.9.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+lzo webengine +webkit"
 
 REQUIRED_USE="?? ( webkit webengine )"



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2017-06-29 Thread Michael Palimaka
commit: 41144b3387b0ea707e739143791316f8f1154298
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Jun 29 12:33:10 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Jun 29 12:33:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41144b33

app-text/cb2bib: version bump 1.9.7

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/cb2bib/Manifest|  1 +
 app-text/cb2bib/cb2bib-1.9.7.ebuild | 63 +
 2 files changed, 64 insertions(+)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 3c007707f25..dd6f15c733d 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1 +1,2 @@
 DIST cb2bib-1.9.6.tar.gz 845129 SHA256 
a2715a670ad405d6599b237d058cccf9e0dbe47070ee8e5d7f799c24ea4715af SHA512 
2e13d50996a5461f544ece6cac96ca32f1df1c703b9872d0ec8852a43fd0ba51041a136363fbed433b464163254b4d42ab2e6239a48567961155ae068ad6b27c
 WHIRLPOOL 
fbaaa3c77c5d90098d33c31dd13c75484be05b8c5fbf81d33b5a9a620bd9dec452fb9877f2d3c69213354763c63b56d07ff0c282d0ddd2077b8a58942a6d0571
+DIST cb2bib-1.9.7.tar.gz 845121 SHA256 
fae8520d85a01066434dbdc9357663467c20b4578229cea3047cc6f069dd283f SHA512 
87a438288c6e7776db136de63de1a8e27f2abf8499d28c0691b60ad3ef4f848e8987af4fc47d1f2cfb1d47009e28e7535f6bab998811cb721bfc9f384941b1e4
 WHIRLPOOL 
a4dc37345e93f815a50503108b9997717ea96885869a6aef5991f39aa1698810d7289a55da6cf330729e8e12c8399781b0eaebdbae256ac245d2700900da9529

diff --git a/app-text/cb2bib/cb2bib-1.9.7.ebuild 
b/app-text/cb2bib/cb2bib-1.9.7.ebuild
new file mode 100644
index 000..43999dbe529
--- /dev/null
+++ b/app-text/cb2bib/cb2bib-1.9.7.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit qmake-utils
+
+DESCRIPTION="Tool for extracting unformatted bibliographic references"
+HOMEPAGE="http://www.molspaces.com/cb2bib/;
+SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+lzo webengine +webkit"
+
+REQUIRED_USE="?? ( webkit webengine )"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   lzo? ( dev-libs/lzo:2 )
+   webkit? ( dev-qt/qtwebkit:5 )
+   webengine? ( dev-qt/qtwebengine:5[widgets] )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS CHANGELOG COPYRIGHT )
+
+src_prepare() {
+   default
+
+   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
+
+   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
+   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
+}
+
+src_configure() {
+   eqmake5 \
+   $(use !lzo && echo -config disable_lzo)
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   einfo
+   elog "For best functionality, emerge the following packages:"
+   elog "app-text/poppler[utils] - for data import from PDF files"
+   elog "app-text/dvipdfm- for data import from DVI files"
+   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
+   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
+   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
+   elog "  text strings"
+   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
+   elog "  nice printing through the shell 
script bib2pdf"
+   einfo
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2017-04-27 Thread Michael Palimaka
commit: e8265b280bf8d1e6c5414c8a0ea7c698d1f0f6a9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Apr 27 12:13:05 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Apr 27 12:17:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8265b28

app-text/cb2bib: remove 1.5.0

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-text/cb2bib/Manifest|  1 -
 app-text/cb2bib/cb2bib-1.5.0.ebuild | 53 -
 2 files changed, 54 deletions(-)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 85703e4a8e1..3c007707f25 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,2 +1 @@
-DIST cb2bib-1.5.0.tar.gz 899936 SHA256 
e5eae392c9223889fb21c5a656b014d5a81a333c5378196075a985233885f3b9 SHA512 
bc1149ebc1dc2f6fb0e2bf04dedc156c2decd5f76a3b57bc24713db5827afb83e5ff2ef4b380d6a4fa6f80ce6375bfa97b2cfdc6d7540f620e3f541a586e998b
 WHIRLPOOL 
b4de5b4ad924ae623403070d95d50cbfa378676ed76519d7ec9002c686dd26da6ea8a43531f8c0147c0206a157ca44e9e94c50d53564a78e7a0a098ccb293f53
 DIST cb2bib-1.9.6.tar.gz 845129 SHA256 
a2715a670ad405d6599b237d058cccf9e0dbe47070ee8e5d7f799c24ea4715af SHA512 
2e13d50996a5461f544ece6cac96ca32f1df1c703b9872d0ec8852a43fd0ba51041a136363fbed433b464163254b4d42ab2e6239a48567961155ae068ad6b27c
 WHIRLPOOL 
fbaaa3c77c5d90098d33c31dd13c75484be05b8c5fbf81d33b5a9a620bd9dec452fb9877f2d3c69213354763c63b56d07ff0c282d0ddd2077b8a58942a6d0571

diff --git a/app-text/cb2bib/cb2bib-1.5.0.ebuild 
b/app-text/cb2bib/cb2bib-1.5.0.ebuild
deleted file mode 100644
index 7546ca507fd..000
--- a/app-text/cb2bib/cb2bib-1.5.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="http://www.molspaces.com/cb2bib/;
-SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="amd64 x86"
-IUSE="debug +lzo +webkit"
-
-DEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   x11-libs/libX11
-   lzo? ( dev-libs/lzo:2 )
-   webkit? ( dev-qt/qtwebkit:4 )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   # Fix desktop files
-   sed -i -e '/Keywords=/ s/$/;/' c2bscripts/{c2bciter,cb2bib}.desktop || 
die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DC2B_USE_LZO=$(use lzo && echo ON || echo OFF)
-   -DC2B_USE_WEBKIT=$(use webkit && echo ON || echo OFF)
-   )
-   cmake-utils_src_configure
-}
-
-pkg_postinst() {
-   einfo
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-   einfo
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2017-04-26 Thread Agostino Sarubbo
commit: 046b6ff4371c09d152aa65e4b332a89276f88f8e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Apr 26 07:39:18 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Apr 26 07:39:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=046b6ff4

app-text/cb2bib: amd64 stable wrt bug #616582

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

 app-text/cb2bib/cb2bib-1.9.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cb2bib/cb2bib-1.9.6.ebuild 
b/app-text/cb2bib/cb2bib-1.9.6.ebuild
index 43999dbe529..5a1d1cb3077 100644
--- a/app-text/cb2bib/cb2bib-1.9.6.ebuild
+++ b/app-text/cb2bib/cb2bib-1.9.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+lzo webengine +webkit"
 
 REQUIRED_USE="?? ( webkit webengine )"



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2017-03-03 Thread Michael Palimaka
commit: 1fdcfeb684a289e376afa08238f104282c3be9bd
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar  4 04:15:56 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar  4 04:16:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fdcfeb6

app-text/cb2bib: version bump 1.9.6

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 app-text/cb2bib/Manifest|  1 +
 app-text/cb2bib/cb2bib-1.9.6.ebuild | 63 +
 app-text/cb2bib/metadata.xml|  3 ++
 3 files changed, 67 insertions(+)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index df6ced45fb6..85703e4a8e1 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1 +1,2 @@
 DIST cb2bib-1.5.0.tar.gz 899936 SHA256 
e5eae392c9223889fb21c5a656b014d5a81a333c5378196075a985233885f3b9 SHA512 
bc1149ebc1dc2f6fb0e2bf04dedc156c2decd5f76a3b57bc24713db5827afb83e5ff2ef4b380d6a4fa6f80ce6375bfa97b2cfdc6d7540f620e3f541a586e998b
 WHIRLPOOL 
b4de5b4ad924ae623403070d95d50cbfa378676ed76519d7ec9002c686dd26da6ea8a43531f8c0147c0206a157ca44e9e94c50d53564a78e7a0a098ccb293f53
+DIST cb2bib-1.9.6.tar.gz 845129 SHA256 
a2715a670ad405d6599b237d058cccf9e0dbe47070ee8e5d7f799c24ea4715af SHA512 
2e13d50996a5461f544ece6cac96ca32f1df1c703b9872d0ec8852a43fd0ba51041a136363fbed433b464163254b4d42ab2e6239a48567961155ae068ad6b27c
 WHIRLPOOL 
fbaaa3c77c5d90098d33c31dd13c75484be05b8c5fbf81d33b5a9a620bd9dec452fb9877f2d3c69213354763c63b56d07ff0c282d0ddd2077b8a58942a6d0571

diff --git a/app-text/cb2bib/cb2bib-1.9.6.ebuild 
b/app-text/cb2bib/cb2bib-1.9.6.ebuild
new file mode 100644
index 000..43999dbe529
--- /dev/null
+++ b/app-text/cb2bib/cb2bib-1.9.6.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit qmake-utils
+
+DESCRIPTION="Tool for extracting unformatted bibliographic references"
+HOMEPAGE="http://www.molspaces.com/cb2bib/;
+SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+lzo webengine +webkit"
+
+REQUIRED_USE="?? ( webkit webengine )"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   lzo? ( dev-libs/lzo:2 )
+   webkit? ( dev-qt/qtwebkit:5 )
+   webengine? ( dev-qt/qtwebengine:5[widgets] )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS CHANGELOG COPYRIGHT )
+
+src_prepare() {
+   default
+
+   sed -i -e "s|../AUTHORS ../COPYRIGHT ../LICENSE ../CHANGELOG||" 
src/src.pro || die
+
+   use webengine || sed -i -e "s/qtHaveModule(webenginewidgets)/false/g" 
src/src.pro || die
+   use webkit || sed -i -e "s/qtHaveModule(webkitwidgets)/false/g" 
src/src.pro || die
+}
+
+src_configure() {
+   eqmake5 \
+   $(use !lzo && echo -config disable_lzo)
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   einfo
+   elog "For best functionality, emerge the following packages:"
+   elog "app-text/poppler[utils] - for data import from PDF files"
+   elog "app-text/dvipdfm- for data import from DVI files"
+   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
+   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
+   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
+   elog "  text strings"
+   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
+   elog "  nice printing through the shell 
script bib2pdf"
+   einfo
+}

diff --git a/app-text/cb2bib/metadata.xml b/app-text/cb2bib/metadata.xml
index 57bbf03e3c9..dca6445c892 100644
--- a/app-text/cb2bib/metadata.xml
+++ b/app-text/cb2bib/metadata.xml
@@ -5,6 +5,9 @@
q...@gentoo.org
Gentoo Qt Project

+   
+   Use dev-qt/qtwebengine 
instead of dev-qt/qtwebkit
+   

mailto:webmas...@molspaces.com




[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2016-06-08 Thread Michael Palimaka
commit: b53c53c6fc5623513ba9d63f20e3b128dfe940f1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun  8 16:01:43 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun  8 16:01:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53c53c6

app-text/cb2bib: remove old

Package-Manager: portage-2.3.0_rc1

 app-text/cb2bib/Manifest|  1 -
 app-text/cb2bib/cb2bib-1.4.9.ebuild | 48 -
 2 files changed, 49 deletions(-)

diff --git a/app-text/cb2bib/Manifest b/app-text/cb2bib/Manifest
index 08532ce..df6ced4 100644
--- a/app-text/cb2bib/Manifest
+++ b/app-text/cb2bib/Manifest
@@ -1,2 +1 @@
-DIST cb2bib-1.4.9.tar.gz 853588 SHA256 
a12e3f05df5f05e180bc1ff3af8cfcb2fc6142cd2ab7d452706e86a449e1b359 SHA512 
95e990772ccb0d789f18dc8b54fc37e432a91e76a7cd6355aa0ddafca5f9cc4d468fc433a50f4006d3eaed35136e9535ae09123a7fd55fbb989fb64234a96308
 WHIRLPOOL 
65b6b80a689f45a78863450c27e20ec9e5f33a33d32e9fbf7ece370465b77983fcb05c690b962843c9232f5dc6c9bd4dc3fbc7a487573e13348b9b9b15b58de9
 DIST cb2bib-1.5.0.tar.gz 899936 SHA256 
e5eae392c9223889fb21c5a656b014d5a81a333c5378196075a985233885f3b9 SHA512 
bc1149ebc1dc2f6fb0e2bf04dedc156c2decd5f76a3b57bc24713db5827afb83e5ff2ef4b380d6a4fa6f80ce6375bfa97b2cfdc6d7540f620e3f541a586e998b
 WHIRLPOOL 
b4de5b4ad924ae623403070d95d50cbfa378676ed76519d7ec9002c686dd26da6ea8a43531f8c0147c0206a157ca44e9e94c50d53564a78e7a0a098ccb293f53

diff --git a/app-text/cb2bib/cb2bib-1.4.9.ebuild 
b/app-text/cb2bib/cb2bib-1.4.9.ebuild
deleted file mode 100644
index f51f07a..000
--- a/app-text/cb2bib/cb2bib-1.4.9.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit cmake-utils
-
-DESCRIPTION="Tool for extracting unformatted bibliographic references"
-HOMEPAGE="http://www.molspaces.com/cb2bib/;
-SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="amd64 x86"
-IUSE="debug +lzo +webkit"
-
-DEPEND="
-   x11-libs/libX11
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   lzo? ( dev-libs/lzo:2 )
-   webkit? ( dev-qt/qtwebkit:4 )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DC2B_USE_LZO=$(use lzo && echo ON || echo OFF)
-   -DC2B_USE_WEBKIT=$(use webkit && echo ON || echo OFF)
-   )
-
-   cmake-utils_src_configure
-}
-
-pkg_postinst() {
-   einfo
-   elog "For best functionality, emerge the following packages:"
-   elog "app-text/poppler[utils] - for data import from PDF files"
-   elog "app-text/dvipdfm- for data import from DVI files"
-   elog "app-text/bibutils   - for data import from ISI, endnote 
format"
-   elog "media-fonts/jsmath  - for displaying mathematical 
notation"
-   elog "media-libs/exiftool - for proper UTF-8 metadata writing 
in PDF"
-   elog "  text strings"
-   elog "virtual/latex-base  - to check for BibTeX file 
correctness and to get"
-   elog "  nice printing through the shell 
script bib2pdf"
-   einfo
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2016-06-08 Thread Michael Palimaka
commit: 59ef2cd6a8c2244484bc30c8bc70418e00c9b21a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun  8 16:01:27 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun  8 16:01:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ef2cd6

app-text/cb2bib: x86 stable

Gentoo-bug: 584546

Package-Manager: portage-2.3.0_rc1

 app-text/cb2bib/cb2bib-1.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/cb2bib/cb2bib-1.5.0.ebuild 
b/app-text/cb2bib/cb2bib-1.5.0.ebuild
index 7cf7214..00af65e 100644
--- a/app-text/cb2bib/cb2bib-1.5.0.ebuild
+++ b/app-text/cb2bib/cb2bib-1.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-3"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug +lzo +webkit"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2016-06-06 Thread Agostino Sarubbo
commit: ba62d2e8eb0e68202ac03242e8096a2b0aa8763d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jun  6 16:14:13 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jun  6 16:14:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba62d2e8

app-text/cb2bib: amd64 stable wrt bug #584546

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-text/cb2bib/cb2bib-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cb2bib/cb2bib-1.5.0.ebuild 
b/app-text/cb2bib/cb2bib-1.5.0.ebuild
index aae6b93..7cf7214 100644
--- a/app-text/cb2bib/cb2bib-1.5.0.ebuild
+++ b/app-text/cb2bib/cb2bib-1.5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.molspaces.com/dl/progs/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug +lzo +webkit"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-text/cb2bib/

2016-03-19 Thread Michał Górny
commit: 16c49aa7aa4d7f23874c4799f196d6d168bdabae
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 18 18:22:54 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 18 19:10:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16c49aa7

app-text/cb2bib: Fix bugs-to URL to contain mailto:

Fix the  element value to contain 'mailto:' schema, as GLEP 46
requires it to be a proper URL.

 app-text/cb2bib/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/cb2bib/metadata.xml b/app-text/cb2bib/metadata.xml
index 6714145..57bbf03 100644
--- a/app-text/cb2bib/metadata.xml
+++ b/app-text/cb2bib/metadata.xml
@@ -6,6 +6,6 @@
Gentoo Qt Project


-   webmas...@molspaces.com
+   mailto:webmas...@molspaces.com