diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-03-12 21:55:15 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-03-12 21:55:15 +0000 |
commit | 7218e1b46bceac05841e90472501742d905fb3fc (patch) | |
tree | 56fae051db521b8fce8014cbc8b11484885b14b3 /dev-util/imediff2 | |
parent | 6d691ad5b6239929063441bbd14c489e92e7396e (diff) |
gentoo resync : 12.03.2021
Diffstat (limited to 'dev-util/imediff2')
-rw-r--r-- | dev-util/imediff2/Manifest | 3 | ||||
-rw-r--r-- | dev-util/imediff2/files/1.1.2.1-python-3.patch | 157 | ||||
-rw-r--r-- | dev-util/imediff2/imediff2-1.1.2.1.ebuild | 40 |
3 files changed, 200 insertions, 0 deletions
diff --git a/dev-util/imediff2/Manifest b/dev-util/imediff2/Manifest index 8c6af9f32335..594dae0027bc 100644 --- a/dev-util/imediff2/Manifest +++ b/dev-util/imediff2/Manifest @@ -1,4 +1,7 @@ AUX 1.1.2-python-3.patch 4553 BLAKE2B bc16393f3c7071017255e8f188456e77d89a2ab2d605d6d99882aef4c65c7e5270a9348cf278a98d5ff7527423e899feffbb93b00f12a8c6e9a7b131acb86eba SHA512 fa5065572eb7fdbf38e3d7785ae92bddaeae8eadd9dbd006f5691c8647087df7529015750b66ea7618dd3306fcda80083c8dc2d2f019787137095db5b2c1a4d7 +AUX 1.1.2.1-python-3.patch 5273 BLAKE2B cb2be2f11021d61f998d228d26cfad956ec3c6d18aeafb7ece82d5f3de1e624776033746a51542b601d3ab94db2d57aece68315f772d8299f22b2010d2151905 SHA512 212cb76362c8243824d16f514a2dafc0c746467454c463e34f1840022d4a988874878e544ee944726947a287e5db27a78d2b99b790a78f4188d10ed9e2eaaea5 +DIST imediff2_1.1.2.1.orig.tar.gz 20393 BLAKE2B 560eef8600bac8ad302907563bd8520ef7881009c8a35c74427d0d5d9e8d4303446f1eb39c01fec201c798f286023765776a84b1e1aaa9e2d585a45870375f16 SHA512 ad0e22f5f2f16efb976a0d6d16c34798cc8aace4251a99cb7764df6841f93c2a6bb9dc8cbb59d8f3ae5a5ad7c161a05b9c3c7b36cc7bdf98eac3ef3b735ef6c4 DIST imediff2_1.1.2.orig.tar.gz 17974 BLAKE2B f83b6ab652b1dd044587e75e4e7551a8132e1860b14f0d85d37f35383bd161a672860162e93554cf4db844d6a4700fa1876a30874c50fcb8442b4190a9b19185 SHA512 54d196d67107283bc3339eba30acb1c60972f256a268e86da397e0bdafa05220facc7979638a6a917b0c2dc7171edc3aa6b188295c9f40e9debf87a63731e748 EBUILD imediff2-1.1.2-r6.ebuild 771 BLAKE2B 68df3929d880653a85a89528010aeec48043b4951b56c25d2e326e3f1ad29d2775d3e8ca213fbff5ab12f060ab58fab0d8c0ee4072c324c510d6863c8b929900 SHA512 b36d89729319f60d3f2a79c990f974da60be2b67621af2d85eb9f8f9b501620bf67f308481f1d25ff04cd09753d6629119c454c878a2f4dc4437e89030e8e4f2 +EBUILD imediff2-1.1.2.1.ebuild 796 BLAKE2B 23aed7033f68c4a254d57ac5f40fa6327f8cf6ca1033388d46bf73d9e12c198b4484eda34f226147de9e82102ebbc898864e6d46cac821f6cf1e67a1ad649694 SHA512 6adfa99837e2c7db132200ad70d989e4c01155eefb8b5756be9e93523552ab2efd4dd3dd4bc4a9d4ce50114d6aa50f5bd4c58c4959924d526d4c50d14ebe77cc MISC metadata.xml 270 BLAKE2B db96fa7275398e582ba29ef0506116343ffb732fb9f4885311a7ebb5db977382dddc2e9d05c57f53f87e2961dd8bf768336f7c7b8bb5e80ece44969bb1c7dbee SHA512 650922039b23e4a7727a2a4123577d872000f6fbcd303b45801ad9e00dbed3326aab1d69964d18c1f36779b91011016a8009157d04757f4a9fe777e6b01734b8 diff --git a/dev-util/imediff2/files/1.1.2.1-python-3.patch b/dev-util/imediff2/files/1.1.2.1-python-3.patch new file mode 100644 index 000000000000..aa26ad7f9dbb --- /dev/null +++ b/dev-util/imediff2/files/1.1.2.1-python-3.patch @@ -0,0 +1,157 @@ +diff -aurN a/imediff2 b/imediff2 +--- a/imediff2 2018-10-20 13:36:19.000000000 -0400 ++++ b/imediff2 2021-03-03 10:03:31.121774492 -0500 +@@ -167,19 +167,19 @@ + def read_lines( filename ): + global assume_empty + try: +- fp = file( filename ) ++ fp = open( filename ) + l = fp.readlines() + fp.close() + return l +- except IOError, (error, message): +- if error == errno.ENOENT and assume_empty: ++ except IOError as e: ++ if e.errno == errno.ENOENT and assume_empty: + return "" + else: +- sys.stderr.write(_("Could not read '%s': %s\n") % (filename, message)) ++ sys.stderr.write(_("Could not read '%s': %s\n") % (filename, e.strerror)) + sys.exit(3) + + def strip_end_lines( txt ): +- return string.replace(string.replace(txt,"%c"%10,""),"%c"%13,"") ++ return txt.replace("%c"%10,"").replace("%c"%13,"") + + def main(stdscr, lines_a, lines_b, start_mode): + global sel, active_chunks, x,y, lines, textpad, contw,conth +@@ -283,7 +283,7 @@ + active_chunks.append( [j, j+len(line_list), i] ) + + for l in line_list: +- lines.append( [string.expandtabs(strip_end_lines(l)), ++ lines.append( [strip_end_lines(l).expandtabs(), + decor, color_pair] ) + j+=1 + +@@ -332,9 +332,9 @@ + def sel_next( dir ): + global sel, active_chunks + if dir == 'up': +- rng = range(sel-1, -1, -1) ++ rng = list(range(sel-1, -1, -1)) + else: +- rng = range(sel+1, len(active_chunks)) ++ rng = list(range(sel+1, len(active_chunks))) + for j in rng: + if active_chunks[j][1] > y and active_chunks[j][0] < y+winh: + sel = j +@@ -487,7 +487,7 @@ + elif c == ord('h') or c == ord('?') or c == curses.KEY_HELP: + helpw = 0 + helph = 0 +- for l in string.split(helptext(), "%c"%10): ++ for l in helptext().split("%c"%10): + helpw = max(helpw, len(l)) + helph += 1 + helppad = curses.newpad(helph+2, helpw+2) +@@ -502,7 +502,7 @@ + elif c == ord('q') or c == curses.KEY_CANCEL: + quitw = 0 + quith = 0 +- for l in string.split(quittext(), "%c"%10): ++ for l in quittext().split("%c"%10): + quitw = max(quitw, len(l)) + quith += 1 + quitpad = curses.newpad(quith+2, quitw+2) +@@ -571,33 +571,33 @@ + try: + opts, args = getopt.getopt(sys.argv[1:], "hmuo:abcNtV", + ["help","mono","unresolved","output=", "template", "version", "new-file"]) +-except getopt.GetoptError, e: +- print _("Error: ") + str(e) +- print usagetext() ++except getopt.GetoptError as e: ++ print((_("Error: ") + str(e))) ++ print(usagetext()) + sys.exit(2) + + for o, a in opts: + if o in ("-h", "--help"): +- print usagetext() ++ print((usagetext())) + sys.exit() + elif o in ("-t", "--template"): + try: + with open(config_file, 'w') as f: +- print >>f, "# Configuration for imediff2: (Erase this file to reset)" +- print >>f, "# <command_key_in_action> <command_key_in_manpage>" +- print >>f, "# edit only first character of each line to 'a'...'z'" +- print >>f, "#" ++ print(("# Configuration for imediff2: (Erase this file to reset)"), file=f) ++ print(("# <command_key_in_action> <command_key_in_manpage>"), file=f) ++ print(("# edit only first character of each line to 'a'...'z'"), file=f) ++ print(("#"), file=f) + for k in kcvalues: +- print >>f, "%s %s" % (k , k) ++ print(("%s %s" % (k , k)), file=f) + except: +- print "%s not writable, aborting" % config_file ++ print(("%s not writable, aborting" % config_file)) + sys.exit() + elif o in ("-V", "--version"): +- print "%s %s" % (PACKAGE, VERSION) ++ print(("%s %s" % (PACKAGE, VERSION))) + sys.exit() + + if len(args)<2: +- print usagetext() ++ print((usagetext())) + sys.exit(2) + + for o, a in opts: +@@ -692,14 +695,14 @@ + assert( not editor is None ) + try: + (of, of_name) = tempfile.mkstemp(prefix='imediff2') +- os.write( of, output ) ++ os.write( of, output.encode() ) + os.close(of) + time.sleep(0.1) # make the change visible - many editor look a lot like imediff2 + editor_ret = os.system('%s %s' % (editor, of_name)) + time.sleep(0.1) + if editor_ret == 0: + new_b_lines = read_lines(of_name) +- if string.join(new_b_lines, '') == output: ++ if ''.join(new_b_lines) == output: + chunk_mode = 'old' + elif new_b_lines != lines_a: + lines_b = new_b_lines +@@ -707,8 +710,8 @@ + else: + chunks = 'old' + os.unlink(of_name) +- except IOError, (error, message): +- sys.stderr.write(_("Could not write to '%s': %s\n") % (of_name, message)); ++ except IOError as e: ++ sys.stderr.write(_("Could not write to '%s': %s\n") % (of_name, e.strerror)); + + if not launch_editor: + break +@@ -719,11 +722,11 @@ + else: + try: + if ofile is not None: +- of = file(ofile, 'wb') +- of.write( output ) ++ of = open(ofile, 'wb') ++ of.write( output.encode() ) + of.close() + sys.exit(0) +- except IOError, (error, message): +- sys.stderr.write(_("Could not write to '%s': %s\n") % (ofile, message)); ++ except IOError as e: ++ sys.stderr.write(_("Could not write to '%s': %s\n") % (ofile, e.strerror)); + + sys.exit(3) diff --git a/dev-util/imediff2/imediff2-1.1.2.1.ebuild b/dev-util/imediff2/imediff2-1.1.2.1.ebuild new file mode 100644 index 000000000000..464fc4d97d24 --- /dev/null +++ b/dev-util/imediff2/imediff2-1.1.2.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_REQ_USE="ncurses" + +inherit python-single-r1 + +MY_P="${PN}_${PV}" + +DESCRIPTION="An interactive, user friendly 2-way merge tool in text mode" +HOMEPAGE="https://elonen.iki.fi/code/imediff/" +SRC_URI="mirror://debian/pool/main/i/${PN}/${MY_P}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +#S="${WORKDIR}/${PN}" + +PATCHES=( "${FILESDIR}/${PV}-python-3.patch" ) + +src_compile() { + # Otherwise the docs get regenerated :) + : +} + +src_install() { + python_doscript imediff2 + dobin git-ime + dodoc AUTHORS README.md + doman imediff2.1 git-ime.1 +} |