FreeBSD Bugzilla – Attachment 147264 Details for
Bug 193424
net-p2p/bitcoin*: Split into (QT) GUI and CLI ports
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Update to patch - update to 0.9.2.1, downgrade my private vps in the distfiles list
bitcoin-0.9.2.1.patch (text/plain), 7.33 KB, created by
robbak
on 2014-09-13 04:54:35 UTC
(
hide
)
Description:
Update to patch - update to 0.9.2.1, downgrade my private vps in the distfiles list
Filename:
MIME Type:
Creator:
robbak
Created:
2014-09-13 04:54:35 UTC
Size:
7.33 KB
patch
obsolete
>===> Generating patch >===> Viewing diff with more >diff -ruN /usr/ports/net-p2p/bitcoin/Makefile ./Makefile >--- /usr/ports/net-p2p/bitcoin/Makefile 2014-09-11 06:50:31.000000000 +1000 >+++ ./Makefile 2014-09-13 14:38:35.000000000 +1000 >@@ -2,96 +2,109 @@ > # $FreeBSD: head/net-p2p/bitcoin/Makefile 367888 2014-09-10 20:50:31Z gerald $ > > PORTNAME= bitcoin >-PORTVERSION= 0.9.2 >-PORTREVISION= 2 >+PORTVERSION= 0.9.2.1 > CATEGORIES= net-p2p finance >-MASTER_SITES= http://vps.robbak.com/distfiles/ \ >- ${MASTER_SITE_LOCAL} \ >+MASTER_SITES= ${MASTER_SITE_LOCAL} \ > http://people.freebsd.org/~swills/ \ >- GH >+ GH \ >+ http://vps.robbak.com/distfiles/ > > MAINTAINER= robbak@robbak.com > COMMENT= Virtual Peer-to-Peer Currency Client > > LICENSE= MIT > >-BUILD_DEPENDS= protoc:${PORTSDIR}/devel/protobuf \ >- pkg-config:${PORTSDIR}/devel/pkgconf > LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs > >-OPTIONS_DEFINE= GUI WALLET UPNP QRCODES >-OPTIONS_DEFAULT= GUI WALLET QRCODES >- >-GUI_DESC= Build and install the QT4 binary >-WALLET_DESC= Build with support to create and manage a wallet >-UPNP_DESC= Build with UPNP support >-QRCODES_DESC= Build with QR code display >- >-AUTOMAKE_ARGS+= --add-missing >-USE_AUTOTOOLS= aclocal autoheader automake autoconf >-#ACLOCAL_ARGS= -I ${LOCALBASE}/share/aclocal >-CONFIGURE_ENV= SSL_LIBS="-lssl" CRYPTO_LIBS="-lcrypto" SSL_CFLAGS="-I/usr/include" CRYPTO_CFLAGS="-I/usr/include" >- > USE_GITHUB= yes > GH_ACCOUNT= bitcoin > GH_PROJECT= bitcoin >-GH_COMMIT= 30a7357 >+GH_COMMIT= e2152ed > GH_TAGNAME= v${PORTVERSION} > >-USES= gmake >+GNU_CONFIGURE= yes >+USES= gmake pkgconfig >+USE_AUTOTOOLS= aclocal autoheader automake autoconf > USE_OPENSSL= yes >-USE_BDB= yes >-WANT_BDB_VER= 48 > >-CXXFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} >-CXXFLAGS+= -L${LOCALBASE}/lib -L${BDB_LIB_DIR} >+AUTOMAKE_ARGS+= --add-missing >+CONFIGURE_ARGS= --disable-tests >+CONFIGURE_ENV= CRYPTO_CFLAGS="-I/usr/include" CRYPTO_LIBS="-lcrypto" \ >+ SSL_CFLAGS="-I/usr/include" SSL_LIBS="-lssl" >+ >+CPPFLAGS+= -I${LOCALBASE}/include > CXXFLAGS+= -Wno-invalid-offsetof >+LDFLAGS+= -L${LOCALBASE}/lib > >-.include <bsd.port.options.mk> >+OPTIONS_DEFINE= DEBUG UPNP > >-CONFIGURE_ARGS+=--disable-tests >+DEBUG_CONFIGURE_ENABLE= debug >+DEBUG_INSTALL_TARGET_OFF= install-strip > >-.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) >-USE_QT4= corelib gui qmake_build linguist uic moc rcc qtestlib_build >-USES+= desktop-file-utils >-PLIST_FILES= %%QT_BINDIR%%/bitcoin-qt %%QT_BINDIR%%/bitcoind %%QT_BINDIR%%/bitcoin-cli >-PLIST_FILES+= share/applications/bitcoin-qt.desktop share/pixmaps/bitcoin128.png >-CONFIGURE_ARGS+=--with-gui >-.else >-PLIST_FILES= bin/bitcoind bin/bitcoin-cli >-CONFIGURE_ARGS+=--without-gui >-.endif >+UPNP_CONFIGURE_WITH= miniupnpc >+UPNP_LIB_DEPENDS= libminiupnpc.so:${PORTSDIR}/net/miniupnpc > >-.if ${PORT_OPTIONS:MQRCODES} >-LIB_DEPENDS+= libqrencode.so:${PORTSDIR}/graphics/libqrencode >-CONFIGURE_ARGS+=--with-qrencode >-.else >-CONFIGURE_ARGS+=--without-qrencode >-.endif >+.if defined(BITCOIN_UTILS) >+CONFIGURE_ARGS+= --with-cli \ >+ --without-daemon \ >+ --without-gui \ >+ --disable-wallet > >-.if ${PORT_OPTIONS:MUPNP} >-LIB_DEPENDS+= libminiupnpc.so:${PORTSDIR}/net/miniupnpc >-CONFIGURE_ARGS+=--with-miniupnpc >+PLIST_FILES= bin/bitcoin-cli > .else >-CONFIGURE_ARGS+=--without-miniupnpc >-.endif >+OPTIONS_DEFINE+= WALLET > >-.if ${PORT_OPTIONS:MWALLET} >-CONFIGURE_ARGS+=--enable-wallet >-.else >-CONFIGURE_ARGS+=--disable-wallet >-.endif >+WALLET_DESC= Build with support to create and manage a wallet > >-.include <bsd.port.pre.mk> >+OPTIONS_DEFAULT= WALLET > >-post-patch: >- ${MKDIR} ${WRKSRC}/src/build-aux >+WALLET_CONFIGURE_ENABLE= wallet >+WALLET_CPPFLAGS= -I${BDB_INCLUDE_DIR} >+WALLET_USE= BDB=48 >+WALLET_LDFLAGS= -L${BDB_LIB_DIR} >+ >+CONFIGURE_ARGS+= --without-cli >+. if defined(BITCOIN_DAEMON) >+CONFIGURE_ARGS+= --with-daemon \ >+ --without-gui >+ >+PLIST_FILES= bin/bitcoind >+. else >+BUILD_DEPENDS+= protoc:${PORTSDIR}/devel/protobuf >+LIB_DEPENDS+= libprotobuf.so:${PORTSDIR}/devel/protobuf >+ >+USES+= desktop-file-utils >+USE_QT4= corelib network gui qmake_build moc_build uic_build \ >+ rcc_build linguist_build >+PLIST_FILES= bin/bitcoin-qt share/applications/bitcoin-qt.desktop \ >+ share/pixmaps/bitcoin128.png >+ >+OPTIONS_DEFINE+= DBUS QRCODES >+ >+QRCODES_DESC= Build with QR code display >+ >+OPTIONS_DEFAULT+= QRCODES >+ >+DBUS_CONFIGURE_WITH= qtdbus >+DBUS_USE= QT4=dbus >+ >+QRCODES_CONFIGURE_WITH= qrencode >+QRCODES_LIB_DEPENDS= libqrencode.so:${PORTSDIR}/graphics/libqrencode >+ >+CONFIGURE_ARGS+= --with-gui \ >+ --without-daemon > > post-install: >-.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) >- ${REINPLACE_CMD} -e 's,=/usr,=${PREFIX},' ${WRKSRC}/contrib/debian/bitcoin-qt.desktop >- ${INSTALL} ${WRKSRC}/contrib/debian/bitcoin-qt.desktop ${STAGEDIR}${PREFIX}/share/applications >- ${INSTALL} ${WRKSRC}/share/pixmaps/bitcoin128.png ${STAGEDIR}${PREFIX}/share/pixmaps/ >+ ${REINPLACE_CMD} -e 's,=/usr,=${PREFIX},' \ >+ ${WRKSRC}/contrib/debian/bitcoin-qt.desktop >+ ${INSTALL} ${WRKSRC}/contrib/debian/bitcoin-qt.desktop \ >+ ${STAGEDIR}${PREFIX}/share/applications >+ ${INSTALL} ${WRKSRC}/share/pixmaps/bitcoin128.png \ >+ ${STAGEDIR}${PREFIX}/share/pixmaps/ >+. endif > .endif > >-.include <bsd.port.post.mk> >+post-patch: >+ ${MKDIR} ${WRKSRC}/src/build-aux >+ >+.include <bsd.port.mk> >diff -ruN /usr/ports/net-p2p/bitcoin/distinfo ./distinfo >--- /usr/ports/net-p2p/bitcoin/distinfo 2014-07-12 02:54:48.000000000 +1000 >+++ ./distinfo 2014-09-13 00:23:49.000000000 +1000 >@@ -1,2 +1,2 @@ >-SHA256 (bitcoin-0.9.2.tar.gz) = bb54f72f53498883ea9c8bdb9ae340c45fea8d4530f12fbaf34225839c439915 >-SIZE (bitcoin-0.9.2.tar.gz) = 5242752 >+SHA256 (bitcoin-0.9.2.1.tar.gz) = bd7609c0e9bc34a96695e4e206de90279999c89d7595b6a42dbf4fa6d242481b >+SIZE (bitcoin-0.9.2.1.tar.gz) = 5242694 >====> Cleaning up >===> Done >===> Generating patch >===> Viewing diff with more >diff -ruN /usr/ports/net-p2p/bitcoin-daemon/Makefile ./Makefile >--- /usr/ports/net-p2p/bitcoin-daemon/Makefile 2014-01-02 03:52:49.000000000 +1000 >+++ ./Makefile 2014-09-12 23:11:41.000000000 +1000 >@@ -1,9 +1,10 @@ > # $FreeBSD: head/net-p2p/bitcoin-daemon/Makefile 338383 2014-01-01 17:52:49Z swills $ > > PKGNAMESUFFIX= -daemon >-COMMENT= Virtual Peer-to-Peer Currency Client >+ > MASTERDIR= ${.CURDIR}/../bitcoin > DESCR= ${MASTERDIR}/pkg-descr >-SLAVE_PORT= yes >-OPTIONS_EXCLUDE= GUI QRCODES >+ >+BITCOIN_DAEMON= yes >+ > .include "${MASTERDIR}/Makefile" >====> Cleaning up >===> Done >===> Creating shar file >===> Viewing diff with more ># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># bitcoin-utils ># bitcoin-utils/Makefile ># >echo c - bitcoin-utils >mkdir -p bitcoin-utils > /dev/null 2>&1 >echo x - bitcoin-utils/Makefile >sed 's/^X//' >bitcoin-utils/Makefile << 'c1e63c0252970f23e9426c8d6b33181f' >X# $FreeBSD$ >X >XPKGNAMESUFFIX= -utils >X >XMASTERDIR= ${.CURDIR}/../bitcoin >XDESCR= ${MASTERDIR}/pkg-descr >X >XBITCOIN_UTILS= yes >X >X.include "${MASTERDIR}/Makefile" >c1e63c0252970f23e9426c8d6b33181f >exit > >====> Cleaning up >===> Done >--- /usr/ports/net-p2p/Makefile 2014-09-02 09:05:26.000000000 +1000 >+++ net-p2p/Makefile 2014-09-12 23:11:41.000000000 +1000 >@@ -7,6 +7,7 @@ > SUBDIR += amule-devel > SUBDIR += bitcoin > SUBDIR += bitcoin-daemon >+ SUBDIR += bitcoin-utils > SUBDIR += bitflu > SUBDIR += bitmessage > SUBDIR += bnbt
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
robbak:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 193424
:
147000
|
147001
|
147054
|
147055
|
147056
|
147062
|
147264
|
147990
|
152247
|
152253
|
153208
|
153209
|
153210
|
153211