Skip to content

Commit

Permalink
v2.1.2.5: A little locale and docs update.
Browse files Browse the repository at this point in the history
Signed-off-by: Kwpolska <[email protected]>
  • Loading branch information
Kwpolska committed Oct 26, 2011
1 parent 7eda7c2 commit c9892da
Show file tree
Hide file tree
Showing 20 changed files with 270 additions and 258 deletions.
31 changes: 30 additions & 1 deletion INSTALL.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
#!/usr/bin/python3
# pkgbuilder installer
# Copyright Kwpolska 2011.
# Copyright (C) 2011, Kwpolska
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions, and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the author of this software nor the names of
# contributors to this software may be used to endorse or promote
# products derived from this software without specific prior written
# consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

# There are no install instructions. If you want to install
# the script, run this script with python.
Expand Down
40 changes: 0 additions & 40 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -10,51 +10,11 @@ docs/LICENSE.rst
docs/README.rst
docs/classes.rst
docs/conf.py
docs/docs-pkgbuilder.zip
docs/index.rst
docs/messagecodes.rst
docs/pkgbuilder.8.gz
docs/pkgbuilder.rst
docs/_build/doctrees/LICENSE.doctree
docs/_build/doctrees/README.doctree
docs/_build/doctrees/classes.doctree
docs/_build/doctrees/environment.pickle
docs/_build/doctrees/index.doctree
docs/_build/doctrees/messagecodes.doctree
docs/_build/doctrees/pkgbuilder.doctree
docs/html/.buildinfo
docs/html/index.html
docs/html/objects.inv
docs/html/searchindex.js
docs/html/LICENSE/index.html
docs/html/README/index.html
docs/html/_modules/index.html
docs/html/_sources/AUR.txt
docs/html/_sources/Build.txt
docs/html/_sources/LICENSE.txt
docs/html/_sources/PBDS.txt
docs/html/_sources/README.txt
docs/html/_sources/Utils.txt
docs/html/_sources/classes.txt
docs/html/_sources/index.txt
docs/html/_sources/messagecodes.txt
docs/html/_sources/pkgbuilder.txt
docs/html/_static/basic.css
docs/html/_static/default.css
docs/html/_static/doctools.js
docs/html/_static/file.png
docs/html/_static/jquery.js
docs/html/_static/minus.png
docs/html/_static/plus.png
docs/html/_static/pygments.css
docs/html/_static/searchtools.js
docs/html/_static/sidebar.js
docs/html/_static/underscore.js
docs/html/classes/index.html
docs/html/messagecodes/index.html
docs/html/pkgbuilder/index.html
docs/html/py-modindex/index.html
docs/html/search/index.html
locale/en/LC_MESSAGES/pkgbuilder.mo
locale/pl/LC_MESSAGES/pkgbuilder.mo
scripts/pkgbuilder
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Kwpolska <[email protected]>
pkgname=pkgbuilder
pkgver=2.1.2.4
pkgver=2.1.2.5
pkgrel=1
pkgdesc="A basic Python AUR helper/library."
arch=('any')
Expand All @@ -9,7 +9,7 @@ license=('BSD')
depends=('python' 'pyalpm>=0.5.1-1' 'python-pyparsing' 'pacman>=4.0.0-1')
options=(!emptydirs)
source=("http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('e7390538674a8d0acd6f13da8a5a358c')
md5sums=('5aff29e648ba667ba0f42970cdfe9069')

package() {
cd "${srcdir}/${pkgname}-${pkgver}"
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ README for PKGBUILDer
=====================
:Info: This is the README file for PKGBUILDer.
:Author: Kwpolska <[email protected]>
:Date: 2011-10-19
:Version: 2.1.2.4
:Date: 2011-10-26
:Version: 2.1.2.5

PKGBUILDer. A Python AUR helper/library.
=========================================
Expand Down
7 changes: 4 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ task :prepare, :ver do |t, args|

sh "sed \"s/version=.*/version='#{version}',/\" setup.py -i"
sh "sed \"s/release = .*/release = '#{version}'/\" docs/conf.py -i"
sh "sed \"s/version = .*/version = '#{version}'/\" docs/conf.py -i"
sh "sed \"s/:Version: .*/:Version: #{version}/\" docs/*.rst -i"
sh "sed \"s/:Version: .*/:Version: #{version}/\" README.rst -i"
sh "sed \"s/BUILDer .* do/BUILDer #{version} do/\" docs/index.rst -i"
Expand All @@ -53,8 +54,8 @@ task :docs do
sh "rst2man docs/pkgbuilder.rst > docs/pkgbuilder.8"
sh "gzip docs/pkgbuilder.8"

Rake::Task[:docshtml].invoke
Rake::Task[:docszip].invoke
#Rake::Task[:docshtml].invoke
#Rake::Task[:docszip].invoke
end

task :pypi do
Expand Down Expand Up @@ -99,5 +100,5 @@ task :update, :ver do |t, args|

Rake::Task[:aur].invoke(version)

puts "Done. Please upload the docs tarball to PyPI."
puts "Done."
end
Binary file added dist/pkgbuilder-2.1.2.5.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Appendix B. License for PKGBUILDer
==================================
:Info: This is an appendix to the PKGBUILDer documentation.
:Author: Kwpolska <[email protected]>
:Date: 2011-10-19
:Version: |version|
:Date: 2011-10-26
:Version: 2.1.2.5

Copyright (C) 2011, Kwpolska
All rights reserved.
Expand Down
4 changes: 2 additions & 2 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ README for PKGBUILDer
=====================
:Info: This is the README file for PKGBUILDer.
:Author: Kwpolska <[email protected]>
:Date: 2011-10-19
:Version: |version|
:Date: 2011-10-26
:Version: 2.1.2.5

PKGBUILDer. A Python AUR helper/library.
=========================================
Expand Down
4 changes: 2 additions & 2 deletions docs/classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Classes in PKGBUILDer

:Author: Kwpolska
:Copyright: See Appendix B.
:Date: 2011-10-19
:Version: |version|
:Date: 2011-10-26
:Version: 2.1.2.5

.. index:: classes
.. module:: PKGBUILDer
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '2.1.2.4'
version = '2.1.2.5'
# The full version, including alpha/beta/rc tags.
release = '2.1.2.4'
release = '2.1.2.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 5 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PKGBUILDer. A Python AUR helper/library.


.. note::
This documentation is compatible with version *|version|* of
This documentation is compatible with version |release| of
PKGBUILDer.
The current version on your system can be checked by running
`pkgbuilder -v`.
Expand All @@ -16,11 +16,11 @@ much as possible.
Since version 2.1.0, PKGBUILDer provides modules that can be used in
other scripts.

For standalone use, see the :ref:`PKGBUILDer man page <pkgbuilder>`.
Reading the appendices (:ref:`README` and
:ref:`Message codes <messagecodes>`) is also a good idea.
For standalone use, see the :doc:`PKGBUILDer man page <pkgbuilder>`.
Reading the appendices (:doc:`README` and
:doc:`Message codes <messagecodes>`) is also a good idea.

For python module usage, see the :ref:`Classes list <classes>`.
For python module usage, see the :doc:`Classes list <classes>`.

Table of Contents
-----------------
Expand Down
4 changes: 2 additions & 2 deletions docs/messagecodes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Appendix A. PKGBUILDer message numbers list
===========================================
:Info: This is an appendix to the PKGBUILDer documentation.
:Author: Kwpolska <[email protected]>
:Date: 2011-10-19
:Version: |version|
:Date: 2011-10-26
:Version: 2.1.2.5

In order to help debugging, messages are numbered.
Each message number has four digits: the first one is the
Expand Down
Binary file modified docs/pkgbuilder.8.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/pkgbuilder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ PKGBUILDer

:Author: Kwpolska <[email protected]>
:Copyright: See Appendix B.
:Date: 2011-10-19
:Version: |version|
:Date: 2011-10-26
:Version: 2.1.2.5
:Manual section: 8
:Manual group: PKGBUILDer manual

Expand Down
Loading

0 comments on commit c9892da

Please sign in to comment.