Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2
@ 2022-07-17  6:21 classabbyamp
  2022-07-17  6:40 ` [PR PATCH] [Updated] " classabbyamp
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  6:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 640 bytes --]

There is a new pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**



A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 6752 bytes --]

From e579ab408213dbabbb3e6562c31beea4a640f609 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

---
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 3 files changed, 88 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..09cea77aebf4
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include
+		vcopy "lib/*.h" usr/include
+	}
+}

From 1d7b0486c558cd885ca1d4c6a8b1fdb5b23c03a5 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 18 ++++++++++++
 2 files changed, 46 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2434c77d9ad1
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,18 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
@ 2022-07-17  6:40 ` classabbyamp
  2022-07-17  6:46 ` classabbyamp
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  6:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 666 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

fixes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7236 bytes --]

From 58b4e92eb64ce50abda42defc3f71ab6bd960564 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 4 files changed, 89 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..09cea77aebf4
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include
+		vcopy "lib/*.h" usr/include
+	}
+}

From 692ec5a251bd65810b00abe9c07e7ad2b9c5f94b Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

fixes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 20 +++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..89185d0b62d6
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,20 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
  2022-07-17  6:40 ` [PR PATCH] [Updated] " classabbyamp
@ 2022-07-17  6:46 ` classabbyamp
  2022-07-17  6:56 ` classabbyamp
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  6:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 666 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

fixes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7247 bytes --]

From cffcdac41b6583a61f25aa5d65c770ca7a5fbde7 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 4 files changed, 89 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..70433e20e781
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include
+		vcopy "lib/*.h" usr/include
+	}
+}

From da6707911c97297f6a67f029e9a11c5cd9d78b3e Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

fixes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 20 +++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..89185d0b62d6
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,20 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
  2022-07-17  6:40 ` [PR PATCH] [Updated] " classabbyamp
  2022-07-17  6:46 ` classabbyamp
@ 2022-07-17  6:56 ` classabbyamp
  2022-07-17  7:11 ` classabbyamp
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  6:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 666 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

fixes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7288 bytes --]

From 12f0ad1ea3c38242a29c29e2e174a789749b10c4 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 4 files changed, 89 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..4dda60eff405
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 08c82bc6bf57c7f7ab0ce8532508ef14b450eeca Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

fixes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 20 +++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..3606ce274937
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,20 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (2 preceding siblings ...)
  2022-07-17  6:56 ` classabbyamp
@ 2022-07-17  7:11 ` classabbyamp
  2022-07-17  7:20 ` classabbyamp
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  7:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 666 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

fixes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7313 bytes --]

From 12f0ad1ea3c38242a29c29e2e174a789749b10c4 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 4 files changed, 89 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..4dda60eff405
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 1663aa359d1cd0497a7c0eff231ec79bd723e8dd Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

fixes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2a271c675b86
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (3 preceding siblings ...)
  2022-07-17  7:11 ` classabbyamp
@ 2022-07-17  7:20 ` classabbyamp
  2022-07-17  8:43 ` classabbyamp
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  7:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 667 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7320 bytes --]

From 12f0ad1ea3c38242a29c29e2e174a789749b10c4 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 4 files changed, 89 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..4dda60eff405
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 23348c30d9a1ae7bf49fc6870f881b485cf6a84a Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

fixes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2ac39c554a93
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons kparts"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (4 preceding siblings ...)
  2022-07-17  7:20 ` classabbyamp
@ 2022-07-17  8:43 ` classabbyamp
  2022-07-17  8:45 ` classabbyamp
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  8:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 667 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7335 bytes --]

From 71388a3523456afae1b32d77e8934182a88d4c75 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

closes #34970
---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 49 +++++++++++++++++++
 4 files changed, 89 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..4dda60eff405
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,49 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 1897d6a53afed3feb5c1ad6811e547a3dd898188 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

closes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2ac39c554a93
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons kparts"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (5 preceding siblings ...)
  2022-07-17  8:43 ` classabbyamp
@ 2022-07-17  8:45 ` classabbyamp
  2022-07-17  8:48 ` classabbyamp
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  8:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 667 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7419 bytes --]

From 0debb0e557375036f65a008e0e9c58916f65f3bd Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

closes #34970
---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 50 +++++++++++++++++++
 4 files changed, 90 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..b73ae279e697
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,50 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+changelog="https://sourceforge.net/p/bibutils/home/history_version${version%%.*}/"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 6f36567594607b9fe5e59d4a4dd803c0ff319046 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

