From c0590b5ea59cd5749f04fc296570e4e7b6d5ff9f Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Tue, 13 Nov 2018 23:11:05 +0000 Subject: Add Makefile and NEWS. --- Makefile | 26 ++++++++++++++++++++++++++ NEWS | 11 +++++++++++ 2 files changed, 37 insertions(+) create mode 100644 Makefile create mode 100644 NEWS diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c33f1e7 --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +NAME = qarepo +VERSION = 1.6 + +DESTDIR= + +all: + sed -i "s/version = '.*';/version = 'v${VERSION}';/" qarepo + +check: + perl -cw qarepo + +install: + install -d $(DESTDIR)/usr/bin + install -d $(DESTDIR)/usr/libexec + install -d $(DESTDIR)/usr/share/applications + install -d $(DESTDIR)/usr/share/polkit-1/actions + install -d $(DESTDIR)/usr/share/polkit-1/rules.d + install -m 0755 qarepo $(DESTDIR)/usr/bin + install -m 0755 qarepo-helper $(DESTDIR)/usr/libexec + install -m 0644 qarepo.desktop $(DESTDIR)/usr/share/applications + install -m 0644 org.mageia.qarepo-helper.policy $(DESTDIR)/usr/share/polkit-1/actions + install -m 0644 org.mageia.qarepo-helper.rules $(DESTDIR)/usr/share/polkit-1/rules.d + +dist: + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz; + $(info $(NAME)-$(VERSION).tar.xz is ready) diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..3fc0d3c --- /dev/null +++ b/NEWS @@ -0,0 +1,11 @@ +- use polkit for authentication instead of sudo +- only accept limited abbreviations of full package names + o only the arch and .rpm extension may be omitted + o use wildcards and fuzzy version for anything else +- add check that no updates_testing media are currently enabled +- add option to suggest a downgrade command +- rename main program to just 'qarepo' + +1.5: + +- ensure a '+' in a package name is taken literally -- cgit v1.2.1