karsten / rpkg

Forked from rpkg 7 years ago
Clone

1839189 New source code layout

Authored and Committed by cqi 7 years ago
29 files changed. 10 lines added. 11 lines removed.
.gitignore
file modified
+1 -1
MANIFEST.in
file modified
+4 -3
bin/rpkgsrc/rpkg
file renamed
+0 -0
doc/rpkg_man_page.pysrc/rpkg_man_page.py
file renamed
+0 -0
etc/bash_completion.d/rpkg.bashsrc/rpkg.bash
file renamed
+0 -0
etc/rpkg/rpkg.confsrc/rpkg.conf
file renamed
+0 -0
pyrpkg/__init__.pysrc/pyrpkg/__init__.py
file renamed
+0 -0
pyrpkg/cli.pysrc/pyrpkg/cli.py
file renamed
+0 -0
pyrpkg/errors.pysrc/pyrpkg/errors.py
file renamed
+0 -0
pyrpkg/gitignore.pysrc/pyrpkg/gitignore.py
file renamed
+0 -0
pyrpkg/lookaside.pysrc/pyrpkg/lookaside.py
file renamed
+0 -0
pyrpkg/sources.pysrc/pyrpkg/sources.py
file renamed
+0 -0
pyrpkg/utils.pysrc/pyrpkg/utils.py
file renamed
+0 -0
setup.cfg
file modified
+0 -1
setup.py
file modified
+5 -6
tests/commands/__init__.pytest/commands/__init__.py
file renamed
+0 -0
tests/commands/test_add_tag.pytest/commands/test_add_tag.py
file renamed
+0 -0
tests/commands/test_check_repo.pytest/commands/test_check_repo.py
file renamed
+0 -0
tests/commands/test_clone.pytest/commands/test_clone.py
file renamed
+0 -0
tests/commands/test_delete_tag.pytest/commands/test_delete_tag.py
file renamed
+0 -0
tests/commands/test_list_tag.pytest/commands/test_list_tag.py
file renamed
+0 -0
tests/commands/test_package_name.pytest/commands/test_package_name.py
file renamed
+0 -0
tests/commands/test_patch.pytest/commands/test_patch.py
file renamed
+0 -0
tests/commands/test_push.pytest/commands/test_push.py
file renamed
+0 -0
tests/test_commands.pytest/test_commands.py
file renamed
+0 -0
tests/test_gitgnore.pytest/test_gitgnore.py
file renamed
+0 -0
tests/test_lookaside.pytest/test_lookaside.py
file renamed
+0 -0
tests/test_sources.pytest/test_sources.py
file renamed
+0 -0
tests/test_utils.pytest/test_utils.py
file renamed
+0 -0
    New source code layout
    
    * src/ directory is removed and package pyrpkg is moved to the top of
      project directory.
    
    * Bash completion and configuration file are in dedicated directory.
    
    * Script to generate manpage are moved to docs/.
    
    Signed-off-by: Chenxiong Qi <cqi@redhat.com>
    
        
file modified
+1 -1
file modified
+4 -3
bin/rpkg src/rpkg
file renamed
file was renamed with no change to the file
doc/rpkg_man_page.py src/rpkg_man_page.py
file renamed
file was renamed with no change to the file
file renamed
file was renamed with no change to the file
etc/rpkg/rpkg.conf src/rpkg.conf
file renamed
file was renamed with no change to the file
pyrpkg/__init__.py src/pyrpkg/__init__.py
file renamed
file was renamed with no change to the file
pyrpkg/cli.py src/pyrpkg/cli.py
file renamed
file was renamed with no change to the file
pyrpkg/errors.py src/pyrpkg/errors.py
file renamed
file was renamed with no change to the file
pyrpkg/gitignore.py src/pyrpkg/gitignore.py
file renamed
file was renamed with no change to the file
pyrpkg/lookaside.py src/pyrpkg/lookaside.py
file renamed
file was renamed with no change to the file
pyrpkg/sources.py src/pyrpkg/sources.py
file renamed
file was renamed with no change to the file
pyrpkg/utils.py src/pyrpkg/utils.py
file renamed
file was renamed with no change to the file
file modified
+0 -1
file modified
+5 -6
tests/commands/__init__.py test/commands/__init__.py
file renamed
file was renamed with no change to the file
tests/commands/test_add_tag.py test/commands/test_add_tag.py
file renamed
file was renamed with no change to the file
tests/commands/test_check_repo.py test/commands/test_check_repo.py
file renamed
file was renamed with no change to the file
tests/commands/test_clone.py test/commands/test_clone.py
file renamed
file was renamed with no change to the file
tests/commands/test_delete_tag.py test/commands/test_delete_tag.py
file renamed
file was renamed with no change to the file
tests/commands/test_list_tag.py test/commands/test_list_tag.py
file renamed
file was renamed with no change to the file
tests/commands/test_package_name.py test/commands/test_package_name.py
file renamed
file was renamed with no change to the file
tests/commands/test_patch.py test/commands/test_patch.py
file renamed
file was renamed with no change to the file
tests/commands/test_push.py test/commands/test_push.py
file renamed
file was renamed with no change to the file
tests/test_commands.py test/test_commands.py
file renamed
file was renamed with no change to the file
tests/test_gitgnore.py test/test_gitgnore.py
file renamed
file was renamed with no change to the file
tests/test_lookaside.py test/test_lookaside.py
file renamed
file was renamed with no change to the file
tests/test_sources.py test/test_sources.py
file renamed
file was renamed with no change to the file
tests/test_utils.py test/test_utils.py
file renamed
file was renamed with no change to the file