* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-08-25 21:21 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2023-08-25 21:21 UTC (permalink / raw
To: gentoo-commits
commit: c3db77031b8835196f3c4401c110e045c5c56b55
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 25 21:20:53 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Aug 25 21:21:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3db7703
app-text/paper-clip: new package; add 3.2
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 +
app-text/paper-clip/metadata.xml | 13 ++++++
app-text/paper-clip/paper-clip-3.2.ebuild | 69 +++++++++++++++++++++++++++++++
3 files changed, 83 insertions(+)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
new file mode 100644
index 000000000000..cb6ccceda8aa
--- /dev/null
+++ b/app-text/paper-clip/Manifest
@@ -0,0 +1 @@
+DIST paper-clip-3.2.tar.gz 196899 BLAKE2B d089185db9557431c22ed64b63155920c60795315fad1901b0a5ce5fd0230b7246d375a10a8ce150ad4fdce16f9062aa4770601b741189b877e57d4fe948d7a2 SHA512 6a08fe04f3431d7444ba67da34b60d56b7cf065199fceef7086ad3f181f18c703b8d011e6dbef39942011e7f92e3728f1f1a5164a575bab43b370fca9c4fdb98
diff --git a/app-text/paper-clip/metadata.xml b/app-text/paper-clip/metadata.xml
new file mode 100644
index 000000000000..e13559a20d75
--- /dev/null
+++ b/app-text/paper-clip/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <maintainer type="person">
+ <email>xgqt@gentoo.org</email>
+ <name>Maciej Barć</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/Diego-Ivan/Paper-Clip/issues/</bugs-to>
+ <remote-id type="github">Diego-Ivan/Paper-Clip</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/app-text/paper-clip/paper-clip-3.2.ebuild b/app-text/paper-clip/paper-clip-3.2.ebuild
new file mode 100644
index 000000000000..3f431b600d29
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-3.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+REAL_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ ${PV} == *9999* ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${REAL_PN}-${PV}"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, appdata one fails.
+
+RDEPEND="
+ app-text/poppler:=
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=
+ gui-libs/gtk:4
+ gui-libs/libadwaita:1
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
+ dosym -r /usr/bin/pdf-metadata-editor /usr/bin/${PN}
+
+ mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-08-26 15:46 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2023-08-26 15:46 UTC (permalink / raw
To: gentoo-commits
commit: b3da086a4a97afcad87c434a2792d80e3fe03164
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 26 15:08:20 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 15:46:09 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3da086a
app-text/paper-clip: add live
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/paper-clip-9999.ebuild | 69 ++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/app-text/paper-clip/paper-clip-9999.ebuild b/app-text/paper-clip/paper-clip-9999.ebuild
new file mode 100644
index 000000000000..869320a239bb
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-9999.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+REAL_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ ${PV} == *9999* ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${REAL_PN}-${PV}"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, appdata one fails.
+
+RDEPEND="
+ app-text/poppler:=[cairo,introspection]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=
+ gui-libs/gtk:4
+ gui-libs/libadwaita:1
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
+ dosym -r /usr/bin/pdf-metadata-editor /usr/bin/${PN}
+
+ mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-08-26 15:46 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2023-08-26 15:46 UTC (permalink / raw
To: gentoo-commits
commit: d225882a657e2f801f7d3fefd129a4308d55963b
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 26 15:07:57 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 15:46:09 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d225882a
app-text/paper-clip: add required poppler USE flags
Closes: https://bugs.gentoo.org/913038
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/paper-clip-3.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/paper-clip/paper-clip-3.2.ebuild b/app-text/paper-clip/paper-clip-3.2.ebuild
index 3f431b600d29..869320a239bb 100644
--- a/app-text/paper-clip/paper-clip-3.2.ebuild
+++ b/app-text/paper-clip/paper-clip-3.2.ebuild
@@ -25,7 +25,7 @@ SLOT="0"
RESTRICT="test" # Only validations, appdata one fails.
RDEPEND="
- app-text/poppler:=
+ app-text/poppler:=[cairo,introspection]
dev-libs/glib:2
dev-libs/gobject-introspection
dev-libs/libportal:=
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-08-27 11:25 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2023-08-27 11:25 UTC (permalink / raw
To: gentoo-commits
commit: 415980c4e62bd8ceb6d5399f2d1c2f96904acdb8
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 27 11:24:15 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Aug 27 11:24:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415980c4
app-text/paper-clip: add missing USE requirements
Closes: https://bugs.gentoo.org/913094
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
.../paper-clip/{paper-clip-3.2.ebuild => paper-clip-3.2-r1.ebuild} | 4 ++--
app-text/paper-clip/paper-clip-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-text/paper-clip/paper-clip-3.2.ebuild b/app-text/paper-clip/paper-clip-3.2-r1.ebuild
similarity index 93%
rename from app-text/paper-clip/paper-clip-3.2.ebuild
rename to app-text/paper-clip/paper-clip-3.2-r1.ebuild
index 869320a239bb..2dc0892a58ef 100644
--- a/app-text/paper-clip/paper-clip-3.2.ebuild
+++ b/app-text/paper-clip/paper-clip-3.2-r1.ebuild
@@ -28,9 +28,9 @@ RDEPEND="
app-text/poppler:=[cairo,introspection]
dev-libs/glib:2
dev-libs/gobject-introspection
- dev-libs/libportal:=
+ dev-libs/libportal:=[gtk,introspection,vala]
gui-libs/gtk:4
- gui-libs/libadwaita:1
+ gui-libs/libadwaita:1[introspection,vala]
"
DEPEND="
${RDEPEND}
diff --git a/app-text/paper-clip/paper-clip-9999.ebuild b/app-text/paper-clip/paper-clip-9999.ebuild
index 869320a239bb..2dc0892a58ef 100644
--- a/app-text/paper-clip/paper-clip-9999.ebuild
+++ b/app-text/paper-clip/paper-clip-9999.ebuild
@@ -28,9 +28,9 @@ RDEPEND="
app-text/poppler:=[cairo,introspection]
dev-libs/glib:2
dev-libs/gobject-introspection
- dev-libs/libportal:=
+ dev-libs/libportal:=[gtk,introspection,vala]
gui-libs/gtk:4
- gui-libs/libadwaita:1
+ gui-libs/libadwaita:1[introspection,vala]
"
DEPEND="
${RDEPEND}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-10-24 16:51 Arthur Zamarin
0 siblings, 0 replies; 19+ messages in thread
From: Arthur Zamarin @ 2023-10-24 16:51 UTC (permalink / raw
To: gentoo-commits
commit: b556da93a5d2702263b3ae367eb1e51e108cfe16
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 24 16:50:58 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 24 16:50:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b556da93
app-text/paper-clip: Stabilize 3.2-r1 amd64, #916217
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-text/paper-clip/paper-clip-3.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/paper-clip/paper-clip-3.2-r1.ebuild b/app-text/paper-clip/paper-clip-3.2-r1.ebuild
index 2dc0892a58ef..3f30d1211390 100644
--- a/app-text/paper-clip/paper-clip-3.2-r1.ebuild
+++ b/app-text/paper-clip/paper-clip-3.2-r1.ebuild
@@ -17,7 +17,7 @@ else
SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${REAL_PN}-${PV}"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-3+"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-12-16 21:45 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2023-12-16 21:45 UTC (permalink / raw
To: gentoo-commits
commit: ca9f5c1cd47ca415a24fe1476924a87ab841d39c
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 16 19:38:21 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 21:44:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9f5c1c
app-text/paper-clip: bump to 3.6
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 +
app-text/paper-clip/paper-clip-3.6.ebuild | 71 +++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index cb6ccceda8aa..4fb2fc181d40 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1 +1,2 @@
DIST paper-clip-3.2.tar.gz 196899 BLAKE2B d089185db9557431c22ed64b63155920c60795315fad1901b0a5ce5fd0230b7246d375a10a8ce150ad4fdce16f9062aa4770601b741189b877e57d4fe948d7a2 SHA512 6a08fe04f3431d7444ba67da34b60d56b7cf065199fceef7086ad3f181f18c703b8d011e6dbef39942011e7f92e3728f1f1a5164a575bab43b370fca9c4fdb98
+DIST paper-clip-3.6.tar.gz 171190 BLAKE2B a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3 SHA512 4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
diff --git a/app-text/paper-clip/paper-clip-3.6.ebuild b/app-text/paper-clip/paper-clip-3.6.ebuild
new file mode 100644
index 000000000000..3d5055cd6861
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-3.6.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+REAL_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${REAL_PN}-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, the appdata one fails.
+
+RDEPEND="
+ app-text/poppler:=[cairo,introspection]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=[gtk,introspection,vala]
+ gui-libs/gtk:4
+ gui-libs/libadwaita:1[introspection,vala]
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
+ dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
+
+ mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2023-12-19 2:39 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2023-12-19 2:39 UTC (permalink / raw
To: gentoo-commits
commit: 6a55a87b8ec98cc4bb21e102d054ec2775184ccb
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 19 02:32:20 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Dec 19 02:32:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a55a87b
app-text/paper-clip: sync live 9999
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/paper-clip-9999.ebuild | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/app-text/paper-clip/paper-clip-9999.ebuild b/app-text/paper-clip/paper-clip-9999.ebuild
index 2dc0892a58ef..3d5055cd6861 100644
--- a/app-text/paper-clip/paper-clip-9999.ebuild
+++ b/app-text/paper-clip/paper-clip-9999.ebuild
@@ -10,19 +10,21 @@ inherit gnome2-utils meson vala xdg
DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
-if [[ ${PV} == *9999* ]] ; then
+if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
+
EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
else
SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${REAL_PN}-${PV}"
+
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
-RESTRICT="test" # Only validations, appdata one fails.
+RESTRICT="test" # Only validations, the appdata one fails.
RDEPEND="
app-text/poppler:=[cairo,introspection]
@@ -53,9 +55,9 @@ src_install() {
einstalldocs
# Symlink "pdf-metadata-editor" (old name?) to "${PN}"
- dosym -r /usr/bin/pdf-metadata-editor /usr/bin/${PN}
+ dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
- mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
+ mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-01-18 17:25 Sam James
0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2024-01-18 17:25 UTC (permalink / raw
To: gentoo-commits
commit: 308adab14ba3d0dec122fcd91e6b272be1fa75c0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 17:23:22 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 17:23:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308adab1
app-text/paper-clip: Stabilize 3.6 amd64, #922355
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/paper-clip/paper-clip-3.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-text/paper-clip/paper-clip-3.6.ebuild b/app-text/paper-clip/paper-clip-3.6.ebuild
index 3d5055cd6861..b2ed96834bc3 100644
--- a/app-text/paper-clip/paper-clip-3.6.ebuild
+++ b/app-text/paper-clip/paper-clip-3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -19,7 +19,7 @@ else
-> ${P}.tar.gz"
S="${WORKDIR}/${REAL_PN}-${PV}"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-3+"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-01-22 22:19 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-01-22 22:19 UTC (permalink / raw
To: gentoo-commits
commit: 4a7d15f1cf7e19c326529a262cbd2d8fd7a59eda
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 20:43:06 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 22:19:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7d15f1
app-text/paper-clip: drop old 3.2-r1
Closes: https://bugs.gentoo.org/919175
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 -
app-text/paper-clip/paper-clip-3.2-r1.ebuild | 69 ----------------------------
2 files changed, 70 deletions(-)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index 4fb2fc181d40..fae5a151391d 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1,2 +1 @@
-DIST paper-clip-3.2.tar.gz 196899 BLAKE2B d089185db9557431c22ed64b63155920c60795315fad1901b0a5ce5fd0230b7246d375a10a8ce150ad4fdce16f9062aa4770601b741189b877e57d4fe948d7a2 SHA512 6a08fe04f3431d7444ba67da34b60d56b7cf065199fceef7086ad3f181f18c703b8d011e6dbef39942011e7f92e3728f1f1a5164a575bab43b370fca9c4fdb98
DIST paper-clip-3.6.tar.gz 171190 BLAKE2B a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3 SHA512 4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
diff --git a/app-text/paper-clip/paper-clip-3.2-r1.ebuild b/app-text/paper-clip/paper-clip-3.2-r1.ebuild
deleted file mode 100644
index 3f30d1211390..000000000000
--- a/app-text/paper-clip/paper-clip-3.2-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-REAL_PN="Paper-Clip"
-
-inherit gnome2-utils meson vala xdg
-
-DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
-HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
-
-if [[ ${PV} == *9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
-else
- SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${REAL_PN}-${PV}"
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-RESTRICT="test" # Only validations, appdata one fails.
-
-RDEPEND="
- app-text/poppler:=[cairo,introspection]
- dev-libs/glib:2
- dev-libs/gobject-introspection
- dev-libs/libportal:=[gtk,introspection,vala]
- gui-libs/gtk:4
- gui-libs/libadwaita:1[introspection,vala]
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- $(vala_depend)
- dev-libs/appstream-glib
- dev-util/desktop-file-utils
-"
-
-DOCS=( README.md )
-
-src_prepare() {
- default
- vala_setup
-}
-
-src_install() {
- meson_src_install
- einstalldocs
-
- # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
- dosym -r /usr/bin/pdf-metadata-editor /usr/bin/${PN}
-
- mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die
-}
-
-pkg_postinst() {
- gnome2_schemas_update
- xdg_pkg_postinst
-}
-
-pkg_postrm() {
- gnome2_schemas_update
- xdg_pkg_postrm
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-01-22 22:19 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-01-22 22:19 UTC (permalink / raw
To: gentoo-commits
commit: 9c0b3f03d987679df022a32fea46247cb24aa1b7
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 20:52:43 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 22:19:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c0b3f03
app-text/paper-clip: sync live 9999 version
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/paper-clip-9999.ebuild | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/app-text/paper-clip/paper-clip-9999.ebuild b/app-text/paper-clip/paper-clip-9999.ebuild
index 3d5055cd6861..8a822daeac38 100644
--- a/app-text/paper-clip/paper-clip-9999.ebuild
+++ b/app-text/paper-clip/paper-clip-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-REAL_PN="Paper-Clip"
+APP_PN="Paper-Clip"
inherit gnome2-utils meson vala xdg
@@ -13,11 +13,11 @@ HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
- EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
else
- SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
+ SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
- S="${WORKDIR}/${REAL_PN}-${PV}"
+ S="${WORKDIR}/${APP_PN}-${PV}"
KEYWORDS="~amd64 ~x86"
fi
@@ -27,12 +27,13 @@ SLOT="0"
RESTRICT="test" # Only validations, the appdata one fails.
RDEPEND="
+ >=gui-libs/gtk-4.12.5:4
+ >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
app-text/poppler:=[cairo,introspection]
dev-libs/glib:2
dev-libs/gobject-introspection
dev-libs/libportal:=[gtk,introspection,vala]
- gui-libs/gtk:4
- gui-libs/libadwaita:1[introspection,vala]
+ media-libs/exempi
"
DEPEND="
${RDEPEND}
@@ -54,7 +55,7 @@ src_install() {
meson_src_install
einstalldocs
- # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-01-22 22:19 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-01-22 22:19 UTC (permalink / raw
To: gentoo-commits
commit: b32dda7bd39089f030f8728c4688e025c933b169
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 22 20:50:08 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 22 22:19:22 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32dda7b
app-text/paper-clip: bump to 4.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 +
app-text/paper-clip/paper-clip-4.0.ebuild | 72 +++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index fae5a151391d..db7265d140b2 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1 +1,2 @@
DIST paper-clip-3.6.tar.gz 171190 BLAKE2B a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3 SHA512 4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
+DIST paper-clip-4.0.tar.gz 179221 BLAKE2B 37f1e8fe73ed333c1ffaf72ce587581a54f464b326dfbb060e241aec3ee6219ba8e988cf49642a6429213b731aad218fbf174845553987f9c269d8640d71da28 SHA512 7ebc657e2e3d42eb70b63eee254cb68a989211445381d397394b28c2939f292e4b2329ed9747a516aca6df7e261894b347dda8e718c032624e2a8aed96bd4bc3
diff --git a/app-text/paper-clip/paper-clip-4.0.ebuild b/app-text/paper-clip/paper-clip-4.0.ebuild
new file mode 100644
index 000000000000..8a822daeac38
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-4.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+APP_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${APP_PN}-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, the appdata one fails.
+
+RDEPEND="
+ >=gui-libs/gtk-4.12.5:4
+ >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
+ app-text/poppler:=[cairo,introspection]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=[gtk,introspection,vala]
+ media-libs/exempi
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
+ dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
+
+ mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-02-03 13:00 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-02-03 13:00 UTC (permalink / raw
To: gentoo-commits
commit: 04d3d8b7342a08c5ef532f02332dac63198e0718
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 3 11:52:08 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Feb 3 13:00:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d3d8b7
app-text/paper-clip: drop old 4.0
Closes: https://bugs.gentoo.org/922865
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 -
app-text/paper-clip/paper-clip-4.0.ebuild | 72 -------------------------------
2 files changed, 73 deletions(-)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index bdb52ca2a4e3..be8bc05d41ed 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1,3 +1,2 @@
DIST paper-clip-3.6.tar.gz 171190 BLAKE2B a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3 SHA512 4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
-DIST paper-clip-4.0.tar.gz 179221 BLAKE2B 37f1e8fe73ed333c1ffaf72ce587581a54f464b326dfbb060e241aec3ee6219ba8e988cf49642a6429213b731aad218fbf174845553987f9c269d8640d71da28 SHA512 7ebc657e2e3d42eb70b63eee254cb68a989211445381d397394b28c2939f292e4b2329ed9747a516aca6df7e261894b347dda8e718c032624e2a8aed96bd4bc3
DIST paper-clip-5.0.tar.gz 182085 BLAKE2B 07c397218417a5bc87e95aec577465b3f109de4c081bf0f208e0213b71ea7a8f9bac415221a04c8729add7d82adf98c859b60b1b0bd9dbef2db021ee80ff9296 SHA512 2757768414b2177511b61c0a9bde9710b67128a446640bb3ae3bba22a9b30a2b8b036ee32806dc6e4662ffc3d06254006b89e6b63cdc11950b38257e9ea46023
diff --git a/app-text/paper-clip/paper-clip-4.0.ebuild b/app-text/paper-clip/paper-clip-4.0.ebuild
deleted file mode 100644
index 8a822daeac38..000000000000
--- a/app-text/paper-clip/paper-clip-4.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-APP_PN="Paper-Clip"
-
-inherit gnome2-utils meson vala xdg
-
-DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
-HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
-else
- SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${APP_PN}-${PV}"
-
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-RESTRICT="test" # Only validations, the appdata one fails.
-
-RDEPEND="
- >=gui-libs/gtk-4.12.5:4
- >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
- app-text/poppler:=[cairo,introspection]
- dev-libs/glib:2
- dev-libs/gobject-introspection
- dev-libs/libportal:=[gtk,introspection,vala]
- media-libs/exempi
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- $(vala_depend)
- dev-libs/appstream-glib
- dev-util/desktop-file-utils
-"
-
-DOCS=( README.md )
-
-src_prepare() {
- default
- vala_setup
-}
-
-src_install() {
- meson_src_install
- einstalldocs
-
- # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
- dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
-
- mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
-}
-
-pkg_postinst() {
- gnome2_schemas_update
- xdg_pkg_postinst
-}
-
-pkg_postrm() {
- gnome2_schemas_update
- xdg_pkg_postrm
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-02-03 13:00 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-02-03 13:00 UTC (permalink / raw
To: gentoo-commits
commit: 19921a05162adc8b7a80190f6623c9e2575d81ea
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 3 11:47:31 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Feb 3 13:00:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19921a05
app-text/paper-clip: bump to 5.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 +
app-text/paper-clip/paper-clip-5.0.ebuild | 72 +++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index db7265d140b2..bdb52ca2a4e3 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1,2 +1,3 @@
DIST paper-clip-3.6.tar.gz 171190 BLAKE2B a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3 SHA512 4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
DIST paper-clip-4.0.tar.gz 179221 BLAKE2B 37f1e8fe73ed333c1ffaf72ce587581a54f464b326dfbb060e241aec3ee6219ba8e988cf49642a6429213b731aad218fbf174845553987f9c269d8640d71da28 SHA512 7ebc657e2e3d42eb70b63eee254cb68a989211445381d397394b28c2939f292e4b2329ed9747a516aca6df7e261894b347dda8e718c032624e2a8aed96bd4bc3
+DIST paper-clip-5.0.tar.gz 182085 BLAKE2B 07c397218417a5bc87e95aec577465b3f109de4c081bf0f208e0213b71ea7a8f9bac415221a04c8729add7d82adf98c859b60b1b0bd9dbef2db021ee80ff9296 SHA512 2757768414b2177511b61c0a9bde9710b67128a446640bb3ae3bba22a9b30a2b8b036ee32806dc6e4662ffc3d06254006b89e6b63cdc11950b38257e9ea46023
diff --git a/app-text/paper-clip/paper-clip-5.0.ebuild b/app-text/paper-clip/paper-clip-5.0.ebuild
new file mode 100644
index 000000000000..8a822daeac38
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-5.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+APP_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${APP_PN}-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, the appdata one fails.
+
+RDEPEND="
+ >=gui-libs/gtk-4.12.5:4
+ >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
+ app-text/poppler:=[cairo,introspection]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=[gtk,introspection,vala]
+ media-libs/exempi
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
+ dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
+
+ mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-04-11 1:38 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-04-11 1:38 UTC (permalink / raw
To: gentoo-commits
commit: 7ec61535dfe36fa9d695137f8b1a4bdaac1396f4
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 10 23:32:19 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 01:38:42 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ec61535
app-text/paper-clip: drop old 3.6
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 -
app-text/paper-clip/paper-clip-3.6.ebuild | 71 -------------------------------
2 files changed, 72 deletions(-)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index be8bc05d41ed..71dac68e6efc 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1,2 +1 @@
-DIST paper-clip-3.6.tar.gz 171190 BLAKE2B a31673c9c3a1f889a63561a244d966195dac2738eb4070dfd01807c7406c7f8acb0277509c6924de37068aa904c3f1ee4f6de3882bf734470b67dd77b34afcf3 SHA512 4ebfa6789d31f85dc6b38119f7fb1f88ca06a32872ab1341d4a4fcd898eb3c672673a630d56f373294c053bdcee7573206a5fe89da45b76366f65e9bb441451a
DIST paper-clip-5.0.tar.gz 182085 BLAKE2B 07c397218417a5bc87e95aec577465b3f109de4c081bf0f208e0213b71ea7a8f9bac415221a04c8729add7d82adf98c859b60b1b0bd9dbef2db021ee80ff9296 SHA512 2757768414b2177511b61c0a9bde9710b67128a446640bb3ae3bba22a9b30a2b8b036ee32806dc6e4662ffc3d06254006b89e6b63cdc11950b38257e9ea46023
diff --git a/app-text/paper-clip/paper-clip-3.6.ebuild b/app-text/paper-clip/paper-clip-3.6.ebuild
deleted file mode 100644
index b2ed96834bc3..000000000000
--- a/app-text/paper-clip/paper-clip-3.6.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-REAL_PN="Paper-Clip"
-
-inherit gnome2-utils meson vala xdg
-
-DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
-HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/Diego-Ivan/${REAL_PN}.git"
-else
- SRC_URI="https://github.com/Diego-Ivan/${REAL_PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${REAL_PN}-${PV}"
-
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-RESTRICT="test" # Only validations, the appdata one fails.
-
-RDEPEND="
- app-text/poppler:=[cairo,introspection]
- dev-libs/glib:2
- dev-libs/gobject-introspection
- dev-libs/libportal:=[gtk,introspection,vala]
- gui-libs/gtk:4
- gui-libs/libadwaita:1[introspection,vala]
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- $(vala_depend)
- dev-libs/appstream-glib
- dev-util/desktop-file-utils
-"
-
-DOCS=( README.md )
-
-src_prepare() {
- default
- vala_setup
-}
-
-src_install() {
- meson_src_install
- einstalldocs
-
- # Symlink "pdf-metadata-editor" (old name?) to "${PN}"
- dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
-
- mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
-}
-
-pkg_postinst() {
- gnome2_schemas_update
- xdg_pkg_postinst
-}
-
-pkg_postrm() {
- gnome2_schemas_update
- xdg_pkg_postrm
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-05-06 18:00 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-05-06 18:00 UTC (permalink / raw
To: gentoo-commits
commit: e62c76d946054c03f1c22a9c9c4791f23fcea9db
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon May 6 16:25:40 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon May 6 18:00:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e62c76d9
app-text/paper-clip: bump to 5.5
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 +
app-text/paper-clip/paper-clip-5.5.ebuild | 72 +++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index 71dac68e6efc..267a62cddd78 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1 +1,2 @@
DIST paper-clip-5.0.tar.gz 182085 BLAKE2B 07c397218417a5bc87e95aec577465b3f109de4c081bf0f208e0213b71ea7a8f9bac415221a04c8729add7d82adf98c859b60b1b0bd9dbef2db021ee80ff9296 SHA512 2757768414b2177511b61c0a9bde9710b67128a446640bb3ae3bba22a9b30a2b8b036ee32806dc6e4662ffc3d06254006b89e6b63cdc11950b38257e9ea46023
+DIST paper-clip-5.5.tar.gz 183365 BLAKE2B 74b2b893ad7f421eeeb7e6c5bd3921b20b379cebcdb86371a262455fe95a67c0fdddc894b5ecb3da9d7c612a6e9e7ac91ba4d98cc4e2cfb994de388f9f0f8a45 SHA512 880ed9ee81788e1d1f50d0bf5c119ebf2f45a939432f44e363ce0513217a74af7f9fd012f110fc3a38db392341a3529b8785f0130a4bf0fe83f6dbe12d663b19
diff --git a/app-text/paper-clip/paper-clip-5.5.ebuild b/app-text/paper-clip/paper-clip-5.5.ebuild
new file mode 100644
index 000000000000..8a822daeac38
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-5.5.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+APP_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${APP_PN}-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, the appdata one fails.
+
+RDEPEND="
+ >=gui-libs/gtk-4.12.5:4
+ >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
+ app-text/poppler:=[cairo,introspection]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=[gtk,introspection,vala]
+ media-libs/exempi
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
+ dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
+
+ mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-06-14 7:42 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-06-14 7:42 UTC (permalink / raw
To: gentoo-commits
commit: b64bde496bd1a12650ae84db7561a33875be2e9a
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 14 07:42:15 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Jun 14 07:42:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b64bde49
app-text/paper-clip: bump libadwaita requirement to 1.5.0
Closes: https://bugs.gentoo.org/934177
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/{paper-clip-5.5.ebuild => paper-clip-5.5-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/paper-clip/paper-clip-5.5.ebuild b/app-text/paper-clip/paper-clip-5.5-r1.ebuild
similarity index 96%
rename from app-text/paper-clip/paper-clip-5.5.ebuild
rename to app-text/paper-clip/paper-clip-5.5-r1.ebuild
index 8a822daeac38..c7345f67fd28 100644
--- a/app-text/paper-clip/paper-clip-5.5.ebuild
+++ b/app-text/paper-clip/paper-clip-5.5-r1.ebuild
@@ -28,7 +28,7 @@ RESTRICT="test" # Only validations, the appdata one fails.
RDEPEND="
>=gui-libs/gtk-4.12.5:4
- >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
+ >=gui-libs/libadwaita-1.5.0:1[introspection,vala]
app-text/poppler:=[cairo,introspection]
dev-libs/glib:2
dev-libs/gobject-introspection
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-09-17 16:00 Sam James
0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2024-09-17 16:00 UTC (permalink / raw
To: gentoo-commits
commit: 616e88aacc520a9b981df25b700a1783609c9d65
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 17 15:59:10 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 17 15:59:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616e88aa
app-text/paper-clip: Stabilize 5.5-r1 amd64, #933731
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/paper-clip/paper-clip-5.5-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/paper-clip/paper-clip-5.5-r1.ebuild b/app-text/paper-clip/paper-clip-5.5-r1.ebuild
index c7345f67fd28..7f75695059e4 100644
--- a/app-text/paper-clip/paper-clip-5.5-r1.ebuild
+++ b/app-text/paper-clip/paper-clip-5.5-r1.ebuild
@@ -19,7 +19,7 @@ else
-> ${P}.tar.gz"
S="${WORKDIR}/${APP_PN}-${PV}"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-3+"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-10-17 15:51 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-10-17 15:51 UTC (permalink / raw
To: gentoo-commits
commit: a8e6d6b3e45421d25ac4017f44ed7781dd6331bc
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 17 15:23:09 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 15:51:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8e6d6b3
app-text/paper-clip: drop old 5.0
Closes: https://bugs.gentoo.org/926212
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 -
app-text/paper-clip/paper-clip-5.0.ebuild | 72 -------------------------------
2 files changed, 73 deletions(-)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index 267a62cddd78..c42ba0c1d37a 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1,2 +1 @@
-DIST paper-clip-5.0.tar.gz 182085 BLAKE2B 07c397218417a5bc87e95aec577465b3f109de4c081bf0f208e0213b71ea7a8f9bac415221a04c8729add7d82adf98c859b60b1b0bd9dbef2db021ee80ff9296 SHA512 2757768414b2177511b61c0a9bde9710b67128a446640bb3ae3bba22a9b30a2b8b036ee32806dc6e4662ffc3d06254006b89e6b63cdc11950b38257e9ea46023
DIST paper-clip-5.5.tar.gz 183365 BLAKE2B 74b2b893ad7f421eeeb7e6c5bd3921b20b379cebcdb86371a262455fe95a67c0fdddc894b5ecb3da9d7c612a6e9e7ac91ba4d98cc4e2cfb994de388f9f0f8a45 SHA512 880ed9ee81788e1d1f50d0bf5c119ebf2f45a939432f44e363ce0513217a74af7f9fd012f110fc3a38db392341a3529b8785f0130a4bf0fe83f6dbe12d663b19
diff --git a/app-text/paper-clip/paper-clip-5.0.ebuild b/app-text/paper-clip/paper-clip-5.0.ebuild
deleted file mode 100644
index 05bae90c8ab3..000000000000
--- a/app-text/paper-clip/paper-clip-5.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-APP_PN="Paper-Clip"
-
-inherit gnome2-utils meson vala xdg
-
-DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
-HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
-else
- SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}/${APP_PN}-${PV}"
-
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-RESTRICT="test" # Only validations, the appdata one fails.
-
-RDEPEND="
- >=gui-libs/gtk-4.12.5:4
- >=gui-libs/libadwaita-1.4.2:1[introspection,vala]
- app-text/poppler:=[cairo,introspection]
- dev-libs/glib:2
- dev-libs/gobject-introspection
- dev-libs/libportal:=[gtk,introspection,vala]
- media-libs/exempi
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- $(vala_depend)
- dev-libs/appstream-glib
- dev-util/desktop-file-utils
-"
-
-DOCS=( README.md )
-
-src_prepare() {
- default
- vala_setup
-}
-
-src_install() {
- meson_src_install
- einstalldocs
-
- # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
- dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
-
- mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
-}
-
-pkg_postinst() {
- gnome2_schemas_update
- xdg_pkg_postinst
-}
-
-pkg_postrm() {
- gnome2_schemas_update
- xdg_pkg_postrm
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/
@ 2024-10-17 15:51 Maciej Barć
0 siblings, 0 replies; 19+ messages in thread
From: Maciej Barć @ 2024-10-17 15:51 UTC (permalink / raw
To: gentoo-commits
commit: 100c907c831feaccd1f44753b0b7430cc1e13f74
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 17 15:31:39 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 15:51:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=100c907c
app-text/paper-clip: bump to 5.5.1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/paper-clip/Manifest | 1 +
app-text/paper-clip/paper-clip-5.5.1.ebuild | 72 +++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/app-text/paper-clip/Manifest b/app-text/paper-clip/Manifest
index c42ba0c1d37a..f61d79b5ae6d 100644
--- a/app-text/paper-clip/Manifest
+++ b/app-text/paper-clip/Manifest
@@ -1 +1,2 @@
+DIST paper-clip-5.5.1.tar.gz 183419 BLAKE2B 18af0f18d8d3da9f6d6f4cea57aa817e902666ee60f851ec54adc64506d3f4a8508895f64ace28424b0a3018e6bdf0b80cd40a602d226b09e83d1efa2e82daf4 SHA512 5cca56b2cc6f3619c40b202b8e53e3e01834fb10dcf1769553fb6904d50297736c9dcaad376422d2ea49203f40b32fb24d64a1f161a49868e446459d94f08138
DIST paper-clip-5.5.tar.gz 183365 BLAKE2B 74b2b893ad7f421eeeb7e6c5bd3921b20b379cebcdb86371a262455fe95a67c0fdddc894b5ecb3da9d7c612a6e9e7ac91ba4d98cc4e2cfb994de388f9f0f8a45 SHA512 880ed9ee81788e1d1f50d0bf5c119ebf2f45a939432f44e363ce0513217a74af7f9fd012f110fc3a38db392341a3529b8785f0130a4bf0fe83f6dbe12d663b19
diff --git a/app-text/paper-clip/paper-clip-5.5.1.ebuild b/app-text/paper-clip/paper-clip-5.5.1.ebuild
new file mode 100644
index 000000000000..c7345f67fd28
--- /dev/null
+++ b/app-text/paper-clip/paper-clip-5.5.1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+APP_PN="Paper-Clip"
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="Edit the title, author, keywords and more details of PDF documents"
+HOMEPAGE="https://github.com/Diego-Ivan/Paper-Clip/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/Diego-Ivan/${APP_PN}.git"
+else
+ SRC_URI="https://github.com/Diego-Ivan/${APP_PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ S="${WORKDIR}/${APP_PN}-${PV}"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+RESTRICT="test" # Only validations, the appdata one fails.
+
+RDEPEND="
+ >=gui-libs/gtk-4.12.5:4
+ >=gui-libs/libadwaita-1.5.0:1[introspection,vala]
+ app-text/poppler:=[cairo,introspection]
+ dev-libs/glib:2
+ dev-libs/gobject-introspection
+ dev-libs/libportal:=[gtk,introspection,vala]
+ media-libs/exempi
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="
+ $(vala_depend)
+ dev-libs/appstream-glib
+ dev-util/desktop-file-utils
+"
+
+DOCS=( README.md )
+
+src_prepare() {
+ default
+ vala_setup
+}
+
+src_install() {
+ meson_src_install
+ einstalldocs
+
+ # Symlink "pdf-metadata-editor" (old name?) to "${PN}".
+ dosym -r /usr/bin/pdf-metadata-editor "/usr/bin/${PN}"
+
+ mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-10-17 15:51 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-22 22:19 [gentoo-commits] repo/gentoo:master commit in: app-text/paper-clip/ Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2024-10-17 15:51 Maciej Barć
2024-10-17 15:51 Maciej Barć
2024-09-17 16:00 Sam James
2024-06-14 7:42 Maciej Barć
2024-05-06 18:00 Maciej Barć
2024-04-11 1:38 Maciej Barć
2024-02-03 13:00 Maciej Barć
2024-02-03 13:00 Maciej Barć
2024-01-22 22:19 Maciej Barć
2024-01-22 22:19 Maciej Barć
2024-01-18 17:25 Sam James
2023-12-19 2:39 Maciej Barć
2023-12-16 21:45 Maciej Barć
2023-10-24 16:51 Arthur Zamarin
2023-08-27 11:25 Maciej Barć
2023-08-26 15:46 Maciej Barć
2023-08-26 15:46 Maciej Barć
2023-08-25 21:21 Maciej Barć
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox