From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-fs/smbnetfs/Manifest | 2 ++ net-fs/smbnetfs/metadata.xml | 34 ++++++++++++++++++++++++++ net-fs/smbnetfs/smbnetfs-0.5.3b.ebuild | 40 +++++++++++++++++++++++++++++++ net-fs/smbnetfs/smbnetfs-0.6.0-r1.ebuild | 41 ++++++++++++++++++++++++++++++++ net-fs/smbnetfs/smbnetfs-0.6.0.ebuild | 41 ++++++++++++++++++++++++++++++++ 5 files changed, 158 insertions(+) create mode 100644 net-fs/smbnetfs/Manifest create mode 100644 net-fs/smbnetfs/metadata.xml create mode 100644 net-fs/smbnetfs/smbnetfs-0.5.3b.ebuild create mode 100644 net-fs/smbnetfs/smbnetfs-0.6.0-r1.ebuild create mode 100644 net-fs/smbnetfs/smbnetfs-0.6.0.ebuild (limited to 'net-fs/smbnetfs') diff --git a/net-fs/smbnetfs/Manifest b/net-fs/smbnetfs/Manifest new file mode 100644 index 000000000000..799a8c70ca22 --- /dev/null +++ b/net-fs/smbnetfs/Manifest @@ -0,0 +1,2 @@ +DIST smbnetfs-0.5.3b.tar.bz2 167258 SHA256 28743ac394927ea0f03561c572a47f4c5ff31c3c0c0786b225bb7a0227182bc9 SHA512 a4ab92147c45481534915eb3610d49fdf0ba74b743fac31ece3030dac77a31c9a8956dcb97a02a6170e0a24557d4bc7d5ae882fe09fb8b7a2b3887224356f2f8 WHIRLPOOL b4cba3f6c368e2a87001d1780d06b9230da8c56f628735c1ab8840b7e2194703d6dbd308098e0d451c29da29b576fea62a5ba8d16730ebe8caf828be97130685 +DIST smbnetfs-0.6.0.tar.bz2 147946 SHA256 6dd20bf01201f8be4b5d20cfbfba627f6825bcb60fe71f54d8c8de18509e519b SHA512 5bc5327b1087d051cbedda40ea1183c2515e3a42b2027812c6528bbbcb736b7f92f95b3c7b9cc53da99c2138c945ceb517042359029cbe0ab8cd887839711ced WHIRLPOOL d6cce90507de276169bdbb1ce9c3579bc08713dd0df1020a58cbced0989a115124988f05317a7907aab98b391fd78f8d3aea3861960db7e4f5db4e4ae76894df diff --git a/net-fs/smbnetfs/metadata.xml b/net-fs/smbnetfs/metadata.xml new file mode 100644 index 000000000000..e66bb8abaa12 --- /dev/null +++ b/net-fs/smbnetfs/metadata.xml @@ -0,0 +1,34 @@ + + + + proxy-maintainers + + slyfox@gentoo.org + Sergei Trofimovich + Primary Maintainer + + + SMBNetFS is a Linux/FreeBSD FUSE filesystem that allow you to use samba/microsoft network. + + Features: + - Linux-2.6 and FreeBSD >= 6.0 are supported (Linux-2.4 is not tested) + - you can use Samba/Microsoft network as a regular unix filesystem + - workgroup/computer/share entries are dynamically created + - windows domain supported + - user defined workgroup/link/hosts are supported + - national character supported + - in config files you can specify different user/password to access different + network shares + - command "cd mountpoint/username:password@computer_or_ip" allows you to + access "computer_or_ip" as user "username" with password "password" + (this is insecure, but usefull) + - the program is multithreaded, so simultaneous access to a file/share + is possible + + + Use the gnome-base/gnome-keyring for password management. + + + smbnetfs + + diff --git a/net-fs/smbnetfs/smbnetfs-0.5.3b.ebuild b/net-fs/smbnetfs/smbnetfs-0.5.3b.ebuild new file mode 100644 index 000000000000..190500dd9e24 --- /dev/null +++ b/net-fs/smbnetfs/smbnetfs-0.5.3b.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils readme.gentoo + +DESCRIPTION="FUSE filesystem for SMB shares" +HOMEPAGE="http://sourceforge.net/projects/smbnetfs" +SRC_URI="mirror://sourceforge/smbnetfs/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~arm-linux ~x86-linux" +IUSE="gnome" + +RDEPEND=">=sys-fs/fuse-2.3:= + >=net-fs/samba-3.2:=[smbclient] + gnome? ( gnome-base/gnome-keyring:= )" + +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/make" + +DISABLE_AUTOFORMATTING=yes +DOC_CONTENTS=" +For quick usage, exec: +'modprobe fuse' +'smbnetfs -oallow_other /mnt/samba' +" + +src_configure() { + econf $(use_with gnome gnome-keyring) +} + +src_install() { + default + readme.gentoo_create_doc + dodoc AUTHORS ChangeLog +} diff --git a/net-fs/smbnetfs/smbnetfs-0.6.0-r1.ebuild b/net-fs/smbnetfs/smbnetfs-0.6.0-r1.ebuild new file mode 100644 index 000000000000..8def3f231cf6 --- /dev/null +++ b/net-fs/smbnetfs/smbnetfs-0.6.0-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils readme.gentoo + +DESCRIPTION="FUSE filesystem for SMB shares" +HOMEPAGE="http://sourceforge.net/projects/smbnetfs" +SRC_URI="mirror://sourceforge/smbnetfs/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~arm-linux ~x86-linux" +IUSE="gnome" + +RDEPEND=">=sys-fs/fuse-2.3:= + >=net-fs/samba-3.2:=[smbclient(+)] + >=dev-libs/glib-2.30:= + gnome? ( gnome-base/gnome-keyring:= )" + +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/make" + +DISABLE_AUTOFORMATTING=yes +DOC_CONTENTS=" +For quick usage, exec: +'modprobe fuse' +'smbnetfs -oallow_other /mnt/samba' +" + +src_configure() { + econf $(use_with gnome gnome-keyring) +} + +src_install() { + default + readme.gentoo_create_doc + dodoc AUTHORS ChangeLog +} diff --git a/net-fs/smbnetfs/smbnetfs-0.6.0.ebuild b/net-fs/smbnetfs/smbnetfs-0.6.0.ebuild new file mode 100644 index 000000000000..0689793a9c99 --- /dev/null +++ b/net-fs/smbnetfs/smbnetfs-0.6.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils readme.gentoo + +DESCRIPTION="FUSE filesystem for SMB shares" +HOMEPAGE="http://sourceforge.net/projects/smbnetfs" +SRC_URI="mirror://sourceforge/smbnetfs/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~arm-linux ~x86-linux" +IUSE="gnome" + +RDEPEND=">=sys-fs/fuse-2.3:= + >=net-fs/samba-3.2:=[smbclient] + >=dev-libs/glib-2.30:= + gnome? ( gnome-base/gnome-keyring:= )" + +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/make" + +DISABLE_AUTOFORMATTING=yes +DOC_CONTENTS=" +For quick usage, exec: +'modprobe fuse' +'smbnetfs -oallow_other /mnt/samba' +" + +src_configure() { + econf $(use_with gnome gnome-keyring) +} + +src_install() { + default + readme.gentoo_create_doc + dodoc AUTHORS ChangeLog +} -- cgit v1.2.3-65-gdbad