Compare commits

...
This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

32 commits

Author SHA1 Message Date
Miro Hrončok
4180a8ccaf Orphaned for 6+ weeks 2018-12-24 13:51:52 +01:00
Fedora Release Engineering
424b507686 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-07-14 09:03:11 +00:00
Fedora Release Engineering
71dd897860 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-02-09 21:15:19 +00:00
Fedora Release Engineering
e0ad5084c4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild 2017-08-03 10:25:32 +00:00
Fedora Release Engineering
95f3b947ae - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild 2017-07-27 21:49:51 +00:00
Fedora Release Engineering
d720aea25c - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild 2017-02-11 17:36:05 +00:00
Dan Horák
497c1d12bd - remove ExcludeArch and modernize spec 2016-11-09 14:54:20 +01:00
Richard W.M. Jones
f473a5aa5b Rebuild for OCaml 4.04.0. 2016-11-05 10:14:50 +00:00
Fedora Release Engineering
5c7fa292b6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-02-05 03:13:22 +00:00
Dennis Gilmore
adddbd673e - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-19 02:40:24 +00:00
8149918106 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild 2014-08-18 09:04:37 +00:00
Dennis Gilmore
1dc4a550c8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-08 00:03:47 -05:00
Dennis Gilmore
c7244a6fff - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-04 02:26:28 -05:00
Dennis Gilmore
1e98b95ee1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-14 21:23:15 -06:00
Till Maas
e805043f80 fix patch 2012-08-04 20:30:33 +02:00
Till Maas
0f212b66b9 fix patch 2012-07-23 23:47:56 +02:00
Till Maas
b7c0f01217 add missing patch 2012-07-23 23:36:41 +02:00
Till Maas
4d79de7f23 Fix configure to properly detect ocaml 4 and greater 2012-07-23 23:19:26 +02:00
Dennis Gilmore
1ef2799e67 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-21 23:12:47 -05:00
Dennis Gilmore
a694d486fc - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-14 02:33:25 -06:00
Dennis Gilmore
eb88db9491 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 21:23:18 -06:00
Till Maas
02f0764b1a - Update to new release
- disable parallel make: https://bugs.launchpad.net/bugs/691827
2010-12-18 21:26:36 +01:00
Fedora Release Engineering
5d76100792 dist-git conversion 2010-07-29 15:29:47 +00:00
Bill Nottingham
f8537a6fd2 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:43:18 +00:00
Jesse Keating
5e7c379338 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 07:32:04 +00:00
c468749ccf - ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
(added sparc64 per request from the sparc maintainer)
2009-04-16 09:26:15 +00:00
Jesse Keating
9f378b2453 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-26 07:30:15 +00:00
60241e420d - Add Requires: remind 2008-12-09 22:53:51 +00:00
e849b104bb - fix BuildRequires, camlp4 is not needed/supported as BR anymore 2008-07-08 13:06:53 +00:00
600d70e488 - fix BuildRequires, camlp4 is not needed/supported as BR anymore 2008-07-08 13:01:33 +00:00
40d29a5afc - fix BuildRequires, the ocaml-camlp4-devel seems to have vanished 2008-07-07 23:04:46 +00:00
7a61b0abe2 remove deprecated comment 2008-07-07 22:12:13 +00:00
7 changed files with 1 additions and 129 deletions

View file

@ -1 +0,0 @@
wyrd-1.4.4.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: wyrd
# $Id$
NAME := wyrd
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)

1
dead.package Normal file
View file

@ -0,0 +1 @@
Orphaned for 6+ weeks

View file

@ -1 +0,0 @@
a376c05ba614625da06082d850c742c7 wyrd-1.4.4.tar.gz

View file

@ -1,21 +0,0 @@
diff -ru wyrd-1.4.3/wyrdrc wyrd-1.4.3.p/wyrdrc
--- wyrd-1.4.3/wyrdrc 2007-08-18 05:30:06.000000000 +0200
+++ wyrd-1.4.3.p/wyrdrc 2007-08-18 10:26:38.000000000 +0200
@@ -1,3 +1,8 @@
+#
+# Do not edit this file!
+# Edit /etc/wyrdrc.local instead
+#
+
# Wyrd run-configuration file
# command for the Remind executable
@@ -165,6 +170,7 @@
color left_divider cyan blue
color right_divider cyan blue
-
+# Put different default values in this file
+include "/etc/wyrdrc.local"
# arch-tag: DO_NOT_CHANGE_ee9bb855-2fde-4a61-8645-8ba31b35eaab

View file

@ -1 +0,0 @@
# Use this file for your local wyrd configuration changes

View file

@ -1,84 +0,0 @@
Name: wyrd
Version: 1.4.4
Release: 1%{?dist}
Summary: A ncurses frontend for the calendar application remind
Group: Applications/Productivity
License: GPLv2
URL: http://pessimization.com/software/wyrd/
Source0: http://pessimization.com/software/wyrd/wyrd-%{version}.tar.gz
Source1: wyrd-wyrdrc.local
Patch0: wyrd-1.4.3-wyrdrc-local.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# There is no ocaml for ppc64
# Bugs: https://bugzilla.redhat.com/344581 (wyrd)
# https://bugzilla.redhat.com/239077 (ocaml)
#ExcludeArch: ppc64
BuildRequires: ocaml remind ncurses-devel
# can be removed when F7 is EOL
BuildRequires: camlp4
# Since F8 ocaml-camlp4-devel instead of camlp4 is needed
%if 0%{?fedora} >= 8
BuildRequires: ocaml-camlp4-devel
%endif
%description
wyrd is a ncurses frontend for the calendar application remind.
%prep
%setup -q
%patch0 -p1
%build
%configure --enable-utf8
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
mkdir $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
install --mode 0644 -D %SOURCE1 $RPM_BUILD_ROOT/%{_sysconfdir}/wyrdrc.local
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc COPYING ChangeLog doc/TODO doc/manual.pdf doc/manual.html
%config %{_sysconfdir}/wyrdrc
%config(noreplace) %{_sysconfdir}/wyrdrc.local
%{_bindir}/wyrd
%{_mandir}/man1/wyrd.1*
%{_mandir}/man5/wyrdrc.5*
%changelog
* Fri Feb 22 2008 Till Maas <opensource till name> - 1.4.4-1
- update to latest version that fixes CVE-2008-0806 in a different way
- update URL/SOURCE to new location
- remove ExcludeArch, because ocaml is now available for ppc64
* Thu Feb 21 2008 Till Maas <opensource till name> - 1.4.3b-1
- update to latest version
- include patch from debian to fix CVE-2008-0806
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.3-4
- Autorebuild for GCC 4.3
* Sun Oct 21 2007 Till Maas <opensource till name> - 1.4.3-3
- fix permissions of local config file
- use globbing for manpages (the may not be gzipped)
- add ExludeArch ppc64
* Tue Aug 28 2007 Till Maas <opensource till name> - 1.4.3-2
- Fix BuildRequires for F8
* Sat Aug 18 2007 Till Maas <opensource till name> - 1.4.3-1
- initial spec for Fedora