diff options
-rw-r--r-- | main/bluez-hcidump/APKBUILD | 10 | ||||
-rw-r--r-- | main/bluez-hcidump/ntoh64.patch | 19 |
2 files changed, 4 insertions, 25 deletions
diff --git a/main/bluez-hcidump/APKBUILD b/main/bluez-hcidump/APKBUILD index 09b7092095..08eb229597 100644 --- a/main/bluez-hcidump/APKBUILD +++ b/main/bluez-hcidump/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=bluez-hcidump -pkgver=2.0 -pkgrel=1 +pkgver=2.1 +pkgrel=0 pkgdesc="Bluetooth HCI package analyzer" url="http://www.bluez.org/" arch="all" @@ -9,8 +9,7 @@ license="GPL2" depends= makedepends="bluez-dev" subpackages="$pkgname-doc" -source="http://www.kernel.org/pub/linux/bluetooth/bluez-hcidump-$pkgver.tar.gz - ntoh64.patch" +source="http://www.kernel.org/pub/linux/bluetooth/bluez-hcidump-$pkgver.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver @@ -35,5 +34,4 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 } -md5sums="5c2e3ef0a68b2845047867ba51ff8ac9 bluez-hcidump-2.0.tar.gz -fee39a3c089125cdc9f7b01f84ea8b33 ntoh64.patch" +md5sums="b160f0672276398344eebe9df1b37a2c bluez-hcidump-2.1.tar.gz" diff --git a/main/bluez-hcidump/ntoh64.patch b/main/bluez-hcidump/ntoh64.patch deleted file mode 100644 index 6ab411f54b..0000000000 --- a/main/bluez-hcidump/ntoh64.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- ./src/hcidump.c.orig -+++ ./src/hcidump.c -@@ -51,6 +51,8 @@ - #include "parser/sdp.h" - - #if __BYTE_ORDER == __LITTLE_ENDIAN -+#if 0 -+/* defined in bluetooth.h from bluez */ - static inline uint64_t ntoh64(uint64_t n) - { - uint64_t h; -@@ -59,6 +61,7 @@ - h |= tmp << 32; - return h; - } -+#endif - #elif __BYTE_ORDER == __BIG_ENDIAN - #define ntoh64(x) (x) - #else |