]> git.phdru.name Git - ppu.git/commitdiff
Rename the project to Portable Python Utilities
authorOleg Broytman <phd@phdru.name>
Sun, 30 Apr 2017 16:47:40 +0000 (19:47 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 30 Apr 2017 17:16:03 +0000 (20:16 +0300)
12 files changed:
.gitignore
README.txt
TODO
devscripts/README.html
docs/Makefile
docs/conf.py
docs/genapidocs
docs/index.rst
docs/install.rst
mk-distr
setup.py
tests/Makefile

index 8d6724dbfe56fb4f040b7d90092ca9eff0a0b31c..c8abccb223509d1761ada6db8e0b8dd7553567c1 100644 (file)
@@ -1,6 +1,6 @@
 /.cache/
 /.tox/
-/remove_old_files.egg-info/
+/ppu.egg-info/
 /build/
 /data/
 /dist/
index cedf362fcadcdb816c39cf0d07339fac7a32dedb..dcd2eb3a396e78625e27d124bab6b29065866a92 100644 (file)
@@ -1,12 +1,12 @@
-Broytman remove-old-files, Copyright (C) 2017 PhiloSoft Design
+Broytman Portable Python Utilities, Copyright (C) 2017 PhiloSoft Design
 Author: Oleg Broytman <phd@phdru.name>
 License: GPL
 
 Remove old files. It's a portable replacement for
 `find start_dir -type f -mtime +31 -delete`.
 
-Home Page:     http://phdru.name/Software/Python/remove-old-files/
-Documentation: http://phdru.name/Software/Python/remove-old-files/docs/
-Git repo:      http://git.phdru.name/remove-old-files.git/
-GitHub repo:   https://github.com/phdru/remove-old-files
-Issue tracker: https://github.com/phdru/remove-old-files/issues
+Home Page:     http://phdru.name/Software/Python/ppu/
+Documentation: http://phdru.name/Software/Python/ppu/docs/
+Git repo:      http://git.phdru.name/ppu.git/
+GitHub repo:   https://github.com/phdru/ppu
+Issue tracker: https://github.com/phdru/ppu/issues
diff --git a/TODO b/TODO
index 83ddc4fc2db83fb51d56814e2250cd206cc974e6..12fe7ae13562c894845f771e82af5c3e234f303e 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,6 +1,3 @@
-Rename to "Portable Utilities".
-
-
 Add cmp.py and rm.py.
 
 
@@ -16,4 +13,4 @@ Rename remove-old-files.py to find.py. Make options more GNU find-like.
 PyPI.
 
 
-Extend find.py: add options to limit files or to exclude files by name, extension, path.
+Extend find.py: add options to find files by name, extension, path.
index 577863eb9f21b6d1630cbc5b28d19be729c1d6ca..2a0d902abe8d69079e7fed8d35f65f1a724c6ca9 100644 (file)
@@ -1 +1 @@
-<a href="http://phdru.name/Software/Python/remove-old-files/">Broytman remove-old-files</a>
+<a href="http://phdru.name/Software/Python/ppu/">Portable Python Utilities</a>
index 3b8c8046c941a837674035582a89ff3c32705add..cab73040e606097961d36ec37b59efde2633dcee 100644 (file)
@@ -4,7 +4,7 @@
 # You can set these variables from the command line.
 SPHINXOPTS    =
 SPHINXBUILD   = sphinx-build
-SPHINXPROJ    = remove-old-files
+SPHINXPROJ    = ppu
 SOURCEDIR     = .
 BUILDDIR      = _build
 
index da4a083d928322fff759c216124b84cdf4c1ee51..46fe5f2a4e273bf8471dafd5830c1607545f36c4 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 #
-# remove-old-files documentation build configuration file, created by
+# ppu documentation build configuration file, created by
 # sphinx-quickstart on Sat Apr 15 20:37:34 2017.
 #
 # This file is execfile()d with the current directory set to its
@@ -46,7 +46,7 @@ source_suffix = '.rst'
 master_doc = 'index'
 
 # General information about the project.
-project = 'remove-old-files'
+project = 'Portable Python Utilities'
 copyright = '2017, Oleg Broytman'
 author = 'Oleg Broytman'
 
@@ -100,7 +100,7 @@ html_static_path = ['_static']
 # -- Options for HTMLHelp output ------------------------------------------
 
 # Output file base name for HTML help builder.
-htmlhelp_basename = 'remove-old-filesdoc'
+htmlhelp_basename = 'ppudoc'
 
 
 # -- Options for LaTeX output ---------------------------------------------
@@ -127,7 +127,7 @@ latex_elements = {
 # (source start file, target name, title,
 #  author, documentclass [howto, manual, or own class]).
 latex_documents = [
-    (master_doc, 'remove-old-files.tex', 'remove-old-files Documentation',
+    (master_doc, 'ppu.tex', 'Portable Python Utilities Documentation',
      'Oleg Broytman', 'manual'),
 ]
 
@@ -137,7 +137,7 @@ latex_documents = [
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    (master_doc, 'remove-old-files', 'remove-old-files Documentation',
+    (master_doc, 'ppu', 'Portable Python Utilities Documentation',
      [author], 1)
 ]
 
@@ -148,8 +148,8 @@ man_pages = [
 # (source start file, target name, title, author,
 #  dir menu entry, description, category)
 texinfo_documents = [
-    (master_doc, 'remove-old-files', 'remove-old-files Documentation',
-     author, 'remove-old-files', 'One line description of project.',
+    (master_doc, 'ppu', 'Portable Python Utilities Documentation',
+     author, 'ppu', 'Portable Python Utilities.',
      'Miscellaneous'),
 ]
 
index a2425feaae7bbd2d50640565f8f706825e90483e..bb833cc1ace545f3441db02a843066c933229300 100755 (executable)
@@ -2,4 +2,4 @@
 
 cd "`dirname $0`"/.. &&
 exec sphinx-apidoc --separate --module-first --suffix=rst --force \
-   --output-dir=docs/api remove-old-files
+   --output-dir=docs/api ppu
index f339591f6e46d3a9e2a1bb3a91e405dfc93de6ed..3f27dd25c84e9c4ddfb44c0f677b5616ba13db09 100644 (file)
@@ -1,13 +1,10 @@
-.. remove-old-files documentation master file, created by
+.. ppu documentation master file, created by
    sphinx-quickstart on Sat Apr 15 20:37:34 2017.
    You can adapt this file completely to your liking, but it should at least
    contain the root `toctree` directive.
 
-Welcome to remove-old-files's documentation!
-============================================
-
-Remove old files. It's a portable replacement for
-`find start_dir -type f -mtime +31 -delete`.
+Portable Python Utilities
+=========================
 
 .. toctree::
    :maxdepth: 2
@@ -24,9 +21,12 @@ Command line
 remove-old-files.py
 ~~~~~~~~~~~~~~~~~~~
 
+Remove old files. It's a portable replacement for
+`find start_dir -type f -mtime +31 -delete`.
+
 Usage::
 
-    remove-old-files.py -o days start_dir
+    remove-old-files.py [-e] -o days start_dir
 
 Options::
 
index b38ccc6651cd4bb9834c457fa4592120dee2f4e2..9015f0eb21f77827a98361ad04571c76a4e11c09 100644 (file)
@@ -6,14 +6,14 @@ System-wide
 
 ::
 
-    sudo pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' remove-old-files
+    sudo pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' ppu
 
 User mode
 ---------
 
 ::
 
-    pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' --user remove-old-files
+    pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' --user ppu
 
 For Python 2.6 the command is easy_install.
 
@@ -34,6 +34,6 @@ home directory; run run the following command:
 
     python setup.py install -O2 --user
 
-Option '--user' installs script remove-old-files.py into $HOME/.local/bin;
+Option '--user' installs scripts into $HOME/.local/bin;
 add the directory to your $PATH or move the script to a directory in your
 $PATH.
index 32d57c8d7f7482062ea2b5f180940f208ff88a4c..114c314a8cb99f45ea8e25f476cee4d1ce43b8bb 100755 (executable)
--- a/mk-distr
+++ b/mk-distr
@@ -2,13 +2,13 @@
 
 umask 022 &&
 
-git archive --format=tar --prefix=remove-old-files/ "${1:-HEAD}" |
+git archive --format=tar --prefix=ppu/ "${1:-HEAD}" |
    (cd "$HOME/tmp" && exec tar xf -) &&
 
-cp -ap docs "$HOME/tmp/remove-old-files" &&
+cp -ap docs "$HOME/tmp/ppu" &&
 
-cd "$HOME/tmp/remove-old-files" &&
+cd "$HOME/tmp/ppu" &&
 chmod -R u=rwX,go=rX docs &&
 
 python setup.py sdist --formats=bztar &&
-cd dist && mv remove-old-files-*.tar.bz2 ../.. && cd ../.. && exec rm -rf remove-old-files
+cd dist && mv ppu-*.tar.bz2 ../.. && cd ../.. && exec rm -rf ppu
index cc0016cf8471187ba69b945b5bf3e7263cdf8af9..22a230d3ee4104eefd72003db43743f884476c3d 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,13 +5,13 @@ try:
 except ImportError:
     from distutils.core import setup
 
-setup(name='remove-old-files',
+setup(name='ppu',
       version='0.2.0',
-      description='Broytman remove-old-files',
+      description='Broytman Portable Python Utilities',
       long_description=open('README.txt', 'rU').read(),
       author='Oleg Broytman',
       author_email='phd@phdru.name',
-      url='http://phdru.name/Software/Python/remove-old-files/',
+      url='http://phdru.name/Software/Python/ppu/',
       license='GPL',
       platforms=['any'],
       keywords=[''],
index 4374f05b22ef6857e80ae0073e412e35f23309e1..0c6125e273addd4339eff70c6d6648d8395c5a25 100644 (file)
@@ -1,4 +1,4 @@
 
 .PHONY: all
 all:
-       PYTHONPATH=.. pytest
+       pytest