diff options
author | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-08-18 08:16:46 +0200 |
---|---|---|
committer | Per Øyvind Karlsen <proyvind@moondrake.org> | 2016-08-18 09:28:35 +0200 |
commit | cd6cad27819e2e1a16a1a17a9b3cb80dd921ed3f (patch) | |
tree | 9dae5ecfa8e3d8c319f6e5b56526c7d554ab3f9a | |
parent | 16a8c2c5062bb2b57979862dce6119c4257973da (diff) | |
download | mgarepo-cd6cad27819e2e1a16a1a17a9b3cb80dd921ed3f.tar mgarepo-cd6cad27819e2e1a16a1a17a9b3cb80dd921ed3f.tar.gz mgarepo-cd6cad27819e2e1a16a1a17a9b3cb80dd921ed3f.tar.bz2 mgarepo-cd6cad27819e2e1a16a1a17a9b3cb80dd921ed3f.tar.xz mgarepo-cd6cad27819e2e1a16a1a17a9b3cb80dd921ed3f.zip |
1.13.01.13.0
-rw-r--r-- | CHANGES | 18 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | mgarepo | 2 |
3 files changed, 20 insertions, 2 deletions
@@ -1,3 +1,21 @@ +* 1.13.0 +- implement 'clone' command with support for quick git-svn cloning +- implement 'github' command initial support for github integration +- implement 'buildrpm' command for easy package building from local package + repository + o implement automatic satisfaction of build dependencies using urpmi + o implement automatic satisfaction of build dependencies using DNF +- implement support for generating complete %changelog with full packager + names & mail addresses in entries +- refactorize & clean up much of code +- fix python 3 issue with bytes strings, properly converting them to utf-8 +- make execcmd() safe by only accepting individual arguments through a + list/tuple rather than accepting strings of arguments run through shell +- fetch svn log in xml format for more reliable parsing using ElementTree +- use setuptools rather than distutils +- enable (optional) automatic rpmlint checking of packages +- various minor bug fixes and improvements... + * 1.12.3 - syntax correction @@ -1,5 +1,5 @@ PACKAGE = mgarepo -VERSION = 1.12.3 +VERSION = 1.13.0 .PHONY: all $(DIRS) clean clean: @@ -4,7 +4,7 @@ from MgaRepo.command import * import getopt import sys -VERSION="1.12.3" +VERSION="1.13.0" HELP = """\ Usage: mgarepo COMMAND [COMMAND ARGUMENTS] |