My Arch AUR PKGBUILD's
Go to file
2015-08-09 00:32:20 +03:00
1pass-hg@7ad21f858f move to aur 2015-08-09 00:19:59 +03:00
appset-qt@61737f0588 update to aur4 2015-06-09 09:28:19 +03:00
compass-icon-theme@200259fe0d move to aur 2015-08-09 00:19:59 +03:00
compass-icon-theme-kde@be4fcaf1e3 move to aur 2015-08-09 00:19:59 +03:00
discover@5401eea2e8 update to aur4 2015-06-09 09:28:19 +03:00
eric4@1e6561ec77 update to aur4 2015-06-09 09:28:19 +03:00
fingerprint-gui@bfe06c2959 move to aur 2015-08-09 00:19:59 +03:00
food_gui@af87745866 update to aur4 2015-06-09 09:28:19 +03:00
ghemical-mpqc@dfb0a15322 update to aur4 2015-06-09 09:28:19 +03:00
git-etc@167185b5ea update to aur4 2015-06-09 09:28:19 +03:00
gtk-kde4@5806c4124b update to aur4 2015-06-09 09:28:19 +03:00
istodo@5d33eadcc4 update to aur4 2015-06-09 09:28:19 +03:00
kate-latex-plugin@f3f1bd3378 update to aur4 2015-06-09 09:28:19 +03:00
katecpp-helper-plugin@5da85503ad update to aur4 2015-06-09 09:28:19 +03:00
kdeicons-nouvekdegray@f798669174 update to aur4 2015-06-09 09:28:19 +03:00
kdeplasma-applets-awesome-widgets-git@cfaff38ac3 update to aur4 2015-06-09 09:28:19 +03:00
kdeplasma-applets-oblikuestrategies@bcba459750 update to aur4 2015-06-09 09:28:19 +03:00
kdeplasma-applets-plasmacon@fa21411585 update to aur4 2015-06-09 09:28:19 +03:00
kdeplasma-applets-stdin-svn@0448af8ee8 update to aur4 2015-06-09 09:28:19 +03:00
kdeplasma-applets-usu-notifications@2414bba008 update to aur4 2015-06-09 09:28:19 +03:00
kdeplasma-wallpapers-dayandnight@178e6ebc32 update to aur4 2015-06-09 09:28:19 +03:00
kdm-theme-modernarchlinux@bddff19d1f update to aur4 2015-06-09 09:28:19 +03:00
kwin-scripts-tiling@46169a08bb update to aur4 2015-06-09 09:28:19 +03:00
lib32-libarchive@43b8773028 update to aur4 2015-06-09 09:28:19 +03:00
libghemical-mpqc@7777b120ea update to aur4 2015-06-09 09:28:19 +03:00
mpqc-shared@471c08e417 update to aur4 2015-06-09 09:28:19 +03:00
netctl-gui@ebd8017b10 update submodules 2015-07-07 00:35:22 +03:00
netctl-gui-qt4@9875269faf update submodules 2015-07-07 00:35:22 +03:00
nitrux-icon-theme@21efebfa41 update submodules 2015-07-07 00:35:22 +03:00
nitrux-icon-theme-kde@3e9417169f update submodules 2015-07-07 00:35:22 +03:00
plasma5-applet-awesome-widgets@8064f00af7 move to aur 2015-08-09 00:19:59 +03:00
plasma-theme-diamond@ebe39800bf update to aur4 2015-06-09 09:28:19 +03:00
python2-cyrano@012d24658e update to aur4 2015-06-09 09:28:19 +03:00
qmmp-qsmmp-git@4ece2c71b9 update to aur4 2015-06-09 09:28:19 +03:00
qscite@cf7ca49284 update to aur4 2015-06-09 09:28:19 +03:00
scidavis@df37cf0b12 update to aur4 2015-06-09 09:28:19 +03:00
square-beam-icon-theme@ca86558301 update to aur4 2015-06-09 09:28:19 +03:00
tepsonic-git@b2c9e0ee7b update to aur4 2015-06-09 09:28:19 +03:00
voxforge-am-julius-nightly@cd052404c7 update to aur4 2015-06-09 09:28:19 +03:00
yarock-qt5@5fbdbb4357 update to aur4 2015-06-09 09:28:19 +03:00
.gitignore update pkgbuilds 2015-01-13 00:06:56 +03:00
.gitmodules move to aur 2015-08-09 00:19:59 +03:00
README.md some infor to readme 2015-08-09 00:32:20 +03:00

pkgbuild

My Arch AUR PKGBUILD's. At the moment it is only for private use since any package points to git repository by using SSH protocol (thus it requires my private key).

Clone or update submodule statuses

# clone if no repository cloned
git clone https://github.com/arcan1s/pkgbuild.git
cd pkgbuild
git submodule update --init

Add package

cd pkgbuild
git submodule add ssh+git://aur@aur.archlinux.org/$pkgbase.git/
# some changes here if required (see package update below)
git add $pkgbase
git commit -m 'add $pkgbase'
git push

Update package

cd pkgbuild/$pkgbase
vim PKGBUILD
# some changes here
mkscrinfo
git add PKGBUILD .SRCINFO       # newly created files should be added too
git commit -m 'bump $pkgbase to $pkgver-$pkgrel'
git push
# now update repository
cd ..
git add $pkgbase
git commit -m 'bump $pkgbase to $pkgver-$pkgrel'
git push

Force update submodules to AUR state

cd pkgbuild
git submodule foreach git pull origin master
git add -A .                    # or smth like this
git commit -m 'bump packages to aur versions'
git push