Skip to content

Commit

Permalink
v3.1.6: added --userfetch
Browse files Browse the repository at this point in the history
Signed-off-by: Chris “Kwpolska” Warrick <[email protected]>
  • Loading branch information
Kwpolska committed Aug 23, 2013
1 parent 9ac3457 commit 52a8133
Show file tree
Hide file tree
Showing 44 changed files with 747 additions and 220 deletions.
5 changes: 3 additions & 2 deletions .pbwrapperhelp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ options:
--noscriptlet do not execute the install scriptlet if one exists
--print-format <string>
specify how the targets should be printed
usage: pkgbuilder [-h] [-V] [-F] [-i] [-s] [-u] [-c] [-C] [--debug] [-d] [-D]
[-v] [-w] [-S] [--safeupgrade] [-y]
usage: pkgbuilder [-h] [-V] [-F] [--userfetch USER] [-i] [-s] [-u] [-c] [-C]
[--debug] [-d] [-D] [-v] [-w] [-S] [--safeupgrade] [-y]
[PACKAGE [PACKAGE ...]]

An AUR helper (and library) in Python 3.
Expand All @@ -49,6 +49,7 @@ optional arguments:

operations:
-F, --fetch fetch package files
--userfetch USER fetch all package files of an user
-i, --info view package information
-s, --search search the AUR for matching strings
-u, --sysupgrade upgrade installed AUR packages
Expand Down
14 changes: 7 additions & 7 deletions .pypt/config
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
#!/bin/bash
# Human-friendly project name.
PROJECT="Python Project Template"
PROJECT="PKGBUILDer"
# Computer-friendly project name, [a-z0-9_\-]
PROJECTLC="tEmplate"
PROJECTLC="pkgbuilder"

# Git repository name. Using $PROJECTLC is recommended.
GITREPO=$PROJECTLC
GITREPO="$PROJECTLC"

# Locale type. One of:
# none Do not generate nor use any locales.
# gettext Use GNU gettext (gettext module).
# pyqt4 Use the Qt locale tools (stock Qt + PyQt4).
# pyside Use the Qt locale tools (stock Qt + PySide).
LOCALETYPE="none"
LOCALETYPE="gettext"

# Python versions supported.
PYTHON2=1
PYTHON2=0
PYTHON3=1

# AUR packages creation mode. One of:
# none Do not create nor upload AUR packages.
# python Create python{,2}-$PROJECTLC{,-git} packages (4 in total)
# app Create $AURNAME{,-git} packages with Python 3
AURMODE="python"
AURMODE="app"

# AUR package name. Defaults to $PROJECTLC. Ignored by `python`.
# WARNING: you still need to edit the PKGBUILDs.
AURNAME=$PROJECTLC
AURNAME="$PROJECTLC"
2 changes: 1 addition & 1 deletion .pypt/hooks/pre-sdist.hook
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/zsh
# pbwrapper help testing
pacman -Sh > /tmp/pbwrapperhelp
bin/$project -h >> /tmp/pbwrapperhelp
pkgbuilder -h >> /tmp/pbwrapperhelp

diff -u .pbwrapperhelp /tmp/pbwrapperhelp > /tmp/pbwrapperdiff
if [[ $? = 1 ]]; then
Expand Down
100 changes: 98 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix C. Changelog
:Author: Kwpolska <[email protected]>
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index:: CHANGELOG

Expand Down Expand Up @@ -50,6 +50,102 @@ Version History
Generation 3
------------

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.5
Added Vietnamese.

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Appendix A. Contribution rules
:Author: Kwpolska <[email protected]>
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index:: contributing

Expand Down
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Kwpolska <[email protected]>
pkgname=pkgbuilder
_pyname=pkgbuilder
pkgver=3.1.5
pkgver=3.1.6
pkgrel=1
pkgdesc='A Python AUR helper/library.'
arch=('any')
Expand All @@ -10,7 +10,7 @@ license=('BSD')
depends=('python' 'pyalpm>=0.5.1-1' 'python-requests' 'rsync')
options=(!emptydirs)
source=("http://pypi.python.org/packages/source/$(echo ${_pyname} | cut -c1)/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('94534a83748bdf8982a177bf27150f04')
md5sums=('a2dbf9f26672d3730f3103fbbb6cd956')

package() {
cd "${srcdir}/${_pyname}-${pkgver}"
Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD-git
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pkgname=pkgbuilder-git
_pyname=pkgbuilder
_gitname=pkgbuilder
pkgver=20130714
pkgver=20130823
pkgrel=1
pkgdesc='A Python AUR helper/library. (git version)'
arch=('any')
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ PKGBUILDer. An AUR helper (and library) in Python 3.
=====================================================
:Info: This is the README file for PKGBUILDer.
:Author: Kwpolska <[email protected]>
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index: README

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 @@ PKGBUILDer. An AUR helper (and library) in Python 3.
=====================================================
:Info: This is the README file for PKGBUILDer.
:Author: Kwpolska <[email protected]>
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index: README
Expand Down
100 changes: 98 additions & 2 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix C. Changelog
:Author: Kwpolska <[email protected]>
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index:: CHANGELOG

Expand Down Expand Up @@ -50,6 +50,102 @@ Version History
Generation 3
------------

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6
Added --userfetch.

3.1.6


3.1.5
Added Vietnamese.

Expand Down
4 changes: 2 additions & 2 deletions docs/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Appendix A. Contribution rules
:Author: Kwpolska <[email protected]>
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index:: contributing

Expand Down
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 the license for PKGBUILDer.
:Author: Kwpolska <[email protected]>
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index:: LICENSE

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 @@ PKGBUILDer. An AUR helper (and library) in Python 3.
=====================================================
:Info: This is the README file for PKGBUILDer.
:Author: Kwpolska <[email protected]>
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index: README
Expand Down
4 changes: 2 additions & 2 deletions docs/aur.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ aur module (AUR class)
:Author: Kwpolska
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-07-14
:Version: 3.1.5
:Date: 2013-08-23
:Version: 3.1.6

.. index:: AUR; RPC
.. index:: RPC
Expand Down
Loading

0 comments on commit 52a8133

Please sign in to comment.