dcavalca / rpms / rpm

Forked from rpms/rpm a year ago
Clone
45afda
From a74ea72cb47dcdc1006ffbdd23643964bd40f580 Mon Sep 17 00:00:00 2001
45afda
From: "Vladimir D. Seleznev" <vseleznv@altlinux.org>
45afda
Date: Tue, 13 Mar 2018 00:04:46 +0300
45afda
Subject: [PATCH 02/33] Add RPMTAG_IDENTITY reservation
45afda
45afda
This tag represents binary package build characteristic: if two binary
45afda
packages have equal RPMTAG_IDENTITY values, it means that these packages
45afda
have no significant differences.
45afda
45afda
One of the applications of RPMTAG_IDENTITY is reproducible build
45afda
verification.
45afda
45afda
This tag is reserved for ALT Linux Team and marked as unimplemented.
45afda
45afda
Signed-off-by: Vladimir D. Seleznev <vseleznv@altlinux.org>
45afda
---
45afda
 lib/rpmtag.h | 1 +
45afda
 1 file changed, 1 insertion(+)
45afda
45afda
diff --git a/lib/rpmtag.h b/lib/rpmtag.h
45afda
index 664561156..002492d20 100644
45afda
--- a/lib/rpmtag.h
45afda
+++ b/lib/rpmtag.h
45afda
@@ -369,6 +369,7 @@ typedef enum rpmTag_e {
45afda
     RPMTAG_PAYLOADDIGEST	= 5092, /* s[] */
45afda
     RPMTAG_PAYLOADDIGESTALGO	= 5093, /* i */
45afda
     RPMTAG_AUTOINSTALLED	= 5094, /* i reservation (unimplemented) */
45afda
+    RPMTAG_IDENTITY		= 5095, /* s reservation (unimplemented) */
45afda
     RPMTAG_MODULARITYLABEL	= 5096, /* s */
45afda
 
45afda
     RPMTAG_FIRSTFREE_TAG	/*!< internal */
45afda
-- 
45afda
2.27.0
45afda