[arch-commits] Commit in c-ares/trunk (ChangeLog LICENSE PKGBUILD)
Alexander Fehr
alexanderf at archlinux.org
Fri Jan 2 12:16:19 UTC 2009
Date: Friday, January 2, 2009 @ 07:16:19
Author: alexanderf
Revision: 23084
upgpkg: c-ares 1.6.0-1
Added:
c-ares/trunk/ChangeLog
Modified:
c-ares/trunk/LICENSE
c-ares/trunk/PKGBUILD
-----------+
ChangeLog | 11 +++++++++++
LICENSE | 25 ++++++++++---------------
PKGBUILD | 28 ++++++++++++++++------------
3 files changed, 37 insertions(+), 27 deletions(-)
Added: ChangeLog
===================================================================
--- ChangeLog (rev 0)
+++ ChangeLog 2009-01-02 12:16:19 UTC (rev 23084)
@@ -0,0 +1,11 @@
+2008-12-26 Alexander Fehr <pizzapunk gmail com>
+
+ * c-ares-1.6.0-1:
+ New upstream release.
+ New maintainer.
+ Changed url.
+ Changed download location.
+ Removed sha1sums.
+ Built shared libraries.
+ Updated license file.
+ Added ChangeLog.
Modified: LICENSE
===================================================================
--- LICENSE 2009-01-02 12:05:53 UTC (rev 23083)
+++ LICENSE 2009-01-02 12:16:19 UTC (rev 23084)
@@ -1,15 +1,10 @@
-/* Copyright 1998 by the Massachusetts Institute of Technology.
- * Copyright (C) 2007-2008 by Daniel Stenberg
- *
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies and that both that copyright
- * notice and this permission notice appear in supporting
- * documentation, and that the name of M.I.T. not be used in
- * advertising or publicity pertaining to distribution of the
- * software without specific, written prior permission.
- * M.I.T. makes no representations about the suitability of
- * this software for any purpose. It is provided "as is"
- * without express or implied warranty.
- */
+Copyright 1998 by the Massachusetts Institute of Technology.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation, and that
+the name of M.I.T. not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior permission.
+M.I.T. makes no representations about the suitability of this software for any
+purpose. It is provided "as is" without express or implied warranty.
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2009-01-02 12:05:53 UTC (rev 23083)
+++ PKGBUILD 2009-01-02 12:16:19 UTC (rev 23084)
@@ -1,23 +1,27 @@
# $Id$
# Maintainer: Jeff Mickey <jeff at archlinux.org>
-# Maintainer: Vinay S Shastry <vinayshastry at gmail.com>
+# Maintainer: Alexander Fehr <pizzapunk gmail com>
+
pkgname=c-ares
-pkgver=1.5.3
+pkgver=1.6.0
pkgrel=1
-pkgdesc="c-ares is a C library that performs DNS requests and name resolves asynchronously"
-url="http://daniel.haxx.se/projects/c-ares/"
+pkgdesc="C library that performs DNS requests and name resolves asynchronously"
arch=('i686' 'x86_64')
+url="http://c-ares.haxx.se/"
license=('MIT')
-depends=()
+depends=('glibc')
options=('!libtool')
-source=(http://daniel.haxx.se/projects/c-ares/$pkgname-$pkgver.tar.gz LICENSE)
-md5sums=('ec202543a8cb86647f52e1ed4b5c0b37' '8d3b474b934eff15d006a754b7e45216')
-sha1sums=('885fa291d7ae7d825c732b38ae147d5f83cc1904' '07d7104fc2d16e9232bd89e5a2fe28735444a6c3')
+source=(http://c-ares.haxx.se/c-ares-$pkgver.tar.gz
+ LICENSE)
+md5sums=('4503b0db3dd79d3c1f58d87722dbab46'
+ 'c69f2042941b708ce3e7121424d0b7e6')
build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr
+ cd "$srcdir/c-ares-$pkgver"
+
+ ./configure --prefix=/usr --enable-shared || return 1
make || return 1
- make DESTDIR=$startdir/pkg install
- install -D -m644 ../LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
+ make DESTDIR="$pkgdir" install || return 1
+
+ install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/c-ares/LICENSE" || return 1
}
More information about the arch-commits
mailing list