Compare commits

...

7 Commits
master ... el4

Author SHA1 Message Date
Simon Wesp 64d7dce774 add new source 2011-08-05 20:42:59 +02:00
Simon Wesp b8312a9692 ? 2011-08-05 20:36:21 +02:00
Simon Wesp 4102c36d60 New Upstream Release 2011-08-05 20:29:02 +02:00
Fedora Release Engineering 5cd186466e dist-git conversion 2010-07-29 16:19:13 +00:00
Bill Nottingham e1a572f1cd Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:12:16 +00:00
cassmodiah c8ee1f417f initial release 2009-10-13 17:23:54 +00:00
Kevin Fenzi 3f83ccbb43 Initialize branch EL-4 for yapet 2009-10-13 16:23:01 +00:00
5 changed files with 74 additions and 21 deletions

View File

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
yapet-0.6.tar.gz
/yapet-0.7.tar.bz2
/yapet-0.7.tar.gz

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: yapet
# $Id$
NAME := yapet
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -0,0 +1,3 @@
30ee2bf2d4658e667b8eea4a62704b76 yapet-0.6.tar.gz
2d70b470b40b9c662988f4b8f8d4b333 yapet-0.7.tar.bz2
b48a8f49e2f69b9ba12a5ec668422628 yapet-0.7.tar.gz

68
yapet.spec Normal file
View File

@ -0,0 +1,68 @@
Name: yapet
Version: 0.7
Release: 1%{?dist}
Summary: Curses based password encryption tool
Group: Applications/Productivity
License: GPLv3+ with exceptions
URL: http://www.guengel.ch/myapps/%{name}/
Source0: http://www.guengel.ch/myapps/%{name}/downloads/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: openssl-devel
BuildRequires: ncurses-devel
BuildRequires: gettext
%description
YAPET is a text based password manager using the Blowfish encryption algorithm.
Because of its small footprint and very few library dependencies, it is suited
for installing on desktop and server systems alike.
%prep
%setup -q
for i in README DESIGN
do
iconv -f iso-8859-1 -t utf-8 $i |sed 's|\r||g' > $i.utf8
touch -c -r $i $i.utf8
mv $i.utf8 $i
done
%build
%configure --enable-terminal-title --enable-csv2yapet --enable-pwgen --disable-build-doc --disable-source-doc --disable-install-doc
make %{?_smp_mflags} CXXFLAGS+="%{optflags}" CFLAGS+="%{optflags}"
%install
rm -rf %{buildroot}
make install INSTALL="install -p" DESTDIR=%{buildroot}
rm -rf %{buildroot}/%{_datadir}/applications/
%find_lang %{name}
%clean
rm -rf %{buildroot}
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING DESIGN LICENSE NEWS README THANKS TODO
%{_bindir}/%{name}
%{_bindir}/csv2%{name}
%{_mandir}/man*/*%{name}*
%changelog
* Fri Aug 05 2011 Simon Wesp <cassmodiah@fedoraproject.org> 0.7-1
- New Upstream Release
* Sun Oct 12 2009 Simon Wesp <cassmdodiah@fedoraproject.org> - 0.6-2
- Correct License and patch integration
- Add LICENSE to DOC
* Sun Oct 12 2009 Simon Wesp <cassmdodiah@fedoraproject.org> - 0.6-1
- Initial Package build