Feature: Labelprint für Kistenetiketten hinzugefügt
This commit is contained in:
30
vendor/tecnickcom/tc-lib-pdf-font/resources/autoload.php
vendored
Normal file
30
vendor/tecnickcom/tc-lib-pdf-font/resources/autoload.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* autoload.php
|
||||
*
|
||||
* Autoloader for Tecnick.com libraries
|
||||
*
|
||||
* @since 2015-03-04
|
||||
* @category Library
|
||||
* @package PdfFont
|
||||
* @author Nicola Asuni <info@tecnick.com>
|
||||
* @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD
|
||||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
|
||||
* @link https://github.com/tecnickcom/tc-lib-pdf-font
|
||||
*
|
||||
* This file is part of tc-lib-pdf-font software library.
|
||||
*/
|
||||
spl_autoload_register(
|
||||
function ($class) {
|
||||
$prefix = 'Com\\Tecnick\\';
|
||||
$len = strlen($prefix);
|
||||
if (strncmp($prefix, $class, $len) !== 0) {
|
||||
return;
|
||||
}
|
||||
$relative_class = substr($class, $len);
|
||||
$file = dirname(dirname(__DIR__)).'/'.str_replace('\\', '/', $relative_class).'.php';
|
||||
if (file_exists($file)) {
|
||||
require $file;
|
||||
}
|
||||
}
|
||||
);
|
||||
7
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/changelog
vendored
Normal file
7
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/changelog
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low
|
||||
|
||||
* Please check the
|
||||
https://github.com/~#VENDOR#~/~#PROJECT#~
|
||||
commit history
|
||||
|
||||
-- Nicola Asuni <info@tecnick.com> ~#DATE#~
|
||||
1
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/compat
vendored
Normal file
1
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
||||
10
|
||||
15
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/control
vendored
Normal file
15
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/control
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
Source: ~#PKGNAME#~
|
||||
Maintainer: Nicola Asuni <info@tecnick.com>
|
||||
Section: php
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 9)
|
||||
Standards-Version: 3.9.7
|
||||
Homepage: https://github.com/~#VENDOR#~/~#PROJECT#~
|
||||
Vcs-Git: https://github.com/~#VENDOR#~/~#PROJECT#~.git
|
||||
|
||||
Package: ~#PKGNAME#~
|
||||
Provides: php-~#PROJECT#~
|
||||
Architecture: all
|
||||
Depends: php (>= 8.1.0), php-json, php-zip, php-tecnickcom-tc-lib-file (<< 3.0.0), php-tecnickcom-tc-lib-file (>= 2.2.2), php-tecnickcom-tc-lib-unicode-data (<< 3.0.0), php-tecnickcom-tc-lib-unicode-data (>= 2.0.24), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.16), php-tecnickcom-tc-lib-pdf-font-core (<< 2.0.0), php-tecnickcom-tc-lib-pdf-font-data-core (>= 1.8.7), ${misc:Depends}
|
||||
Description: PHP PDF Fonts Library
|
||||
PHP library containing PDF font methods and utilities.
|
||||
20
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/copyright
vendored
Normal file
20
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/copyright
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: ~#PROJECT#~
|
||||
Source: https://github.com/~#VENDOR#~/~#PROJECT#~
|
||||
|
||||
Files: *
|
||||
Copyright: Copyright 2001-2024 Nicola Asuni <info@tecnick.com>
|
||||
License: LGPL-3
|
||||
|
||||
License: LGPL-3
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/> or
|
||||
/usr/share/common-licenses/LGPL-3
|
||||
3
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/rules
vendored
Normal file
3
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/rules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/make -f
|
||||
%:
|
||||
dh $@
|
||||
1
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/source/format
vendored
Normal file
1
vendor/tecnickcom/tc-lib-pdf-font/resources/debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
7
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/changelog
vendored
Normal file
7
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/changelog
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
~#PKGNAME#~ (~#VERSION#~-~#RELEASE#~) UNRELEASED; urgency=low
|
||||
|
||||
* Please check the
|
||||
https://github.com/~#VENDOR#~/~#PROJECT#~
|
||||
commit history
|
||||
|
||||
-- Nicola Asuni <info@tecnick.com> ~#DATE#~
|
||||
1
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/compat
vendored
Normal file
1
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
||||
10
|
||||
16
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/control
vendored
Normal file
16
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/control
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
Source: ~#PKGNAME#~
|
||||
Maintainer: Nicola Asuni <info@tecnick.com>
|
||||
Section: php
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 9)
|
||||
Standards-Version: 3.9.6
|
||||
Homepage: https://github.com/tecnickcom/tc-lib-pdf-font
|
||||
Vcs-Git: https://github.com/tecnickcom/tc-lib-pdf-font.git
|
||||
|
||||
Package: ~#PKGNAME#~
|
||||
Provides: php-~#PROJECT#~
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: ~#FONT#~ fonts data for tc-lib-pdf-font
|
||||
This package contains data extracted from the ~#FONT#~ fonts
|
||||
for the tc-lib-pdf-font library.
|
||||
14
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/copyright
vendored
Normal file
14
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/copyright
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: ~#PROJECT#~
|
||||
Source: https://github.com/tecnickcom/tc-lib-pdf-font
|
||||
|
||||
Files: *
|
||||
Copyright: © 0000 Please check the README file for copyright information.
|
||||
License: ~#LICENSE#~
|
||||
|
||||
License: ~#LICENSE#~
|
||||
The font files in this package are free software:
|
||||
you can redistribute it and/or modify it under the terms of the
|
||||
~#LICENSE#~ License.
|
||||
Please check the README and LICENSE file for further information.
|
||||
Common licenses can be also found in: /usr/share/common-licenses
|
||||
3
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/rules
vendored
Normal file
3
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/rules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/make -f
|
||||
%:
|
||||
dh $@
|
||||
1
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/source/format
vendored
Normal file
1
vendor/tecnickcom/tc-lib-pdf-font/resources/fonts/debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
42
vendor/tecnickcom/tc-lib-pdf-font/resources/rpm/fonts.spec
vendored
Normal file
42
vendor/tecnickcom/tc-lib-pdf-font/resources/rpm/fonts.spec
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
# SPEC file
|
||||
|
||||
%global c_vendor %{_vendor}
|
||||
%global gh_owner %{_owner}
|
||||
%global gh_project %{_project}
|
||||
|
||||
Name: %{_package}
|
||||
Version: %{_version}
|
||||
Release: %{_release}%{?dist}
|
||||
Summary: %{_fontdir} fonts data for tc-lib-pdf-font
|
||||
|
||||
Group: Development/Libraries
|
||||
License: %{_license}
|
||||
URL: https://github.com/%{gh_owner}/%{gh_project}
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
Provides: php-%{gh_project} = %{version}
|
||||
|
||||
%description
|
||||
This package contains data extracted from the %{_fontdir} fonts for the tc-lib-pdf-font library.
|
||||
|
||||
%build
|
||||
#(cd %{_current_directory} && make build)
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
(cd %{_current_directory} && make install DESTDIR=$RPM_BUILD_ROOT PKGFONTDIR=%{_fontdir})
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
#(cd %{_current_directory} && make clean)
|
||||
|
||||
%files
|
||||
%attr(-,root,root) %{_fontpath}
|
||||
%attr(-,root,root) %{_docpath}
|
||||
%docdir %{_docpath}
|
||||
|
||||
%changelog
|
||||
* Tue Dec 01 2024 Nicola Asuni <info@tecnick.com> 1.0.0-1
|
||||
- Initial Commit
|
||||
57
vendor/tecnickcom/tc-lib-pdf-font/resources/rpm/rpm.spec
vendored
Normal file
57
vendor/tecnickcom/tc-lib-pdf-font/resources/rpm/rpm.spec
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# SPEC file
|
||||
|
||||
%global c_vendor %{_vendor}
|
||||
%global gh_owner %{_owner}
|
||||
%global gh_project %{_project}
|
||||
|
||||
Name: %{_package}
|
||||
Version: %{_version}
|
||||
Release: %{_release}%{?dist}
|
||||
Summary: PHP PDF Fonts Library
|
||||
|
||||
Group: Development/Libraries
|
||||
License: LGPL-3.0+
|
||||
URL: https://github.com/%{gh_owner}/%{gh_project}
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
Requires: php(language) >= 8.1.0
|
||||
Requires: php-json
|
||||
Requires: php-pcre
|
||||
Requires: php-zlib
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-file) < 3.0.0
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-file) >= 2.2.2
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) < 3.0.0
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-unicode-data) >= 2.0.24
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) < 3.0.0
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.16
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-pdf-font-data-core) < 2.0.0
|
||||
Requires: php-composer(%{c_vendor}/tc-lib-pdf-font-data-core) >= 1.8.7
|
||||
|
||||
Provides: php-composer(%{c_vendor}/%{gh_project}) = %{version}
|
||||
Provides: php-%{gh_project} = %{version}
|
||||
|
||||
%description
|
||||
PHP library containing PDF font methods and utilities
|
||||
|
||||
%build
|
||||
#(cd %{_current_directory} && make build)
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
(cd %{_current_directory} && make install DESTDIR=$RPM_BUILD_ROOT)
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
#(cd %{_current_directory} && make clean)
|
||||
|
||||
%files
|
||||
%attr(-,root,root) %{_libpath}
|
||||
%attr(-,root,root) %{_docpath}
|
||||
%docdir %{_docpath}
|
||||
#%config(noreplace) %{_configpath}*
|
||||
|
||||
%changelog
|
||||
* Mon Aug 10 2024 Nicola Asuni <info@tecnick.com> 1.0.0-1
|
||||
- Initial Commit
|
||||
Reference in New Issue
Block a user