xbps: update to 0.28.
This commit is contained in:
parent
f40b012119
commit
e8ea8e3614
4 changed files with 2 additions and 242 deletions
|
@ -1,135 +0,0 @@
|
|||
From 7c57918950de56d700c255f2524443becb5280be Mon Sep 17 00:00:00 2001
|
||||
From: Juan RP <xtraeme@gmail.com>
|
||||
Date: Fri, 29 Nov 2013 17:30:45 +0100
|
||||
Subject: [PATCH] xbps-rindex(8): fix #24 and added an ATF test case.
|
||||
|
||||
---
|
||||
NEWS | 2 ++
|
||||
bin/xbps-rindex/index-add.c | 22 +++++++++++-----------
|
||||
tests/xbps/xbps-rindex/Kyuafile | 1 +
|
||||
tests/xbps/xbps-rindex/Makefile | 2 +-
|
||||
tests/xbps/xbps-rindex/add_test.sh | 35 +++++++++++++++++++++++++++++++++++
|
||||
5 files changed, 50 insertions(+), 12 deletions(-)
|
||||
create mode 100644 tests/xbps/xbps-rindex/add_test.sh
|
||||
|
||||
diff --git a/bin/xbps-rindex/index-add.c b/bin/xbps-rindex/index-add.c
|
||||
index 2289897..572e2a4 100644
|
||||
--- bin/xbps-rindex/index-add.c
|
||||
+++ bin/xbps-rindex/index-add.c
|
||||
@@ -49,8 +49,8 @@ index_add(struct xbps_handle *xhp, int argc, char **argv, bool force)
|
||||
xbps_object_t obj, fileobj;
|
||||
struct xbps_repo *repo;
|
||||
struct stat st;
|
||||
- const char *oldpkgver, *arch, *oldarch;
|
||||
- char *pkgver, *pkgname, *sha256, *repodir, *buf;
|
||||
+ const char *arch;
|
||||
+ char *pkgver, *opkgver, *oarch, *pkgname, *sha256, *repodir;
|
||||
char *tmprepodir;
|
||||
int rv = 0, ret = 0;
|
||||
bool flush = false, found = false;
|
||||
@@ -116,17 +116,17 @@ index_add(struct xbps_handle *xhp, int argc, char **argv, bool force)
|
||||
}
|
||||
} else if (!force) {
|
||||
/* Only check version if !force */
|
||||
- xbps_dictionary_get_cstring_nocopy(curpkgd,
|
||||
- "pkgver", &oldpkgver);
|
||||
- xbps_dictionary_get_cstring_nocopy(curpkgd,
|
||||
- "architecture", &oldarch);
|
||||
- ret = xbps_cmpver(pkgver, oldpkgver);
|
||||
+ xbps_dictionary_get_cstring(curpkgd, "pkgver", &opkgver);
|
||||
+ xbps_dictionary_get_cstring(curpkgd, "architecture", &oarch);
|
||||
+ ret = xbps_cmpver(pkgver, opkgver);
|
||||
if (ret <= 0) {
|
||||
/* Same version or index version greater */
|
||||
fprintf(stderr, "index: skipping `%s' "
|
||||
"(%s), already registered.\n",
|
||||
pkgver, arch);
|
||||
xbps_object_release(newpkgd);
|
||||
+ free(opkgver);
|
||||
+ free(oarch);
|
||||
free(pkgver);
|
||||
free(pkgname);
|
||||
continue;
|
||||
@@ -135,11 +135,11 @@ index_add(struct xbps_handle *xhp, int argc, char **argv, bool force)
|
||||
* Current package version is greater than
|
||||
* index version.
|
||||
*/
|
||||
- buf = xbps_xasprintf("`%s' (%s)", oldpkgver, oldarch);
|
||||
xbps_dictionary_remove(idx, pkgname);
|
||||
- xbps_dictionary_remove(idxfiles, oldpkgver);
|
||||
- printf("index: removed obsolete entry %s.\n", buf);
|
||||
- free(buf);
|
||||
+ xbps_dictionary_remove(idxfiles, opkgver);
|
||||
+ printf("index: removed obsolete entry `%s' (%s).\n", opkgver, oarch);
|
||||
+ free(opkgver);
|
||||
+ free(oarch);
|
||||
}
|
||||
/*
|
||||
* We have the dictionary now, add the required
|
||||
diff --git a/tests/xbps/xbps-rindex/Kyuafile b/tests/xbps/xbps-rindex/Kyuafile
|
||||
index 2cf4d6a..f5061b0 100644
|
||||
--- tests/xbps/xbps-rindex/Kyuafile
|
||||
+++ tests/xbps/xbps-rindex/Kyuafile
|
||||
@@ -1,4 +1,5 @@
|
||||
syntax("kyuafile", 1)
|
||||
|
||||
test_suite("xbps-rindex")
|
||||
+atf_test_program{name="add_test"}
|
||||
atf_test_program{name="clean_test"}
|
||||
diff --git a/tests/xbps/xbps-rindex/Makefile b/tests/xbps/xbps-rindex/Makefile
|
||||
index b31c71c..6456ed9 100644
|
||||
--- tests/xbps/xbps-rindex/Makefile
|
||||
+++ tests/xbps/xbps-rindex/Makefile
|
||||
@@ -1,7 +1,7 @@
|
||||
TOPDIR = ../../..
|
||||
-include $(TOPDIR)/config.mk
|
||||
|
||||
-TESTSHELL = clean_test
|
||||
+TESTSHELL = add_test clean_test
|
||||
TESTSSUBDIR = xbps/xbps-rindex
|
||||
EXTRA_FILES = Kyuafile
|
||||
|
||||
diff --git a/tests/xbps/xbps-rindex/add_test.sh b/tests/xbps/xbps-rindex/add_test.sh
|
||||
new file mode 100644
|
||||
index 0000000..158ca02
|
||||
--- /dev/null
|
||||
+++ tests/xbps/xbps-rindex/add_test.sh
|
||||
@@ -0,0 +1,35 @@
|
||||
+#! /usr/bin/env atf-sh
|
||||
+# Test that xbps-rindex(8) -a (add mode) works as expected.
|
||||
+
|
||||
+# 1st test: test that update mode work as expected.
|
||||
+atf_test_case update
|
||||
+
|
||||
+update_head() {
|
||||
+ atf_set "descr" "xbps-rindex(8) -a: update test"
|
||||
+}
|
||||
+
|
||||
+update_body() {
|
||||
+ mkdir -p some_repo pkg_A
|
||||
+ touch pkg_A/file00
|
||||
+ cd some_repo
|
||||
+ xbps-create -A noarch -n foo-1.0_1 -s "foo pkg" ../pkg_A
|
||||
+ atf_check_equal $? 0
|
||||
+ xbps-rindex -a *.xbps
|
||||
+ atf_check_equal $? 0
|
||||
+ xbps-create -A noarch -n foo-1.1_1 -s "foo pkg" ../pkg_A
|
||||
+ atf_check_equal $? 0
|
||||
+ xbps-rindex -a *.xbps
|
||||
+ atf_check_equal $? 0
|
||||
+ cd ..
|
||||
+ result="$(xbps-query --repository=some_repo -o \*)"
|
||||
+ expected="foo-1.1_1: /file00 (some_repo)"
|
||||
+ rv=0
|
||||
+ if [ "$result" != "$expected" ]; then
|
||||
+ rv=1
|
||||
+ fi
|
||||
+ atf_check_equal $rv 0
|
||||
+}
|
||||
+
|
||||
+atf_init_test_cases() {
|
||||
+ atf_add_test_case update
|
||||
+}
|
||||
--
|
||||
1.8.4.1
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
From e86f9def03b4330363ac0604e660ff4f0a980a39 Mon Sep 17 00:00:00 2001
|
||||
From: Juan RP <xtraeme@gmail.com>
|
||||
Date: Sat, 30 Nov 2013 08:04:37 +0100
|
||||
Subject: [PATCH] xbps-rindex: fix #25 (--sign unnecessarily regenerates
|
||||
<arch>-repodata).
|
||||
|
||||
---
|
||||
NEWS | 2 ++
|
||||
bin/xbps-rindex/sign.c | 9 +++++++++
|
||||
2 files changed, 11 insertions(+)
|
||||
|
||||
diff --git a/bin/xbps-rindex/sign.c b/bin/xbps-rindex/sign.c
|
||||
index 1f791e1..510b326 100644
|
||||
--- bin/xbps-rindex/sign.c
|
||||
+++ bin/xbps-rindex/sign.c
|
||||
@@ -188,7 +188,16 @@ sign_repo(struct xbps_handle *xhp, const char *repodir,
|
||||
meta = xbps_dictionary_create();
|
||||
xbps_dictionary_set_cstring_nocopy(meta, "signature-by", signedby);
|
||||
xbps_dictionary_set_cstring_nocopy(meta, "signature-type", "rsa");
|
||||
+ /*
|
||||
+ * If the signature in repo has not changed do not generate the
|
||||
+ * repodata file again.
|
||||
+ */
|
||||
data = xbps_data_create_data_nocopy(sig, siglen);
|
||||
+ if (xbps_data_equals_data(data, sig, siglen)) {
|
||||
+ fprintf(stderr, "Not signing again, matched signature found.\n");
|
||||
+ rv = 0;
|
||||
+ goto out;
|
||||
+ }
|
||||
xbps_dictionary_set(meta, "signature", data);
|
||||
|
||||
buf = pubkey_from_privkey(rsa);
|
||||
--
|
||||
1.8.4.1
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
From d98468515a2f96c3a6c5bd824aada6817912a2ea Mon Sep 17 00:00:00 2001
|
||||
From: Juan RP <xtraeme@gmail.com>
|
||||
Date: Sat, 30 Nov 2013 08:30:25 +0100
|
||||
Subject: [PATCH] Fix #25 correctly: compare against repo->signature.
|
||||
|
||||
---
|
||||
bin/xbps-rindex/sign.c | 18 +++++++++---------
|
||||
lib/repo.c | 3 ---
|
||||
2 files changed, 9 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/bin/xbps-rindex/sign.c b/bin/xbps-rindex/sign.c
|
||||
index 510b326..6e67838 100644
|
||||
--- bin/xbps-rindex/sign.c
|
||||
+++ bin/xbps-rindex/sign.c
|
||||
@@ -149,7 +149,7 @@ sign_repo(struct xbps_handle *xhp, const char *repodir,
|
||||
repo = xbps_repo_open(xhp, repodir);
|
||||
if (repo == NULL) {
|
||||
fprintf(stderr, "cannot read repository data: %s\n", strerror(errno));
|
||||
- goto out;
|
||||
+ return -1;
|
||||
}
|
||||
if (xbps_dictionary_count(repo->idx) == 0) {
|
||||
fprintf(stderr, "invalid number of objects in repository index!\n");
|
||||
@@ -183,21 +183,21 @@ sign_repo(struct xbps_handle *xhp, const char *repodir,
|
||||
goto out;
|
||||
}
|
||||
/*
|
||||
- * Prepare the XBPS_REPOIDX_META for our repository data.
|
||||
- */
|
||||
- meta = xbps_dictionary_create();
|
||||
- xbps_dictionary_set_cstring_nocopy(meta, "signature-by", signedby);
|
||||
- xbps_dictionary_set_cstring_nocopy(meta, "signature-type", "rsa");
|
||||
- /*
|
||||
* If the signature in repo has not changed do not generate the
|
||||
* repodata file again.
|
||||
*/
|
||||
- data = xbps_data_create_data_nocopy(sig, siglen);
|
||||
- if (xbps_data_equals_data(data, sig, siglen)) {
|
||||
+ if (xbps_data_equals_data(repo->signature, sig, siglen)) {
|
||||
fprintf(stderr, "Not signing again, matched signature found.\n");
|
||||
rv = 0;
|
||||
goto out;
|
||||
}
|
||||
+ /*
|
||||
+ * Prepare the XBPS_REPOIDX_META for our repository data.
|
||||
+ */
|
||||
+ meta = xbps_dictionary_create();
|
||||
+ xbps_dictionary_set_cstring_nocopy(meta, "signature-by", signedby);
|
||||
+ xbps_dictionary_set_cstring_nocopy(meta, "signature-type", "rsa");
|
||||
+ data = xbps_data_create_data_nocopy(sig, siglen);
|
||||
xbps_dictionary_set(meta, "signature", data);
|
||||
|
||||
buf = pubkey_from_privkey(rsa);
|
||||
diff --git a/lib/repo.c b/lib/repo.c
|
||||
index 6e9f237..34bdfa7 100644
|
||||
--- lib/repo.c
|
||||
+++ lib/repo.c
|
||||
@@ -156,9 +156,6 @@ xbps_repo_open(struct xbps_handle *xhp, const char *url)
|
||||
repo = NULL;
|
||||
goto out;
|
||||
}
|
||||
- if (!is_remote)
|
||||
- goto out;
|
||||
-
|
||||
if ((meta = repo_get_dict(repo, XBPS_REPOIDX_META))) {
|
||||
repo->is_signed = true;
|
||||
repo->signature = xbps_dictionary_get(meta, "signature");
|
||||
--
|
||||
1.8.4.1
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'xbps'
|
||||
pkgname=xbps
|
||||
version=0.27
|
||||
revision=4
|
||||
version=0.28
|
||||
revision=1
|
||||
bootstrap=yes
|
||||
depends="xbps-triggers"
|
||||
conf_files="/etc/xbps/xbps.conf"
|
||||
|
|
Loading…
Reference in a new issue