diff --git a/hardware/printer/paper/actions.py b/hardware/printer/paper/actions.py
new file mode 100644
index 0000000000..48cfeef568
--- /dev/null
+++ b/hardware/printer/paper/actions.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+def setup():
+ # extract gnulib from archive:
+ shelltools.system("cd .. && tar -xzvf gnulib-d279bc6.tar.gz")
+
+ shelltools.system("./bootstrap --gnulib-srcdir=%s/gnulib-d279bc6 --skip-git --copy" % get.workDIR())
+ autotools.configure("--libexecdir=/usr/lib")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("COPYING", "README")
\ No newline at end of file
diff --git a/hardware/printer/paper/files/gnulib-d279bc6.tar.gz b/hardware/printer/paper/files/gnulib-d279bc6.tar.gz
new file mode 100644
index 0000000000..448d575578
Binary files /dev/null and b/hardware/printer/paper/files/gnulib-d279bc6.tar.gz differ
diff --git a/hardware/printer/paper/pspec.xml b/hardware/printer/paper/pspec.xml
new file mode 100644
index 0000000000..c55f399de5
--- /dev/null
+++ b/hardware/printer/paper/pspec.xml
@@ -0,0 +1,50 @@
+
+
+
+
+ paper
+ https://github.com/rrthomas/paper
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ hardware.printer
+ GPLv3
+ app:console
+ Replacement for Debian's libpaper
+ The paper package enables users to indicate their preferred paper size, provides the paper(1) utility to find the user's preferred default paper size and give information about known sizes, and specifies system-wide and per-user paper size catalogues, which can be can also be used directly.
+ https://github.com/rrthomas/paper/archive/v2.2.tar.gz
+
+
+ gnulib-d279bc6.tar.gz
+
+
+ help2man
+
+
+
+
+ paper
+ Replacement for Debian's libpaper
+
+ /etc
+ /usr/lib/
+ /usr/share/doc
+ /usr/share/man
+ /usr/bin
+
+
+
+
+
+ 2020-06-03
+ 2.2
+ First Pisi Release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
\ No newline at end of file
diff --git a/hardware/printer/paper/translations.xml b/hardware/printer/paper/translations.xml
new file mode 100644
index 0000000000..cc56c3ae1e
--- /dev/null
+++ b/hardware/printer/paper/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ paper
+ Debian'ın libpaper kitaplığı yerine bir kitaplık
+ paper, Debian'ın libpaper kitaplığı yerine bir kitaplık sunar.
+
+
\ No newline at end of file
diff --git a/hardware/printer/psutils/actions.py b/hardware/printer/psutils/actions.py
new file mode 100644
index 0000000000..4c58d0fcc9
--- /dev/null
+++ b/hardware/printer/psutils/actions.py
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+def setup():
+ # extract gnulib from archive:
+ shelltools.system("cd .. && tar -xzvf gnulib-d279bc6.tar.gz")
+
+ shelltools.system("./bootstrap --gnulib-srcdir=%s/gnulib-d279bc6 --skip-git --copy" % get.workDIR())
+ autotools.configure()
+
+def build():
+ autotools.make()
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("README", "COPYING")
diff --git a/hardware/printer/psutils/files/gnulib-d279bc6.tar.gz b/hardware/printer/psutils/files/gnulib-d279bc6.tar.gz
new file mode 100644
index 0000000000..448d575578
Binary files /dev/null and b/hardware/printer/psutils/files/gnulib-d279bc6.tar.gz differ
diff --git a/hardware/printer/psutils/pspec.xml b/hardware/printer/psutils/pspec.xml
new file mode 100644
index 0000000000..db028b592e
--- /dev/null
+++ b/hardware/printer/psutils/pspec.xml
@@ -0,0 +1,55 @@
+
+
+
+
+ psutils
+ http://www.cups.org/
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ hardware.printer
+ GPLv2
+ app:console
+ PostScript Utilities
+ psutils contains tools to convert to/from postscript files.
+ https://github.com/rrthomas/psutils/archive/v2.03.tar.gz
+
+
+ gnulib-d279bc6.tar.gz
+
+
+ help2man
+ ghostscript-devel
+
+
+
+
+ psutils
+ Utilities for manipulating PostScript documents
+
+ paper
+ ghostscript
+ perl-IPC-Run3
+
+
+ /usr/share/man
+ /usr/share/doc
+ /usr/bin
+ /usr/share/psutils/PSUtils.pm
+
+
+
+
+
+ 2020-06-03
+ 2.03
+ First Pisi Release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
\ No newline at end of file
diff --git a/hardware/printer/psutils/translations.xml b/hardware/printer/psutils/translations.xml
new file mode 100644
index 0000000000..c827a0f6d6
--- /dev/null
+++ b/hardware/printer/psutils/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ psutils
+ PostScript yardımcı araçları
+ psutils PostScript dosyaları arasında dönüşüm yapmak için gerekli araçları içerir.
+
+
\ No newline at end of file
diff --git a/office/misc/t1utils/actions.py b/office/misc/t1utils/actions.py
new file mode 100644
index 0000000000..346b3383df
--- /dev/null
+++ b/office/misc/t1utils/actions.py
@@ -0,0 +1,21 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import get
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+def setup():
+ autotools.autoreconf("-vif")
+ autotools.configure()
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("LICENSE", "README*")
\ No newline at end of file
diff --git a/office/misc/t1utils/files/3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch b/office/misc/t1utils/files/3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch
new file mode 100644
index 0000000000..8e0e25dc1a
--- /dev/null
+++ b/office/misc/t1utils/files/3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch
@@ -0,0 +1,31 @@
+From 3f1ddda424353f0f926dd28efa47b0ac61556ce8 Mon Sep 17 00:00:00 2001
+From: Eddie Kohler
+Date: Wed, 16 Aug 2017 12:37:34 -0400
+Subject: [PATCH] Check for memmem declaration; sometimes it is not declared by
+ default.
+
+---
+ configure.ac | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 5b4e3ff..b4dc4fb 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -19,6 +19,7 @@ dnl strerror()?
+ dnl
+
+ AC_REPLACE_FUNCS([strerror memmem])
++AC_CHECK_DECLS([memmem])
+
+
+ dnl
+@@ -88,7 +89,7 @@ char* strerror(int errno);
+ #endif
+
+ /* Prototype memmem if we don't have it. */
+-#if !HAVE_MEMMEM
++#if !HAVE_MEMMEM || !HAVE_DECL_MEMMEM
+ void* memmem(const void* haystack, size_t haystack_len,
+ const void* needle, size_t needle_len);
+ #endif
diff --git a/office/misc/t1utils/pspec.xml b/office/misc/t1utils/pspec.xml
new file mode 100644
index 0000000000..ee4436f4ba
--- /dev/null
+++ b/office/misc/t1utils/pspec.xml
@@ -0,0 +1,43 @@
+
+
+
+
+ t1utils
+ http://www.lcdf.org/type/#t1utils
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ office.misc
+ GPLv2
+ app:console
+ Type 1 Font utilities
+ t1utils contains six tools (t1ascii, t1binary, t1disasm, t1asm, t1unmac and t1mac) for dealing with Type 1 fonts.
+ https://github.com/kohler/t1utils/archive/v1.41.tar.gz
+
+
+ 3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch
+
+
+
+
+ t1utils
+ Type 1 Font utilities
+
+ /usr/share/doc
+ /usr/share/man
+ /usr/bin
+
+
+
+
+
+ 2020-06-03
+ 1.41
+ First Pisi Release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
\ No newline at end of file
diff --git a/office/misc/t1utils/translations.xml b/office/misc/t1utils/translations.xml
new file mode 100644
index 0000000000..54de2e027b
--- /dev/null
+++ b/office/misc/t1utils/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ t1utils
+ Tip 1 fontlar için araçlar
+ t1utils Tip 1 fontları dönüştürmek için 6 araç (t1ascii, t1binary, t1disasm, t1asm, t1unmac ve t1mac) içerir.
+
+
\ No newline at end of file
diff --git a/pisi-index.xml b/pisi-index.xml
index 48bf8e7068..fb45611308 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -5719,7 +5719,7 @@ complete albums that you have purchased from Amazon.
Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników.Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales.firefox
- https://ftp.mozilla.org/pub/firefox/releases/77.0/source/firefox-77.0.source.tar.xz
+ https://ftp.mozilla.org/pub/firefox/releases/77.0.1/source/firefox-77.0.1.source.tar.xzmozconfigpisilinux/browserconfig.properties
@@ -6211,8 +6211,8 @@ complete albums that you have purchased from Amazon.
- 2020-06-01
- 77.0
+ 2020-06-03
+ 77.0.1Version bump.Mustafa Cinasalmuscnsl@gmail.com
@@ -21410,11 +21410,12 @@ functionality to build high-performing, platform-independent programs.
/usr/include/usr/share/aclocal
+ /usr/lib/pkgconfig
- 2020-01-19
+ 2020-06-032.5.3Version bumpİdris Kalp
@@ -88391,6 +88392,56 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
+
+
+ psutils
+ http://www.cups.org/
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ GPLv2
+ app:console
+ hardware.printer
+ PostScript Utilities
+ PostScript yardımcı araçları
+ psutils contains tools to convert to/from postscript files.
+ psutils PostScript dosyaları arasında dönüşüm yapmak için gerekli araçları içerir.
+ https://github.com/rrthomas/psutils/archive/v2.03.tar.gz
+
+ gnulib-d279bc6.tar.gz
+
+
+ help2man
+ ghostscript-devel
+
+ hardware/printer/psutils/pspec.xml
+
+
+ psutils
+ Utilities for manipulating PostScript documents
+
+ paper
+ ghostscript
+ perl-IPC-Run3
+
+
+ /usr/share/man
+ /usr/share/doc
+ /usr/bin
+ /usr/share/psutils/PSUtils.pm
+
+
+
+
+ 2020-06-03
+ 2.03
+ First Pisi Release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ pnm2ppa
@@ -89198,6 +89249,51 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
+
+
+ paper
+ https://github.com/rrthomas/paper
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ GPLv3
+ app:console
+ hardware.printer
+ Replacement for Debian's libpaper
+ Debian'ın libpaper kitaplığı yerine bir kitaplık
+ The paper package enables users to indicate their preferred paper size, provides the paper(1) utility to find the user's preferred default paper size and give information about known sizes, and specifies system-wide and per-user paper size catalogues, which can be can also be used directly.
+ paper, Debian'ın libpaper kitaplığı yerine bir kitaplık sunar.
+ https://github.com/rrthomas/paper/archive/v2.2.tar.gz
+
+ gnulib-d279bc6.tar.gz
+
+
+ help2man
+
+ hardware/printer/paper/pspec.xml
+
+
+ paper
+ Replacement for Debian's libpaper
+
+ /etc
+ /usr/lib/
+ /usr/share/doc
+ /usr/share/man
+ /usr/bin
+
+
+
+
+ 2020-06-03
+ 2.2
+ First Pisi Release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ cups-filters
@@ -225553,7 +225649,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.GNU Gizlilik Koruması
GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories.GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır.
- https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.19.tar.bz2
+ https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.20.tar.bz2openldap-clientpinentry
@@ -225619,7 +225715,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Documentation files for GnuPG
GnuPG paketine ait API dokümantasyonu
- gnupg
+ gnupg/usr/share/doc/gnupg/html
@@ -225628,6 +225724,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2020-06-03
+ 2.2.20
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+ 2020-01-192.2.19
@@ -225815,10 +225918,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.gpgme
libgpg-error-devellibassuan-devel
+ glib2-devel/usr/include/usr/share/aclocal
+ /usr/lib/pkgconfig
@@ -225828,6 +225933,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.gpgme
libgccqt5-base
+ libgpg-error/usr/lib/libqgpgme.so*
@@ -225873,7 +225979,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-04-04
+ 2020-06-031.13.1Rebuild.Mustafa Cinasal
@@ -226799,7 +226905,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.GnuTLS, erişilebilir bir gönderim katmanı üzerinde güvenli katman oluşturmayı amaçlayan bir projedir. GnuTLS kütüphanesi halen IETF TLS çalışma grubunun öngördüğü standartları uygulamaya geçirmektedir.
GnuTLS es un proyecto que apunta al desarrollo de una librería, que facilite una capa segura, a través de una capa de transporte fiable. Actualmente la librería GnuTLS implementa los estándares propuestos del grupo de trabajo de TLS de IETF.GnuTLS to projekt mający na celu stworzenie biblioteki udostępniającej powłokę bezpieczeństwa ponad powłoką transportową (np. TCP/IP). Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez grupę roboczą IETF TLS.
- https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.11.1.tar.xz
+ https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.13.tar.xzgc-develgmp-devel
@@ -226843,7 +226949,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libtasn1-devel
zlib-devellibidn2-devel
- gnutls
+ gnutls/usr/include
@@ -226887,6 +226993,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2020-06-03
+ 3.6.13
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+ 2020-01-073.6.11.1
@@ -235711,7 +235824,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.X.Org intel ekran kartı sürücüsü
xorg-video-intel contains the X.Org driver for Intel video chipsets.xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir.
- http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/xf86-video-intel-20190723.tar.xz
+ http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/xf86-video-intel-20200518.tar.xzlibX11-devellibxcb-devel
@@ -235737,9 +235850,6 @@ It supports email, address books, calendars, tasks, news feeds and much more.libXfont-devel
libXfont2-devel
-
- 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch
- x11/driver/xorg-video-intel/pspec.xml
@@ -235775,6 +235885,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2020-06-03
+ 20200518
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+ 2020-03-2820190723
@@ -240497,7 +240614,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.x11.library
The GL Vendor-Neutral Dispatch librarylibglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. It allows multiple drivers from different vendors to coexist on the same filesystem, and determines which vendor to dispatch each API call to at runtime.
- https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v1.3.0/libglvnd-v1.3.0.tar.gz
+ https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v1.3.1/libglvnd-v1.3.1.tar.gzmesonxorg-proto
@@ -240528,7 +240645,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libglvnd-devel
Development files for libglvnd
- libglvnd
+ libglvndlibX11-devellibdrm-devellibxcb-devel
@@ -240560,6 +240677,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+ 2020-06-03
+ 1.3.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+ 2020-01-041.3.0
@@ -240890,7 +241014,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-10
+ 2020-06-030.9.1RebuildMustafa Cinasal
@@ -241364,7 +241488,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-10
+ 2020-06-030.3.9RebuildMustafa Cinasal
@@ -241708,7 +241832,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-10
+ 2020-06-030.4.1RebuildMustafa Cinasal
@@ -242442,7 +242566,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-05
+ 2020-06-010.4.0RebuildMustafa Cinasal
@@ -243361,7 +243485,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-10
+ 2020-06-030.1.3RebuildMustafa Cinasal
@@ -244632,7 +244756,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-10
+ 2020-06-030.4.0RebuildMustafa Cinasal
@@ -246057,7 +246181,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.
- 2020-01-10
+ 2020-06-030.4.0RebuildMustafa Cinasal
@@ -250814,6 +250938,46 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ t1utils
+ http://www.lcdf.org/type/#t1utils
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ GPLv2
+ app:console
+ office.misc
+ Type 1 Font utilities
+ Tip 1 fontlar için araçlar
+ t1utils contains six tools (t1ascii, t1binary, t1disasm, t1asm, t1unmac and t1mac) for dealing with Type 1 fonts.
+ t1utils Tip 1 fontları dönüştürmek için 6 araç (t1ascii, t1binary, t1disasm, t1asm, t1unmac ve t1mac) içerir.
+ https://github.com/kohler/t1utils/archive/v1.41.tar.gz
+
+ 3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch
+
+ office/misc/t1utils/pspec.xml
+
+
+ t1utils
+ Type 1 Font utilities
+
+ /usr/share/doc
+ /usr/share/man
+ /usr/bin
+
+
+
+
+ 2020-06-03
+ 1.41
+ First Pisi Release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ mdds
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index c8e6afa5ed..fbe403bb6f 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-9cd37a600fea753e41b815403d323e73f5d8d210
\ No newline at end of file
+5a37b3fe8c0c9e3b2c78bcde29c4dcbb22ccf043
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 6eaf908472..ff32e0b5a5 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index 2bac8ca7c1..34caaec3bc 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-c12b84c9f3c8c4efa10c34de51392c029d786fde
\ No newline at end of file
+7bbb770cd4de7dd62c6181275ae98d6b050853ea
\ No newline at end of file