Subversion Repositories pub

Compare Revisions

No changes between revisions

Ignore whitespace Rev 45 → Rev 46

/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/control
0,0 → 1,14
Source: nautilus-follow-symlink
Section: contrib/gnome
Priority: extra
Maintainer: Toni Corvera <outlyer@gmail.com>
Build-Depends: debhelper (>= 5.0.0), gcc, pkg-config, libglib2.0-dev (>= 2.16), libnautilus-extension-dev (>= 2.21), intltool (>= 0.18), gettext
Standards-Version: 3.6.2
Homepage: http://p.outlyer.net/nautilus-follow-symlink/
 
Package: nautilus-follow-symlink
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: nautilus plugin to open the location pointed by a symlink
This extension adds a context menu option to symbolic links to
folders which opens the pointed folder instead of the symbolic link.
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/compat
0,0 → 1,0
5
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/changelog
0,0 → 1,56
nautilus-follow-symlink (1.2.0-pon.1) unstable; urgency=low
 
* GNOME3-ready release. Finally.
* Bumped compatibility level to 5
* debian/rules: Added system-provided compiler flags
* debian/changelog: Changed upstream suffix to "pon"
* debian/control: Removed explicit dependency on nautilus
 
-- Toni Corvera <outlyer@gmail.com> Thu, 09 Aug 2012 19:02:40 +0200
 
nautilus-follow-symlink (1.2.0+pre.1-upstream.1) unstable; urgency=low
 
* Preliminary support for GNOME3.
 
-- Toni Corvera <outlyer@gmail.com> Thu, 07 Apr 2011 03:24:23 +0200
 
nautilus-follow-symlink (1.1.0-upstream.1) unstable; urgency=low
 
* New release.
* debian/control: Drop build-depencies on autotools
* debian/copyright: Updated template
* debian/README.Debian: Notes on being unofficial+upstream
 
-- Toni Corvera <outlyer@gmail.com> Thu, 30 Apr 2009 15:50:14 +0200
 
nautilus-follow-symlink (1.0.99+pre.2-upstream.0) experimental; urgency=low
 
* New pre-release
* Corrected package pre-version number order
 
-- Toni Corvera <outlyer@gmail.com> Wed, 04 Jun 2008 13:20:28 +0200
 
nautilus-follow-symlink (1.0.99-upstream.0-pre.1) experimental; urgency=low
 
* First pre-release for GNOME 2.22.
 
-- Toni Corvera <outlyer@gmail.com> Sat, 03 May 2008 21:48:02 +0200
 
nautilus-follow-symlink (1.0.2-out.1) unstable; urgency=low
 
* New upstream release.
 
-- Toni Corvera <outlyer@outlyer.net> Sat, 12 May 2007 21:35:32 +0200
 
nautilus-follow-symlink (1.0.1-out.1) unstable; urgency=low
 
* New upstream version
* debian/control: Bumped Build-Depends to automake1.9
 
-- Toni Corvera <outlyer@outlyer.net> Fri, 1 Dec 2006 23:40:48 +0100
 
nautilus-follow-symlink (1.0.0-out.1) unstable; urgency=low
 
* Initial release
 
-- Toni Corvera <outlyer@outlyer.net> Wed, 1 Nov 2006 21:21:48 +0100
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/rules
0,0 → 1,110
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
 
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
 
# http://wiki.debian.org/Hardening#dpkg-buildflags
CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
 
# Worarounds (couter-measures to Debian's [Sid] hardened flags
# as of this writing)
# doing funny stuff with printf-like funcions will make
# gcc paranoid, -Werror=format-security is defined in
# dpkg-buildflags
CFLAGS+=-Wno-error=format-security
# _FORTIFY_SOURCE=2 is defined in dpkg-buildflags, it produces
# bogus multiple-definition errors for unistd.h functions
CPPFLAGS+=-U_FORTIFY_SOURCE
 
 
configure: configure-stamp
configure-stamp:
dh_testdir
# Add here commands to configure the package.
test -f configure || ./dist clean gen
./configure --prefix=/usr --disable-static \
CFLAGS="$(CFLAGS)" \
CPPFLAGS="$(CPPFLAGS)" \
LDFLAGS="$(LDFLAGS)"
 
touch configure-stamp
 
 
build: build-stamp
 
build-stamp: configure-stamp
dh_testdir
 
# Add here commands to compile the package.
$(MAKE) FINAL=1
#docbook-to-man debian/nautilus-follow-symlink.sgml > nautilus-follow-symlink.1
 
touch build-stamp
 
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
 
# Add here commands to clean up after the build process.
-$(MAKE) clean
 
dh_clean
 
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
 
# Add here commands to install the package into debian/nautilus-follow-symlink.
$(MAKE) install DESTDIR=$(CURDIR)/debian/nautilus-follow-symlink
# There's really no need for the .la file
rm -f $(CURDIR)/debian/nautilus-follow-symlink/`pkg-config --variable=extensiondir libnautilus-extension`/*.la
 
 
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
 
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs ChangeLog
dh_installdocs
dh_installexamples
# dh_install
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installpam
# dh_installmime
# dh_installinit
# dh_installcron
# dh_installinfo
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_perl
# dh_python
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
 
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
Property changes:
Added: svn:executable
+*
\ No newline at end of property
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/copyright
0,0 → 1,35
This package was debianized by Toni Corvera <outlyer@gmail.com> on
Thu, 30 Apr 2009 15:47:55 +0200.
 
It can be downloaded from <http://p.outlyer.net/nautilus-follow-symlink>
 
Upstream Author:
 
Toni Corvera <outlyer@gmail.com>
 
Copyright:
 
Copyright (C) 2006, 2008, 2009 Toni Corvera
 
License:
 
This package is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
 
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
 
You should have received a copy of the GNU Lesser General Public
License along with this package; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
On Debian systems, the complete text of the GNU Lesser General
Public License can be found in `/usr/share/common-licenses/LGPL'.
 
The Debian packaging is (C) 2006-2009, Toni Corvera <outlyer@gmail.com> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
 
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/docs
0,0 → 1,0
AUTHORS
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/README.Debian
0,0 → 1,12
nautilus-follow-symlink for Debian
----------------------------------
 
This is an unofficial debian package created directly from the upstream
source, by the upstream author.
I'm no Debian Developer so I can't guarantee a strict following of the
Debian Policy.
 
I use Debian Sid, when possible I try to build against packages available in
Debian Stable but sometimes published packages will only work in Unstable.
 
-- Toni Corvera <outlyer@outlyer.net>, Thu, 30 Apr 2009 15:46:03 +0200
/nautilus-follow-symlink/branches/1.2.0/nautilus/debian/dirs
0,0 → 1,0
usr/lib