Bug 180225 - [NEW PORT] archivers/qpress: Portable file archiver using QuickLZ
Summary: [NEW PORT] archivers/qpress: Portable file archiver using QuickLZ
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-03 08:30 UTC by Oleksii Samorukov
Modified: 2013-07-14 22:20 UTC (History)
0 users

See Also:


Attachments
qpress-1.1.shar (1.72 KB, text/plain)
2013-07-03 08:30 UTC, Oleksii Samorukov
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Oleksii Samorukov freebsd_committer freebsd_triage 2013-07-03 08:30:00 UTC
qpress is a portable file archiver using QuickLZ and designed to utilize fast
storage systems to their max. It's often faster than file copy because the
destination is smaller than the source.

WWW: http://www.quicklz.com/

Generated with FreeBSD Port Tools 0.99
Comment 1 Pawel Pekala freebsd_committer freebsd_triage 2013-07-14 22:05:36 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-07-14 22:11:25 UTC
Author: pawel
Date: Sun Jul 14 21:11:16 2013
New Revision: 323005
URL: http://svnweb.freebsd.org/changeset/ports/323005

Log:
  qpress is a portable file archiver using QuickLZ and designed to utilize fast
  storage systems to their max. It's often faster than file copy because the
  destination is smaller than the source.
  
  WWW: http://www.quicklz.com/
  
  PR:		ports/180225
  Submitted by:	Alex Samorukov <samm@os2.kiev.ua>

Added:
  head/archivers/qpress/
  head/archivers/qpress/Makefile   (contents, props changed)
  head/archivers/qpress/distinfo   (contents, props changed)
  head/archivers/qpress/pkg-descr   (contents, props changed)
Modified:
  head/archivers/Makefile

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Sun Jul 14 20:58:34 2013	(r323004)
+++ head/archivers/Makefile	Sun Jul 14 21:11:16 2013	(r323005)
@@ -159,6 +159,7 @@
     SUBDIR += py-liblzma
     SUBDIR += py-librtfcomp
     SUBDIR += py-lzma
+    SUBDIR += qpress
     SUBDIR += quazip
     SUBDIR += rar
     SUBDIR += rox-archive

Added: head/archivers/qpress/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/qpress/Makefile	Sun Jul 14 21:11:16 2013	(r323005)
@@ -0,0 +1,27 @@
+# Created by: Alex Samorukov <samm@os2.kiev.ua>
+# $FreeBSD$
+
+PORTNAME=	qpress
+PORTVERSION=	1.1
+CATEGORIES=	archivers
+MASTER_SITES=	http://www.quicklz.com/
+DISTNAME=	qpress-11-source
+
+MAINTAINER=	samm@os2.kiev.ua
+COMMENT=	Portable file archiver using QuickLZ
+
+LICENSE=	GPLv2
+
+EXTRACT_AFTER_ARGS=	-d ${WRKSRC}
+USE_ZIP=	yes
+
+PLIST_FILES=	bin/qpress
+
+do-build:
+	cd ${WRKSRC} && \
+	${CXX} ${CXXFLAGS} -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/qpress ${DESTDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/archivers/qpress/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/qpress/distinfo	Sun Jul 14 21:11:16 2013	(r323005)
@@ -0,0 +1,2 @@
+SHA256 (qpress-11-source.zip) = 4bb66b1383bbc4c5490eec6088d37109e11205fb9f94ccd04cb84ec069829633
+SIZE (qpress-11-source.zip) = 26998

Added: head/archivers/qpress/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/qpress/pkg-descr	Sun Jul 14 21:11:16 2013	(r323005)
@@ -0,0 +1,5 @@
+qpress is a portable file archiver using QuickLZ and designed to utilize fast
+storage systems to their max. It's often faster than file copy because the
+destination is smaller than the source.
+
+WWW: http://www.quicklz.com/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Pawel Pekala freebsd_committer freebsd_triage 2013-07-14 22:13:28 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!