aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.xs
diff options
context:
space:
mode:
Diffstat (limited to 'URPM.xs')
-rw-r--r--URPM.xs21
1 files changed, 0 insertions, 21 deletions
diff --git a/URPM.xs b/URPM.xs
index 7a2db58..fb2d41f 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -1814,27 +1814,6 @@ Pkg_filename(pkg)
mXPUSHs(newSVpvf("%s.%s.rpm", nvr, arch));
}
-# deprecated
-void
-Pkg_header_filename(pkg)
- URPM::Package pkg
- PPCODE:
- if (pkg->info) {
- char *eon;
-
- if ((eon = strchr(pkg->info, '@')) != NULL) {
- mXPUSHs(newSVpv(pkg->info, eon-pkg->info));
- }
- } else if (pkg->h) {
- char buff[1024];
- char *p = buff;
- char *nvr = headerGetAsString(pkg->h, RPMTAG_NVR);
- char *arch = get_arch(pkg->h);
-
- p += snprintf(buff, sizeof(buff), "%s.%s", nvr, arch);
- mXPUSHs(newSVpv(buff, p-buff));
- }
-
void
Pkg_id(pkg)
URPM::Package pkg