-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.1.4.1: fixes #1. Removes the useless msgcodes.
Also, it would be a good idea to check out pkgbuilder-git from the AUR if you want some additional fixes between releases, but note that it is likely to break, as I often push half-baked versions because I do all the testing on my local machine rather than a shell server, which I sometimes use for development. Signed-off-by: Kwpolska <[email protected]>
- Loading branch information
Showing
40 changed files
with
493 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Maintainer: Kwpolska <[email protected]> | ||
pkgname=pkgbuilder | ||
pkgver=2.1.4.0 | ||
pkgver=2.1.4.1 | ||
pkgrel=1 | ||
pkgdesc='A Python AUR helper/library.' | ||
arch=('any') | ||
|
@@ -9,7 +9,7 @@ license=('BSD') | |
depends=('python' 'pyalpm>=0.5.1-1' 'python-requests') | ||
options=(!emptydirs) | ||
source=("http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.gz") | ||
md5sums=('aa83d7b4f16adf2c8d64ad744f5d2590') | ||
md5sums=('9c1a640790a10459c224d3fd94c01de9') | ||
|
||
package() { | ||
cd "${srcdir}/${pkgname}-${pkgver}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Maintainer: Kwpolska <[email protected]> | ||
pkgname=pkgbuilder-git | ||
pkgver=20120908 | ||
pkgrel=1 | ||
pkgdesc='A Python AUR helper/library. Version from git.' | ||
arch=('any') | ||
url='https://github.com/Kwpolska/pkgbuilder' | ||
license=('BSD') | ||
depends=('python' 'pyalpm>=0.5.1-1' 'python-requests') | ||
makedepends=('git') | ||
options=(!emptydirs) | ||
|
||
_gitroot=git://github.com/Kwpolska/pkgbuilder.git | ||
_gitname=pkgbuilder | ||
|
||
package() { | ||
cd "${srcdir}" | ||
msg "Connecting to GIT server...." | ||
|
||
if [[ -d "${_gitname}" ]]; then | ||
cd "${_gitname}" && git pull origin | ||
msg "The local files are updated." | ||
else | ||
git clone "${_gitroot}" "${_gitname}" | ||
fi | ||
|
||
msg "GIT checkout done or server timeout" | ||
msg "Starting build..." | ||
|
||
rm -rf "${srcdir}/${_gitname}-build" | ||
git clone "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build" | ||
cd "${srcdir}/${_gitname}-build" | ||
|
||
python setup.py install --root="${pkgdir}/" --optimize=1 | ||
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${_gitname}/LICENSE" | ||
} | ||
|
||
# vim:set ts=2 sw=2 et: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ PKGBUILDer. An AUR helper (and library) in Python 3. | |
:Info: This is the README file for PKGBUILDer. | ||
:Author: Kwpolska <[email protected]> | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
|
||
.. index: README | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ PKGBUILDer. An AUR helper (and library) in Python 3. | |
:Info: This is the README file for PKGBUILDer. | ||
:Author: Kwpolska <[email protected]> | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
|
||
.. index: README | ||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Appendix C. Changelog | |
:Info: This is a partial changelog for PKGBUILDer. | ||
:Author: Kwpolska <[email protected]> | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
|
||
.. index:: CHANGELOG | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Appendix B. License for PKGBUILDer | |
:Info: This is an appendix to the PKGBUILDer documentation. | ||
:Author: Kwpolska <[email protected]> | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
|
||
.. index:: LICENSE | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ PKGBUILDer. An AUR helper (and library) in Python 3. | |
:Info: This is the README file for PKGBUILDer. | ||
:Author: Kwpolska <[email protected]> | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
|
||
.. index: README | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ PBWrapper | |
:Author: Kwpolska <[email protected]> | ||
:Copyright: See Appendix B. | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
:Wrapper Version: 0.1.0 | ||
:Manual section: 8 | ||
:Manual group: PKGBUILDer manual | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ PKGBUILDer | |
:Author: Kwpolska <[email protected]> | ||
:Copyright: See Appendix B. | ||
:Date: 2012-09-08 | ||
:Version: 2.1.4.0 | ||
:Version: 2.1.4.1 | ||
:Manual section: 8 | ||
:Manual group: PKGBUILDer manual | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.