closes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2ac39c554a93
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons kparts"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (6 preceding siblings ...)
  2022-07-17  8:45 ` classabbyamp
@ 2022-07-17  8:48 ` classabbyamp
  2022-07-31  7:53 ` classabbyamp
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-17  8:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 682 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514
closes #34970

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7430 bytes --]

From 91d4d7bdfd66fa2eea3abcb830b6766d65c9869a Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

closes #34970
---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 50 +++++++++++++++++++
 4 files changed, 90 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index c0e56e217047..dde1ba877c39 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4174,3 +4174,4 @@ liblowdown.so lowdown-0.11.2_1
 libjaylink.so.0 libjaylink-0.2.0_1
 libnvidia-container.so.1 libnvidia-container-1.10.0_1
 libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..8da002eecd43
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,50 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+changelog="https://sourceforge.net/p/bibutils/home/history_version${version%%.*}/"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+}
+
+do_check() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 260c14b70330d85f9801263a86263fac08bcedcb Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

closes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2ac39c554a93
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons kparts"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (7 preceding siblings ...)
  2022-07-17  8:48 ` classabbyamp
@ 2022-07-31  7:53 ` classabbyamp
  2022-07-31  8:42 ` classabbyamp
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-31  7:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 682 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514
closes #34970

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 7249 bytes --]

From 1ea6435cb8979a12acfc681f8c49c21d13603884 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

closes #34970
---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++++++
 srcpkgs/bibutils/template                     | 40 +++++++++++++++++++
 4 files changed, 80 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template

diff --git a/common/shlibs b/common/shlibs
index e1f7db32dc2e..176ce63d5ecb 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4185,3 +4185,4 @@ libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
 libqtspell-qt5.so.1 qtspell-1.0.1_1
 libopensmtpd.so.0 libopensmtpd-0.7_1
 libiio.so.0 libiio-0.23_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..cd533073a7ee
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,40 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+build_style="configure"
+configure_args="--dynamic --install-dir \${DESTDIR}/usr/bin --install-lib \${DESTDIR}/usr/lib"
+make_use_env=yes
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+changelog="https://sourceforge.net/p/bibutils/home/history_version${version%%.*}/"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+post_install() {
+	vdoc ChangeLog
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}

From 35d8055837bf5d4869312d6946290511823b4d92 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

