commit 4e7449725e0c5bb1159d6d0226bd6d35aacee10b3ddf203c275e1fafdfc14c6c Author: Martin Pluskal Date: Mon Aug 12 07:03:30 2024 +0000 - Update to 0.2.8 * Various bug fixes and improvements also the last update of zathura has bumped the plugin abi, so atm the plugins in opensuse factory don't work OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/zathura-plugin-ps?expand=0&rev=17 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/zathura-plugin-ps.changes b/zathura-plugin-ps.changes new file mode 100644 index 0000000..0e1e51a --- /dev/null +++ b/zathura-plugin-ps.changes @@ -0,0 +1,72 @@ +------------------------------------------------------------------- +Sun Aug 11 09:36:52 UTC 2024 - Jakob Lorenz + +- Update to 0.2.8 + * Various bug fixes and improvements + +------------------------------------------------------------------- +Tue Dec 13 19:21:18 UTC 2022 - llyyr + +- Update to 0.2.7 + * Various bug fixes and improvements + +------------------------------------------------------------------- +Wed Aug 8 16:49:19 UTC 2018 - jengelh@inai.de + +- Remove unnecessary ldconfig calls for plugins. + +------------------------------------------------------------------- +Sat May 26 14:29:13 UTC 2018 - mimi.vx@gmail.com + +- update to 0.2.6 +* use meson build system + +------------------------------------------------------------------- +Fri Jan 26 14:22:56 UTC 2018 - mimi.vx@gmail.com + +- update to 0.2.5 +* adapt to new plugin interface + +------------------------------------------------------------------- +Sat May 27 04:37:48 UTC 2017 - bwiedemann@suse.com + +- update to 0.2.4 + - Link with -fPIC + - Update Makefile + +------------------------------------------------------------------- +Wed Feb 24 08:29:29 UTC 2016 - mimi.vx@gmail.com + +- update to 0.2.2 +* Advertise URL support + +------------------------------------------------------------------- +Fri Nov 21 15:07:24 UTC 2014 - mimi.vx@gmail.com + +- add requires zathura + +------------------------------------------------------------------- +Sun Nov 16 16:06:41 UTC 2014 - mimi.vx@gmail.com + +- renamed to zathura-plugin-ps + +------------------------------------------------------------------- +Tue Oct 28 16:33:35 UTC 2014 - mimi.vx@gmail.com + +- change licence to Zlib + +------------------------------------------------------------------- +Mon Oct 27 14:10:02 UTC 2014 - mimi.vx@gmail.com + +- SFLAGS="" to get debuginfo + +------------------------------------------------------------------- +Thu Oct 23 15:03:22 UTC 2014 - mimi.vx@gmail.com + +- change deps to pkgconfig + +------------------------------------------------------------------- +Thu Oct 23 14:04:07 UTC 2014 - mimi.vx@gmail.com + +- initial commit of zathura ps plugin + diff --git a/zathura-plugin-ps.spec b/zathura-plugin-ps.spec new file mode 100644 index 0000000..781f436 --- /dev/null +++ b/zathura-plugin-ps.spec @@ -0,0 +1,57 @@ +# +# spec file for package zathura-plugin-ps +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%define realname zathura-ps +Name: zathura-plugin-ps +Version: 0.2.8 +Release: 0 +Summary: PS support for zathura via libspectre +License: Zlib +Group: Productivity/Office/Other +URL: https://pwmt.org/projects/%{realname}/ +Source: https://pwmt.org/projects/%{realname}/download/%{realname}-%{version}.tar.xz +BuildRequires: meson >= 0.61 +BuildRequires: pkgconfig +BuildRequires: pkgconfig(girara-gtk3) +BuildRequires: pkgconfig(libspectre) +BuildRequires: pkgconfig(zathura) >= 0.3.8 +Requires: zathura +Provides: zathura-ps-plugin + +%description +The zathura-ps plugin adds PostScript support to zathura by using the libspectre library. + +%prep +%setup -q -n %{realname}-%{version} + +%build +%meson -Dtests=disabled +%meson_build + +%install +%meson_install +find %{buildroot} -name "*.desktop" -delete -print + +%files -n %{name} +%license LICENSE +%doc AUTHORS +%dir %{_libdir}/zathura +%{_libdir}/zathura/libps.so +%{_datadir}/metainfo/org.pwmt.zathura-ps.metainfo.xml + +%changelog diff --git a/zathura-ps-0.2.7.tar.xz b/zathura-ps-0.2.7.tar.xz new file mode 100644 index 0000000..2d77fc4 --- /dev/null +++ b/zathura-ps-0.2.7.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5897f9204cf5f978b9413be7ce7febde843157af48e351938edf07dbf9308e46 +size 4488 diff --git a/zathura-ps-0.2.8.tar.xz b/zathura-ps-0.2.8.tar.xz new file mode 100644 index 0000000..d261bc6 --- /dev/null +++ b/zathura-ps-0.2.8.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ca594f7277f9876d0038048418343ea2964028e93c90f9569eff36a8932e4a +size 4716