Page MenuHomeSolus

D1657.id.diff
No OneTemporary

D1657.id.diff

diff --git a/Makefile b/Makefile
new file mode 100644
--- /dev/null
+++ b/Makefile
@@ -0,0 +1 @@
+include ../Makefile.common
diff --git a/abi_symbols b/abi_symbols
new file mode 100644
--- /dev/null
+++ b/abi_symbols
@@ -0,0 +1,75 @@
+libfprint.so.0:fp_async_capture_start
+libfprint.so.0:fp_async_capture_stop
+libfprint.so.0:fp_async_dev_close
+libfprint.so.0:fp_async_dev_open
+libfprint.so.0:fp_async_enroll_start
+libfprint.so.0:fp_async_enroll_stop
+libfprint.so.0:fp_async_identify_start
+libfprint.so.0:fp_async_identify_stop
+libfprint.so.0:fp_async_verify_start
+libfprint.so.0:fp_async_verify_stop
+libfprint.so.0:fp_dev_close
+libfprint.so.0:fp_dev_get_devtype
+libfprint.so.0:fp_dev_get_driver
+libfprint.so.0:fp_dev_get_img_height
+libfprint.so.0:fp_dev_get_img_width
+libfprint.so.0:fp_dev_get_nr_enroll_stages
+libfprint.so.0:fp_dev_img_capture
+libfprint.so.0:fp_dev_open
+libfprint.so.0:fp_dev_supports_dscv_print
+libfprint.so.0:fp_dev_supports_identification
+libfprint.so.0:fp_dev_supports_imaging
+libfprint.so.0:fp_dev_supports_print_data
+libfprint.so.0:fp_discover_devs
+libfprint.so.0:fp_discover_prints
+libfprint.so.0:fp_driver_get_driver_id
+libfprint.so.0:fp_driver_get_full_name
+libfprint.so.0:fp_driver_get_name
+libfprint.so.0:fp_driver_get_scan_type
+libfprint.so.0:fp_driver_supports_imaging
+libfprint.so.0:fp_dscv_dev_for_dscv_print
+libfprint.so.0:fp_dscv_dev_for_print_data
+libfprint.so.0:fp_dscv_dev_get_devtype
+libfprint.so.0:fp_dscv_dev_get_driver
+libfprint.so.0:fp_dscv_dev_get_driver_id
+libfprint.so.0:fp_dscv_dev_supports_dscv_print
+libfprint.so.0:fp_dscv_dev_supports_print_data
+libfprint.so.0:fp_dscv_devs_free
+libfprint.so.0:fp_dscv_print_delete
+libfprint.so.0:fp_dscv_print_get_devtype
+libfprint.so.0:fp_dscv_print_get_driver_id
+libfprint.so.0:fp_dscv_print_get_finger
+libfprint.so.0:fp_dscv_prints_free
+libfprint.so.0:fp_enroll_finger
+libfprint.so.0:fp_enroll_finger_img
+libfprint.so.0:fp_exit
+libfprint.so.0:fp_get_next_timeout
+libfprint.so.0:fp_get_pollfds
+libfprint.so.0:fp_handle_events
+libfprint.so.0:fp_handle_events_timeout
+libfprint.so.0:fp_identify_finger
+libfprint.so.0:fp_identify_finger_img
+libfprint.so.0:fp_img_binarize
+libfprint.so.0:fp_img_free
+libfprint.so.0:fp_img_get_data
+libfprint.so.0:fp_img_get_height
+libfprint.so.0:fp_img_get_minutiae
+libfprint.so.0:fp_img_get_width
+libfprint.so.0:fp_img_save_to_file
+libfprint.so.0:fp_img_standardize
+libfprint.so.0:fp_init
+libfprint.so.0:fp_minutia_get_coords
+libfprint.so.0:fp_print_data_delete
+libfprint.so.0:fp_print_data_free
+libfprint.so.0:fp_print_data_from_data
+libfprint.so.0:fp_print_data_from_dscv_print
+libfprint.so.0:fp_print_data_get_data
+libfprint.so.0:fp_print_data_get_devtype
+libfprint.so.0:fp_print_data_get_driver_id
+libfprint.so.0:fp_print_data_load
+libfprint.so.0:fp_print_data_save
+libfprint.so.0:fp_set_debug
+libfprint.so.0:fp_set_pollfd_notifiers
+libfprint.so.0:fp_verify_finger
+libfprint.so.0:fp_verify_finger_img
+libfprint.so.0:fprint_get_drivers
diff --git a/abi_used_libs b/abi_used_libs
new file mode 100644
--- /dev/null
+++ b/abi_used_libs
@@ -0,0 +1,10 @@
+libc.so.6
+libgdk_pixbuf-2.0.so.0
+libgio-2.0.so.0
+libglib-2.0.so.0
+libgobject-2.0.so.0
+libgtk-3.so.0
+libm.so.6
+libnss3.so
+libpixman-1.so.0
+libusb-1.0.so.0
diff --git a/package.yml b/package.yml
new file mode 100644
--- /dev/null
+++ b/package.yml
@@ -0,0 +1,23 @@
+name : libfprint
+version : 0.99.0
+release : 1
+source :
+ - https://gitlab.freedesktop.org/libfprint/libfprint/uploads/82ba3cef5bdf72997df711eacdb13c0f/libfprint-0.99.0.tar.xz : 0785974bc5d534492fde1e2e2a44a7cbaf8334f9ade2284f8959020f08b5249b
+license : LGPL-2.1-or-later
+component : desktop.library
+summary : Library for fingerprint readers
+description: |
+ libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software.
+builddeps :
+ - pkgconfig(gtk+-3.0)
+ - pkgconfig(gtk-doc)
+ - pkgconfig(libusb-1.0)
+ - pkgconfig(nss)
+ - pkgconfig(pixman-1)
+ - pkgconfig(xv)
+setup : |
+ %meson_configure
+build : |
+ %ninja_build
+install : |
+ %ninja_install
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
new file mode 100644
--- /dev/null
+++ b/pspec_x86_64.xml
@@ -0,0 +1,101 @@
+<PISI>
+ <Source>
+ <Name>libfprint</Name>
+ <Packager>
+ <Name>Abdulkadir Furkan Şanlı</Name>
+ <Email>abdulkadirfsanli@protonmail.com</Email>
+ </Packager>
+ <License>LGPL-2.1-or-later</License>
+ <PartOf>desktop.library</PartOf>
+ <Summary xml:lang="en">Library for fingerprint readers</Summary>
+ <Description xml:lang="en">libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software.
+</Description>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://solus-project.com/sources/README.Solus</Archive>
+ </Source>
+ <Package>
+ <Name>libfprint</Name>
+ <Summary xml:lang="en">Library for fingerprint readers</Summary>
+ <Description xml:lang="en">libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software.
+</Description>
+ <PartOf>desktop.library</PartOf>
+ <Files>
+ <Path fileType="executable">/usr/bin/gtk-libfprint-test</Path>
+ <Path fileType="library">/usr/lib/udev/rules.d/60-fprint-autosuspend.rules</Path>
+ <Path fileType="library">/usr/lib64/libfprint.so.0</Path>
+ <Path fileType="library">/usr/lib64/libfprint.so.0.0.0</Path>
+ <Path fileType="data">/usr/share/applications/org.freedesktop.libfprint.Demo.desktop</Path>
+ <Path fileType="data">/usr/share/icons/org.freedesktop.libfprint.Demo.png</Path>
+ <Path fileType="data">/usr/share/metainfo/org.freedesktop.libfprint.Demo.appdata.xml</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libfprint-devel</Name>
+ <Summary xml:lang="en">Development files for libfprint</Summary>
+ <Description xml:lang="en">libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software.
+</Description>
+ <PartOf>programming.devel</PartOf>
+ <RuntimeDependencies>
+ <Dependency release="1">libfprint</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="header">/usr/include/libfprint/fprint.h</Path>
+ <Path fileType="library">/usr/lib64/libfprint.so</Path>
+ <Path fileType="data">/usr/lib64/pkgconfig/libfprint.pc</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libfprint-docs</Name>
+ <Summary xml:lang="en">Documentation for libfprint</Summary>
+ <Description xml:lang="en">libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software.
+</Description>
+ <PartOf>programming.docs</PartOf>
+ <Files>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/advanced-topics.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/api-index.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/driver-dev.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/driver-helpers.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/driver-img.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/getting-started.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/home.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/index.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/intro.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/left-insensitive.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/left.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Device-discovery.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Device-operations.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Devices-operations.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Driver-Image-operations.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Driver-operations.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Driver-structures.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Helpers-for-libusb.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Image-device-operations.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Image-driver-structures.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Image-frame-assembly.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Image-operations.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Initialisation-and-events-handling.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Logging.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Print-discovery-(deprecated).html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Sequential-state-machine.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Stored-prints.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint-Timeouts.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/libfprint.devhelp2</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/pt01.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/pt02.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/pt03.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/right-insensitive.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/right.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/style.css</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/up-insensitive.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/libfprint/up.png</Path>
+ </Files>
+ </Package>
+ <History>
+ <Update release="1">
+ <Date>2018-12-27</Date>
+ <Version>0.99.0</Version>
+ <Comment>Packaging update</Comment>
+ <Name>Abdulkadir Furkan Şanlı</Name>
+ <Email>abdulkadirfsanli@protonmail.com</Email>
+ </Update>
+ </History>
+</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Thu, Aug 10, 9:00 PM (1 d, 4 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5807428
Default Alt Text
D1657.id.diff (11 KB)

Event Timeline