summaryrefslogtreecommitdiff
path: root/~lukeshu/pacman-vcsget
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-10-30 17:07:46 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-10-30 17:07:46 -0400
commit32d8494f058ded2edb7663eb011ae4d168b0efd4 (patch)
treeaea4cdf3ba47542bfef23b5eb4d01e3d9da293c2 /~lukeshu/pacman-vcsget
parent6a584e4f7f44e1faf2190be068099e99e4794d8f (diff)
downloadabslibre-32d8494f058ded2edb7663eb011ae4d168b0efd4.tar.gz
abslibre-32d8494f058ded2edb7663eb011ae4d168b0efd4.tar.bz2
abslibre-32d8494f058ded2edb7663eb011ae4d168b0efd4.zip
mv ~lukeshu/pacman-Plukeshu,vcsget} and fix it up
Diffstat (limited to '~lukeshu/pacman-vcsget')
-rw-r--r--~lukeshu/pacman-vcsget/PKGBUILD100
l---------~lukeshu/pacman-vcsget/PKGBUILD.orig1
l---------~lukeshu/pacman-vcsget/makepkg.conf1
l---------~lukeshu/pacman-vcsget/pacman.conf1
l---------~lukeshu/pacman-vcsget/pacman.conf.mips64el1
l---------~lukeshu/pacman-vcsget/pacman.conf.x86_641
l---------~lukeshu/pacman-vcsget/pacman.install1
7 files changed, 106 insertions, 0 deletions
diff --git a/~lukeshu/pacman-vcsget/PKGBUILD b/~lukeshu/pacman-vcsget/PKGBUILD
new file mode 100644
index 000000000..c23eabd3a
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/PKGBUILD
@@ -0,0 +1,100 @@
+# vim: set ts=2 sw=2 et:
+# $Id: PKGBUILD 150148 2012-02-13 14:49:35Z dreisner $
+# Maintainer: Dan McGee <dan@archlinux.org>
+# Maintainer: Dave Reisner <dave@archlinux.org>
+
+_pkgname=pacman
+_basepath=parabola-pacman
+pkgname=$_pkgname-vcsget
+_relver=4.0.3
+#_gitver=f8fc16f
+_gitver=6082ed9d
+pkgver=${_relver}.git
+provides=($_pkgname=$pkgver)
+replaces=($_pkgname pacman-lukeshu)
+conflicts=($_pkgname pacman-lukeshu)
+
+pkgrel=1
+
+pkgdesc="A library-based package manager with dependency support (with vcsget)"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://www.archlinux.org/pacman/"
+license=('GPL')
+#groups=('base')
+depends=('bash' 'glibc>=2.15' 'libarchive>=3.0.2' 'curl>=7.19.4'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring' 'parabola-keyring')
+makedepends=('asciidoc')
+optdepends=('fakeroot: for makepkg usage as normal user')
+backup=(etc/pacman.conf etc/makepkg.conf)
+install=pacman.install
+options=(!libtool)
+source=(${_basepath}-${_gitver}.tar.gz::http://gitorious.org/parabola/pacman/archive-tarball/${_gitver}
+ pacman.conf
+ pacman.conf.x86_64
+ pacman.conf.mips64el
+ makepkg.conf)
+md5sums=('8c328c8f148f283656309fd4e2103178'
+ '080d9f76f56e135cc62205874636aa0f'
+ 'ce9943fc8086d491890565e91ea1a0d8'
+ 'eb8dba9bd0b315230fbf0e5dc0a7335b'
+ 'debc512689a1aa8c124fe0ccf27f5758')
+
+build() {
+ cd $srcdir/$_basepath
+
+ ./autogen.sh
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --localstatedir=/var --enable-doc
+ make
+ make -C contrib
+}
+
+check() {
+ make -C "$srcdir/$_basepath" check
+}
+
+package() {
+ cd $srcdir/$_basepath
+ make DESTDIR=$pkgdir install
+
+ # install Arch specific stuff
+ mkdir -p $pkgdir/etc
+ case "$CARCH" in
+ i686)
+ install -m644 $srcdir/pacman.conf $pkgdir/etc/pacman.conf
+ mycarch="i686"
+ mychost="i686-pc-linux-gnu"
+ myflags="-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
+ myldflags="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
+ ;;
+ x86_64)
+ install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/etc/pacman.conf
+ mycarch="x86_64"
+ mychost="x86_64-unknown-linux-gnu"
+ myflags="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
+ myldflags="-Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu"
+ ;;
+ mips64el)
+ install -m644 $srcdir/pacman.conf.mips64el $pkgdir/etc/pacman.conf
+ mycarch="mips64el"
+ mychost="mips64el-unknown-linux-gnu"
+ myflags="-O2 -march=loongson2f -mabi=n32 -pipe -mplt -Wa,-mfix-loongson2f-nop -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
+ myldflags="-Wl,-O1,--sort-common,--as-needed,-z,relro"
+ ;;
+ esac
+ install -m644 $srcdir/makepkg.conf $pkgdir/etc/
+ # set things correctly in the default conf file
+ sed -i $pkgdir/etc/makepkg.conf \
+ -e "s|@CARCH[@]|$mycarch|g" \
+ -e "s|@CHOST[@]|$mychost|g" \
+ -e "s|@LDFLAGS[@]|$myldflags|g" \
+ -e "s|@CARCHFLAGS[@]|$myflags|g"
+
+ # install completion files
+ install -Dm644 contrib/bash_completion "$pkgdir/usr/share/bash-completion/completions/pacman"
+ for f in makepkg pacman-key; do
+ ln -s pacman "$pkgdir/usr/share/bash-completion/completions/$f"
+ done
+
+ install -Dm644 contrib/zsh_completion $pkgdir/usr/share/zsh/site-functions/_pacman
+}
diff --git a/~lukeshu/pacman-vcsget/PKGBUILD.orig b/~lukeshu/pacman-vcsget/PKGBUILD.orig
new file mode 120000
index 000000000..448b40973
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/PKGBUILD.orig
@@ -0,0 +1 @@
+../../libre/pacman/PKGBUILD \ No newline at end of file
diff --git a/~lukeshu/pacman-vcsget/makepkg.conf b/~lukeshu/pacman-vcsget/makepkg.conf
new file mode 120000
index 000000000..2d1108635
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/makepkg.conf
@@ -0,0 +1 @@
+../../libre/pacman/makepkg.conf \ No newline at end of file
diff --git a/~lukeshu/pacman-vcsget/pacman.conf b/~lukeshu/pacman-vcsget/pacman.conf
new file mode 120000
index 000000000..c75a6eed0
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/pacman.conf
@@ -0,0 +1 @@
+../../libre/pacman/pacman.conf \ No newline at end of file
diff --git a/~lukeshu/pacman-vcsget/pacman.conf.mips64el b/~lukeshu/pacman-vcsget/pacman.conf.mips64el
new file mode 120000
index 000000000..01fb857d8
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/pacman.conf.mips64el
@@ -0,0 +1 @@
+../../libre/pacman/pacman.conf.mips64el \ No newline at end of file
diff --git a/~lukeshu/pacman-vcsget/pacman.conf.x86_64 b/~lukeshu/pacman-vcsget/pacman.conf.x86_64
new file mode 120000
index 000000000..1be1966fd
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/pacman.conf.x86_64
@@ -0,0 +1 @@
+../../libre/pacman/pacman.conf.x86_64 \ No newline at end of file
diff --git a/~lukeshu/pacman-vcsget/pacman.install b/~lukeshu/pacman-vcsget/pacman.install
new file mode 120000
index 000000000..0b1fee98c
--- /dev/null
+++ b/~lukeshu/pacman-vcsget/pacman.install
@@ -0,0 +1 @@
+../../libre/pacman/pacman.install \ No newline at end of file