public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/mktorrent: mktorrent-1.0-r1.ebuild ChangeLog
@ 2015-05-02 15:38 Andreas Huettel (dilfridge)
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Huettel (dilfridge) @ 2015-05-02 15:38 UTC (permalink / raw
  To: gentoo-commits

dilfridge    15/05/02 15:38:04

  Modified:             ChangeLog
  Added:                mktorrent-1.0-r1.ebuild
  Log:
  Port to EAPI=5
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 84AD142F)

Revision  Changes    Path
1.12                 net-p2p/mktorrent/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	20 May 2011 12:11:37 -0000	1.11
+++ ChangeLog	2 May 2015 15:38:04 -0000	1.12
@@ -1,6 +1,12 @@
 # ChangeLog for net-p2p/mktorrent
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.11 2011/05/20 12:11:37 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.12 2015/05/02 15:38:04 dilfridge Exp $
+
+*mktorrent-1.0-r1 (02 May 2015)
+
+  02 May 2015; Andreas K. Huettel <dilfridge@gentoo.org>
+  +mktorrent-1.0-r1.ebuild:
+  Port to EAPI=5
 
   20 May 2011; Justin Lecher <jlec@gentoo.org> mktorrent-1.0.ebuild,
   metadata.xml:



1.1                  net-p2p/mktorrent/mktorrent-1.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: mktorrent-1.0-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v 1.1 2015/05/02 15:38:04 dilfridge Exp $

EAPI=5
inherit toolchain-funcs

DESCRIPTION="Simple command line utility to create BitTorrent metainfo files"
HOMEPAGE="http://mktorrent.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="threads +ssl debug"

RDEPEND="ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}"

src_compile() {
	tc-export CC
	MAKEPARAM="USE_LONG_OPTIONS=1"
	MAKEPARAM="${MAKEPARAM} USE_LARGE_FILES=1"
	use debug && MAKEPARAM="${MAKEPARAM} DEBUG=1"
	use ssl && MAKEPARAM="${MAKEPARAM} USE_OPENSSL=1"
	use threads && MAKEPARAM="${MAKEPARAM} USE_PTHREADS=1"

	emake ${MAKEPARAM}
}

src_install() {
	dobin ${PN}
	dodoc README
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/mktorrent: mktorrent-1.0-r1.ebuild ChangeLog
@ 2015-05-22  9:49 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-05-22  9:49 UTC (permalink / raw
  To: gentoo-commits

ago         15/05/22 09:49:18

  Modified:             mktorrent-1.0-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #540794
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-p2p/mktorrent/mktorrent-1.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?r1=1.2&r2=1.3

Index: mktorrent-1.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mktorrent-1.0-r1.ebuild	2 May 2015 15:39:37 -0000	1.2
+++ mktorrent-1.0-r1.ebuild	22 May 2015 09:49:18 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v 1.2 2015/05/02 15:39:37 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v 1.3 2015/05/22 09:49:18 ago Exp $
 
 EAPI=5
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="threads +ssl debug"
 
 RDEPEND="ssl? ( dev-libs/openssl:0 )"



1.14                 net-p2p/mktorrent/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	2 May 2015 15:39:37 -0000	1.13
+++ ChangeLog	22 May 2015 09:49:18 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/mktorrent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.13 2015/05/02 15:39:37 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.14 2015/05/22 09:49:18 ago Exp $
+
+  22 May 2015; Agostino Sarubbo <ago@gentoo.org> mktorrent-1.0-r1.ebuild:
+  Stable for amd64, wrt bug #540794
 
   02 May 2015; Andreas K. Huettel <dilfridge@gentoo.org>
   mktorrent-1.0-r1.ebuild:
@@ -61,4 +64,3 @@
   +mktorrent-0.2.ebuild:
   New package, initial ebuild by Kalidarn <dcecchin at gmail dot com>, bug
   #195934
-





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/mktorrent: mktorrent-1.0-r1.ebuild ChangeLog
@ 2015-05-23 13:52 Pacho Ramos (pacho)
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos (pacho) @ 2015-05-23 13:52 UTC (permalink / raw
  To: gentoo-commits

pacho       15/05/23 13:52:46

  Modified:             mktorrent-1.0-r1.ebuild ChangeLog
  Log:
  x86 stable, bug #540794
  
  (Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  net-p2p/mktorrent/mktorrent-1.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild?r1=1.3&r2=1.4

Index: mktorrent-1.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mktorrent-1.0-r1.ebuild	22 May 2015 09:49:18 -0000	1.3
+++ mktorrent-1.0-r1.ebuild	23 May 2015 13:52:45 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v 1.3 2015/05/22 09:49:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild,v 1.4 2015/05/23 13:52:45 pacho Exp $
 
 EAPI=5
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="threads +ssl debug"
 
 RDEPEND="ssl? ( dev-libs/openssl:0 )"



1.15                 net-p2p/mktorrent/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/mktorrent/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	22 May 2015 09:49:18 -0000	1.14
+++ ChangeLog	23 May 2015 13:52:45 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/mktorrent
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.14 2015/05/22 09:49:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mktorrent/ChangeLog,v 1.15 2015/05/23 13:52:45 pacho Exp $
+
+  23 May 2015; Pacho Ramos <pacho@gentoo.org> mktorrent-1.0-r1.ebuild:
+  x86 stable, bug #540794
 
   22 May 2015; Agostino Sarubbo <ago@gentoo.org> mktorrent-1.0-r1.ebuild:
   Stable for amd64, wrt bug #540794





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-05-23 13:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-22  9:49 [gentoo-commits] gentoo-x86 commit in net-p2p/mktorrent: mktorrent-1.0-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-23 13:52 Pacho Ramos (pacho)
2015-05-02 15:38 Andreas Huettel (dilfridge)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox