]> git.proxmox.com Git - libarchive-perl.git/commitdiff
drop deprecated function wrappers
authorStoiko Ivanov <s.ivanov@proxmox.com>
Tue, 23 May 2023 16:01:05 +0000 (18:01 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 23 Jun 2023 13:14:59 +0000 (15:14 +0200)
the callers (in our codebase) were adapted with pmg-api commit
2e08e3c97b6410ac0b6d985c99ba7ba3722d21f1
so we can safely drop them now

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
LibArchive/LibArchive.xs

index 10325024e680168f27896811355c18dbe35c6e05..cb4141f69d2d5c385d9280ead9c8aa91c0cb057e 100644 (file)
@@ -74,16 +74,6 @@ int
 archive_read_free(arg0)
        struct archive *        arg0
 
-# archive_read_finish is deprecated in favor of archive_read_free
-# can be dropped after changing all call-sites
-int
-archive_read_finish(arg0)
-       struct archive *        arg0
-       CODE:
-       RETVAL = archive_read_free(arg0);
-       OUTPUT:
-       RETVAL
-
 struct archive *
 archive_read_new()
 
@@ -119,16 +109,6 @@ int
 archive_read_support_filter_all(arg0)
        struct archive *        arg0
 
-# archive_read_finish is deprecated in favor of archive_read_support_filter_all
-# can be dropped after changing all call-sites
-int
-archive_read_support_compression_all(arg0)
-       struct archive *        arg0
-       CODE:
-       RETVAL = archive_read_support_filter_all(arg0);
-       OUTPUT:
-       RETVAL
-
 int
 archive_read_support_filter_bzip2(arg0)
        struct archive *        arg0