rpms/sobby/devel .cvsignore, 1.4, 1.5 sobby.spec, 1.6, 1.7 sources, 1.4, 1.5
by fedora-extras-commits@redhat.com
Author: lmacken
Update of /cvs/extras/rpms/sobby/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27750
Modified Files:
.cvsignore sobby.spec sources
Log Message:
0.4.1
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/sobby/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 4 May 2006 04:48:43 -0000 1.4
+++ .cvsignore 1 Sep 2006 02:40:14 -0000 1.5
@@ -1 +1 @@
-sobby-0.4.0rc1.tar.gz
+sobby-0.4.1.tar.gz
Index: sobby.spec
===================================================================
RCS file: /cvs/extras/rpms/sobby/devel/sobby.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sobby.spec 13 Jul 2006 01:28:47 -0000 1.6
+++ sobby.spec 1 Sep 2006 02:40:14 -0000 1.7
@@ -1,14 +1,12 @@
-%define _rc rc1
-
Name: sobby
-Version: 0.4.0
-Release: 3.%{_rc}%{?dist}
+Version: 0.4.1
+Release: 1%{?dist}
Summary: Standalone obby server
Group: Applications/Internet
License: GPL
URL: http://gobby.0x539.de
-Source0: http://releases.0x539.de/sobby/%{name}-%{version}%{_rc}.tar.gz
+Source0: http://releases.0x539.de/sobby/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: obby-devel, glibmm24-devel, libxml++-devel
@@ -18,7 +16,7 @@
%prep
-%setup -q -n %{name}-%{version}%{_rc}
+%setup -q
%build
@@ -43,6 +41,9 @@
%changelog
+* Thu Aug 31 2006 Luke Macken <lmacken(a)redhat.com> - 0.4.1-1
+- 0.4.1
+
* Wed Jul 12 2006 Luke Macken <lmacken(a)redhat.com> - 0.4.0-3.rc1
- Rebuild
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/sobby/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 4 May 2006 04:48:43 -0000 1.4
+++ sources 1 Sep 2006 02:40:14 -0000 1.5
@@ -1 +1 @@
-43bb4cbb9949179b3ecb1cbc0b447e24 sobby-0.4.0rc1.tar.gz
+126a32a448f8b84e589258522149ffad sobby-0.4.1.tar.gz
15 years, 8 months
rpms/paps/FC-5 paps-formfeed.patch, NONE, 1.1 paps.spec, 1.11, 1.12 paps-0.6.3-formfeed.patch, 1.1, NONE
by fedora-extras-commits@redhat.com
Author: tagoh
Update of /cvs/extras/rpms/paps/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27607
Modified Files:
paps.spec
Added Files:
paps-formfeed.patch
Removed Files:
paps-0.6.3-formfeed.patch
Log Message:
* Fri Sep 1 2006 Akira TAGOH <tagoh(a)redhat.com> - 0.6.6-7
- paps-formfeed.patch: fixed to not insert an extra line in next page.
(#202638)
paps-formfeed.patch:
--- NEW FILE paps-formfeed.patch ---
diff -ruN -x 'Makefile*' -x autom4te.cache -x 'config*' -x doc -x libtool -x .deps -x .libs -x '*a' -x '*o' -x paps -x '*orig' -x 'stamp*' -x 'test*' paps-0.6.6.orig/src/paps.c paps-0.6.6/src/paps.c
--- paps-0.6.6.orig/src/paps.c 2006-05-03 18:09:58.000000000 +0900
+++ paps-0.6.6/src/paps.c 2006-08-31 17:57:47.000000000 +0900
@@ -88,6 +88,7 @@
PangoLayoutLine *pango_line;
PangoRectangle logical_rect;
PangoRectangle ink_rect;
+ int formfeed;
} LineLink;
typedef struct _Paragraph Paragraph;
@@ -98,6 +99,7 @@
char *text;
int length;
int height; /* Height, in pixels */
+ int formfeed;
PangoLayout *layout;
};
@@ -428,7 +430,7 @@
fprintf (stderr, "%s: Invalid character in input\n", g_get_prgname ());
wc = 0;
}
- if (!*p || !wc || wc == '\n')
+ if (!*p || !wc || wc == '\n' || wc == '\f')
{
Paragraph *para = g_new (Paragraph, 1);
para->text = last_para;
@@ -442,6 +444,11 @@
pango_layout_set_width (para->layout, paint_width * PANGO_SCALE);
para->height = 0;
+ if (wc == '\f')
+ para->formfeed = 1;
+ else
+ para->formfeed = 0;
+
last_para = next;
result = g_list_prepend (result, para);
@@ -469,6 +476,7 @@
while(par_list)
{
int para_num_lines, i;
+ LineLink *line_link;
Paragraph *para = par_list->data;
para_num_lines = pango_layout_get_line_count(para->layout);
@@ -476,12 +484,15 @@
for (i=0; i<para_num_lines; i++)
{
PangoRectangle logical_rect, ink_rect;
- LineLink *line_link = g_new(LineLink, 1);
+ line_link = g_new(LineLink, 1);
+ line_link->formfeed = 0;
line_link->pango_line = pango_layout_get_line(para->layout, i);
pango_layout_line_get_extents(line_link->pango_line,
&ink_rect, &logical_rect);
line_link->logical_rect = logical_rect;
+ if (para->formfeed && i == (para_num_lines - 1))
+ line_link->formfeed = 1;
line_link->ink_rect = ink_rect;
line_list = g_list_prepend(line_list, line_link);
}
@@ -504,6 +515,7 @@
int column_y_pos = 0;
int page_idx = 1;
int pango_column_height = page_layout->column_height * page_layout->pt_to_pixel * PANGO_SCALE;
+ LineLink *prev_line_link = NULL;
start_page(OUT, page_idx);
@@ -516,8 +528,9 @@
PangoLayoutLine *line = line_link->pango_line;
/* Check if we need to move to next column */
- if (column_y_pos + line_link->logical_rect.height
- >= pango_column_height)
+ if ((column_y_pos + line_link->logical_rect.height
+ >= pango_column_height) ||
+ (prev_line_link && prev_line_link->formfeed))
{
column_idx++;
column_y_pos = 0;
@@ -547,6 +560,7 @@
column_y_pos += line_link->logical_rect.height;
pango_lines = pango_lines->next;
+ prev_line_link = line_link;
}
eject_page(OUT);
return page_idx;
Index: paps.spec
===================================================================
RCS file: /cvs/extras/rpms/paps/FC-5/paps.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- paps.spec 29 Aug 2006 12:47:49 -0000 1.11
+++ paps.spec 1 Sep 2006 02:30:02 -0000 1.12
@@ -1,6 +1,6 @@
Name: paps
Version: 0.6.6
-Release: 6%{?dist}
+Release: 7%{?dist}
License: LGPL
URL: http://paps.sourceforge.net/
@@ -9,7 +9,7 @@
BuildRequires: pango-devel automake autoconf libtool doxygen
Patch0: paps-makefile.patch
## http://sourceforge.net/mailarchive/forum.php?thread_id=9329194&forum_id=4...
-Patch2: paps-0.6.3-formfeed.patch
+Patch2: paps-formfeed.patch
## http://sourceforge.net/tracker/index.php?func=detail&aid=1494769&group_id...
Patch3: paps-0.6.6-encoding.patch
## fixed in CVS
@@ -69,6 +69,10 @@
%changelog
+* Fri Sep 1 2006 Akira TAGOH <tagoh(a)redhat.com> - 0.6.6-7
+- paps-formfeed.patch: fixed to not insert an extra line in next page.
+ (#202638)
+
* Tue Aug 29 2006 Akira TAGOH <tagoh(a)redhat.com> - 0.6.6-6
- paps-0.6.6-wordwrap.patch: applied to do a wordwrap.
- paps-0.6.6-cpilpi.patch: add --cpi and --lpi option to support the characters
--- paps-0.6.3-formfeed.patch DELETED ---
15 years, 8 months
rpms/gobby/devel .cvsignore, 1.8, 1.9 gobby.spec, 1.18, 1.19 sources, 1.8, 1.9
by fedora-extras-commits@redhat.com
Author: lmacken
Update of /cvs/extras/rpms/gobby/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27536
Modified Files:
.cvsignore gobby.spec sources
Log Message:
0.4.1
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/gobby/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 20 Aug 2006 19:47:13 -0000 1.8
+++ .cvsignore 1 Sep 2006 02:29:26 -0000 1.9
@@ -1 +1 @@
-gobby-0.4.0rc4.tar.gz
+gobby-0.4.1.tar.gz
Index: gobby.spec
===================================================================
RCS file: /cvs/extras/rpms/gobby/devel/gobby.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- gobby.spec 21 Aug 2006 16:44:21 -0000 1.18
+++ gobby.spec 1 Sep 2006 02:29:26 -0000 1.19
@@ -1,14 +1,12 @@
-%define _rc rc4
-
Name: gobby
-Version: 0.4.0
-Release: 10.%{_rc}%{?dist}
+Version: 0.4.1
+Release: 1%{?dist}
Summary: Free collaborative editor
Group: Applications/Internet
License: GPL
URL: http://gobby.0x539.de
-Source0: http://releases.0x539.de/gobby/%{name}-%{version}%{_rc}.tar.gz
+Source0: http://releases.0x539.de/gobby/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libxml++-devel, gtksourceview-devel, gtkmm24-devel, obby-devel
@@ -28,7 +26,7 @@
%prep
-%setup -q -n %{name}-%{version}%{_rc}
+%setup -q
%build
@@ -70,6 +68,9 @@
%changelog
+* Thu Aug 31 2006 Luke Macken <lmacken(a)redhat.com> - 0.4.1-1
+- 0.4.1
+
* Mon Aug 21 2006 Luke Macken <lmacken(a)redhat.com> - 0.4.0-10.rc4
- Remove gobby-0.4.0rc4-localedir.patch
- Add gettext-devel to BuildRequires
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/gobby/devel/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 20 Aug 2006 19:47:13 -0000 1.8
+++ sources 1 Sep 2006 02:29:26 -0000 1.9
@@ -1 +1 @@
-d8c8e682afcbc69e9390a3e4c5c0501a gobby-0.4.0rc4.tar.gz
+a2c79bdda652a2d74fec104235d27bc0 gobby-0.4.1.tar.gz
15 years, 8 months
owners owners.list,1.1480,1.1481
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/owners
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27475
Modified Files:
owners.list
Log Message:
Adding python-pyspf and python-pydns.
Index: owners.list
===================================================================
RCS file: /cvs/extras/owners/owners.list,v
retrieving revision 1.1480
retrieving revision 1.1481
diff -u -r1.1480 -r1.1481
--- owners.list 31 Aug 2006 22:44:22 -0000 1.1480
+++ owners.list 1 Sep 2006 02:25:23 -0000 1.1481
@@ -1689,6 +1689,8 @@
Fedora Extras|python-psyco|Python specializing compiler|shahms@shahms.com|extras-qa(a)fedoraproject.org|
Fedora Extras|python-psycopg|Alternative high-speed Postgres DB adapter|shahms@shahms.com|extras-qa(a)fedoraproject.org|
Fedora Extras|python-psycopg2|A PostgreSQL database adapter for Python|devrim@commandprompt.com|extras-qa(a)fedoraproject.org|
+Fedora Extras|python-pydns|Python module for DNS (Domain Name Service)|jafo-redhat@tummy.com|extras-qa(a)fedoraproject.org|
+Fedora Extras|python-pyspf|Python module and programs for SPF (Sender Policy Framework)|jafo-redhat@tummy.com|extras-qa(a)fedoraproject.org|
Fedora Extras|python-quixote|A highly Pythonic Web application framework|shahms@shahms.com|extras-qa(a)fedoraproject.org|
Fedora Extras|python-reportlab|Python PDF generation library|bdpepple@ameritech.net|extras-qa(a)fedoraproject.org|
Fedora Extras|python-ruledispatch|A generic function package for Python|lmacken@redhat.com|extras-qa@fedoraproject.org|gauret(a)free.fr
15 years, 8 months
rpms/python-pyspf/devel python-pyspf.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/rpms/python-pyspf/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27389/devel
Modified Files:
.cvsignore sources
Added Files:
python-pyspf.spec
Log Message:
auto-import python-pyspf-1.7-5 on branch devel from python-pyspf-1.7-5.src.rpm
--- NEW FILE python-pyspf.spec ---
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: python-pyspf
Version: 1.7
Release: 5%{?dist}
Summary: Python module and programs for SPF (Sender Policy Framework)
Group: Development/Languages
License: Python Software Foundation License
URL: http://sourceforge.net/forum/forum.php?forum_id=596908
Source0: http://easynews.dl.sourceforge.net/sourceforge/pymilter/pyspf-%{version}....
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: python-setuptools
Requires: python-pydns
%description
SPF does email sender validation. For more information about SPF,
please see http://spf.pobox.com.
This SPF client is intended to be installed on the border MTA, checking
if incoming SMTP clients are permitted to forward mail. The SPF check
should be done during the MAIL FROM:<...> command.
%define namewithoutpythonprefix %(echo %{name} | sed 's/^python-//')
%prep
%setup -q -n %{namewithoutpythonprefix}-%{version}
%build
%{__python} setup.py build
%install
rm -rf $RPM_BUILD_ROOT
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
mv $RPM_BUILD_ROOT/usr/bin/type99.py $RPM_BUILD_ROOT/usr/bin/type99
mv $RPM_BUILD_ROOT/usr/bin/spfquery.py $RPM_BUILD_ROOT/usr/bin/spfquery
rm -f $RPM_BUILD_ROOT/usr/bin/*.py{o,c}
sed -i -e 's|^#!/usr/bin/env python$||' $RPM_BUILD_ROOT/%{python_sitelib}/spf.py
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc CHANGELOG PKG-INFO README rfc4408-tests.yml test.yml
%{python_sitelib}/spf.py*
/usr/bin/type99
/usr/bin/spfquery
%changelog
* Thu Aug 31 2006 Sean Reifschneider <jafo(a)tummy.com> 1.7-5
- Changing SPEC file where it strips out the shebang line.
* Thu Aug 31 2006 Sean Reifschneider <jafo(a)tummy.com> 1.7-4
- Adding -2 .spec file changelog entry.
* Wed Aug 30 2006 Sean Reifschneider <jafo(a)tummy.com> 1.7-3
- Changes based on review from Kevin Fenzi.
* Wed Aug 30 2006 Sean Reifschneider <jafo(a)tummy.com> 1.7-3
- Changes based on review from Kevin Fenzi.
* Tue Aug 29 2006 Sean Reifschneider <jafo(a)tummy.com> 1.7-1
- Initial RPM spec file.
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/python-pyspf/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 1 Sep 2006 02:23:54 -0000 1.1
+++ .cvsignore 1 Sep 2006 02:24:13 -0000 1.2
@@ -0,0 +1 @@
+pyspf-1.7.tar.gz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/python-pyspf/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 1 Sep 2006 02:23:54 -0000 1.1
+++ sources 1 Sep 2006 02:24:13 -0000 1.2
@@ -0,0 +1 @@
+eabc78b67018efdfea68ae9b9d545e80 pyspf-1.7.tar.gz
15 years, 8 months
rpms/python-pyspf import.log,1.1,1.2
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/rpms/python-pyspf
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27389
Modified Files:
import.log
Log Message:
auto-import python-pyspf-1.7-5 on branch devel from python-pyspf-1.7-5.src.rpm
Index: import.log
===================================================================
RCS file: /cvs/extras/rpms/python-pyspf/import.log,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- import.log 1 Sep 2006 02:23:53 -0000 1.1
+++ import.log 1 Sep 2006 02:24:13 -0000 1.2
@@ -0,0 +1 @@
+python-pyspf-1_7-5:HEAD:python-pyspf-1.7-5.src.rpm:1157077450
15 years, 8 months
rpms/python-pyspf/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/rpms/python-pyspf/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27323/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module python-pyspf
--- NEW FILE .cvsignore ---
***** Error reading new file: [Errno 2] No such file or directory: 'Makefile'
--- NEW FILE sources ---
15 years, 8 months
rpms/python-pyspf Makefile,NONE,1.1 import.log,NONE,1.1
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/rpms/python-pyspf
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27323
Added Files:
Makefile import.log
Log Message:
Setup of module python-pyspf
--- NEW FILE Makefile ---
# Top level Makefile for module python-pyspf
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
--- NEW FILE import.log ---
15 years, 8 months
rpms/python-pyspf/devel - New directory
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/rpms/python-pyspf/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27278/python-pyspf/devel
Log Message:
Directory /cvs/extras/rpms/python-pyspf/devel added to the repository
15 years, 8 months
rpms/python-pyspf - New directory
by fedora-extras-commits@redhat.com
Author: jafo
Update of /cvs/extras/rpms/python-pyspf
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27278/python-pyspf
Log Message:
Directory /cvs/extras/rpms/python-pyspf added to the repository
15 years, 8 months