1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-09 06:20:43 +00:00

Changed copyright years & corrected author email

This commit is contained in:
Kim Holviala 2018-01-28 17:23:34 +02:00
parent 10383d3747
commit ff90756b80
16 changed files with 27 additions and 17 deletions

View File

@ -105,8 +105,8 @@ If you need to port Gophernicus to a new platform, please take
a look at gophernicus.h which has a bunch of HAVE_* #defines.
Fiddling with those usually makes it possible to compile a working
server. If you succeed in compiling Gophernicus to a new
platform please send the patches to kim@holviala.com so I can
include them into the next release.
platform please send the patches to me so I can include them into
the next release.
Tested (and semi-supported) platforms include:

View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without

View File

@ -12,6 +12,7 @@ VERSION = `./version`
CODENAME = Outta Prison
AUTHOR = Kim Holviala
EMAIL = kimholviala@fastmail.com
STARTED = 2009
SOURCES = $(NAME).c file.c menu.c string.c platform.c session.c options.c
HEADERS = functions.h files.h
@ -308,3 +309,12 @@ defines: functions.h files.h
loc:
@wc -l *.c
#
# Fix copyright notes
#
copyright:
sed -i .stupid -e "s/Copyright .c. 2.*$$/Copyright (c) $(STARTED)-`date +%Y` $(AUTHOR) <$(EMAIL)>/" *.c *.h LICENSE README debian/copyright
sed -i .stupid -e "s/Maintainer: .*$$/Maintainer: $(AUTHOR) <$(EMAIL)>/" debian/control
rm -f *.stupid debian/*.stupid

2
README
View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
Gophernicus is a modern full-featured (and hopefully) secure gopher
daemon. It is licensed under the BSD license.

View File

@ -74,7 +74,7 @@ Examples of valid resource lines:
1Absolute internal link /subdir
1External link / gopher.floodgap.com 70
1External relative link (which shouldn't work) subdir/ gopher.domain.dom 70
0Finger-to-gopher link kim holviala.com 79
0Finger-to-gopher link user example.test 79
hLink to a website URL:http://www.google.com/
hLink to a local html page /path/to/file.html
@ -82,7 +82,7 @@ hLink to a local html page /path/to/file.html
9Link to a binary file /path/to/binary
7Search engine query /query
8Telnet session kim holviala.com 79
8Telnet session user example.test 79
# Hide a few files from the menu listing generated by *
-hiddenfile.txt

View File

@ -1,5 +1,5 @@
/*
* bin2c - Copyright (c) 2010 Kim Holviala <kim@holviala.com>
* bin2c - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

2
debian/control vendored
View File

@ -1,7 +1,7 @@
Source: gophernicus
Section: net
Priority: extra
Maintainer: Kim Holviala <kim@holviala.com>
Maintainer: Kim Holviala <kimholviala@fastmail.com>
Build-Depends: debhelper (>= 5), libwrap0-dev
Standards-Version: 3.7.3
Homepage: gopher://gophernicus.org/1/software/gophernicus/server/

2
debian/copyright vendored
View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without

2
file.c
View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

2
menu.c
View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2017 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without