Browse Source

Prepare for 0.5 release

Helmut Pozimski 11 years ago
parent
commit
5c839664af
6 changed files with 18 additions and 11 deletions
  1. 6 0
      CHANGELOG
  2. 6 5
      README
  3. 2 2
      TODO
  4. 2 2
      debian/control
  5. 1 1
      setup.py
  6. 1 1
      stov

+ 6 - 0
CHANGELOG

@@ -1,3 +1,9 @@
+0.5
+----
+
+* Switched to distutils setup.py as installation method
+* Added scripts to build a Debian package
+
 0.4
 ----
 

+ 6 - 5
README

@@ -4,7 +4,7 @@ stov is a program which allows you to subscribe to channels, playlists and searc
 
 === USAGE ===
 
-see ./stov.py --help
+see ./stov --help
 
 === DEPENDENCIES ===
 
@@ -54,7 +54,8 @@ Currently none, contact me if you find any.
 
 === INSTALLATION ===
 
-You can just run the main file "stov.py" directly from this directory by calling
-it from the shell or with the python interpreter ("./stov.py" or "python stov.py").
-A simple install script is also provided which can be used to install stov to a
-directory of your choice. Simply run "install.py" with the path as argument.
+You can just run the main file "stov" directly from this directory by calling
+it from the shell or with the python interpreter ("./stov" or "python stov").
+Furthermore, stov uses python distutils as default installation method. Just
+run "python setup.py install" to install it into your system. For further
+information an options run "python setup.py --help". 

+ 2 - 2
TODO

@@ -1,4 +1,4 @@
-TODOs for 0.5:
+TODOs for 0.6:
 
 *Rework and correct strings
-*Add proper installation and packaging options
+*Compile localization files when installing instead of supplying binaries

+ 2 - 2
debian/control

@@ -9,6 +9,6 @@ Standards-Version: 3.9.1
 Package: stov
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends}
-Description: a program to subscribe to channels and users from youtube an
- stov is a program which allows you to subscribe to channels, playlists and search results on youtube. You don't need a youtube account for the program to work since it uses read-only access to the youtube API. You can for example run it as a cron job to automatically download your favourite videos.
+Description: a program to subscribe to videos on youtube
+stov is a program which allows you to subscribe to channels, playlists and search results on youtube. You don't need a youtube account for the program to work since it uses read-only access to the youtube API. You can for example run it as a cron job to automatically download your favourite videos.
 

+ 1 - 1
setup.py

@@ -22,7 +22,7 @@ from distutils.core import setup
 
 setup(
 	name = "stov",
-	version = "0.5wip",
+	version = "0.5",
 	author = "Helmut Pozimski",
 	author_email = "helmut@pozimski.de",
 	description = ("a program to subscribe to channels and users from youtube and"

+ 1 - 1
stov

@@ -576,7 +576,7 @@ elif options.license is True:
 	along with stov.  If not, see <http://www.gnu.org/licenses/>.
 	""", outputlevel="default", level=conf.outputlevel, descriptor="stdout")
 elif options.version is True:
-	printf("0.4", outputlevel="default", level=conf.outputlevel,
+	printf("0.5", outputlevel="default", level=conf.outputlevel,
 		descriptor="stdout")
 else:
 	parser.print_help()