closes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 2 files changed, 49 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2ac39c554a93
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons kparts"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (8 preceding siblings ...)
  2022-07-31  7:53 ` classabbyamp
@ 2022-07-31  8:42 ` classabbyamp
  2022-10-30  2:14 ` github-actions
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-07-31  8:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 682 bytes --]

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages new/kbibtex
https://github.com/void-linux/void-packages/pull/38102

New packages: bibutils-7.2, kbibtex-0.9.2
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514
closes #34970

A patch file from https://github.com/void-linux/void-packages/pull/38102.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/kbibtex-38102.patch --]
[-- Type: text/x-diff, Size: 8065 bytes --]

From 6fead499700ca30889af1c4f6589c5c265a86475 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:50 -0400
Subject: [PATCH 1/2] New package: bibutils-7.2

closes #34970
---
 common/shlibs                                 |  1 +
 srcpkgs/bibutils-devel                        |  1 +
 .../bibutils/patches/generate-manpages.patch  | 38 ++++++++++++++
 srcpkgs/bibutils/template                     | 50 +++++++++++++++++++
 srcpkgs/bibutils/update                       |  1 +
 5 files changed, 91 insertions(+)
 create mode 120000 srcpkgs/bibutils-devel
 create mode 100644 srcpkgs/bibutils/patches/generate-manpages.patch
 create mode 100644 srcpkgs/bibutils/template
 create mode 100644 srcpkgs/bibutils/update

diff --git a/common/shlibs b/common/shlibs
index e1f7db32dc2e..176ce63d5ecb 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -4185,3 +4185,4 @@ libnvidia-container-go.so.1 libnvidia-container-1.10.0_1
 libqtspell-qt5.so.1 qtspell-1.0.1_1
 libopensmtpd.so.0 libopensmtpd-0.7_1
 libiio.so.0 libiio-0.23_1
+libbibutils.so.7 bibutils-7.2_1
diff --git a/srcpkgs/bibutils-devel b/srcpkgs/bibutils-devel
new file mode 120000
index 000000000000..fe74d1a04abe
--- /dev/null
+++ b/srcpkgs/bibutils-devel
@@ -0,0 +1 @@
+bibutils
\ No newline at end of file
diff --git a/srcpkgs/bibutils/patches/generate-manpages.patch b/srcpkgs/bibutils/patches/generate-manpages.patch
new file mode 100644
index 000000000000..140d362bc726
--- /dev/null
+++ b/srcpkgs/bibutils/patches/generate-manpages.patch
@@ -0,0 +1,38 @@
+from arch's package: https://github.com/archlinux/svntogit-community/blob/packages/bibutils/trunk/generate-man-pages.patch
+
+--- a/bibutils.dbk
++++ b/bibutils.dbk
+@@ -45,12 +45,12 @@
+     <refmiscinfo class='version'> &version; </refmiscinfo>
+     <refmiscinfo class='manual'> User Commands </refmiscinfo>
+   </refmeta>
+-  <!-- Uncomment this division to have .so manpages generated for all
+-  commands
+     <refnamediv>
+     <refname>bibutils</refname>
+     <refname>bib2xml</refname>
++    <refname>biblatex2xml</refname>
+     <refname>copac2xml</refname>
++    <refname>ebi2xml</refname>
+     <refname>end2xml</refname>
+     <refname>endx2xml</refname>
+     <refname>isi2xml</refname>
+@@ -58,15 +58,17 @@
+     <refname>modsclean</refname>
+     <refname>nbib2xml</refname>
+     <refname>ris2xml</refname>
++    <refname>wordbib2xml</refname>
+     <refname>xml2ads</refname>
+     <refname>xml2bib</refname>
++    <refname>xml2biblatex</refname>
+     <refname>xml2end</refname>
+     <refname>xml2isi</refname>
++    <refname>xml2nbib</refname>
+     <refname>xml2ris</refname>
+     <refname>xml2wordbib</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
+   </refnamediv>
+-  -->
+     <refnamediv>
+     <refname>bibutils</refname>
+       <refpurpose>bibliography conversion utilities</refpurpose>
diff --git a/srcpkgs/bibutils/template b/srcpkgs/bibutils/template
new file mode 100644
index 000000000000..c8d99f99a1cd
--- /dev/null
+++ b/srcpkgs/bibutils/template
@@ -0,0 +1,50 @@
+# Template file for 'bibutils'
+pkgname=bibutils
+version=7.2
+revision=1
+wrksrc="${pkgname}_${version}"
+hostmakedepends="docbook-xsl libxslt"
+short_desc="Bibliography format interconversion"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-only"
+homepage="https://sourceforge.net/projects/bibutils"
+changelog="https://sourceforge.net/p/bibutils/home/history_version${version%%.*}/"
+distfiles="${SOURCEFORGE_SITE}/bibutils/bibutils_${version}_src.tgz"
+checksum=6e028aef1e8a6b3e5acef098584a7bb68708f35cfe74011b341c11fea5e4b5c3
+
+post_patch() {
+	# remove unnecessary backslashes in pc file
+	vsed -e 's/\\//g' -i packageconfig_start
+}
+
+do_configure() {
+	./configure --dynamic --install-dir ${DESTDIR}/usr/bin --install-lib ${DESTDIR}/usr/lib
+}
+
+do_build() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}"
+}
+
+do_check() {
+	make CC="${CC}" DISTRO_CFLAGS="${CFLAGS}" LDFLAGSIN="${LDFLAGS}" test
+}
+
+do_install() {
+	make install
+	vdoc ChangeLog
+	xsltproc --output bibutils.1 --nonet /usr/share/xsl/docbook/manpages/docbook.xsl bibutils.dbk
+	for page in $(find ${wrksrc} -name '*.1'); do
+		vman $page
+	done
+}
+
+bibutils-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove "usr/lib/*.so"
+		vinstall lib/bibutils.pc 644 usr/lib/pkgconfig
+		vmkdir usr/include/${sourcepkg}
+		vcopy "lib/*.h" usr/include/${sourcepkg}
+	}
+}
diff --git a/srcpkgs/bibutils/update b/srcpkgs/bibutils/update
new file mode 100644
index 000000000000..be7a59fd865c
--- /dev/null
+++ b/srcpkgs/bibutils/update
@@ -0,0 +1 @@
+pattern='bibutils_\K[\d.]+(?=_src)'

From 8a82bb6428e832253ac9b4db2723a27b8b43d499 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Sun, 17 Jul 2022 02:17:30 -0400
Subject: [PATCH 2/2] New package: kbibtex-0.9.2

closes #21514
---
 .../patches/qsortfilterproxymodel-crash.patch | 28 +++++++++++++++++++
 srcpkgs/kbibtex/template                      | 21 ++++++++++++++
 srcpkgs/kbibtex/update                        |  2 ++
 3 files changed, 51 insertions(+)
 create mode 100644 srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
 create mode 100644 srcpkgs/kbibtex/template
 create mode 100644 srcpkgs/kbibtex/update

diff --git a/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/srcpkgs/kbibtex/patches/qsortfilterproxymodel-crash.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+
diff --git a/srcpkgs/kbibtex/template b/srcpkgs/kbibtex/template
new file mode 100644
index 000000000000..2ac39c554a93
--- /dev/null
+++ b/srcpkgs/kbibtex/template
@@ -0,0 +1,21 @@
+# Template file for 'kbibtex'
+pkgname=kbibtex
+version=0.9.2
+revision=1
+wrksrc="${pkgname}-v${version}"
+build_style=cmake
+hostmakedepends="extra-cmake-modules kdoctools gettext pkg-config qt5-host-tools
+ qt5-qmake kcoreaddons kparts"
+makedepends="poppler-qt5-devel qt5-webengine-devel qt5-xmlpatterns qoauth-qt5-devel
+ ktexteditor-devel qt5-webchannel-devel qt5-location-devel"
+depends="bibutils"
+conf_files="/etc/xdg/kbibtexrc"
+short_desc="Editor for bibliographies used with LaTeX"
+maintainer="classabbyamp <void@placeviolette.net>"
+license="GPL-2.0-or-later"
+homepage="https://apps.kde.org/kbibtex/"
+changelog="https://invent.kde.org/office/kbibtex/-/raw/master/ChangeLog"
+distfiles="https://invent.kde.org/office/kbibtex/-/archive/v${version}/kbibtex-v${version}.tar.gz"
+checksum=055e5485fa872bf4679fad0a4b8b05d67a63439b620b0002c56e9a35f907ac81
+# various failures both locally and in CI
+make_check=no
diff --git a/srcpkgs/kbibtex/update b/srcpkgs/kbibtex/update
new file mode 100644
index 000000000000..70997618a0d1
--- /dev/null
+++ b/srcpkgs/kbibtex/update
@@ -0,0 +1,2 @@
+site='https://invent.kde.org/office/kbibtex/-/tags'
+ignore='*0.9.[89]*'

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (9 preceding siblings ...)
  2022-07-31  8:42 ` classabbyamp
