#12 1.2.0 Release
Merged 3 years ago by onosek. Opened 3 years ago by onosek.
onosek/fedpkg-minimal 1.2.0_Release  into  master

file modified
+1
@@ -3,3 +3,4 @@ 

  Jesse Keating <jkeating@redhat.com>

  Till Maas <opensource@till.name>

  Lubomír Sedlář <lsedlar@redhat.com>

+ Ondřej Nosek <onosek@redhat.com>

file added
+7
@@ -0,0 +1,7 @@ 

+ include AUTHORS.md

+ include LICENSE

+ include README.md

+ recursive-include tests *

+ 

+ exclude setup.py

+ exclude MANIFEST.in

file added
+25
@@ -0,0 +1,25 @@ 

+ #!/usr/bin/env python3

+ 

+ from setuptools import setup

+ 

+ 

+ setup(

+     name="fedpkg-minimal",

+     version="1.2.0",

+     author="Dennis Gilmore",

+     author_email="dgilmore@fedoraproject.org",

+     description="Helper script for Fedora buildystem to fetch sources.",

+     license="GPLv2+",

+     url="https://pagure.io/fedpkg-minimal",

+     scripts=["bin/fedpkg", "bin/fedpkg-stg", "bin/fedpkg-base"],

+     platforms="linux",

+     classifiers=[

+         "Development Status :: 5 - Production/Stable",

+         "Environment :: Console",

+         "Operating System :: POSIX :: Linux",

+         "Intended Audience :: Developers",

+         "Topic :: Software Development :: Build Tools",

+         "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",

+         "Programming Language :: Unix Shell",

+     ],

+ )

Configured 'setup.py' environment that allows creating tarball
by command: python3 setup.py sdist.

This makes this rare job more convenient.
Tarball now contains unittests. These will be run during the build process.

Signed-off-by: Ondrej Nosek onosek@redhat.com

I found that some commits were not yet released until now.

rebased onto c0f46a6

3 years ago

Pull-Request has been merged by onosek

3 years ago