summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2017-09-23 02:59:07 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2017-09-23 02:59:07 +0000
commit9a000af85bd980141a9f4eff36545cdd801d7dfe (patch)
tree9cc694b61d31251f5000cae16df808c22d29b05e
parentAdd xtoolchain port for llvm50. (diff)
1: upgrade to 4.0.0.
2: chrase shared library version.
Notes
Notes: svn path=/head/; revision=450419
-rw-r--r--graphics/kf5-prison/Makefile1
-rw-r--r--graphics/libqrencode/Makefile9
-rw-r--r--graphics/libqrencode/distinfo6
-rw-r--r--graphics/libqrencode/files/patch-CMakeLists.txt27
-rw-r--r--graphics/pecl-qrencode/Makefile1
-rw-r--r--graphics/prison/Makefile1
-rw-r--r--net-im/qTox/Makefile2
-rw-r--r--net-im/ring-gnome/Makefile2
-rw-r--r--net-im/toxic/Makefile1
-rw-r--r--net-p2p/bitcoin/Makefile2
-rw-r--r--net-p2p/dogecoin/Makefile2
-rw-r--r--net-p2p/litecoin/Makefile1
-rw-r--r--net-p2p/namecoin/Makefile2
-rw-r--r--net-p2p/zetacoin/Makefile2
-rw-r--r--textproc/p5-HTML-QRCode/Makefile2
-rw-r--r--textproc/p5-Text-QRCode/Makefile1
16 files changed, 20 insertions, 42 deletions
diff --git a/graphics/kf5-prison/Makefile b/graphics/kf5-prison/Makefile
index 9a9a79930b8a..926d4fc0a0b8 100644
--- a/graphics/kf5-prison/Makefile
+++ b/graphics/kf5-prison/Makefile
@@ -3,6 +3,7 @@
PORTNAME= prison
PORTVERSION= ${KDE_FRAMEWORKS_VERSION}
+PORTREVISION= 1
CATEGORIES= graphics kde kde-frameworks
MAINTAINER= kde@FreeBSD.org
diff --git a/graphics/libqrencode/Makefile b/graphics/libqrencode/Makefile
index 839edb41af9b..2c8e3f0387bf 100644
--- a/graphics/libqrencode/Makefile
+++ b/graphics/libqrencode/Makefile
@@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME= libqrencode
-PORTVERSION= 3.9.0
-PORTREVISION= 1
+DISTVERSION= 4.0.0
+DISTVERSIONPREFIX= v
CATEGORIES= graphics
MAINTAINER= vanilla@FreeBSD.org
@@ -16,7 +16,6 @@ LIB_DEPENDS= libpng.so:graphics/png
USE_GITHUB= yes
GH_ACCOUNT= fukuchi
-GH_TAGNAME= e3410bf
USES= cmake iconv pathfix pkgconfig
USE_LDCONFIG= yes
@@ -26,8 +25,8 @@ CMAKE_ARGS= -DBUILD_SHARED_LIBS=ON
PLIST_FILES= bin/qrencode \
include/qrencode.h \
lib/libqrencode.so \
- lib/libqrencode.so.3 \
- lib/libqrencode.so.3.9.0 \
+ lib/libqrencode.so.4 \
+ lib/libqrencode.so.4.0.0 \
libdata/pkgconfig/libqrencode.pc \
man/man1/qrencode.1.gz
diff --git a/graphics/libqrencode/distinfo b/graphics/libqrencode/distinfo
index 394801b75575..24ef49a4ed5a 100644
--- a/graphics/libqrencode/distinfo
+++ b/graphics/libqrencode/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1488428047
-SHA256 (fukuchi-libqrencode-3.9.0-e3410bf_GH0.tar.gz) = 732ecb203b498107b3c6bac1a978a9a88e1eaacf04ae831712193623f9914fde
-SIZE (fukuchi-libqrencode-3.9.0-e3410bf_GH0.tar.gz) = 182687
+TIMESTAMP = 1506064797
+SHA256 (fukuchi-libqrencode-v4.0.0_GH0.tar.gz) = c2c8a8110354463a3332cb48abf8581c8d94136af4dc1418f891cc9c7719e3c1
+SIZE (fukuchi-libqrencode-v4.0.0_GH0.tar.gz) = 182791
diff --git a/graphics/libqrencode/files/patch-CMakeLists.txt b/graphics/libqrencode/files/patch-CMakeLists.txt
deleted file mode 100644
index b1d5d2a954b4..000000000000
--- a/graphics/libqrencode/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,27 +0,0 @@
---- CMakeLists.txt.orig 2017-02-05 05:47:23 UTC
-+++ CMakeLists.txt
-@@ -101,10 +101,17 @@ if(BUILD_SHARED_LIBS)
- set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
- endif()
- add_library(qrencode SHARED ${QRENCODE_SRCS} ${QRENCODE_HDRS})
-+ set_target_properties(qrencode PROPERTIES VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH} SOVERSION ${PROJECT_VERSION_MAJOR})
- else()
- add_library(qrencode ${QRENCODE_SRCS} ${QRENCODE_HDRS})
- endif()
-
-+set(prefix "${CMAKE_INSTALL_PREFIX}")
-+set(exec_prefix "${CMAKE_INSTALL_PREFIX}/bin")
-+set(libdir "${CMAKE_INSTALL_PREFIX}/lib")
-+set(includedir "${CMAKE_INSTALL_PREFIX}/include")
-+set(VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
-+
- configure_file(qrencode.1.in qrencode.1 @ONLY)
- configure_file(libqrencode.pc.in libqrencode.pc @ONLY)
-
-@@ -166,4 +173,4 @@ message(STATUS " Project configuration:"
- message(STATUS " .. Build test programs ........ = ${WITH_TESTS}" )
- message(STATUS " .. Build utility tools ........ = ${WITH_TOOLS}" )
- message(STATUS " .. Installation prefix ......... = ${CMAKE_INSTALL_PREFIX}" )
--message(STATUS "------------------------------------------------------------ ")
-\ No newline at end of file
-+message(STATUS "------------------------------------------------------------ ")
diff --git a/graphics/pecl-qrencode/Makefile b/graphics/pecl-qrencode/Makefile
index 77c371a06625..79d4bf78f3a8 100644
--- a/graphics/pecl-qrencode/Makefile
+++ b/graphics/pecl-qrencode/Makefile
@@ -4,6 +4,7 @@
PORTNAME= qrencode
PORTVERSION= 0.6
DISTVERSIONPREFIX= v
+PORTREVISION= 1
CATEGORIES= graphics pear
PKGNAMEPREFIX= pecl-
DIST_SUBDIR= PECL
diff --git a/graphics/prison/Makefile b/graphics/prison/Makefile
index 364b88460789..1e50abd6626f 100644
--- a/graphics/prison/Makefile
+++ b/graphics/prison/Makefile
@@ -3,6 +3,7 @@
PORTNAME= prison
PORTVERSION= 1.1.1
+PORTREVISION= 1
CATEGORIES= graphics kde
MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src
DIST_SUBDIR= KDE/${PORTNAME}
diff --git a/net-im/qTox/Makefile b/net-im/qTox/Makefile
index ba680d5a2607..a8289086605b 100644
--- a/net-im/qTox/Makefile
+++ b/net-im/qTox/Makefile
@@ -3,7 +3,7 @@
PORTNAME= qTox
PORTVERSION= 1.11.0
-PORTREVISION= 1
+PORTREVISION= 2
DISTVERSIONPREFIX= v
CATEGORIES= net-im net-p2p
diff --git a/net-im/ring-gnome/Makefile b/net-im/ring-gnome/Makefile
index 994361615c2c..957d0a7c2864 100644
--- a/net-im/ring-gnome/Makefile
+++ b/net-im/ring-gnome/Makefile
@@ -3,7 +3,7 @@
PORTNAME= ring-gnome
PORTVERSION= 0.160516
-PORTREVISION= 7
+PORTREVISION= 8
#DISTVERSIONPREFIX= v
CATEGORIES= net-im net-p2p
diff --git a/net-im/toxic/Makefile b/net-im/toxic/Makefile
index 3b5c264d627c..b1541edc2ca6 100644
--- a/net-im/toxic/Makefile
+++ b/net-im/toxic/Makefile
@@ -3,6 +3,7 @@
PORTNAME= toxic
PORTVERSION= 0.8.0
+PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= net-im
diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile
index 8f3f27f8cf24..89f9d9ec4ae2 100644
--- a/net-p2p/bitcoin/Makefile
+++ b/net-p2p/bitcoin/Makefile
@@ -4,7 +4,7 @@
PORTNAME= bitcoin
PORTVERSION= 0.14.2
DISTVERSIONPREFIX= v
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= net-p2p finance
MAINTAINER= robbak@robbak.com
diff --git a/net-p2p/dogecoin/Makefile b/net-p2p/dogecoin/Makefile
index 31c8d230b40f..be36f62ae6f1 100644
--- a/net-p2p/dogecoin/Makefile
+++ b/net-p2p/dogecoin/Makefile
@@ -4,7 +4,7 @@
PORTNAME= dogecoin
PORTVERSION= 1.8.2
DISTVERSIONPREFIX= v
-PORTREVISION= 7
+PORTREVISION= 8
CATEGORIES= net-p2p finance
MAINTAINER= swills@FreeBSD.org
diff --git a/net-p2p/litecoin/Makefile b/net-p2p/litecoin/Makefile
index 9790a58619af..7a1a425fee11 100644
--- a/net-p2p/litecoin/Makefile
+++ b/net-p2p/litecoin/Makefile
@@ -3,6 +3,7 @@
PORTNAME= litecoin
PORTVERSION= 0.14.2
+PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= net-p2p finance
diff --git a/net-p2p/namecoin/Makefile b/net-p2p/namecoin/Makefile
index 5f02e0d53d1f..aaedb96c5d97 100644
--- a/net-p2p/namecoin/Makefile
+++ b/net-p2p/namecoin/Makefile
@@ -4,7 +4,7 @@
PORTNAME= namecoin
PORTVERSION= 0.3.80
DISTVERSIONPREFIX= nc
-PORTREVISION= 11
+PORTREVISION= 12
PORTEPOCH= 1
CATEGORIES= net-p2p dns
diff --git a/net-p2p/zetacoin/Makefile b/net-p2p/zetacoin/Makefile
index 8faac8cc45c1..77f1edbbf0a2 100644
--- a/net-p2p/zetacoin/Makefile
+++ b/net-p2p/zetacoin/Makefile
@@ -4,7 +4,7 @@
PORTNAME= zetacoin
PORTVERSION= 0.11.2.3
DISTVERSIONPREFIX= v
-PORTREVISION= 10
+PORTREVISION= 11
CATEGORIES= net-p2p finance
MAINTAINER= daniel@morante.net
diff --git a/textproc/p5-HTML-QRCode/Makefile b/textproc/p5-HTML-QRCode/Makefile
index 131d0bb4ed10..a18e65923ba9 100644
--- a/textproc/p5-HTML-QRCode/Makefile
+++ b/textproc/p5-HTML-QRCode/Makefile
@@ -3,7 +3,7 @@
PORTNAME= HTML-QRCode
PORTVERSION= 0.01
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
diff --git a/textproc/p5-Text-QRCode/Makefile b/textproc/p5-Text-QRCode/Makefile
index f2ef5a6861d2..e571dd578cce 100644
--- a/textproc/p5-Text-QRCode/Makefile
+++ b/textproc/p5-Text-QRCode/Makefile
@@ -3,6 +3,7 @@
PORTNAME= Text-QRCode
PORTVERSION= 0.05
+PORTREVISION= 1
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-