pacman-debian 7.3.17 → 7.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -104,7 +104,7 @@ const char *alpm_pkg_get_desc(alpm_pkg_t *pkg);
|
|
|
104
104
|
const char *alpm_pkg_get_url(alpm_pkg_t *pkg);
|
|
105
105
|
const char *alpm_pkg_get_arch(alpm_pkg_t *pkg);
|
|
106
106
|
const char *alpm_pkg_get_base64_sig(alpm_pkg_t *pkg);
|
|
107
|
-
|
|
107
|
+
int alpm_pkg_get_sig(alpm_pkg_t *pkg, void **sig, size_t *sig_len);
|
|
108
108
|
alpm_pkgreason_t alpm_pkg_get_reason(alpm_pkg_t *pkg);
|
|
109
109
|
alpm_pkgfrom_t alpm_pkg_get_origin(alpm_pkg_t *pkg);
|
|
110
110
|
alpm_time_t alpm_pkg_get_builddate(alpm_pkg_t *pkg);
|
|
@@ -844,7 +844,7 @@ int alpm_pkg_has_provide(alpm_pkg_t *pkg, const char *name) {
|
|
|
844
844
|
const char *alpm_pkg_get_url(alpm_pkg_t *pkg) { return pkg ? ((pkg_internal *)pkg)->url : NULL; }
|
|
845
845
|
const char *alpm_pkg_get_arch(alpm_pkg_t *pkg) { return pkg ? ((pkg_internal *)pkg)->arch : NULL; }
|
|
846
846
|
const char *alpm_pkg_get_base64_sig(alpm_pkg_t *pkg) { return pkg ? ((pkg_internal *)pkg)->base64_sig : NULL; }
|
|
847
|
-
|
|
847
|
+
int alpm_pkg_get_sig(alpm_pkg_t *pkg, void **sig, size_t *sig_len) { (void)pkg; (void)sig; (void)sig_len; return -1; }
|
|
848
848
|
void *alpm_pkg_get_provides(alpm_pkg_t *pkg) { (void)pkg; return NULL; }
|
|
849
849
|
alpm_pkgreason_t alpm_pkg_get_reason(alpm_pkg_t *pkg) { return pkg ? ((pkg_internal *)pkg)->reason : ALPM_PKG_REASON_DEPEND; }
|
|
850
850
|
alpm_pkgfrom_t alpm_pkg_get_origin(alpm_pkg_t *pkg) { return pkg ? ((pkg_internal *)pkg)->origin : ALPM_PKG_FROM_LOCALDB; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pacman-debian",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.18",
|
|
4
4
|
"description": "A Debian/Ubuntu package manager using Arch Linux pacman syntax. Manages .deb packages at dpkg level, supports Arch .pkg.tar.zst, AUR helpers (yay), and makepkg. Configurable multi-repo setup.",
|
|
5
5
|
"pacmanVersion": "7.1.0",
|
|
6
6
|
"main": "dist/index.js",
|