@ 2022-10-30  2:14 ` github-actions
  2022-10-30 15:01 ` prez
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2022-10-30  2:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/38102#issuecomment-1296065880

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (10 preceding siblings ...)
  2022-10-30  2:14 ` github-actions
@ 2022-10-30 15:01 ` prez
  2022-10-30 16:09 ` classabbyamp
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: prez @ 2022-10-30 15:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 174 bytes --]

New comment by prez on void-packages repository

https://github.com/void-linux/void-packages/pull/38102#issuecomment-1296279592

Comment:
What's blocking this at the moment?

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (11 preceding siblings ...)
  2022-10-30 15:01 ` prez
@ 2022-10-30 16:09 ` classabbyamp
  2022-10-31 18:32 ` prez
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: classabbyamp @ 2022-10-30 16:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 249 bytes --]

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38102#issuecomment-1296292525

Comment:
i kinda lost interest in this. if you're interested enough to maintain it, I can put you as maintainer

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (12 preceding siblings ...)
  2022-10-30 16:09 ` classabbyamp
@ 2022-10-31 18:32 ` prez
  2023-01-30  1:57 ` github-actions
  2023-02-13  2:01 ` [PR PATCH] [Closed]: " github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: prez @ 2022-10-31 18:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

New comment by prez on void-packages repository

https://github.com/void-linux/void-packages/pull/38102#issuecomment-1297504137

Comment:
It doesn't seem like there is much to maintain (last release in 2020), but I understand. And I don't feel up to the task myself due to the relative brittleness of the template.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (13 preceding siblings ...)
  2022-10-31 18:32 ` prez
@ 2023-01-30  1:57 ` github-actions
  2023-02-13  2:01 ` [PR PATCH] [Closed]: " github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2023-01-30  1:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/38102#issuecomment-1407873304

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Closed]: New packages: bibutils-7.2, kbibtex-0.9.2
  2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
                   ` (14 preceding siblings ...)
  2023-01-30  1:57 ` github-actions
@ 2023-02-13  2:01 ` github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2023-02-13  2:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 512 bytes --]

There's a closed pull request on the void-packages repository

New packages: bibutils-7.2, kbibtex-0.9.2
https://github.com/void-linux/void-packages/pull/38102

Description:
- New package: bibutils-7.2
- New package: kbibtex-0.9.2

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**

closes #21514
closes #34970

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2023-02-13  2:01 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-17  6:21 [PR PATCH] New packages: bibutils-7.2, kbibtex-0.9.2 classabbyamp
2022-07-17  6:40 ` [PR PATCH] [Updated] " classabbyamp
2022-07-17  6:46 ` classabbyamp
2022-07-17  6:56 ` classabbyamp
2022-07-17  7:11 ` classabbyamp
2022-07-17  7:20 ` classabbyamp
2022-07-17  8:43 ` classabbyamp
2022-07-17  8:45 ` classabbyamp
2022-07-17  8:48 ` classabbyamp
2022-07-31  7:53 ` classabbyamp
2022-07-31  8:42 ` classabbyamp
2022-10-30  2:14 ` github-actions
2022-10-30 15:01 ` prez
2022-10-30 16:09 ` classabbyamp
2022-10-31 18:32 ` prez
2023-01-30  1:57 ` github-actions
2023-02-13  2:01 ` [PR PATCH] [Closed]: " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).