summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2022-10-10 15:12:59 -0400
committerAllen Winter <allen.winter@kdab.com>2022-10-10 15:12:59 -0400
commit84a6a532bb8b62bd0fb9bf9862bcce8e766a85bf (patch)
tree5efbcd43b89a4a20eb9ad5096ce14e1e60dc69fc
parent616e88d5d2c315ffd749e5193e278503e0709b1c (diff)
downloadlibical-git-84a6a532bb8b62bd0fb9bf9862bcce8e766a85bf.tar.gz
make sure files end with a newline (end-of-file-fixer)
-rw-r--r--AUTHORS1
-rw-r--r--TEST2
-rw-r--r--debian/changelog1
-rw-r--r--debian/libical-dev.install2
-rw-r--r--debian/python-libical.install2
-rw-r--r--design-data/CMakeLists.txt1
-rw-r--r--doc/AddingOrModifyingComponents.txt1
-rw-r--r--examples/access-usecases.txt2
-rw-r--r--scripts/CMakeLists.txt1
-rw-r--r--src/Net-ICal-Libical/netical_wrap.doc1
-rw-r--r--src/Net-ICal-Libical/test-data/2446.mime2
-rw-r--r--src/Net-ICal-Libical/test-data/mail-examples2
-rw-r--r--src/Net-ICal-Libical/test-data/single-with-error1
-rw-r--r--src/java/ICalPeriodType.java1
-rw-r--r--src/java/ICalRecurrenceType.java1
-rw-r--r--src/java/ICalTimeType.java1
-rw-r--r--src/java/ICalTriggerType.java1
-rw-r--r--src/libicalss/icalssyacc.h1
-rw-r--r--src/libicalvcal/README.TXT1
-rw-r--r--src/python/CMakeLists.txt1
-rw-r--r--src/python/ChangeLog1
-rw-r--r--src/python/LibicalWrap_icaltime.i1
-rw-r--r--src/python/python-binding.txt1
-rw-r--r--test-data/1.ics1
-rw-r--r--test-data/5.ics3
-rw-r--r--test-data/8.ics1
-rw-r--r--test-data/CMakeLists.txt1
-rw-r--r--test-data/complex-mime-error.txt1
-rw-r--r--test-data/incoming.ics1
-rw-r--r--test-data/issue252.icsbin5570 -> 5571 bytes
-rw-r--r--test-data/issue253.icsbin7197 -> 7198 bytes
-rw-r--r--test-data/malloc.icsbin9314 -> 9313 bytes
-rw-r--r--test-data/overlaps.ics1
-rw-r--r--test-data/process-calendar.ics1
-rw-r--r--test-data/recur-errors.ics2
-rw-r--r--test-data/recur.txt1
-rw-r--r--test-data/spanlist.ics1
-rw-r--r--test-data/stresstest.ics2
-rw-r--r--test-data/user-cal.vcf1
39 files changed, 6 insertions, 40 deletions
diff --git a/AUTHORS b/AUTHORS
index 32379a51..46d7eb7f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,3 @@
There are now far too many contributors to libical to list here.
Thanks to everyone involved!
-
diff --git a/TEST b/TEST
index 90c3473b..786ce3ce 100644
--- a/TEST
+++ b/TEST
@@ -1,4 +1,4 @@
Parser Tests
------------
-Use iCAL keywords as first words of unquoted strings \ No newline at end of file
+Use iCAL keywords as first words of unquoted strings
diff --git a/debian/changelog b/debian/changelog
index 00523e02..82f463c2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -43,4 +43,3 @@ libical (0.24-1) unstable; urgency=low
* Initial release
-- Wilfried Goesgens <w.goesgens@outgesourced.org> Fri, 22 Jul 2005 13:09:43 +0200
-
diff --git a/debian/libical-dev.install b/debian/libical-dev.install
index a4048486..26c15241 100644
--- a/debian/libical-dev.install
+++ b/debian/libical-dev.install
@@ -5,4 +5,4 @@ usr/lib/libicalss.a
usr/lib/libicalss.so
usr/lib/libicalvcal.a
usr/lib/libicalvcal.so
-usr/lib/pkgconfig/libical.pc \ No newline at end of file
+usr/lib/pkgconfig/libical.pc
diff --git a/debian/python-libical.install b/debian/python-libical.install
index 4c2a9a74..5c2596c7 100644
--- a/debian/python-libical.install
+++ b/debian/python-libical.install
@@ -1 +1 @@
-usr/lib/pymodules/* \ No newline at end of file
+usr/lib/pymodules/*
diff --git a/design-data/CMakeLists.txt b/design-data/CMakeLists.txt
index 0b7b3433..39000a42 100644
--- a/design-data/CMakeLists.txt
+++ b/design-data/CMakeLists.txt
@@ -1,3 +1,2 @@
########### install files ###############
-
diff --git a/doc/AddingOrModifyingComponents.txt b/doc/AddingOrModifyingComponents.txt
index e9f46c27..9f888928 100644
--- a/doc/AddingOrModifyingComponents.txt
+++ b/doc/AddingOrModifyingComponents.txt
@@ -20,4 +20,3 @@ function icalvalue_new_from_string_with_error() in icalvalue.c
When you are done, if you changed any files in the design-data
directory, regnerate derived datatypes in src/libical with "make
derived" or "make icalvalue"
-
diff --git a/examples/access-usecases.txt b/examples/access-usecases.txt
index 187d2b82..af7703ed 100644
--- a/examples/access-usecases.txt
+++ b/examples/access-usecases.txt
@@ -57,4 +57,4 @@ and change them to "East Conference Room"
20 Translate a CALID into one or more UPNs
-21 Expand a group UPN into all of the members of the group \ No newline at end of file
+21 Expand a group UPN into all of the members of the group
diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt
index 0b7b3433..39000a42 100644
--- a/scripts/CMakeLists.txt
+++ b/scripts/CMakeLists.txt
@@ -1,3 +1,2 @@
########### install files ###############
-
diff --git a/src/Net-ICal-Libical/netical_wrap.doc b/src/Net-ICal-Libical/netical_wrap.doc
index 2d9890a2..f147d80e 100644
--- a/src/Net-ICal-Libical/netical_wrap.doc
+++ b/src/Net-ICal-Libical/netical_wrap.doc
@@ -390,4 +390,3 @@ icalperiodtype_is_null_period(p);
icalperiodtype_is_valid_period(p);
[ returns int ]
-
diff --git a/src/Net-ICal-Libical/test-data/2446.mime b/src/Net-ICal-Libical/test-data/2446.mime
index bc485e4f..e1d8957d 100644
--- a/src/Net-ICal-Libical/test-data/2446.mime
+++ b/src/Net-ICal-Libical/test-data/2446.mime
@@ -3422,5 +3422,3 @@ END:VEVENT
END:VCALENDAR
------------=_948951966-26278-52--
-
-
diff --git a/src/Net-ICal-Libical/test-data/mail-examples b/src/Net-ICal-Libical/test-data/mail-examples
index 522f1586..c2d0d816 100644
--- a/src/Net-ICal-Libical/test-data/mail-examples
+++ b/src/Net-ICal-Libical/test-data/mail-examples
@@ -259,4 +259,4 @@ R0lGODdhTAQZAJEAAFVVVd3d3e4AAP///ywAAAAATAQZAAAC/5yPOSLhD6OctNqLs94XqAG
4kiW5omm6sq27gvH8kzX9o1y+s73/g8MCofEovGITCoxKMbyCR16cNSq9YrNarfcrvdriIH
5LL5jE6rxc3G+v2cguf0uv2Oz+v38L7/DxgoOKjURnjIIbe3yNjo+AgZWYVIWWl5iZnJY6J.
-----FEE3790DC7E35189CA67CE2C-- \ No newline at end of file
+----FEE3790DC7E35189CA67CE2C--
diff --git a/src/Net-ICal-Libical/test-data/single-with-error b/src/Net-ICal-Libical/test-data/single-with-error
index 8417eaba..f9ffddd6 100644
--- a/src/Net-ICal-Libical/test-data/single-with-error
+++ b/src/Net-ICal-Libical/test-data/single-with-error
@@ -36,4 +36,3 @@ LOCATION:1CP Conference
Room 4350
END:VEVENT
END:VCALENDAR
-
diff --git a/src/java/ICalPeriodType.java b/src/java/ICalPeriodType.java
index 204ff2a1..ffd3cd81 100644
--- a/src/java/ICalPeriodType.java
+++ b/src/java/ICalPeriodType.java
@@ -68,4 +68,3 @@ public class ICalPeriodType
private ICalTimeType end = new ICalTimeType();
private ICalDurationType duration = new ICalDurationType();
}
-
diff --git a/src/java/ICalRecurrenceType.java b/src/java/ICalRecurrenceType.java
index cfe27911..cc9a3572 100644
--- a/src/java/ICalRecurrenceType.java
+++ b/src/java/ICalRecurrenceType.java
@@ -281,4 +281,3 @@ public class ICalRecurrenceType
public static final int ICAL_BY_MONTH_SIZE = 13;
public static final int ICAL_BY_SETPOS_SIZE = 367;
}
-
diff --git a/src/java/ICalTimeType.java b/src/java/ICalTimeType.java
index 15cf8715..01bfeedc 100644
--- a/src/java/ICalTimeType.java
+++ b/src/java/ICalTimeType.java
@@ -132,4 +132,3 @@ public class ICalTimeType
private int is_date;
private String zone = new String(); // Converted from char*
}
-
diff --git a/src/java/ICalTriggerType.java b/src/java/ICalTriggerType.java
index e2ef7a72..a35c54c9 100644
--- a/src/java/ICalTriggerType.java
+++ b/src/java/ICalTriggerType.java
@@ -90,4 +90,3 @@ public class ICalTriggerType
private ICalTimeType time = new ICalTimeType();
private ICalDurationType duration = new ICalDurationType();
}
-
diff --git a/src/libicalss/icalssyacc.h b/src/libicalss/icalssyacc.h
index f97cc4a7..fdcf7ab5 100644
--- a/src/libicalss/icalssyacc.h
+++ b/src/libicalss/icalssyacc.h
@@ -97,4 +97,3 @@ typedef union YYSTYPE
#endif
extern YYSTYPE sslval;
-
diff --git a/src/libicalvcal/README.TXT b/src/libicalvcal/README.TXT
index e2148a2c..42ca8c85 100644
--- a/src/libicalvcal/README.TXT
+++ b/src/libicalvcal/README.TXT
@@ -948,4 +948,3 @@ file VObject Tree as Printed by printVObject API
44 GIF
44 BASE64
44 DATASIZE=1482
-
diff --git a/src/python/CMakeLists.txt b/src/python/CMakeLists.txt
index a5a593c3..9aeaeb67 100644
--- a/src/python/CMakeLists.txt
+++ b/src/python/CMakeLists.txt
@@ -21,4 +21,3 @@ set_target_properties(LibicalWrap PROPERTIES
install(TARGETS LibicalWrap DESTINATION lib)
########### install files ###############
-
diff --git a/src/python/ChangeLog b/src/python/ChangeLog
index d32c799d..e7a99793 100644
--- a/src/python/ChangeLog
+++ b/src/python/ChangeLog
@@ -126,4 +126,3 @@
* Libical.py changed update_value to _update_value
-
diff --git a/src/python/LibicalWrap_icaltime.i b/src/python/LibicalWrap_icaltime.i
index f82a7706..46b0cd91 100644
--- a/src/python/LibicalWrap_icaltime.i
+++ b/src/python/LibicalWrap_icaltime.i
@@ -193,4 +193,3 @@ _swig_set_properties(icaltimetype, icaltimetype_props)
%}
// TODO: Add icaltime_span_* to icaltime_spantype
-
diff --git a/src/python/python-binding.txt b/src/python/python-binding.txt
index 514a95ab..3d563b85 100644
--- a/src/python/python-binding.txt
+++ b/src/python/python-binding.txt
@@ -431,4 +431,3 @@ icalcomponent_get_parent(), and if is it non-zero, it does not free
the component.
It is not hard, just more code, and something to watch out for.
-
diff --git a/test-data/1.ics b/test-data/1.ics
index a4d078d4..4fe7c8d7 100644
--- a/test-data/1.ics
+++ b/test-data/1.ics
@@ -35,4 +35,3 @@ DTEND;TZID=US-Eastern:19980312T093000
LOCATION:1CP Conference Room 4350
END:VEVENT
END:VCALENDAR
-
diff --git a/test-data/5.ics b/test-data/5.ics
index ba1fd09f..83beb3ad 100644
--- a/test-data/5.ics
+++ b/test-data/5.ics
@@ -11,6 +11,3 @@ FREEBUSY:19980318T030000/19980318T040000,19980318T030000/19980318T040000
URL:http://www.host.com/calendar/busytime/jsmith.ifb
END:VFREEBUSY
END:VCALENDAR
-
-
-
diff --git a/test-data/8.ics b/test-data/8.ics
index ee0ad680..790ee9b7 100644
--- a/test-data/8.ics
+++ b/test-data/8.ics
@@ -3,4 +3,3 @@ DTSTART:19960701T200000Z
DTEND:19960701T210000Z
DTSTAMP:19960611T190000Z
END:VEVENT
-
diff --git a/test-data/CMakeLists.txt b/test-data/CMakeLists.txt
index 0b7b3433..39000a42 100644
--- a/test-data/CMakeLists.txt
+++ b/test-data/CMakeLists.txt
@@ -1,3 +1,2 @@
########### install files ###############
-
diff --git a/test-data/complex-mime-error.txt b/test-data/complex-mime-error.txt
index 8beb20f3..9b795094 100644
--- a/test-data/complex-mime-error.txt
+++ b/test-data/complex-mime-error.txt
@@ -56,4 +56,3 @@ Content-ID: <calsvr.example.com-12345aaa>
R0lGODdhTAQZAJEAAFVVVd3d3e4AAP///ywAAAAATAQZAAAC/5yPOSLhD6OctNqLs94XqAG
4kiW5omm6sq27gvH8kzX9o1y+s73/g8MCofEovGITCoxKMbyCR16cNSq9YrNarfcrvdriIH
5LL5jE6rxc3G+v2cguf0uv2Oz+v38L7/DxgoOKjURnjIIbe3yNjo+AgZWYVIWWl5iZnJY6J.
-
diff --git a/test-data/incoming.ics b/test-data/incoming.ics
index e80acaa8..1ef41db4 100644
--- a/test-data/incoming.ics
+++ b/test-data/incoming.ics
@@ -293,4 +293,3 @@ FREEBUSY:19980115T220000Z/19980115T230000Z
FREEBUSY:19980116T013000Z/19980116T043000Z
END:VFREEBUSY
END:VCALENDAR
-
diff --git a/test-data/issue252.ics b/test-data/issue252.ics
index 14bdd607..c5959c5e 100644
--- a/test-data/issue252.ics
+++ b/test-data/issue252.ics
Binary files differ
diff --git a/test-data/issue253.ics b/test-data/issue253.ics
index b412e2ae..98cdee0b 100644
--- a/test-data/issue253.ics
+++ b/test-data/issue253.ics
Binary files differ
diff --git a/test-data/malloc.ics b/test-data/malloc.ics
index f8f7951b..c417914f 100644
--- a/test-data/malloc.ics
+++ b/test-data/malloc.ics
Binary files differ
diff --git a/test-data/overlaps.ics b/test-data/overlaps.ics
index 57a5c57c..0b3ef99a 100644
--- a/test-data/overlaps.ics
+++ b/test-data/overlaps.ics
@@ -29,4 +29,3 @@ DTSTART
DTEND
:20001104T180000
END:VEVENT
-
diff --git a/test-data/process-calendar.ics b/test-data/process-calendar.ics
index e3099001..9a1b13ab 100644
--- a/test-data/process-calendar.ics
+++ b/test-data/process-calendar.ics
@@ -105,4 +105,3 @@ STATUS
:CONFIRMED
END:VEVENT
END:VCALENDAR
-
diff --git a/test-data/recur-errors.ics b/test-data/recur-errors.ics
index b5cebeff..e89ee7f5 100644
--- a/test-data/recur-errors.ics
+++ b/test-data/recur-errors.ics
@@ -40,5 +40,3 @@ DTSTART
RRULE
:FREQ=MONTHLY;COUNT=10;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-2
END:VEVENT
-
-
diff --git a/test-data/recur.txt b/test-data/recur.txt
index f334ba65..d100146d 100644
--- a/test-data/recur.txt
+++ b/test-data/recur.txt
@@ -649,4 +649,3 @@ END:VEVENT
;DTSTART:20020101T090000Z
;X-EXPECT-NUMEVENTS: 100
;END:VEVENT
-
diff --git a/test-data/spanlist.ics b/test-data/spanlist.ics
index 792b535a..780c8e42 100644
--- a/test-data/spanlist.ics
+++ b/test-data/spanlist.ics
@@ -32,4 +32,3 @@ DTSTART:
DTEND:
19980106T070000Z
END:VEVENT
-
diff --git a/test-data/stresstest.ics b/test-data/stresstest.ics
index fda64974..1c7e4ea1 100644
--- a/test-data/stresstest.ics
+++ b/test-data/stresstest.ics
@@ -175,4 +175,4 @@ VERSION:2.0
VERSION:.0
VERSION:2.0.0.0
X-SKI-TITLE;RSVP=TRUE: This is an extension property
-END:VCALENDAR \ No newline at end of file
+END:VCALENDAR
diff --git a/test-data/user-cal.vcf b/test-data/user-cal.vcf
index a7191d1d..55ad7cc6 100644
--- a/test-data/user-cal.vcf
+++ b/test-data/user-cal.vcf
@@ -73,4 +73,3 @@ END:VEVENT
END:VCALENDAR
-